File: /home/storage/5/78/dd/wicomm2/public_html/mroculos/wp-admin/local.sql
-- MySQL dump 10.13 Distrib 8.0.35, for Win64 (x86_64)
--
-- Host: ::1 Database: local
-- ------------------------------------------------------
-- Server version 8.0.35
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int NOT NULL DEFAULT '0',
`comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint unsigned NOT NULL DEFAULT '0',
`user_id` bigint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2026-01-24 14:17:02','2026-01-24 14:17:02','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
`link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint unsigned NOT NULL DEFAULT '1',
`link_rating` int NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_action_meta`
--
DROP TABLE IF EXISTS `wp_nf3_action_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_action_meta` (
`id` int NOT NULL AUTO_INCREMENT,
`parent_id` int NOT NULL,
`key` longtext NOT NULL,
`value` longtext,
`meta_key` longtext,
`meta_value` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_action_meta`
--
LOCK TABLES `wp_nf3_action_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_action_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_action_meta` VALUES (79,5,'objectType','Action','objectType','Action');
INSERT INTO `wp_nf3_action_meta` VALUES (80,5,'objectDomain','actions','objectDomain','actions');
INSERT INTO `wp_nf3_action_meta` VALUES (81,5,'editActive','','editActive','');
INSERT INTO `wp_nf3_action_meta` VALUES (82,5,'message','Seu formulário foi enviado com sucesso.','message','Seu formulário foi enviado com sucesso.');
INSERT INTO `wp_nf3_action_meta` VALUES (83,5,'order','1','order','1');
INSERT INTO `wp_nf3_action_meta` VALUES (84,5,'to','{wp:admin_email}','to','{wp:admin_email}');
INSERT INTO `wp_nf3_action_meta` VALUES (85,5,'reply_to','','reply_to','');
INSERT INTO `wp_nf3_action_meta` VALUES (86,5,'email_subject','Envio de Ninja Forms','email_subject','Envio de Ninja Forms');
INSERT INTO `wp_nf3_action_meta` VALUES (87,5,'email_message','{fields_table}','email_message','{fields_table}');
INSERT INTO `wp_nf3_action_meta` VALUES (88,5,'email_message_plain','','email_message_plain','');
INSERT INTO `wp_nf3_action_meta` VALUES (89,5,'from_name','','from_name','');
INSERT INTO `wp_nf3_action_meta` VALUES (90,5,'from_address','','from_address','');
INSERT INTO `wp_nf3_action_meta` VALUES (91,5,'email_format','html','email_format','html');
INSERT INTO `wp_nf3_action_meta` VALUES (92,5,'cc','','cc','');
INSERT INTO `wp_nf3_action_meta` VALUES (93,5,'bcc','','bcc','');
INSERT INTO `wp_nf3_action_meta` VALUES (94,5,'success_msg','Seu formulário foi enviado com sucesso.','success_msg','Seu formulário foi enviado com sucesso.');
INSERT INTO `wp_nf3_action_meta` VALUES (95,6,'objectType','Action','objectType','Action');
INSERT INTO `wp_nf3_action_meta` VALUES (96,6,'objectDomain','actions','objectDomain','actions');
INSERT INTO `wp_nf3_action_meta` VALUES (97,6,'editActive','','editActive','');
INSERT INTO `wp_nf3_action_meta` VALUES (98,6,'order','2','order','2');
INSERT INTO `wp_nf3_action_meta` VALUES (99,6,'to','{wp:admin_email}','to','{wp:admin_email}');
INSERT INTO `wp_nf3_action_meta` VALUES (100,6,'reply_to','','reply_to','');
INSERT INTO `wp_nf3_action_meta` VALUES (101,6,'email_subject','Envio de Ninja Forms','email_subject','Envio de Ninja Forms');
INSERT INTO `wp_nf3_action_meta` VALUES (102,6,'email_message','{fields_table}','email_message','{fields_table}');
INSERT INTO `wp_nf3_action_meta` VALUES (103,6,'email_message_plain','','email_message_plain','');
INSERT INTO `wp_nf3_action_meta` VALUES (104,6,'from_name','','from_name','');
INSERT INTO `wp_nf3_action_meta` VALUES (105,6,'from_address','','from_address','');
INSERT INTO `wp_nf3_action_meta` VALUES (106,6,'email_format','html','email_format','html');
INSERT INTO `wp_nf3_action_meta` VALUES (107,6,'cc','','cc','');
INSERT INTO `wp_nf3_action_meta` VALUES (108,6,'bcc','','bcc','');
INSERT INTO `wp_nf3_action_meta` VALUES (109,7,'objectType','Action','objectType','Action');
INSERT INTO `wp_nf3_action_meta` VALUES (110,7,'objectDomain','actions','objectDomain','actions');
INSERT INTO `wp_nf3_action_meta` VALUES (111,7,'editActive','','editActive','');
INSERT INTO `wp_nf3_action_meta` VALUES (112,7,'order','3','order','3');
INSERT INTO `wp_nf3_action_meta` VALUES (113,7,'to','{wp:admin_email}','to','{wp:admin_email}');
INSERT INTO `wp_nf3_action_meta` VALUES (114,7,'reply_to','','reply_to','');
INSERT INTO `wp_nf3_action_meta` VALUES (115,7,'email_subject','Envio de Ninja Forms','email_subject','Envio de Ninja Forms');
INSERT INTO `wp_nf3_action_meta` VALUES (116,7,'email_message','{fields_table}','email_message','{fields_table}');
INSERT INTO `wp_nf3_action_meta` VALUES (117,7,'email_message_plain','','email_message_plain','');
INSERT INTO `wp_nf3_action_meta` VALUES (118,7,'from_name','','from_name','');
INSERT INTO `wp_nf3_action_meta` VALUES (119,7,'from_address','','from_address','');
INSERT INTO `wp_nf3_action_meta` VALUES (120,7,'email_format','html','email_format','html');
INSERT INTO `wp_nf3_action_meta` VALUES (121,7,'cc','','cc','');
INSERT INTO `wp_nf3_action_meta` VALUES (122,7,'bcc','','bcc','');
INSERT INTO `wp_nf3_action_meta` VALUES (123,7,'success_msg','Seu formulário foi enviado com sucesso.','success_msg','Seu formulário foi enviado com sucesso.');
INSERT INTO `wp_nf3_action_meta` VALUES (124,7,'redirect_url','','redirect_url','');
INSERT INTO `wp_nf3_action_meta` VALUES (125,7,'submitter_email','email_1769284723430','submitter_email','email_1769284723430');
INSERT INTO `wp_nf3_action_meta` VALUES (126,7,'fields-save-toggle','save_all','fields-save-toggle','save_all');
INSERT INTO `wp_nf3_action_meta` VALUES (127,7,'exception_fields','a:0:{}','exception_fields','a:0:{}');
INSERT INTO `wp_nf3_action_meta` VALUES (128,7,'set_subs_to_expire','0','set_subs_to_expire','0');
INSERT INTO `wp_nf3_action_meta` VALUES (129,7,'subs_expire_time','90','subs_expire_time','90');
/*!40000 ALTER TABLE `wp_nf3_action_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_actions`
--
DROP TABLE IF EXISTS `wp_nf3_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_actions` (
`id` int NOT NULL AUTO_INCREMENT,
`title` longtext,
`key` longtext,
`type` longtext,
`active` tinyint(1) DEFAULT '1',
`parent_id` int NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`label` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_actions`
--
LOCK TABLES `wp_nf3_actions` WRITE;
/*!40000 ALTER TABLE `wp_nf3_actions` DISABLE KEYS */;
INSERT INTO `wp_nf3_actions` VALUES (5,NULL,NULL,'successmessage',1,2,'2026-01-24 22:56:34','2026-01-24 19:56:34','Mensagem de Sucesso');
INSERT INTO `wp_nf3_actions` VALUES (6,NULL,NULL,'email',1,2,'2026-01-24 22:56:34','2026-01-24 19:56:34','E-mail do administrador');
INSERT INTO `wp_nf3_actions` VALUES (7,NULL,NULL,'save',1,2,'2026-01-24 22:56:35','2026-01-24 19:56:35','Record Submission');
/*!40000 ALTER TABLE `wp_nf3_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_chunks`
--
DROP TABLE IF EXISTS `wp_nf3_chunks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_chunks` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(200) DEFAULT NULL,
`value` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_chunks`
--
LOCK TABLES `wp_nf3_chunks` WRITE;
/*!40000 ALTER TABLE `wp_nf3_chunks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_nf3_chunks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_field_meta`
--
DROP TABLE IF EXISTS `wp_nf3_field_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_field_meta` (
`id` int NOT NULL AUTO_INCREMENT,
`parent_id` int NOT NULL,
`key` longtext NOT NULL,
`value` longtext,
`meta_key` longtext,
`meta_value` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=320 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_field_meta`
--
LOCK TABLES `wp_nf3_field_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_field_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_field_meta` VALUES (261,5,'editActive','','editActive','');
INSERT INTO `wp_nf3_field_meta` VALUES (262,5,'order','3','order','3');
INSERT INTO `wp_nf3_field_meta` VALUES (263,5,'idAttribute','id','idAttribute','id');
INSERT INTO `wp_nf3_field_meta` VALUES (264,5,'label','Submeter','label','Submeter');
INSERT INTO `wp_nf3_field_meta` VALUES (265,5,'type','submit','type','submit');
INSERT INTO `wp_nf3_field_meta` VALUES (266,5,'processing_label','Processando','processing_label','Processando');
INSERT INTO `wp_nf3_field_meta` VALUES (267,5,'container_class','','container_class','');
INSERT INTO `wp_nf3_field_meta` VALUES (268,5,'element_class','','element_class','');
INSERT INTO `wp_nf3_field_meta` VALUES (269,5,'key','submit_1769284557581','key','submit_1769284557581');
INSERT INTO `wp_nf3_field_meta` VALUES (270,5,'admin_label','','admin_label','');
INSERT INTO `wp_nf3_field_meta` VALUES (282,7,'editActive','','editActive','');
INSERT INTO `wp_nf3_field_meta` VALUES (283,7,'order','1','order','1');
INSERT INTO `wp_nf3_field_meta` VALUES (284,7,'idAttribute','id','idAttribute','id');
INSERT INTO `wp_nf3_field_meta` VALUES (285,7,'label','','label','');
INSERT INTO `wp_nf3_field_meta` VALUES (286,7,'type','email','type','email');
INSERT INTO `wp_nf3_field_meta` VALUES (287,7,'key','email_1769284723430','key','email_1769284723430');
INSERT INTO `wp_nf3_field_meta` VALUES (288,7,'label_pos','default','label_pos','default');
INSERT INTO `wp_nf3_field_meta` VALUES (289,7,'required','1','required','1');
INSERT INTO `wp_nf3_field_meta` VALUES (290,7,'default','','default','');
INSERT INTO `wp_nf3_field_meta` VALUES (291,7,'placeholder','Digite seu e-mail','placeholder','Digite seu e-mail');
INSERT INTO `wp_nf3_field_meta` VALUES (292,7,'container_class','','container_class','');
INSERT INTO `wp_nf3_field_meta` VALUES (293,7,'element_class','','element_class','');
INSERT INTO `wp_nf3_field_meta` VALUES (294,7,'admin_label','','admin_label','');
INSERT INTO `wp_nf3_field_meta` VALUES (295,7,'help_text','','help_text','');
INSERT INTO `wp_nf3_field_meta` VALUES (296,7,'custom_name_attribute','email','custom_name_attribute','email');
INSERT INTO `wp_nf3_field_meta` VALUES (297,7,'personally_identifiable','1','personally_identifiable','1');
INSERT INTO `wp_nf3_field_meta` VALUES (298,7,'value','','value','');
INSERT INTO `wp_nf3_field_meta` VALUES (299,7,'drawerDisabled','','drawerDisabled','');
INSERT INTO `wp_nf3_field_meta` VALUES (300,8,'editActive','','editActive','');
INSERT INTO `wp_nf3_field_meta` VALUES (301,8,'order','2','order','2');
INSERT INTO `wp_nf3_field_meta` VALUES (302,8,'idAttribute','id','idAttribute','id');
INSERT INTO `wp_nf3_field_meta` VALUES (303,8,'label','Caso continue, entendemos que você está de acordo com nossos termos e condições.','label','Caso continue, entendemos que você está de acordo com nossos termos e condições.');
INSERT INTO `wp_nf3_field_meta` VALUES (304,8,'type','checkbox','type','checkbox');
INSERT INTO `wp_nf3_field_meta` VALUES (305,8,'key','caso_continue_entendemos_que_voce_esta_de_acordo_com_nossos_termos_e_condicoes_1769284743403','key','caso_continue_entendemos_que_voce_esta_de_acordo_com_nossos_termos_e_condicoes_1769284743403');
INSERT INTO `wp_nf3_field_meta` VALUES (306,8,'label_pos','right','label_pos','right');
INSERT INTO `wp_nf3_field_meta` VALUES (307,8,'required','1','required','1');
INSERT INTO `wp_nf3_field_meta` VALUES (308,8,'container_class','','container_class','');
INSERT INTO `wp_nf3_field_meta` VALUES (309,8,'element_class','','element_class','');
INSERT INTO `wp_nf3_field_meta` VALUES (310,8,'manual_key','','manual_key','');
INSERT INTO `wp_nf3_field_meta` VALUES (311,8,'admin_label','','admin_label','');
INSERT INTO `wp_nf3_field_meta` VALUES (312,8,'help_text','<p><br></p>','help_text','<p><br></p>');
INSERT INTO `wp_nf3_field_meta` VALUES (313,8,'desc_text','<p><br></p>','desc_text','<p><br></p>');
INSERT INTO `wp_nf3_field_meta` VALUES (314,8,'default_value','unchecked','default_value','unchecked');
INSERT INTO `wp_nf3_field_meta` VALUES (315,8,'checked_value','Marcado','checked_value','Marcado');
INSERT INTO `wp_nf3_field_meta` VALUES (316,8,'unchecked_value','Desmarcado','unchecked_value','Desmarcado');
INSERT INTO `wp_nf3_field_meta` VALUES (317,8,'checked_calc_value','','checked_calc_value','');
INSERT INTO `wp_nf3_field_meta` VALUES (318,8,'unchecked_calc_value','','unchecked_calc_value','');
INSERT INTO `wp_nf3_field_meta` VALUES (319,8,'drawerDisabled','','drawerDisabled','');
/*!40000 ALTER TABLE `wp_nf3_field_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_fields`
--
DROP TABLE IF EXISTS `wp_nf3_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_fields` (
`id` int NOT NULL AUTO_INCREMENT,
`label` longtext,
`key` longtext,
`type` longtext,
`parent_id` int NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`field_label` longtext,
`field_key` longtext,
`order` int DEFAULT NULL,
`required` bit(1) DEFAULT NULL,
`default_value` longtext,
`label_pos` varchar(15) DEFAULT NULL,
`personally_identifiable` bit(1) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_fields`
--
LOCK TABLES `wp_nf3_fields` WRITE;
/*!40000 ALTER TABLE `wp_nf3_fields` DISABLE KEYS */;
INSERT INTO `wp_nf3_fields` VALUES (5,'Submeter','submit_1769284557581','submit',2,NULL,NULL,'Submeter','submit_1769284557581',3,_binary '\0','','',_binary '\0');
INSERT INTO `wp_nf3_fields` VALUES (7,'','email_1769284723430','email',2,NULL,NULL,'','email_1769284723430',1,_binary '','','default',_binary '');
INSERT INTO `wp_nf3_fields` VALUES (8,'Caso continue, entendemos que você está de acordo com nossos termos e condições.','caso_continue_entendemos_que_voce_esta_de_acordo_com_nossos_termos_e_condicoes_1769284743403','checkbox',2,NULL,NULL,'Caso continue, entendemos que você está de acordo com nossos termos e condições.','caso_continue_entendemos_que_voce_esta_de_acordo_com_nossos_termos_e_condicoes_1769284743403',2,_binary '','','right',_binary '\0');
/*!40000 ALTER TABLE `wp_nf3_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_form_meta`
--
DROP TABLE IF EXISTS `wp_nf3_form_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_form_meta` (
`id` int NOT NULL AUTO_INCREMENT,
`parent_id` int NOT NULL,
`key` longtext NOT NULL,
`value` longtext,
`meta_key` longtext,
`meta_value` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_form_meta`
--
LOCK TABLES `wp_nf3_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_form_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_form_meta` VALUES (99,2,'objectType','Form Setting','objectType','Form Setting');
INSERT INTO `wp_nf3_form_meta` VALUES (100,2,'editActive','1','editActive','1');
INSERT INTO `wp_nf3_form_meta` VALUES (101,2,'show_title','0','show_title','0');
INSERT INTO `wp_nf3_form_meta` VALUES (102,2,'allow_public_link','0','allow_public_link','0');
INSERT INTO `wp_nf3_form_meta` VALUES (103,2,'embed_form','[ninja_form id=\'2\']','embed_form','[ninja_form id=\'2\']');
INSERT INTO `wp_nf3_form_meta` VALUES (104,2,'clear_complete','1','clear_complete','1');
INSERT INTO `wp_nf3_form_meta` VALUES (105,2,'hide_complete','1','hide_complete','1');
INSERT INTO `wp_nf3_form_meta` VALUES (106,2,'default_label_pos','above','default_label_pos','above');
INSERT INTO `wp_nf3_form_meta` VALUES (107,2,'wrapper_class','','wrapper_class','');
INSERT INTO `wp_nf3_form_meta` VALUES (108,2,'element_class','','element_class','');
INSERT INTO `wp_nf3_form_meta` VALUES (109,2,'form_title_heading_level','3','form_title_heading_level','3');
INSERT INTO `wp_nf3_form_meta` VALUES (110,2,'key','','key','');
INSERT INTO `wp_nf3_form_meta` VALUES (111,2,'add_submit','0','add_submit','0');
INSERT INTO `wp_nf3_form_meta` VALUES (112,2,'currency','','currency','');
INSERT INTO `wp_nf3_form_meta` VALUES (113,2,'unique_field_error','Um formulário com este valor já foi enviado.','unique_field_error','Um formulário com este valor já foi enviado.');
INSERT INTO `wp_nf3_form_meta` VALUES (114,2,'logged_in','','logged_in','');
INSERT INTO `wp_nf3_form_meta` VALUES (115,2,'not_logged_in_msg','','not_logged_in_msg','');
INSERT INTO `wp_nf3_form_meta` VALUES (116,2,'sub_limit_msg','O formulário atingiu seu limite de envio.','sub_limit_msg','O formulário atingiu seu limite de envio.');
INSERT INTO `wp_nf3_form_meta` VALUES (117,2,'calculations','a:0:{}','calculations','a:0:{}');
INSERT INTO `wp_nf3_form_meta` VALUES (118,2,'formContentData','a:3:{i:0;s:19:\"email_1769284723430\";i:1;s:92:\"caso_continue_entendemos_que_voce_esta_de_acordo_com_nossos_termos_e_condicoes_1769284743403\";i:2;s:20:\"submit_1769284557581\";}','formContentData','a:3:{i:0;s:19:\"email_1769284723430\";i:1;s:92:\"caso_continue_entendemos_que_voce_esta_de_acordo_com_nossos_termos_e_condicoes_1769284743403\";i:2;s:20:\"submit_1769284557581\";}');
INSERT INTO `wp_nf3_form_meta` VALUES (119,2,'public_link','http://mroculos.local/ninja-forms/25nun','public_link','http://mroculos.local/ninja-forms/25nun');
INSERT INTO `wp_nf3_form_meta` VALUES (120,2,'changeEmailErrorMsg','','changeEmailErrorMsg','');
INSERT INTO `wp_nf3_form_meta` VALUES (121,2,'changeDateErrorMsg','','changeDateErrorMsg','');
INSERT INTO `wp_nf3_form_meta` VALUES (122,2,'confirmFieldErrorMsg','','confirmFieldErrorMsg','');
INSERT INTO `wp_nf3_form_meta` VALUES (123,2,'fieldNumberNumMinError','','fieldNumberNumMinError','');
INSERT INTO `wp_nf3_form_meta` VALUES (124,2,'fieldNumberNumMaxError','','fieldNumberNumMaxError','');
INSERT INTO `wp_nf3_form_meta` VALUES (125,2,'fieldNumberIncrementBy','','fieldNumberIncrementBy','');
INSERT INTO `wp_nf3_form_meta` VALUES (126,2,'formErrorsCorrectErrors','','formErrorsCorrectErrors','');
INSERT INTO `wp_nf3_form_meta` VALUES (127,2,'validateRequiredField','','validateRequiredField','');
INSERT INTO `wp_nf3_form_meta` VALUES (128,2,'honeypotHoneypotError','','honeypotHoneypotError','');
INSERT INTO `wp_nf3_form_meta` VALUES (129,2,'fieldsMarkedRequired','','fieldsMarkedRequired','');
INSERT INTO `wp_nf3_form_meta` VALUES (130,2,'public_link_key','25nun','public_link_key','25nun');
INSERT INTO `wp_nf3_form_meta` VALUES (131,2,'objectDomain','display','objectDomain','display');
INSERT INTO `wp_nf3_form_meta` VALUES (132,2,'drawerDisabled','','drawerDisabled','');
/*!40000 ALTER TABLE `wp_nf3_form_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_forms`
--
DROP TABLE IF EXISTS `wp_nf3_forms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_forms` (
`id` int NOT NULL AUTO_INCREMENT,
`title` longtext,
`key` longtext,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`views` int DEFAULT NULL,
`subs` int DEFAULT NULL,
`form_title` longtext,
`default_label_pos` varchar(15) DEFAULT NULL,
`show_title` bit(1) DEFAULT NULL,
`clear_complete` bit(1) DEFAULT NULL,
`hide_complete` bit(1) DEFAULT NULL,
`logged_in` bit(1) DEFAULT NULL,
`seq_num` int DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_forms`
--
LOCK TABLES `wp_nf3_forms` WRITE;
/*!40000 ALTER TABLE `wp_nf3_forms` DISABLE KEYS */;
INSERT INTO `wp_nf3_forms` VALUES (2,'newsletter',NULL,'2026-01-24 22:56:34','2026-01-24 19:56:34',NULL,NULL,'newsletter','above',_binary '\0',_binary '',_binary '',_binary '\0',NULL);
/*!40000 ALTER TABLE `wp_nf3_forms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_object_meta`
--
DROP TABLE IF EXISTS `wp_nf3_object_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_object_meta` (
`id` int NOT NULL AUTO_INCREMENT,
`parent_id` int NOT NULL,
`key` longtext NOT NULL,
`value` longtext,
`meta_key` longtext,
`meta_value` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_object_meta`
--
LOCK TABLES `wp_nf3_object_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_object_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_nf3_object_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_objects`
--
DROP TABLE IF EXISTS `wp_nf3_objects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_objects` (
`id` int NOT NULL AUTO_INCREMENT,
`type` longtext,
`title` longtext,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`object_title` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_objects`
--
LOCK TABLES `wp_nf3_objects` WRITE;
/*!40000 ALTER TABLE `wp_nf3_objects` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_nf3_objects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_relationships`
--
DROP TABLE IF EXISTS `wp_nf3_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_relationships` (
`id` int NOT NULL AUTO_INCREMENT,
`child_id` int NOT NULL,
`child_type` longtext NOT NULL,
`parent_id` int NOT NULL,
`parent_type` longtext NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_relationships`
--
LOCK TABLES `wp_nf3_relationships` WRITE;
/*!40000 ALTER TABLE `wp_nf3_relationships` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_nf3_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf3_upgrades`
--
DROP TABLE IF EXISTS `wp_nf3_upgrades`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_upgrades` (
`id` int NOT NULL,
`cache` longtext,
`stage` int NOT NULL DEFAULT '0',
`maintenance` bit(1) DEFAULT b'0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf3_upgrades`
--
LOCK TABLES `wp_nf3_upgrades` WRITE;
/*!40000 ALTER TABLE `wp_nf3_upgrades` DISABLE KEYS */;
INSERT INTO `wp_nf3_upgrades` VALUES (2,'a:7:{s:2:\"id\";i:2;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:3:{i:0;a:2:{s:8:\"settings\";a:20:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:3:\"key\";s:19:\"email_1769284723430\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:1;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:17:\"Digite seu e-mail\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";i:1;s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:1:\"7\";}i:1;a:2:{s:8:\"settings\";a:22:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:84:\"Caso continue, entendemos que você está de acordo com nossos termos e condições.\";s:4:\"type\";s:8:\"checkbox\";s:3:\"key\";s:92:\"caso_continue_entendemos_que_voce_esta_de_acordo_com_nossos_termos_e_condicoes_1769284743403\";s:9:\"label_pos\";s:5:\"right\";s:8:\"required\";i:1;s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:11:\"<p><br></p>\";s:9:\"desc_text\";s:11:\"<p><br></p>\";s:13:\"default_value\";s:9:\"unchecked\";s:13:\"checked_value\";s:7:\"Marcado\";s:15:\"unchecked_value\";s:10:\"Desmarcado\";s:18:\"checked_calc_value\";s:0:\"\";s:20:\"unchecked_calc_value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:1:\"8\";}i:2;a:2:{s:8:\"settings\";a:12:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:8:\"Submeter\";s:4:\"type\";s:6:\"submit\";s:16:\"processing_label\";s:11:\"Processando\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:20:\"submit_1769284557581\";s:11:\"admin_label\";s:0:\"\";}s:2:\"id\";s:1:\"5\";}}s:7:\"actions\";a:3:{i:0;a:2:{s:8:\"settings\";a:20:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2026-01-24 19:56:34\";s:5:\"label\";s:19:\"Mensagem de Sucesso\";s:7:\"message\";s:40:\"Seu formulário foi enviado com sucesso.\";s:5:\"order\";s:1:\"1\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:20:\"Envio de Ninja Forms\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:40:\"Seu formulário foi enviado com sucesso.\";}s:2:\"id\";i:5;}i:1;a:2:{s:8:\"settings\";a:18:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2026-01-24 19:56:34\";s:5:\"label\";s:23:\"E-mail do administrador\";s:5:\"order\";s:1:\"2\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:20:\"Envio de Ninja Forms\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}s:2:\"id\";i:6;}i:2;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2026-01-24 19:56:35\";s:5:\"label\";s:17:\"Record Submission\";s:5:\"order\";s:1:\"3\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:20:\"Envio de Ninja Forms\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:40:\"Seu formulário foi enviado com sucesso.\";s:12:\"redirect_url\";s:0:\"\";s:15:\"submitter_email\";s:19:\"email_1769284723430\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:7;}}s:8:\"settings\";a:35:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:10:\"newsletter\";s:10:\"show_title\";i:0;s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:19:\"[ninja_form id=\'2\']\";s:14:\"clear_complete\";i:1;s:13:\"hide_complete\";i:1;s:17:\"default_label_pos\";s:5:\"above\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:24:\"form_title_heading_level\";s:1:\"3\";s:3:\"key\";s:0:\"\";s:10:\"add_submit\";i:0;s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:46:\"Um formulário com este valor já foi enviado.\";s:9:\"logged_in\";b:0;s:17:\"not_logged_in_msg\";s:0:\"\";s:13:\"sub_limit_msg\";s:42:\"O formulário atingiu seu limite de envio.\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:3:{i:0;s:19:\"email_1769284723430\";i:1;s:92:\"caso_continue_entendemos_que_voce_esta_de_acordo_com_nossos_termos_e_condicoes_1769284743403\";i:2;s:20:\"submit_1769284557581\";}s:11:\"public_link\";s:39:\"http://mroculos.local/ninja-forms/25nun\";s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:15:\"public_link_key\";s:5:\"25nun\";s:12:\"objectDomain\";s:7:\"display\";s:14:\"drawerDisabled\";b:0;}s:14:\"deleted_fields\";a:1:{i:6;s:1:\"6\";}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0');
/*!40000 ALTER TABLE `wp_nf3_upgrades` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
`option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=1727 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:15:{i:1773411425;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1773411473;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1773411479;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:1773415021;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1773415125;a:1:{s:32:\"ninja_forms_views_check_rotation\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773416821;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1773418621;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1773451906;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773498256;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:1773498413;a:1:{s:27:\"acf_update_site_health_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1773501463;a:1:{s:22:\"nf_marketing_feed_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1773501525;a:1:{s:26:\"nf_weekly_promotion_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1773584225;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:1774624747;a:1:{s:13:\"nf_optin_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"nf-monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}s:7:\"version\";i:2;}','on');
INSERT INTO `wp_options` VALUES (2,'siteurl','http://mroculos.local','on');
INSERT INTO `wp_options` VALUES (3,'home','http://mroculos.local','on');
INSERT INTO `wp_options` VALUES (4,'blogname','mroculos','on');
INSERT INTO `wp_options` VALUES (5,'blogdescription','','on');
INSERT INTO `wp_options` VALUES (6,'users_can_register','0','on');
INSERT INTO `wp_options` VALUES (7,'admin_email','dev@wicomm.com.br','on');
INSERT INTO `wp_options` VALUES (8,'start_of_week','1','on');
INSERT INTO `wp_options` VALUES (9,'use_balanceTags','0','on');
INSERT INTO `wp_options` VALUES (10,'use_smilies','1','on');
INSERT INTO `wp_options` VALUES (11,'require_name_email','1','on');
INSERT INTO `wp_options` VALUES (12,'comments_notify','1','on');
INSERT INTO `wp_options` VALUES (13,'posts_per_rss','10','on');
INSERT INTO `wp_options` VALUES (14,'rss_use_excerpt','0','on');
INSERT INTO `wp_options` VALUES (15,'mailserver_url','mail.example.com','on');
INSERT INTO `wp_options` VALUES (16,'mailserver_login','login@example.com','on');
INSERT INTO `wp_options` VALUES (17,'mailserver_pass','','on');
INSERT INTO `wp_options` VALUES (18,'mailserver_port','110','on');
INSERT INTO `wp_options` VALUES (19,'default_category','1','on');
INSERT INTO `wp_options` VALUES (20,'default_comment_status','open','on');
INSERT INTO `wp_options` VALUES (21,'default_ping_status','open','on');
INSERT INTO `wp_options` VALUES (22,'default_pingback_flag','1','on');
INSERT INTO `wp_options` VALUES (23,'posts_per_page','10','on');
INSERT INTO `wp_options` VALUES (24,'date_format','F j, Y','on');
INSERT INTO `wp_options` VALUES (25,'time_format','g:i a','on');
INSERT INTO `wp_options` VALUES (26,'links_updated_date_format','F j, Y g:i a','on');
INSERT INTO `wp_options` VALUES (27,'comment_moderation','0','on');
INSERT INTO `wp_options` VALUES (28,'moderation_notify','1','on');
INSERT INTO `wp_options` VALUES (29,'permalink_structure','/%postname%/','on');
INSERT INTO `wp_options` VALUES (30,'rewrite_rules','a:155:{s:29:\"^ninja-forms/([a-zA-Z0-9]+)/?\";s:36:\"index.php?nf_public_link=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:34:\"nf_sub/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"nf_sub/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"nf_sub/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"nf_sub/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"nf_sub/([^/]+)/embed/?$\";s:39:\"index.php?nf_sub=$matches[1]&embed=true\";s:27:\"nf_sub/([^/]+)/trackback/?$\";s:33:\"index.php?nf_sub=$matches[1]&tb=1\";s:35:\"nf_sub/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&paged=$matches[2]\";s:42:\"nf_sub/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&cpage=$matches[2]\";s:31:\"nf_sub/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?nf_sub=$matches[1]&page=$matches[2]\";s:23:\"nf_sub/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"nf_sub/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"nf_sub/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"nf_sub/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"marca/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"marca/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"marca/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"marca/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"marca/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"marca/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"marca/([^/]+)/embed/?$\";s:45:\"index.php?marca_oculos=$matches[1]&embed=true\";s:26:\"marca/([^/]+)/trackback/?$\";s:32:\"index.php?marca=$matches[1]&tb=1\";s:34:\"marca/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?marca_oculos=$matches[1]&paged=$matches[2]\";s:41:\"marca/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?marca=$matches[1]&cpage=$matches[2]\";s:30:\"marca/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?marca=$matches[1]&page=$matches[2]\";s:22:\"marca/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"marca/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"marca/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"marca/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"marca/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"marca/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"oculos/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?tipo_oculos=$matches[1]&feed=$matches[2]\";s:42:\"oculos/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?tipo_oculos=$matches[1]&feed=$matches[2]\";s:23:\"oculos/([^/]+)/embed/?$\";s:44:\"index.php?tipo_oculos=$matches[1]&embed=true\";s:35:\"oculos/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?tipo_oculos=$matches[1]&paged=$matches[2]\";s:17:\"oculos/([^/]+)/?$\";s:33:\"index.php?tipo_oculos=$matches[1]\";s:46:\"marca/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?marca_oculos=$matches[1]&feed=$matches[2]\";s:41:\"marca/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?marca_oculos=$matches[1]&feed=$matches[2]\";s:16:\"marca/([^/]+)/?$\";s:34:\"index.php?marca_oculos=$matches[1]\";s:40:\"nossas_lojas/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"nossas_lojas/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"nossas_lojas/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"nossas_lojas/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"nossas_lojas/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"nossas_lojas/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"nossas_lojas/([^/]+)/embed/?$\";s:45:\"index.php?nossas_lojas=$matches[1]&embed=true\";s:33:\"nossas_lojas/([^/]+)/trackback/?$\";s:39:\"index.php?nossas_lojas=$matches[1]&tb=1\";s:41:\"nossas_lojas/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?nossas_lojas=$matches[1]&paged=$matches[2]\";s:48:\"nossas_lojas/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?nossas_lojas=$matches[1]&cpage=$matches[2]\";s:37:\"nossas_lojas/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?nossas_lojas=$matches[1]&page=$matches[2]\";s:29:\"nossas_lojas/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"nossas_lojas/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"nossas_lojas/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"nossas_lojas/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"nossas_lojas/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"nossas_lojas/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:23:\"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:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=14&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','on');
INSERT INTO `wp_options` VALUES (31,'hack_file','0','on');
INSERT INTO `wp_options` VALUES (32,'blog_charset','UTF-8','on');
INSERT INTO `wp_options` VALUES (33,'moderation_keys','','off');
INSERT INTO `wp_options` VALUES (34,'active_plugins','a:4:{i:0;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:27:\"ninja-forms/ninja-forms.php\";i:3;s:39:\"wp-file-manager/file_folder_manager.php\";}','on');
INSERT INTO `wp_options` VALUES (35,'category_base','','on');
INSERT INTO `wp_options` VALUES (36,'ping_sites','https://rpc.pingomatic.com/','on');
INSERT INTO `wp_options` VALUES (37,'comment_max_links','2','on');
INSERT INTO `wp_options` VALUES (38,'gmt_offset','0','on');
INSERT INTO `wp_options` VALUES (39,'default_email_category','1','on');
INSERT INTO `wp_options` VALUES (40,'recently_edited','a:3:{i:0;s:97:\"C:\\Users\\joaop\\Local Sites\\mroculos\\app\\public/wp-content/themes/mr-oculos-template/functions.php\";i:1;s:93:\"C:\\Users\\joaop\\Local Sites\\mroculos\\app\\public/wp-content/themes/mr-oculos-template/style.css\";i:2;s:0:\"\";}','off');
INSERT INTO `wp_options` VALUES (41,'template','mr-oculos-template','on');
INSERT INTO `wp_options` VALUES (42,'stylesheet','mr-oculos-template','on');
INSERT INTO `wp_options` VALUES (43,'comment_registration','0','on');
INSERT INTO `wp_options` VALUES (44,'html_type','text/html','on');
INSERT INTO `wp_options` VALUES (45,'use_trackback','0','on');
INSERT INTO `wp_options` VALUES (46,'default_role','subscriber','on');
INSERT INTO `wp_options` VALUES (47,'db_version','60717','on');
INSERT INTO `wp_options` VALUES (48,'uploads_use_yearmonth_folders','1','on');
INSERT INTO `wp_options` VALUES (49,'upload_path','','on');
INSERT INTO `wp_options` VALUES (50,'blog_public','1','on');
INSERT INTO `wp_options` VALUES (51,'default_link_category','2','on');
INSERT INTO `wp_options` VALUES (52,'show_on_front','page','on');
INSERT INTO `wp_options` VALUES (53,'tag_base','','on');
INSERT INTO `wp_options` VALUES (54,'show_avatars','1','on');
INSERT INTO `wp_options` VALUES (55,'avatar_rating','G','on');
INSERT INTO `wp_options` VALUES (56,'upload_url_path','','on');
INSERT INTO `wp_options` VALUES (57,'thumbnail_size_w','150','on');
INSERT INTO `wp_options` VALUES (58,'thumbnail_size_h','150','on');
INSERT INTO `wp_options` VALUES (59,'thumbnail_crop','1','on');
INSERT INTO `wp_options` VALUES (60,'medium_size_w','300','on');
INSERT INTO `wp_options` VALUES (61,'medium_size_h','300','on');
INSERT INTO `wp_options` VALUES (62,'avatar_default','mystery','on');
INSERT INTO `wp_options` VALUES (63,'large_size_w','1024','on');
INSERT INTO `wp_options` VALUES (64,'large_size_h','1024','on');
INSERT INTO `wp_options` VALUES (65,'image_default_link_type','none','on');
INSERT INTO `wp_options` VALUES (66,'image_default_size','','on');
INSERT INTO `wp_options` VALUES (67,'image_default_align','','on');
INSERT INTO `wp_options` VALUES (68,'close_comments_for_old_posts','0','on');
INSERT INTO `wp_options` VALUES (69,'close_comments_days_old','14','on');
INSERT INTO `wp_options` VALUES (70,'thread_comments','1','on');
INSERT INTO `wp_options` VALUES (71,'thread_comments_depth','5','on');
INSERT INTO `wp_options` VALUES (72,'page_comments','0','on');
INSERT INTO `wp_options` VALUES (73,'comments_per_page','50','on');
INSERT INTO `wp_options` VALUES (74,'default_comments_page','newest','on');
INSERT INTO `wp_options` VALUES (75,'comment_order','asc','on');
INSERT INTO `wp_options` VALUES (76,'sticky_posts','a:0:{}','on');
INSERT INTO `wp_options` VALUES (77,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (80,'uninstall_plugins','a:1:{s:27:\"ninja-forms/ninja-forms.php\";s:21:\"ninja_forms_uninstall\";}','off');
INSERT INTO `wp_options` VALUES (81,'timezone_string','','on');
INSERT INTO `wp_options` VALUES (82,'page_for_posts','0','on');
INSERT INTO `wp_options` VALUES (83,'page_on_front','14','on');
INSERT INTO `wp_options` VALUES (84,'default_post_format','0','on');
INSERT INTO `wp_options` VALUES (85,'link_manager_enabled','0','on');
INSERT INTO `wp_options` VALUES (86,'finished_splitting_shared_terms','1','on');
INSERT INTO `wp_options` VALUES (87,'site_icon','0','on');
INSERT INTO `wp_options` VALUES (88,'medium_large_size_w','768','on');
INSERT INTO `wp_options` VALUES (89,'medium_large_size_h','0','on');
INSERT INTO `wp_options` VALUES (90,'wp_page_for_privacy_policy','3','on');
INSERT INTO `wp_options` VALUES (91,'show_comments_cookies_opt_in','1','on');
INSERT INTO `wp_options` VALUES (92,'admin_email_lifespan','1784816221','on');
INSERT INTO `wp_options` VALUES (93,'disallowed_keys','','off');
INSERT INTO `wp_options` VALUES (94,'comment_previously_approved','1','on');
INSERT INTO `wp_options` VALUES (95,'auto_plugin_theme_update_emails','a:0:{}','off');
INSERT INTO `wp_options` VALUES (96,'auto_update_core_dev','enabled','on');
INSERT INTO `wp_options` VALUES (97,'auto_update_core_minor','enabled','on');
INSERT INTO `wp_options` VALUES (98,'auto_update_core_major','enabled','on');
INSERT INTO `wp_options` VALUES (99,'wp_force_deactivated_plugins','a:0:{}','on');
INSERT INTO `wp_options` VALUES (100,'wp_attachment_pages_enabled','0','on');
INSERT INTO `wp_options` VALUES (101,'wp_notes_notify','1','on');
INSERT INTO `wp_options` VALUES (102,'initial_db_version','60717','on');
INSERT INTO `wp_options` VALUES (103,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','on');
INSERT INTO `wp_options` VALUES (104,'fresh_site','0','off');
INSERT INTO `wp_options` VALUES (105,'user_count','2','off');
INSERT INTO `wp_options` VALUES (106,'widget_block','a:2:{i:7;a:1:{s:7:\"content\";s:189:\"<!-- wp:search {\"label\":\"Pesquisar\",\"showLabel\":false,\"placeholder\":\"Buscar\",\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Pesquisar\",\"buttonPosition\":\"button-inside\",\"buttonUseIcon\":true} /-->\";}s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (107,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:7:\"block-7\";}s:13:\"array_version\";i:3;}','auto');
INSERT INTO `wp_options` VALUES (108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (110,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (111,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (112,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (113,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (114,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (115,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (116,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (117,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (118,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (119,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (120,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (121,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (126,'recovery_keys','a:0:{}','off');
INSERT INTO `wp_options` VALUES (127,'WPLANG','pt_BR','auto');
INSERT INTO `wp_options` VALUES (140,'can_compress_scripts','0','on');
INSERT INTO `wp_options` VALUES (153,'finished_updating_comment_type','1','auto');
INSERT INTO `wp_options` VALUES (157,'new_admin_email','dev@wicomm.com.br','auto');
INSERT INTO `wp_options` VALUES (168,'recently_activated','a:0:{}','off');
INSERT INTO `wp_options` VALUES (177,'acf_first_activated_version','6.7.0','on');
INSERT INTO `wp_options` VALUES (178,'acf_site_health','{\"version\":\"6.7.0\",\"plugin_type\":\"Free\",\"update_source\":\"wordpress.org\",\"wp_version\":\"6.9.1\",\"mysql_version\":\"5.7.32-35-log\",\"is_multisite\":false,\"active_theme\":{\"name\":\"_s\",\"version\":\"1.0.0\",\"theme_uri\":\"https:\\/\\/underscores.me\\/\",\"stylesheet\":false},\"active_plugins\":{\"advanced-custom-fields\\/acf.php\":{\"name\":\"Advanced Custom Fields\",\"version\":\"6.7.0\",\"plugin_uri\":\"https:\\/\\/www.advancedcustomfields.com\"},\"all-in-one-wp-migration\\/all-in-one-wp-migration.php\":{\"name\":\"All-in-One WP Migration and Backup\",\"version\":\"7.102\",\"plugin_uri\":\"https:\\/\\/servmask.com\\/\"},\"ninja-forms\\/ninja-forms.php\":{\"name\":\"Ninja Forms\",\"version\":\"3.13.4\",\"plugin_uri\":\"http:\\/\\/ninjaforms.com\\/?utm_source=WordPress&utm_medium=readme\"},\"wp-file-manager\\/file_folder_manager.php\":{\"name\":\"WP File Manager\",\"version\":\"8.0.2\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-file-manager\"}},\"ui_field_groups\":\"4\",\"php_field_groups\":\"0\",\"json_field_groups\":\"0\",\"rest_field_groups\":\"0\",\"all_location_rules\":[\"taxonomy==tipo_oculos\",\"page_template==index.php\",\"post_type==nossas_lojas\",\"post_type==oculos\"],\"number_of_fields_by_type\":{\"image\":3,\"text\":6,\"textarea\":2,\"group\":13,\"select\":1,\"true_false\":4,\"url\":2},\"number_of_third_party_fields_by_type\":[],\"post_types_enabled\":true,\"ui_post_types\":\"7\",\"json_post_types\":\"0\",\"ui_taxonomies\":\"6\",\"json_taxonomies\":\"0\",\"rest_api_format\":\"light\",\"admin_ui_enabled\":true,\"field_type-modal_enabled\":true,\"field_settings_tabs_enabled\":false,\"shortcode_enabled\":false,\"registered_acf_forms\":\"0\",\"json_save_paths\":1,\"json_load_paths\":1,\"event_first_activated\":1769264813,\"event_first_created_field_group\":1769352860,\"last_updated\":1772916333}','off');
INSERT INTO `wp_options` VALUES (180,'acf_version','6.7.1','auto');
INSERT INTO `wp_options` VALUES (183,'theme_mods_mr-oculos-template','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:3:{s:11:\"menu-header\";i:2;s:25:\"menu-footer-institucional\";i:3;s:22:\"menu-footer-categorias\";i:9;}s:11:\"custom_logo\";i:217;}','on');
INSERT INTO `wp_options` VALUES (185,'theme_mods_twentytwentyfive','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1769265032;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');
INSERT INTO `wp_options` VALUES (186,'current_theme','_s','auto');
INSERT INTO `wp_options` VALUES (187,'theme_switched','','auto');
INSERT INTO `wp_options` VALUES (193,'site_logo','217','auto');
INSERT INTO `wp_options` VALUES (207,'ninja_forms_oauth_client_secret','HgGapW2bkcD0rUib7hY6dndKCPbBqKghhPwlsodG','auto');
INSERT INTO `wp_options` VALUES (208,'ninja_forms_version','3.14.1','auto');
INSERT INTO `wp_options` VALUES (209,'ninja_forms_db_version','1.4','off');
INSERT INTO `wp_options` VALUES (210,'ninja_forms_required_updates','a:6:{s:19:\"CacheCollateActions\";s:19:\"2026-01-24 15:17:38\";s:17:\"CacheCollateForms\";s:19:\"2026-01-24 15:17:38\";s:18:\"CacheCollateFields\";s:19:\"2026-01-24 15:17:38\";s:19:\"CacheCollateObjects\";s:19:\"2026-01-24 15:17:38\";s:19:\"CacheCollateCleanup\";s:19:\"2026-01-24 15:17:38\";s:25:\"CacheFieldReconcilliation\";s:19:\"2026-01-24 15:17:38\";}','auto');
INSERT INTO `wp_options` VALUES (211,'ninja_forms_settings','a:11:{s:11:\"date_format\";s:5:\"m/d/Y\";s:8:\"currency\";s:3:\"USD\";s:12:\"show_welcome\";i:1;s:18:\"recaptcha_site_key\";s:0:\"\";s:20:\"recaptcha_secret_key\";s:0:\"\";s:20:\"recaptcha_site_key_3\";s:0:\"\";s:22:\"recaptcha_secret_key_3\";s:0:\"\";s:14:\"recaptcha_lang\";s:0:\"\";s:19:\"delete_on_uninstall\";i:0;s:21:\"disable_admin_notices\";i:0;s:16:\"builder_dev_mode\";i:0;}','auto');
INSERT INTO `wp_options` VALUES (212,'ninja_forms_zuul','23','off');
INSERT INTO `wp_options` VALUES (215,'ninja_forms_addons_feed','[{\"title\":\"Multi Step Forms\",\"image\":\"assets\\/img\\/add-ons\\/multi-step-forms.png\",\"content\":\"Build multi step forms in WordPress with progress bars and breadcrumb navigation. \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/multi-step-forms\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Multi+Step+Forms+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-multi-part\\/multi-part.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/multi-step-forms\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Multi+Step+Forms+Add-ons+Docs\",\"version\":\"3.0.27\",\"categories\":[{\"name\":\"Look & Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Front-End Posting\",\"image\":\"assets\\/img\\/add-ons\\/front-end-posting.png\",\"content\":\"Let users publish content just by submitting a form! Completely configurable including post type, title, even categories and tags. Set post status, author, and much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/post-creation\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Front-End+Posting+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-post-creation\\/ninja-forms-post-creation.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/post-creation\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Front-End+Posting+Add-ons+Docs\",\"version\":\"3.0.12\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Submissions Extended\",\"slug\":\"submissions-extended\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Campaign Monitor\",\"image\":\"assets\\/img\\/add-ons\\/campaign-monitor.png\",\"content\":\"Make any form a custom crafted WordPress signup form for Campaign Monitor. Connect to any list, link form fields to list fields, and watch your lists grow!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/campaign-monitor\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Campaign+Monitor+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-campaign-monitor\\/ninja-forms-campaign-monitor.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/campaign-monitor\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Campaign+Monitor+Add-ons+Docs\",\"version\":\"3.0.9\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"User Analytics\",\"image\":\"assets\\/img\\/add-ons\\/user-analytics.png\",\"content\":\"Get better data on where your form traffic is coming from with every submission. Add 10 analytics fields including UTM source, medium, campaign, content, and more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-analytics\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=User+Analytics+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-user-analytics\\/ninja-forms-user-analytics.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-analytics\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=User+Analytics+Add-ons+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Constant Contact\",\"image\":\"assets\\/img\\/add-ons\\/constant-contact.png\",\"content\":\"Connect WordPress to Constant Contact with forms that you can build and design just the way you want, no tech skills required! Subscribe users to any list or interest group.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/constant-contact\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Constant+Contact+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-constant-contact\\/ninja-forms-constant-contact.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/constant-contact\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Constant+Contact+Add-ons+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"AWeber\",\"image\":\"assets\\/img\\/add-ons\\/aweber.png\",\"content\":\"Build your lists faster with easy to design, professional quality WordPress signup forms. No technical skills required. Connect WordPress to AWeber with style!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/aweber\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=AWeber+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-aweber\\/ninja-forms-aweber.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/aweber\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=AWeber+Add-ons+Docs\",\"version\":\"3.2.3\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"PayPal Express\",\"image\":\"assets\\/img\\/add-ons\\/paypal-express.png\",\"content\":\"Set up any form to accept PayPal payments with PayPal Express for WordPress! Base totals on a fixed amount, user entered amount, or a calculated total.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/paypal-express\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=PayPal+Express+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-paypal-express\\/ninja-forms-paypal-express.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/paypal-express\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=PayPal+Express+Add-ons+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"MailPoet\",\"image\":\"assets\\/img\\/add-ons\\/mailpoet.png\",\"content\":\"Say hello better! Customize your MailPoet signup forms to draw more subscribers than ever before. Connect WordPress to any MailPoet list in minutes!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailpoet\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=MailPoet+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-mailpoet\\/nf-mailpoet.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailpoet\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=MailPoet+Add-ons+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Zoho CRM\",\"image\":\"assets\\/img\\/add-ons\\/zoho-crm.png\",\"content\":\"Customize your forms to get the most out of your connection between WordPress and Zoho. Link form fields directly to Zoho fields, custom fields included, from almost any module.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zoho-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Zoho+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-zoho-crm\\/ninja-forms-zoho-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zoho-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Zoho+CRM+Add-ons+Docs\",\"version\":\"3.5.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Capsule CRM\",\"image\":\"assets\\/img\\/add-ons\\/capsule-crm.png\",\"content\":\"Boost conversions from WordPress to Capsule with forms tailor made to your audience. Link form fields to Capsule fields from a wide range of modules. Custom fields too!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/capsule-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Capsule+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-capsule-crm\\/ninja-forms-capsule-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/capsule-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Capsule+CRM+Add-ons+Docs\",\"version\":\"3.4.7\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Insightly CRM\",\"image\":\"assets\\/img\\/add-ons\\/insightly-crm.png\",\"content\":\"Your customer\'s journey begins with your WordPress forms. Send Contacts, Leads, Opportunities, Custom fields and more seamlessly from WordPress to Insightly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/insightly-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Insightly+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-insightly-crm\\/ninja-forms-insightly-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/insightly-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Insightly+CRM+Add-ons+Docs\",\"version\":\"3.2.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Trello\",\"image\":\"assets\\/img\\/add-ons\\/trello.png\",\"content\":\"Create a new Trello card with data from any WordPress form submission. Map fields to card details, assign members and labels, upload images, embed links.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/trello\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Trello+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-trello\\/ninja-forms-trello.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/trello\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Trello+Add-ons+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Elavon\",\"image\":\"assets\\/img\\/add-ons\\/elavon.png\",\"content\":\"Accept credit card payments from any of your WordPress forms. Pass customer and invoice info from any field securely into Elavon with each payment.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/elavon\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Elavon+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-elavon-payment-gateway\\/ninja-forms-elavon-payment-gateway.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/elavon\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Elavon+Add-ons+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Zapier\",\"image\":\"assets\\/img\\/add-ons\\/zapier.png\",\"content\":\"Don\'t see an add-on integration for a service you love? Don\'t worry! Connect WordPress to more than 4,000 different services through Zapier, no code required!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zapier\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Zapier+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-zapier\\/ninja-forms-zapier.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zapier\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Zapier+Add-ons+Docs\",\"version\":\"3.1.0\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Automation\",\"slug\":\"automation\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Salesforce CRM\",\"image\":\"assets\\/img\\/add-ons\\/salesforce-crm.png\",\"content\":\"Easily map any form field to any Salesforce Object or Field. A better connection to your customers begins with a better WordPress form builder!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/salesforce-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Salesforce+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-salesforce-crm\\/ninja-forms-salesforce-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/salesforce-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Salesforce+CRM+Add-ons+Docs\",\"version\":\"3.3.5\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Slack\",\"image\":\"assets\\/img\\/add-ons\\/slack.png\",\"content\":\"Get realtime Slack notifications in the workspace and channel of your choice with any new WordPress form submission. @Mention any team member!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/slack\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Slack+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-slack\\/ninja-forms-slack.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/slack\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Slack+Add-ons+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"CleverReach\",\"image\":\"assets\\/img\\/add-ons\\/cleverreach.png\",\"content\":\"Grow the reach of your email marketing with better CleverReach signup forms. Tailor your forms to your audience with this easy to set up integration!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/cleverreach\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=CleverReach+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-cleverreach\\/ninja-forms-cleverreach.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/cleverreach\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=CleverReach+Add-ons+Docs\",\"version\":\"3.1.9\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Webhooks\",\"image\":\"assets\\/img\\/add-ons\\/webhooks.png\",\"content\":\"Can\'t find a WordPress integration for the service you love? Send WordPress forms data to any external URL using a simple GET or POST request!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webhooks\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Webhooks+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-webhooks\\/ninja-forms-webhooks.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webhooks\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Webhooks+Add-ons+Docs\",\"version\":\"3.0.8\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Automation\",\"slug\":\"automation\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Help Scout\",\"image\":\"assets\\/img\\/add-ons\\/help-scout.png\",\"content\":\"Offering great support is hard. Tailor your WordPress forms to match your customers\' needs with this Help Scout integration for WordPress.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/help-scout\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Help+Scout+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/help-scout\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Help+Scout+Add-ons+Docs\",\"version\":\"3.1.4\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Emma\",\"image\":\"assets\\/img\\/add-ons\\/emma.png\",\"content\":\"Take your email marketing further with handcrafted, easy to build signup forms that connect directly into your Emma account! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emma\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Emma+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-emma\\/ninja-forms-emma.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emma\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Emma+Add-ons+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"ClickSend SMS\",\"image\":\"assets\\/img\\/add-ons\\/clicksend-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/clicksend-sms\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=ClickSend+SMS+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-clicksend\\/ninja-forms-clicksend.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/clicksend-sms\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=ClickSend+SMS+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Twilio SMS\",\"image\":\"assets\\/img\\/add-ons\\/twilio-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/twilio\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Twilio+SMS+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-twilio\\/ninja-forms-twilio.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/twilio\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Twilio+SMS+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"},{\"name\":\"Automation and Integration\",\"slug\":\"automation-and-integration\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Recurly\",\"image\":\"assets\\/img\\/add-ons\\/recurly.png\",\"content\":\"Subscription plans a part of your business model? Let your users subscribe from any WordPress form & make management easier with Recurly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/recurly\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Recurly+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-recurly\\/ninja-forms-recurly.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/recurly\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Recurly+Add-ons+Docs\",\"version\":\"3.0.7\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Save Progress\",\"image\":\"assets\\/img\\/add-ons\\/save-progress.png\",\"content\":\"Let your users save their work and reload it all when they have time to return. Don\'t lose out on valuable submissions for longer forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/save-progress\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Save+Progress+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-save-progress\\/ninja-forms-save-progress.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/save-progress\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Save+Progress+Add-ons+Docs\",\"version\":\"3.0.29\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"EmailOctopus\",\"image\":\"assets\\/img\\/add-ons\\/emailoctopus.png\",\"content\":\"Pair WordPress\' best drag and drop form builder with your EmailOctopus account for incredibly effective signup forms. Easy, complete integration.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emailoctopus\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=EmailOctopus+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-emailoctopus\\/ninja-forms-emailoctopus.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emailoctopus\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=EmailOctopus+Add-ons+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Pipeline CRM\",\"image\":\"assets\\/img\\/add-ons\\/pipelinedeals-crm.png\",\"content\":\"Complete, effortless integration with Pipeline CRM. Increase the flow of leads into your sales pipeline with upgraded lead generation forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pipelinedeals-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Pipeline+CRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-zoho-crm\\/zoho-integration.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pipelinedeals-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Pipeline+CRM+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Kit\",\"image\":\"assets\\/img\\/add-ons\\/convertkit.png\",\"content\":\"Connect WordPress to your Kit (formerly known as ConvertKit) account with completely customizable opt-in forms. Watch your audience & sales grow like never before!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/convertkit\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Kit+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-convertkit\\/ninja-forms-convertkit.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/convertkit\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Kit+Add-ons+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"OnePageCRM\",\"image\":\"assets\\/img\\/add-ons\\/onepage-crm.png\",\"content\":\"Integrate WordPress with OnePage CRM seamlessly through highly customizable WordPress forms. Make better conversions <em>your<\\/em> Next Action!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/onepage-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=OnePageCRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-onepage-crm\\/ninja-forms-onepage-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/onepage-crm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=OnePageCRM+Add-ons+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"ActiveCampaign\",\"image\":\"assets\\/img\\/add-ons\\/active-campaign.png\",\"content\":\"Design custom forms that link perfectly to your ActiveCampaign account for the ultimate in marketing automation. Better leads begin here!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/activecampaign\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=ActiveCampaign+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-active-campaign\\/ninja-forms-active-campaign.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/activecampaign\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=ActiveCampaign+Add-ons+Docs\",\"version\":\"3.1.4\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Agency Membership\",\"image\":\"assets\\/img\\/add-ons\\/ninja-forms-membership-bundle-2.png\",\"content\":\"Get every single Ninja Forms add-ons, at an amazingly discounted price.\",\"link\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Agency+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Agency+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"},{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Personal Membership\",\"image\":\"assets\\/img\\/add-ons\\/individual-membership-2.png\",\"content\":\"Get our most popular add-ons at an amazingly discounted price. Perfect for the single site owner.\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Personal+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Personal+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"},{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Professional Membership\",\"image\":\"assets\\/img\\/add-ons\\/professional-membership-2.png\",\"content\":\"Get our 4 most popular add-ons at an amazingly discounted price. Perfect for your Do It Yourself business owner.\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Professional+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Professional+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"},{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"HubSpot\",\"image\":\"assets\\/img\\/add-ons\\/hubspot-crm.png\",\"content\":\"Looking for an easier way to connect HubSpot with WordPress? Need more flexibility and features for your HubSpot forms? This is your answer.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/hubspot\\/ \\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=HubSpot+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-hubspot\\/ninja-forms-hubspot.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/hubspot\\/ \\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=HubSpot+Add-ons+Docs\",\"version\":\"3.0.10\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Advanced Datepicker\",\"image\":\"assets\\/img\\/add-ons\\/advanced-datepicker.png\",\"content\":\"Let your users book dates and times for appointments and more directly from any WordPress form!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/advanced-datepicker\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Advanced+Datepicker+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-advanced-datepicker\\/ninja-forms-advanced-datepicker-3.2.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/advanced-datepicker\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Advanced+Datepicker+Add-ons+Docs\",\"version\":\"3.3.4\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Authorize.net\",\"image\":\"assets\\/img\\/add-ons\\/authorize-net.png\",\"content\":\"Need a quick, simple way to connect WordPress to Authorize.net? The Authorize.net add-on is your ticket!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/authorize-net\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Authorize.net+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-authorize-net\\/ninja-forms-authorize-net.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/authorize-net\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Authorize.net+Add-ons+Docs\",\"version\":\"3.1.5\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Plus Membership 2022\",\"image\":\"assets\\/img\\/add-ons\\/plus-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Plus+Membership+2022+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Plus+Membership+2022+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Pro Membership 2022\",\"image\":\"assets\\/img\\/add-ons\\/pro-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Pro+Membership+2022+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Pro+Membership+2022+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Elite Membership 2022\",\"image\":\"assets\\/img\\/add-ons\\/elite-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Elite+Membership+2022+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Elite+Membership+2022+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Scheduled Submissions Export\",\"image\":\"assets\\/img\\/add-ons\\/scheduled-submissions-export.png\",\"content\":\"Use Scheduled Submissions Export to set hourly, daily, or weekly exports of any WordPress form submissions to any email address(es)!\",\"link\":\" https:\\/\\/ninjaforms.com\\/extensions\\/scheduled-submissions-export\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Scheduled+Submissions+Export+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-scheduled-exports\\/ninja-forms-scheduled-exports.php\",\"docs\":\" https:\\/\\/ninjaforms.com\\/docs\\/scheduled-submissions-export\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Scheduled+Submissions+Export+Add-ons+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Submissions Extended\",\"slug\":\"submissions-extended\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"CiviCRM\",\"image\":\"assets\\/img\\/add-ons\\/civicrm.png\",\"content\":\"Connect & update your CiviCRM account from any WordPress form with the Ninja Forms CiviCRM add-on. Easily add or update Contacts & Activities!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/civicrm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=CiviCRM+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-civicrm\\/ninja-forms-civicrm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/civicrm\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=CiviCRM+Add-ons+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"CRMs\",\"slug\":\"crms\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"File Uploads\",\"image\":\"assets\\/img\\/add-ons\\/file-uploads.png\",\"content\":\"Add file upload fields to any WordPress form. Accept any file type, set size limits, and store files in your Media Library, Google Drive, Dropbox, or Amazon S3.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/file-uploads\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=File+Uploads+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-uploads\\/file-uploads.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/file-uploads\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=File+Uploads+Add-ons+Docs\",\"version\":\"3.3.26\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Layout and Styles\",\"image\":\"assets\\/img\\/add-ons\\/layout-styles.png\",\"content\":\"Edit form styles. Create two-column and multicolumn forms and easily adjust form layout. You don\'t need a designer \\u2014 just Layout and Styles! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/layouts-and-styles\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Layout+and+Styles+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-style\\/ninja-forms-style.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/layouts-and-styles\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Layout+and+Styles+Add-ons+Docs\",\"version\":\"3.0.31\",\"categories\":[{\"name\":\"Look & Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Conditional Logic\",\"image\":\"assets\\/img\\/add-ons\\/conditional-logic.png\",\"content\":\"Conditional Logic forms change as they\'re filled out. Show and hide fields, modify lists, send emails to different recipients conditionally, and much more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/conditional-logic\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Conditional+Logic+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-conditionals\\/conditionals.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/conditional-logic\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Conditional+Logic+Add-ons+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Look & Feel\",\"slug\":\"look-feel\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"PDF Form Submission\",\"image\":\"assets\\/img\\/add-ons\\/pdf-form-submission.png\",\"content\":\"Generate professional PDFs from any WordPress form submission. Design custom templates, create fillable PDF documents, attach PDFs to emails, and export past submissions on demand.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pdf\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=PDF+Form+Submission+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-pdf-submissions\\/nf-pdf-submissions.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pdf\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=PDF+Form+Submission+Add-ons+Docs\",\"version\":\"3.2.6\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Submissions Extended\",\"slug\":\"submissions-extended\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Elite Membership\",\"image\":\"assets\\/img\\/add-ons\\/elite-membership-2.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Elite+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Elite+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"}]},{\"title\":\"Pro Membership\",\"image\":\"assets\\/img\\/add-ons\\/pro-membership-2.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Pro+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Pro+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"}]},{\"title\":\"Plus Membership\",\"image\":\"assets\\/img\\/add-ons\\/plus-membership-2.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Plus+Membership+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Plus+Membership+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":\"Member Bundle\",\"slug\":\"member-bundle\"}]},{\"title\":\"Legacy (Agency 2015 - Upgrade Only)\",\"image\":\"assets\\/img\\/add-ons\\/legacy-agency-2015-upgrade-only.png\",\"content\":\"\",\"link\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Legacy+(Agency+2015+-+Upgrade+Only)+Add-ons+Product+Page\",\"plugin\":\"\",\"docs\":\"\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Legacy+(Agency+2015+-+Upgrade+Only)+Add-ons+Docs\",\"version\":\"\",\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"User Management\",\"image\":\"assets\\/img\\/add-ons\\/user-management.png\",\"content\":\"Add user registration forms, login pages, and profile management to your WordPress site with custom role assignment.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-management\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=User+Management+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-user-management\\/ninja-forms-user-management.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-management\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=User+Management+Add-ons+Docs\",\"version\":\"3.2.4\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Advanced Functionality\",\"slug\":\"advanced-functionality\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Advanced Form Features\",\"slug\":\"advanced-form-features\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Mailchimp\",\"image\":\"assets\\/img\\/add-ons\\/mailchimp.png\",\"content\":\"Take your email marketing to the next level when you add a Mailchimp signup form to WordPress! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailchimp\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Mailchimp+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-mail-chimp\\/ninja-forms-mail-chimp.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailchimp\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Mailchimp+Add-ons+Docs\",\"version\":\"3.3.7\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Stripe\",\"image\":\"assets\\/img\\/add-ons\\/stripe.png\",\"content\":\"Accept Stripe payments on your WordPress forms with credit cards, Apple Pay, Google Pay, ACH, and recurring billing.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/stripe\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Stripe+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-stripe\\/ninja-forms-stripe.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/stripe\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Stripe+Add-ons+Docs\",\"version\":\"3.2.8\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"Excel Export\",\"image\":\"assets\\/img\\/add-ons\\/excel-export.png\",\"content\":\"Exporting form submissions into Excel is smooth and simple with Excel Export. Choose the fields you want and export your data to the reliable Excel spreadsheet file format.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/excel-export\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=Excel+Export+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-excel-export\\/ninja-forms-excel-export.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/excel-export\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=Excel+Export+Add-ons+Docs\",\"version\":\"3.3.5\",\"categories\":[{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Submissions Extended\",\"slug\":\"submissions-extended\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]},{\"title\":\"PayPal\",\"image\":\"assets\\/img\\/add-ons\\/paypal-checkout.png\",\"content\":\"Accept PayPal, credit cards, Apple Pay, Google Pay, Venmo, and more on your WordPress forms. \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/paypal-checkout\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Product+Page&utm_content=PayPal+Add-ons+Product+Page\",\"plugin\":\"ninja-forms-paypal\\/ninja-forms-paypal.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/paypal-checkout\\/?utm_source=Ninja+Forms+Plugin&utm_medium=Add-ons&utm_campaign=Add-ons+Docs&utm_content=PayPal+Add-ons+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Accept Payments\",\"slug\":\"accept-payments\"},{\"name\":\"Memberships 2023\",\"slug\":\"memberships-2023\"},{\"name\":\"Plus 2023\",\"slug\":\"plus-2023\"},{\"name\":\"Pro 2023\",\"slug\":\"pro-2023\"},{\"name\":\"Elite 2023\",\"slug\":\"elite-2023\"},{\"name\":\"Legacy Agency 2015\",\"slug\":\"legacy-agency-2015\"}]}]','off');
INSERT INTO `wp_options` VALUES (218,'widget_ninja_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto');
INSERT INTO `wp_options` VALUES (222,'ninja_forms_needs_updates','0','auto');
INSERT INTO `wp_options` VALUES (223,'nf_admin_notice','a:1:{s:16:\"one_week_support\";a:3:{s:5:\"start\";s:9:\"1/24/2026\";s:3:\"int\";i:0;s:9:\"dismissed\";i:1;}}','auto');
INSERT INTO `wp_options` VALUES (224,'nf_active_promotions','{\"dashboard\":[{\"id\":\"sendwp-banner\",\"location\":\"dashboard\",\"content\":\"<span aria-label=\\\"SendWP. Getting WordPress email into an inbox shouldn\'t be that hard! Never miss another receipt, form submission, or any WordPress email ever again.\\\" style=\\\"cursor:pointer;width:800px;height:83px;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;background-image:url(\'http:\\/\\/mroculos.local\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-sendwp.png\');display:block;\\\"><\\/span>\",\"type\":\"sendwp\",\"script\":\"\\n\\t\\t\\t\\tsetTimeout(function(){ \\/* Wait for services to init. *\\/\\n\\t\\t\\t\\t\\tvar data = {\\n\\t\\t\\t\\t\\t\\twidth: 450,\\n\\t\\t\\t\\t\\t\\tcloseOnClick: \'body\',\\n\\t\\t\\t\\t\\t\\tcloseOnEsc: true,\\n\\t\\t\\t\\t\\t\\tcontent: \'<p><h2>Frustrated that WordPress email isn\\u2019t being received?<\\/h2><p>Form submission notifications not hitting your inbox? Some of your visitors getting form feedback via email, others not? By default, your WordPress site sends emails through your web host, which can be unreliable. Your host has spent lots of time and money optimizing to serve your pages, not send your emails.<\\/p><h3>Sign up for SendWP today, and never deal with WordPress email issues again!<\\/h3><p>SendWP is an email service that removes your web host from the email equation.<\\/p><ul style="list-style-type:initial;margin-left: 20px;"><li>Sends email through dedicated email service, increasing email deliverability.<\\/li><li>Keeps form submission emails out of spam by using a trusted email provider.<\\/li><li>On a shared web host? Don\\u2019t worry about emails being rejected because of blocked IP addresses.<\\/li><li><strong>$1 for the first month. $9\\/month after. Cancel anytime!<\\/strong><\\/li><\\/ul><\\/p><br \\/>\',\\n\\t\\t\\t\\t\\t\\tbtnPrimary: {\\n\\t\\t\\t\\t\\t\\t\\ttext: \'Sign me up!\',\\n\\t\\t\\t\\t\\t\\t\\tcallback: function() {\\n\\t\\t\\t\\t\\t\\t\\t\\tvar spinner = document.createElement(\'span\');\\n\\t\\t\\t\\t\\t\\t\\t\\tspinner.classList.add(\'dashicons\', \'dashicons-update\', \'dashicons-update-spin\');\\n\\t\\t\\t\\t\\t\\t\\t\\tvar w = this.offsetWidth;\\n\\t\\t\\t\\t\\t\\t\\t\\tthis.innerHTML = spinner.outerHTML;\\n\\t\\t\\t\\t\\t\\t\\t\\tthis.style.width = w+\'px\';\\n\\t\\t\\t\\t\\t\\t\\t\\tninja_forms_sendwp_remote_install();\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tbtnSecondary: {\\n\\t\\t\\t\\t\\t\\t\\ttext: \'Cancel\',\\n\\t\\t\\t\\t\\t\\t\\tcallback: function() {\\n\\t\\t\\t\\t\\t\\t\\t\\tsendwpModal.toggleModal(false);\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar sendwpModal = new NinjaModal(data);\\n\\t\\t\\t\\t}, 500);\\n\\t\\t\\t\"}]}','off');
INSERT INTO `wp_options` VALUES (226,'ninja_forms_optin_reported','1','auto');
INSERT INTO `wp_options` VALUES (227,'ninja_forms_optin_email_recovered','1','auto');
INSERT INTO `wp_options` VALUES (228,'category_children','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (239,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off');
INSERT INTO `wp_options` VALUES (245,'ninja_forms_do_not_allow_tracking','1','auto');
INSERT INTO `wp_options` VALUES (252,'nf_sub_expiration','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (272,'ninja-forms-views-secret','b3dfde43e1003c0131742ba083b9546f974ca9af51fefefe67ec394615284266eb347e35cba0495978e1d321236e76b865c40c653ee38747f1712a4bf549c7e2','on');
INSERT INTO `wp_options` VALUES (273,'ninja-forms-views-secret-rotation-date','1769352579','on');
INSERT INTO `wp_options` VALUES (461,'recovery_mode_email_last_sent','1769645918','auto');
INSERT INTO `wp_options` VALUES (590,'marca_oculos_children','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (591,'genero_oculos_children','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (693,'ai1wm_backups_path','C:\\Users\\joaop\\Local Sites\\mroculos\\app\\public/wp-content\\ai1wm-backups','auto');
INSERT INTO `wp_options` VALUES (699,'swift_performance_plugin_organizer','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (700,'jetpack_active_modules','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (706,'ai1wm_updater','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (794,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:17:\"dev@wicomm.com.br\";s:7:\"version\";s:5:\"6.9.4\";s:9:\"timestamp\";i:1773256819;}','off');
INSERT INTO `wp_options` VALUES (911,'tipo_oculos_children','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (1158,'fm_key','ec2xJHuq3ziRFkwroKnvCQh0l','auto');
INSERT INTO `wp_options` VALUES (1584,'filemanager_email_verified_1','yes','auto');
INSERT INTO `wp_options` VALUES (1613,'ai1wm_secret_key','f45MHXh5eo5U','auto');
INSERT INTO `wp_options` VALUES (1614,'ai1wm_backups_labels','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (1615,'ai1wm_sites_links','a:0:{}','auto');
INSERT INTO `wp_options` VALUES (1616,'_site_transient_timeout_wp_theme_files_patterns-6c159e8626e2e300112a43866020a8f7','1773334709','off');
INSERT INTO `wp_options` VALUES (1618,'_site_transient_wp_theme_files_patterns-6c159e8626e2e300112a43866020a8f7','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off');
INSERT INTO `wp_options` VALUES (1620,'ai1wm_status','a:3:{s:4:\"type\";s:4:\"done\";s:5:\"title\";s:35:\"Seu site foi importado com sucesso!\";s:7:\"message\";s:501:\"» <a class=\"ai1wm-no-underline\" href=\"http://mroculos.local/wp-admin/options-permalink.php#submit\" target=\"_blank\">Salve a estrutura de links permanentes</a><br />\n » <a class=\"ai1wm-no-underline\" href=\"https://wordpress.org/support/view/plugin-reviews/all-in-one-wp-migration?rate=5#postform\" target=\"_blank\">Avalie a sua experiência de migração</a><br />\n » <a class=\"ai1wm-no-underline\" href=\"https://servmask.com/protect\" target=\"_blank\">Proteja o seu site de ameças em tempo real</a>\";}','auto');
INSERT INTO `wp_options` VALUES (1623,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.9.4\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}','on');
INSERT INTO `wp_options` VALUES (1624,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"a4822b6e42e21308a60d21aa7627a383\";s:6:\"blocks\";a:6:{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:18:\"core/term-template\";s:120:\":where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-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');
INSERT INTO `wp_options` VALUES (1631,'_site_transient_ai1wm_last_check_for_updates','1773404431','off');
INSERT INTO `wp_options` VALUES (1635,'_site_transient_timeout_browser_7c73ef5b8d3235ae0606f2e84e457ff5','1773938788','off');
INSERT INTO `wp_options` VALUES (1636,'_site_transient_browser_7c73ef5b8d3235ae0606f2e84e457ff5','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"145.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off');
INSERT INTO `wp_options` VALUES (1637,'_site_transient_timeout_php_check_617fc4d260191bf0de418d0d961f5a43','1773938789','off');
INSERT INTO `wp_options` VALUES (1638,'_site_transient_php_check_617fc4d260191bf0de418d0d961f5a43','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off');
INSERT INTO `wp_options` VALUES (1639,'_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e','1773451626','off');
INSERT INTO `wp_options` VALUES (1640,'_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:0:{}}','off');
INSERT INTO `wp_options` VALUES (1643,'_site_transient_timeout_feed_mod_b85365aa61afaf3d4189819a6f57c4c4','1773449878','off');
INSERT INTO `wp_options` VALUES (1644,'_site_transient_feed_mod_b85365aa61afaf3d4189819a6f57c4c4','1773406678','off');
INSERT INTO `wp_options` VALUES (1647,'_site_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1773449880','off');
INSERT INTO `wp_options` VALUES (1648,'_site_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1773406680','off');
INSERT INTO `wp_options` VALUES (1702,'_site_transient_timeout_available_translations','1773417468','off');
INSERT INTO `wp_options` VALUES (1703,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:6:\"6.0.11\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.0.11/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.8\";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.8/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.27\";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.27/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.9.4\";s:7:\"updated\";s:19:\"2026-03-06 11:31:14\";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.9.4/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.8\";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.8/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.28\";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.28/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.9.4\";s:7:\"updated\";s:19:\"2026-03-02 09:00:09\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-02-07 06:54:04\";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.9.4/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.9\";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.9/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.9.4\";s:7:\"updated\";s:19:\"2026-03-06 07:54:57\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-03-09 10:52:02\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-02-20 11:38:29\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-03-06 10:11:50\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2025-10-23 12:01:47\";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.9.4/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-13 08:50:48\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-03-13 08:52:19\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.9.4/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-11-28 08:11:27\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2025-11-28 08:08:17\";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.9.4/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.9\";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.9/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.9.4\";s:7:\"updated\";s:19:\"2026-02-02 11:19:29\";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.9.4/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-19 14:29:55\";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.9.4/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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-18 19:42:42\";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.9.4/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-11-25 13:30:15\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2025-12-24 12:51:19\";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.9.4/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-12-30 11:47:57\";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.9.4/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-01-27 10:24:57\";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.9.4/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-10 15:51:08\";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.9.4/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_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-11 00:33:09\";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.9.4/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-18 00:34:47\";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.9.4/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-03 16:11:04\";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.9.4/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-22 20:34:00\";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.9.4/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-10-01 22:54:47\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:6:\"6.9-RC\";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:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.8\";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.8/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.9\";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.9/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.13\";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.13/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.19\";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.19/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.23\";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.23/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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.7\";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.7/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-11-05 21:53:17\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9-RC/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2025-12-25 18:17:43\";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.9.4/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:6:\"6.9-RC\";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:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-03 18:15:59\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2025-10-03 04:54:28\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-03-12 14:39:00\";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.9.4/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.8\";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.8/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.27\";s:7:\"updated\";s:19:\"2025-12-20 19:08:53\";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.27/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.9\";s:7:\"updated\";s:19:\"2025-10-21 16:35:04\";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.9/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.9.4\";s:7:\"updated\";s:19:\"2026-02-01 13:15:26\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2025-12-09 11:14:55\";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.9.4/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.9\";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.9/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.8\";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.8/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.9.4\";s:7:\"updated\";s:19:\"2026-01-31 09:13:17\";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.9.4/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.9\";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.9/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.9.4\";s:7:\"updated\";s:19:\"2026-01-26 09:03:23\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-03-11 02:15:15\";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.9.4/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.28\";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.28/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.9.4\";s:7:\"updated\";s:19:\"2026-02-01 12:46:02\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-02-27 13:52:52\";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.9.4/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.28\";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.28/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.9.4\";s:7:\"updated\";s:19:\"2026-03-02 09:43:27\";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.9.4/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.9\";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.9/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"6.9-RC\";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:62:\"https://downloads.wordpress.org/translation/core/6.9-RC/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.23\";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.23/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.9.4\";s:7:\"updated\";s:19:\"2026-02-02 11:49:59\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-03-11 06:24:47\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-03-05 12:45:20\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-01-01 21:45:29\";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.9.4/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:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-23 01:10:05\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.9.4/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-09-27 20:51:17\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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.9.4\";s:7:\"updated\";s:19:\"2026-02-20 20:55:46\";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.9.4/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:6:\"6.0.11\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.0.11/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.9.4\";s:7:\"updated\";s:19:\"2026-03-08 15:09:22\";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.9.4/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.8\";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.8/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.9.4\";s:7:\"updated\";s:19:\"2026-02-25 15:07:24\";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.9.4/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.18\";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.18/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.9.4\";s:7:\"updated\";s:19:\"2026-03-03 15:03:26\";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.9.4/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-11-07 08:26:32\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-06 07:16:45\";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.9.4/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-03-05 08:59: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.9.4/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-01-29 08:00:04\";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.9.4/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.27\";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.27/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.9.4\";s:7:\"updated\";s:19:\"2026-03-07 22:09:59\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2025-12-02 18:21:27\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-02-04 09:12:12\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-02-04 09:13:24\";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.9.4/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.8\";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.8/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.9.4\";s:7:\"updated\";s:19:\"2026-01-29 12:52:48\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-03-12 17:58:15\";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.9.4/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.19\";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.19/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.9.4\";s:7:\"updated\";s:19:\"2026-02-25 08:52:18\";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.9.4/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:6:\"6.9-RC\";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:63:\"https://downloads.wordpress.org/translation/core/6.9-RC/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.9.4\";s:7:\"updated\";s:19:\"2025-10-29 11:19:02\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-02-14 20:39:21\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2025-12-03 15:37:44\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-01-29 08:15:39\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-02-21 11:17:30\";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.9.4/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.13\";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.13/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.9.4\";s:7:\"updated\";s:19:\"2026-02-26 04:01:56\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-03-10 21:54:48\";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.9.4/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.9.4\";s:7:\"updated\";s:19:\"2026-01-29 23:09:01\";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.9.4/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.19\";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.19/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.9.4\";s:7:\"updated\";s:19:\"2026-03-12 01:26:30\";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.9.4/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-01-06 20:16:48\";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.9.4/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.9\";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.9/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.9.4\";s:7:\"updated\";s:19:\"2026-02-11 16:22:59\";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.9.4/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:\"繼續\";}}}','off');
INSERT INTO `wp_options` VALUES (1704,'_site_transient_timeout_php_check_0fbbe329bc0ccd676924cb4c767b781d','1774011475','off');
INSERT INTO `wp_options` VALUES (1705,'_site_transient_php_check_0fbbe329bc0ccd676924cb4c767b781d','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off');
INSERT INTO `wp_options` VALUES (1706,'_site_transient_timeout_feed_b85365aa61afaf3d4189819a6f57c4c4','1773449878','off');
INSERT INTO `wp_options` VALUES (1707,'_site_transient_feed_b85365aa61afaf3d4189819a6f57c4c4','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:29:\"Blog – WordPress.org Brasil\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://br.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:\"Thu, 12 Mar 2026 16:19:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"pt-BR\";s: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=7.0-beta5-62000\";s:7:\"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:29:\"Blog – WordPress.org Brasil\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://br.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: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:20:\"WordPress 7.0 Beta 5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://br.wordpress.org/2026/03/12/wordpress-7-0-beta-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://br.wordpress.org/2026/03/12/wordpress-7-0-beta-5/#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:\"Thu, 12 Mar 2026 16:19:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:12:\"Lançamentos\";s: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:\"7.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3446\";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:332:\"O WordPress 7.0 Beta 5 já está pronto para baixar e testar! Esta versão do software WordPress ainda está em desenvolvimento. Não instale, execute ou teste esta versão do WordPress em sites de produção ou de missão crítica. Em vez disso, recomenda-se testar o Beta 5 em um servidor e sites de teste. WordPress 7.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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Andre\";s: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:6941:\"\n<p class=\"wp-block-paragraph\">O WordPress 7.0 Beta 5 já está pronto para baixar e testar!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Esta versão do software WordPress ainda está em desenvolvimento</strong>. Não instale, execute ou teste esta versão do WordPress em sites de produção ou de missão crítica. Em vez disso, recomenda-se testar o Beta 5 em um servidor e sites de teste.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 5 pode ser testado usando qualquer um dos seguintes métodos:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Instale e ative o plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> em uma instalação do WordPress. (Selecione o canal “Bleeding edge” e “Beta/RC Only” stream.)</td></tr><tr><td><strong>Baixe diretamente</strong></td><td>Baixe a <a href=\"https://wordpress.org/wordpress-7.0-beta5.zip\">versão Beta 5 (zip)</a> e instale-a em um site WordPress.</td></tr><tr><td><strong>Linha de Comando</strong></td><td>Use este comando do <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a>:<br><code>wp core update --version=7.0-beta</code>5</td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use uma <a href=\"https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn\">instância do WordPress Playground</a> para testar o software diretamente no seu navegador. Nenhuma configuração é necessária, basta clicar e testar!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">A data de lançamento final programada para o WordPress 7.0 ainda é <strong>9 de abril de 2026</strong>. O <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">cronograma de lançamento</a> completo pode ser encontrado <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">aqui</a>. Sua ajuda para testar versões Beta e RC é vital para tornar esta versão o mais estável e poderosa possível. Agradecemos a todos que ajudam com os testes!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Continue acompanhando o <a href=\"https://make.wordpress.org/core/\">blog Make WordPress Core</a> para <a href=\"https://make.wordpress.org/core/tag/7-0\">posts relacionados a versão 7.0</a> nas próximas semanas para obter mais informações.</p>\n\n\n\n<h2 class=\"wp-block-heading\">O que há de novo no WordPress 7.0?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Confira os anúncios das versões <a href=\"https://br.wordpress.org/2026/02/20/wordpress-7-0-beta-1/\">Beta 1</a>, <a href=\"https://br.wordpress.org/2026/02/26/wordpress-7-0-beta-2/\">Beta 2</a>, <a href=\"https://br.wordpress.org/2026/03/05/wordpress-7-0-beta-3/\">Beta 3</a> e <a href=\"https://br.wordpress.org/2026/03/10/wordpress-6-9-3-e-7-0-beta-4/\">Beta 4</a> para detalhes e destaques.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Como testar esta versão</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Sua ajuda testando o WordPress 7.0 Beta 5 é fundamental para garantir que tudo na versão seja o melhor possível. Embora testar o processo de atualização seja essencial, experimentar novos recursos é igualmente importante. Este <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">guia sobre o que testar no WordPress 7</a> irá guiá-lo através de recursos de teste na versão 7.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Se você encontrar um problema, compartilhe-o na <a href=\"https://wordpress.org/support/forum/alphabeta/\">área Alpha/Beta</a> dos fóruns de suporte ou diretamente <a href=\"https://core.trac.wordpress.org/newticket\">para o WordPress Trac</a>, se você estiver confortável escrevendo um relatório de erros reproduzível. Você também pode verificar seu problema em uma lista de <a href=\"https://core.trac.wordpress.org/tickets/major\">erros conhecidos</a>. Curioso sobre os lançamentos de testes em geral? Acompanhe as <a href=\"https://make.wordpress.org/test/\">iniciativas de teste no Make Core</a> e junte-se ao <a href=\"https://wordpress.slack.com/messages/core-test/\">canal #core-test</a> no <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Atualizações e destaques da versão Beta 5</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 7.0 Beta 5 contém mais de 101 atualizações e correções desde a versão do Beta 3.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Cada ciclo beta se concentra em correções de erros, e mais estão a caminho com sua ajuda através de testes. Você pode navegar pelos detalhes técnicos para todas as questões abordadas desde o Beta 3 usando esses links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-05&until=2026-03-12\">Tíquetes do GitHub</a> desde 5 de março de 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=03%2F05%2F2026..03%2F12%2F2026&milestone=7.0&group=component&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Tíquetes fechados do Trac</a> desde 5 de março de 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Questões abordadas desde Beta 4:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-10&until=2026-03-12\">Tíquetes do GitHub</a> desde 10 de março de 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=03%2F10%2F2026..03%2F12%2F2026&milestone=7.0&group=component&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Tíquetes fechados do Trac</a> desde 10 de março de 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WordPress 7.0 Beta 5 contém um novo recurso!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Acesse instantaneamente todas as ferramentas que você precisa com um único clique usando o <strong>novo atalho de Paleta de Comando</strong>! Na versão 7.0 Beta 5, os editores logados verão um campo com um símbolo <code>⌘K</code> ou <code>Ctrl+K</code> na barra de administração superior que abre a paleta de comandos quando clicado. O novo ponto de entrada da paleta de comandos simplifica a navegação e a personalização, dando-lhe controle total de qualquer lugar do seu site, seja você editando, projetando ou apenas navegando em plugins.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Agradecemos a <a href=\"https://profiles.wordpress.org/amykamala/\">@amykamala</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">@annezazu</a> e <a href=\"https://profiles.wordpress.org/4thhubbard/\">@4thhubbard</a> para colaboração no <a href=\"https://wordpress.org/news/2026/03/wordpress-7-0-beta-5/\">post original</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://br.wordpress.org/2026/03/12/wordpress-7-0-beta-5/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:4:\"3446\";s: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:47:\"WordPress 6.9.4 – Atualização de seguranç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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://br.wordpress.org/2026/03/11/wordpress-6-9-4-atualizacao-de-seguranca/\";s: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, 11 Mar 2026 16:01:32 +0000\";s: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:12:\"Lançamentos\";s: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:\"6.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3442\";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:\"WordPress 6.9.4 já está disponível! O WordPress 6.9.2 e o WordPress 6.9.3 foram lançados ontem, abordando 10 problemas de segurança e um erro que afetou o carregamento de arquivos de modelo em um número limitado de sites. A equipe de segurança do WordPress descobriu que nem todas as correções de segurança foram totalmente aplicadas, portanto, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Andre\";s: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:2514:\"\n<h2 class=\"wp-block-heading\">WordPress 6.9.4 já está disponível!</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://br.wordpress.org/2026/03/10/o-wordpress-6-9-2-atualizacao-de-seguranca/\">O WordPress 6.9.2</a> e o <a href=\"https://br.wordpress.org/2026/03/10/wordpress-6-9-3-e-7-0-beta-4/\">WordPress 6.9.3</a> foram lançados ontem, abordando 10 problemas de segurança e um erro que afetou o carregamento de arquivos de modelo em um número limitado de sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A equipe de segurança do WordPress descobriu que nem todas as correções de segurança foram totalmente aplicadas, portanto, a versão 6.9.4 foi lançada contendo as correções adicionais necessárias.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Como este é um lançamento de segurança, <strong>é recomendável que você atualize seus sites imediatamente</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Você pode <a href=\"https://wordpress.org/wordpress-6.9.4.zip\">baixar o WordPress 6.9.4 do WordPress.org</a> ou visitar seu Painel do WordPress, clicar em “Atualizações” e, em seguida, clicar em “Atualizar agora”. Se você tiver sites que suportam atualizações automáticas em segundo plano, o processo de atualização começará automaticamente.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Para mais informações sobre o WordPress 6.9.4, visite a <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-4/\">página de versão no site do HelpHub</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Atualizações de segurança incluídas nesta versão</h2>\n\n\n\n<p class=\"wp-block-paragraph\">A equipe de segurança gostaria de agradecer aos contribuidores que relataram e investigaram estas questões, em particular a <a href=\"https://profiles.wordpress.org/kraftner\">Thomas Kräftner</a> por sua divulgação responsável. Os problemas de segurança que são resolvidos na versão 6.9.4 são:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Um problema de travessia de diretórios do PclZip relatado de forma independente por <a href=\"https://profiles.wordpress.org/francescocarlucci/\">Francesco Carlucci</a> e <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>Um desvio de autorização no recurso Notas relatado pelo <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>Um problema de XXE na biblioteca externa getID3 relatada por <a href=\"https://profiles.wordpress.org/regex33/\">Youssef Achtatal</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"></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:4:\"3442\";s: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:28:\"WordPress 6.9.3 e 7.0 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://br.wordpress.org/2026/03/10/wordpress-6-9-3-e-7-0-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Mar 2026 00:32: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:3:{i:0;a:5:{s:4:\"data\";s:12:\"Lançamentos\";s: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:\"6.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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"7.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3438\";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:\"O WordPress 6.9.2 foi lançado hoje cedo e abordou 10 problemas de segurança. Alguns usuários relataram posteriormente um problema em que o frontend do site estava aparecendo em branco após a atualização para a versão 6.9.2. O problema foi identificado em alguns temas que usam uma abordagem incomum para carregar arquivos de modelo por meio […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Andre\";s: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:5019:\"\n<p class=\"wp-block-paragraph\"><a href=\"https://br.wordpress.org/2026/03/10/o-wordpress-6-9-2-atualizacao-de-seguranca/\">O WordPress 6.9.2 foi lançado hoje cedo</a> e abordou 10 problemas de segurança.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Alguns usuários relataram posteriormente um problema em que o frontend do site estava aparecendo em branco após a atualização para a versão 6.9.2. O problema foi identificado em alguns temas que usam uma abordagem incomum para carregar arquivos de modelo por meio de “stringable objects” em vez de strings primitivas para caminhos de arquivo.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Embora esta não seja uma abordagem oficialmente suportada para carregar arquivos de modelo no WordPress (o filtro <code>template_include</code> só aceita uma string), no entanto, fez com que alguns sites tivessem este comportamento. Como resultado, a equipe de segurança decidiu resolver o problema em uma versão 6.9.3.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Como sempre, <strong>é recomendável que você atualize seus sites para a versão mais recente do WordPress imediatamente.</strong> Isso garante que seu site esteja protegido por todas as correções de segurança disponíveis na versão 6.9.2 e que você não será afetado pelo erro corrigido na versão 6.9.3.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Agradecemos aqueles que relataram, ajudaram a reproduzir e a resolver o problema.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Você pode <a href=\"https://wordpress.org/wordpress-6.9.3.zip\">baixar o WordPress 6.9.3 no WordPress.org</a> ou visitar seu Painel do WordPress, clicar em “Atualizações” e, em seguida, clicar em “Atualizar agora”. Se você tiver sites que suportam atualizações automáticas em segundo plano, o processo de atualização começará em breve. Você não precisa fazer nada!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Para mais informações sobre o <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-3/\">WordPress 6.9.3</a>, visite a <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-3/\">página da versão no site do HelpHub</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 7.0 Beta 4</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O próximo grande lançamento do WordPress será a <a href=\"https://make.wordpress.org/core/7-0/\">versão 7.0</a>, que está prevista para 9 de abril de 2026. A Equipe de Segurança decidiu empacotar um novo lançamento Beta (7.0 Beta 4) para manter todos protegidos contra as vulnerabilidades corrigidas, incluindo os membros dedicados da comunidade, concentrando seu tempo e esforço em testar o próximo lançamento.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Esta será uma versão Beta adicional no ciclo de lançamento 7.0.</strong> O cronograma permanecerá o mesmo daqui para frente, mas com cinco lançamentos Beta totais em vez dos quatro planejados anteriormente. O próximo lançamento Beta da versão 7.0 ainda está programado para quinta-feira, 12 de março.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Esta versão Beta do software WordPress ainda está em desenvolvimento</strong>. Não instale, execute ou teste versões Beta do WordPress em sites de produção ou de missão crítica. Em vez disso, você deve avaliar a versão Beta 4 em um servidor e site de testes.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Atualizações e destaques da versão Beta 4</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 7.0 Beta 4 contém as dez atualizações de segurança enviadas no WordPress 6.9.2 e mais de 49 atualizações e correções desde a versão Beta 3, incluindo 14 no editor e 35 no núcleo.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Cada ciclo Beta se concentra em correções de erros, e mais estão a caminho, graças à sua ajuda com os testes. Você pode navegar pelos detalhes técnicos para todas as questões abordadas desde a versão Beta 3 nestes links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/compare/f4d8a5803aa2fbe26e7d9af4d17e80a622b7bab8...9b8144036fa5faf75de43d4502ff9809fcf689ad\">Tíquetes do GitHub para a versão 7.0</a> desde 5 de março de 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=03%2F05%2F2026..03%2F10%2F2026&milestone=7.0&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=priority&order=id\">Tíquetes fechados do Trac para a versão 7.0</a> desde 5 de março de 2026</li>\n</ul>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\">Agradecemos a <em><a href=\"https://profiles.wordpress.org/peterwilson/\">@peterwilson</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a> e <a href=\"https://profiles.wordpress.org/amykamala/\">@amykamala</a> pela colaboração no <a href=\"https://wordpress.org/news/2026/03/wordpress-6-9-3-and-7-0-beta-4/\">post original</a>.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></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:4:\"3438\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"O WordPress 6.9.2 – Atualização de seguranç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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://br.wordpress.org/2026/03/10/o-wordpress-6-9-2-atualizacao-de-seguranca/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Mar 2026 17:13: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:2:{i:0;a:5:{s:4:\"data\";s:12:\"Lançamentos\";s: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:\"6.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3433\";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:385:\"O WordPress 6.9.2 já está disponível! Esta é de uma versão de segurança que apresenta várias correções. Como este é um lançamento de segurança, é recomendável que você atualize seus sites imediatamente. Você pode baixar o WordPress 6.9.2 do WordPress.org ou visitar seu Painel do WordPress, clicar em “Atualizações” e, em seguida, clicar em “Atualizar […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Andre\";s: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:5087:\"\n<p class=\"wp-block-paragraph\">O WordPress 6.9.2 já está disponível! Esta é de uma versão de segurança que apresenta várias correções. Como este é um lançamento de segurança, <strong>é recomendável que você atualize seus sites imediatamente</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Você pode <a href=\"https://wordpress.org/wordpress-6.9.2.zip\">baixar o WordPress 6.9.2 do WordPress.org</a> ou visitar seu Painel do WordPress, clicar em “Atualizações” e, em seguida, clicar em “Atualizar agora”. Se você tiver sites que suportam atualizações automáticas em segundo plano, o processo de atualização começará automaticamente.</p>\n\n\n\n<p class=\"wp-block-paragraph\">O próximo grande lançamento será a <a href=\"https://make.wordpress.org/core/7-0/\">versão 7.0</a>, que está prevista para 9 de abril de 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Para mais informações sobre o <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-2/\">WordPress 6.9.2</a>, visite a <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-2/\">página de versão no site do HelpHub</a> (em inglês).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Atualizações de segurança incluídas nesta versão</h2>\n\n\n\n<p class=\"wp-block-paragraph\">A equipe de segurança gostaria de agradecer às seguintes pessoas por <a href=\"https://hackerone.com/wordpress?type=team\">relatar com responsabilidade as vulnerabilidades</a> e permitir que elas sejam corrigidas nesta versão:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Um problema de SSRF relatado por <a href=\"https://hackerone.com/sibwtf\">sibwtf</a> e, posteriormente, por vários outros pesquisadores enquanto a correção estava sendo trabalhada.</li>\n\n\n\n<li>Uma vulnerabilidade da cadeia PoP da API HTML e no Registro de Blocos relatado por <a href=\"https://github.com/hackerlo2003\">Phat RiO</a>.</li>\n\n\n\n<li>Uma vulnerabilidade de DoS Regex em referências de caracteres numéricos relatadas por Dennis Snell da Equipe de Segurança do WordPress</li>\n\n\n\n<li>Um problema de XSS em menus de navegação relatados por <a href=\"https://x.com/Savphill\">Phill Savage</a></li>\n\n\n\n<li>Um problema de autorização com <code>Ajax query-attachments</code> reportado por <a href=\"https://www.vitalysim.com/\">Vitaly Simonovich</a>.</li>\n\n\n\n<li>Um problema de XSS através do <code>data-wp-bind</code> reportado por <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>Um problema de XSS que permite substituir os modelos do lado do cliente na área de administração, relatada pelo <a href=\"https://hackerone.com/amosec\">Asaf Mozes</a></li>\n\n\n\n<li>Um problema de travessia de diretórios do PclZip relatado de forma independente por <a href=\"https://profiles.wordpress.org/francescocarlucci/\">Francesco Carlucci</a> e <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>Um desvio de autorização no recurso de notas relatado por <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>Um problema na biblioteca XXE externa <code>getID3</code> relatada por <a href=\"https://profiles.wordpress.org/regex33/\">Youssef Achtatal</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">A equipe de segurança do WordPress trabalhou com o mantenedor da biblioteca externa getID3, James Heinrich, para coordenar uma correção para o getID3. Uma nova versão do getID3 <a href=\"https://github.com/JamesHeinrich/getID3/releases\">está disponível aqui</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Como cortesia, essas correções estão sendo suportadas, quando necessário, para todas as versões anteriores elegíveis para receber correções de segurança (atualmente até a versão 4.7). Como lembrete, <strong>apenas a versão mais recente do WordPress é ativamente suportada</strong>. Os backports estão em andamento e serão enviados à medida que se tornam prontos.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Agradecimento aos colaboradores</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Este lançamento foi liderado por <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>. Além dos pesquisadores de segurança mencionados acima, o WordPress 6.9.2 não teria sido possível sem as contribuições das seguintes pessoas: <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">Luis Herranz</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> e <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></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:4:\"3433\";s: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:20:\"WordPress 7.0 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://br.wordpress.org/2026/03/05/wordpress-7-0-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Mar 2026 14:48:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:12:\"Lançamentos\";s: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:\"7.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3428\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:326:\"O WordPress 7.0 Beta 3 está disponível para baixar e testar! Esta versão beta do software WordPress ainda está em desenvolvimento. Por favor, não instale, execute ou teste esta versão do WordPress em sites de produção ou de missão crítica. Em vez disso, você deve avaliar o Beta 3 em um servidor e site de […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Andre\";s: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:5739:\"\n<p class=\"wp-block-paragraph\">O WordPress 7.0 Beta 3 está disponível para baixar e testar!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Esta versão beta do software WordPress ainda está em desenvolvimento</strong>. Por favor, não instale, execute ou teste esta versão do WordPress em sites de produção ou de missão crítica. Em vez disso, você deve avaliar o Beta 3 em um servidor e site de teste.</p>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 7.0 Beta 3 pode ser testado usando qualquer um dos seguintes métodos:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Instale e ative o plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> em uma instalação <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">do</a> WordPress. (Selecione o canal “Bleeding edge” e “Beta/RC Only” stream.)</td></tr><tr><td><strong>Baixe diretamente</strong></td><td>Baixe a <a href=\"https://wordpress.org/wordpress-7.0-beta3.zip\">versão Beta 3 (zip)</a> e instale-a em um site WordPress.</td></tr><tr><td><strong>Linha de Comando</strong></td><td>Use este <a href=\"https://make.wordpress.org/cli/\">comando do WP-CLI</a>:<br><code>wp core update --version=7.0-beta</code>3</td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a <a href=\"https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn\">instância do WordPress Playground</a> para testar o software diretamente no seu navegador. Nenhuma configuração é necessária, basta clicar e testar!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">A data de lançamento final programada para o WordPress 7.0 é <strong>9 de abril de 2026</strong>. O <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">cronograma de lançamento</a> completo <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">pode ser encontrado aqui</a>. Sua ajuda para testar versões Beta e RC é vital para tornar esta versão o mais estável e poderosa possível. Certifique-se de acompanhar o <a href=\"https://make.wordpress.org/core/\">blog Make WordPress Core</a> para <a href=\"https://make.wordpress.org/core/tag/7-0\">posts relacionadas a versão 7.0</a> nas próximas semanas para obter mais informações. Agradecemos a todos que contribuem testando!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Acompanhe o que há de novo no WordPress 7.0</strong>: Leia <a href=\"https://br.wordpress.org/2026/02/20/wordpress-7-0-beta-1/\">o anúncio da versão Beta 1</a> para obter mais detalhes e destaques.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Como testar esta versão</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Sua ajuda testando o WordPress 7.0 Beta 2 é fundamental para garantir que tudo na versão seja o melhor possível. Embora testar o processo de atualização seja essencial, experimentar novos recursos é igualmente importante. Este <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">guia sobre o que testar no WordPress 7</a> irá guiá-lo através de recursos de teste na versão 7.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Se você encontrar um problema, compartilhe-o na <a href=\"https://wordpress.org/support/forum/alphabeta/\">área Alpha/Beta</a> dos fóruns de suporte ou diretamente <a href=\"https://core.trac.wordpress.org/newticket\">para o WordPress Trac</a>, se você estiver confortável escrevendo um relatório de erros reproduzível. Você também pode verificar seu problema em uma lista de <a href=\"https://core.trac.wordpress.org/tickets/major\">erros conhecidos</a>. Curioso sobre os lançamentos de testes em geral? Acompanhe as <a href=\"https://make.wordpress.org/test/\">iniciativas de teste no Make Core</a> e junte-se ao <a href=\"https://wordpress.slack.com/messages/core-test/\">canal #core-test</a> no <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Atualizações e destaques</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 7.0 Beta 3 contém mais de 95 atualizações e correções desde a versão Beta 2, incluindo 43 no editor e 52 no núcleo.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Cada ciclo beta se concentra em correções de erros, e mais estão a caminho com sua ajuda através de testes. Você pode navegar pelos detalhes técnicos para todas as questões abordadas desde a versão Beta 2 usando esses links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-02-26&until=2026-03-05\">Tíquetes do GitHub para a versão 7.0</a> desde 26 de fevereiro de 2026.</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F26%2F2026..03%2F05%2F2026&milestone=7.0&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Tíquetes fechados do Trac para a versão 7.0</a> desde 26 de fevereiro de 2026.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Explorar o poder da IA está ainda mais fácil na versão Beta 3! A tela do <code>WP AI Client Connectors</code> agora registra provedores dinamicamente, além dos 3 provedores padrão, dando aos usuários mais flexibilidade e comandos para as integrações de IA.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Agradecemos a <a href=\"https://profiles.wordpress.org/annezazu/\">@annezazu</a></em>, <em><a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</a></em> e <em><a href=\"https://profiles.wordpress.org/chaion07/\">@chaion07</a></em> <em>pela colaboração no post original.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></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:4:\"3428\";s: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: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:66:\"O piloto do painel do colaborador está no ar: o que vem a seguir?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://br.wordpress.org/2026/03/05/o-piloto-do-painel-do-colaborador-esta-no-ar-o-que-vem-a-seguir/\";s: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, 05 Mar 2026 13: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:5:\"Geral\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3417\";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:355:\"O piloto do painel do colaborador está no ar, marcando um passo importante para criar uma visão mais clara de como os colaboradores se juntam, participam e crescem em todo o projeto WordPress. Este post descreve os recursos propostos para a próxima fase do piloto do painel do colaborador. Estamos compartilhando essas ideias previamente para […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Andre\";s: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:6355:\"\n<p class=\"wp-block-paragraph\">O piloto do painel do colaborador está no ar, marcando um passo importante para criar uma visão mais clara de como os colaboradores se juntam, participam e crescem em todo o projeto WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Este post descreve os recursos propostos para a próxima fase do piloto do painel do colaborador. Estamos compartilhando essas ideias previamente para coletar feedback da comunidade antes do início da implementação.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Sobre o projeto</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">O objetivo do painel é mapear a atividade dos contribuidores entre equipes em um framework compartilhado chamado escada de colaboração.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A escada é baseada em comportamentos e descreve padrões de participação ao longo do tempo. Ela não classifica contribuidores nem implica que alguns tipos de contribuição sejam mais importantes que outros. Todos os tipos de contribuição e todos os contribuidores importam.</p>\n\n\n\n<p class=\"wp-block-paragraph\">O objetivo é ajudar as equipes a compreenderem os padrões de participação, identificar onde pode ser necessário oferecer suporte e melhorar as experiências dos contribuidores ao longo do tempo.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Status atual</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>O painel piloto está finalmente disponível: <a href=\"https://wpcontributordashboard.org/\">https://wpcontributordashboard.org/</a></strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">As funcionalidades principais disponíveis:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Arquitetura de dados de três níveis (Eventos <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">→</span> Perfis <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">→</span> Painel)</li>\n\n\n\n<li>Estrutura da escalada do colaborador</li>\n\n\n\n<li>Acompanhamento de status de atividade (ativo/ausente/inativo)</li>\n\n\n\n<li>Sistema de importação CSV para dados de atividades do colaborador</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">O desenvolvimento está acontecendo no <a href=\"https://github.com/WordPress/wporg-contributor-dashboard\">repositório público do GitHub</a>.<br><a href=\"https://cleanshot.com/share/hkpxHJjc\">Veja o vídeo de demonstração do painel aqui.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Colaboradores de várias equipes do Make WordPress estão envolvidos no desenvolvimento o piloto do painel do colaborador. Colaboradores do projeto incluem <a href=\"https://profiles.wordpress.org/felipevelzani/\">@felipevelzani</a>, <a href=\"https://profiles.wordpress.org/unintended8/\">@unintentiond8</a>, <a href=\"https://profiles.wordpress.org/francescodicandia/\">@francescodicandia</a>, <a href=\"https://profiles.wordpress.org/dd32/\">@dd32</a> e <a href=\"https://profiles.wordpress.org/kel-dc/\">@ kel-dc</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Características Propostas</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">Estamos propondo duas características para a próxima fase. O feedback é bem-vindo em ambos.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. 1. Personas Gerenciadas por Equipe</strong></h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Cada equipe do Make WordPress pode criar suas próprias personas de contribuição, com escaladas e requisitos personalizados que refletem como essa equipe realmente funciona.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Equipes diferentes contribuem de maneiras diferentes, uma escalada não se encaixa em todas. Os representantes da equipe podem definir e gerenciar essas personas, e os colaboradores podem aparecer em várias escaladas com base em sua atividade entre as equipes.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Exemplo de casos de uso:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Os Polyglots podem criar personas específicas de idiomas para colaboradores de tradução.</li>\n\n\n\n<li>Comunidade pode criar personas para os organizadores do WordCamp ou Meetup.</li>\n\n\n\n<li>O suporte pode separar os colaboradores do fórum daqueles que procuram ajuda.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. 2. Engajamento Automatizado</strong></h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Reconhecer automaticamente os colaboradores quando atingirem os principais marcos.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">O reconhecimento oportuno melhora a retenção e reforça a participação significativa. Quando alguém faz sua primeira contribuição, atinge um novo degrau da escalada, ou permanece consistentemente ativo, o sistema pode acionar mensagens, adereços, ou até mesmo swag (adesivos, etc) de <a href=\"https://mercantile.wordpress.org/\">O Mercantil</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">O reconhecimento torna-se incorporado, não manual.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Feedback Solicitado</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">Gostaríamos muito de ouvir seus pensamentos sobre essas propostas. Se tivéssemos que começar com um desses dois, qual forneceria mais valor? Algum outro recurso que você considere importante deva ser implementado e/ou poderia trazer muito valor?</p>\n\n\n\n<p class=\"wp-block-paragraph\">O objetivo geral é criar um motor focado em melhorar a experiência do colaborador em geral.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Compartilhe qualquer feedback até <strong>17</strong> de <strong>março de 2026. </strong>Planejamos começar a implementar a nova fase até esta data.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Envolva-se</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">Se você estiver interessado em contribuir para esses recursos:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Comente neste post com feedback ou perguntas no <a href=\"https://make.wordpress.org/project/2026/03/04/the-contributor-dashboard-pilot-is-live-whats-next/\">post original</a>.</li>\n\n\n\n<li>Junte-se à discussão no canal <a href=\"https://wordpress.slack.com/archives/C0AHJA81PDE\">#contribuinte-dashboard</a> no Slack.</li>\n\n\n\n<li>Confira o <a href=\"https://make.wordpress.org/handbook/contributor-dashboard/\">Manual do Painel do Colaborador</a> e o <a href=\"https://github.com/WordPress/wporg-contributor-dashboard\">repositório do GitHub</a> para obter detalhes técnicos e contribuir com o grupo de trabalho.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"></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:4:\"3417\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 7.0 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://br.wordpress.org/2026/02/26/wordpress-7-0-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Feb 2026 17:20:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:12:\"Lançamentos\";s: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:\"7.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3408\";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:120:\"O WordPress 7.0 Beta 2 contém mais de 70 atualizações e correções no editor e no núcleo desde a versão do Beta 1.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Andre\";s: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:7358:\"\n<p class=\"wp-block-paragraph\">O WordPress 7.0 Beta 2 já está pronto para testes!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Esta versão beta do software WordPress está em desenvolvimento</strong>. Não instale, execute ou teste esta versão do WordPress em sites de produção ou de missão crítica. Em vez disso, você deve avaliar a versão Beta 2 em um servidor e site de teste. Você pode testar o WordPress 7.0 Beta 2 de qualquer uma das seguintes maneiras:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Instale e ative o plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> em uma instalação do WordPress. (Selecione o canal “Bleeding edge” e “Beta/RC Only” stream.)</td></tr><tr><td><strong>Baixe diretamente</strong></td><td>Baixe a <a href=\"https://wordpress.org/wordpress-7.0-beta2.zip\">versão Beta 2 (zip)</a> e instale-a em um site WordPress.</td></tr><tr><td><strong>Linha de Comando</strong></td><td>Use este comando do <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> WP-CLI:<br><code>wp core update --version=7.0-beta2</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use uma <a href=\"https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn\">instância do WordPress Playground</a> para testar o software diretamente no seu navegador. Nenhuma configuração é necessária – basta clicar e testar!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">A data de lançamento final programada para o WordPress 7.0 é <strong>9 de abril de 2026</strong>. O <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">cronograma de lançamento</a> completo <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">pode ser encontrado aqui</a>. Sua ajuda para testar versões Beta e RC é vital para tornar esta versão o mais estável e poderosa possível. Certifique-se de acompanhar o <a href=\"https://make.wordpress.org/core/\">blog Make WordPress Core</a> para <a href=\"https://make.wordpress.org/core/tag/7-0\">posts relacionadas a versão 7.0</a> nas próximas semanas para obter mais informações. Agradecemos a todos que contribuem testando!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Acompanhe o que há de novo no WordPress 7.0</strong>: Leia <a href=\"https://br.wordpress.org/2026/02/20/wordpress-7-0-beta-1/\">o anúncio da versão Beta 1</a> para obter mais detalhes e destaques.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Como testar esta versão</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Sua ajuda testando o WordPress 7.0 Beta 2 é fundamental para garantir que tudo na versão seja o melhor possível. Embora testar o processo de atualização seja essencial, experimentar novos recursos é igualmente importante. Este <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">guia sobre o que testar no WordPress 7</a> irá guiá-lo através de recursos de teste na versão 7.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Se você encontrar um problema, compartilhe-o na <a href=\"https://wordpress.org/support/forum/alphabeta/\">área Alpha/Beta</a> dos fóruns de suporte ou diretamente <a href=\"https://core.trac.wordpress.org/newticket\">para o WordPress Trac</a>, se você estiver confortável escrevendo um relatório de erros reproduzível. Você também pode verificar seu problema em uma lista de <a href=\"https://core.trac.wordpress.org/tickets/major\">erros conhecidos</a>. Curioso sobre os lançamentos de testes em geral? Acompanhe as <a href=\"https://make.wordpress.org/test/\">iniciativas de teste no Make Core</a> e junte-se ao <a href=\"https://wordpress.slack.com/messages/core-test/\">canal #core-test</a> no <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 2 atualizações e destaques</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 7.0 Beta 2 contém mais de 70 atualizações e correções no editor e no núcleo desde a versão do Beta 1.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Cada ciclo beta se concentra em correções de erros, e mais estão a caminho com sua ajuda através de testes. Você pode navegar pelos detalhes técnicos para todas as questões abordadas desde o Beta 1 usando estes links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-02-20&until=2026-02-26\">Tíquetes do GitHub para a versão 7.0</a> desde 20 de fevereiro de 2026.</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F20%2F2026..02%2F26%2F2026&milestone=7.0&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Tíquetes fechados do Trac para a versão 7.0</a> desde 20 de fevereiro de 2026.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A versão Beta 2 também contém um novo recurso!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">O gerenciamento do provedor de IA é mais intuitivo no 7.0 Beta 2 com uma nova página de painel de interface do usuário do Connectors. Os usuários do WordPress agora podem gerenciar conexões de IA externas em um local central no painel, em Configurações > Conectores. A nova interface do usuário permite que os usuários adicionem, excluam e atualizem conexões externas. Ele é alimentado por uma arquitetura extensível e baseada em rotas que permite que plugins e temas se encaixem na página e expandam sua funcionalidade. A nova página Conectores é baseada em infraestrutura de script e menu baseada em PHP e adiciona componentes de rota alimentados por <code>@wordpress/components</code> e <code>@wordpress/admin-ui</code>. Um novo hook <code>connections-wp-admin-init</code> e uma nova API de registros permitem que os plugins se integrem de forma limpa. Isso facilita o gerenciamento de conexões externas, dando aos desenvolvedores um caminho mais claro para estender a experiência.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Atenção, criadores de blocos!</strong> O WordPress 7.0 impõe o editor detalhado para temas clássicos quando todos os blocos usam a API de blocos versão 3. Atualize seus blocos para a versão 3 para garantir a compatibilidade. Mais detalhes sobre o <a href=\"https://make.wordpress.org/core/2026/02/24/iframed-editor-changes-in-wordpress-7-0/\">Iframed Editor Changes no WordPress 7.0 aqui</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Gutenberg 22.6</strong>, lançado em 25 de fevereiro, também será aplicado no WordPress 7.0. Aqui estão mais detalhes sobre <a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/\">o que há de novo em Gutenberg 22.6</a>.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Agradecemos a <a href=\"https://profiles.wordpress.org/4thhubbard/\">@4thhubbard</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">@annezazu</a></em>, <em><a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">@mukesh27</a> e <a href=\"https://profiles.wordpress.org/chaion07/\">@chaion07</a></em> <em>pela colaboração no post original.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></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:4:\"3408\";s: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:20:\"WordPress 7.0 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://br.wordpress.org/2026/02/20/wordpress-7-0-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Feb 2026 17:06:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:12:\"Lançamentos\";s: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:\"7.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3402\";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:225:\"Esta versão oferece uma ampla gama de flexibilidade para criadores, equipes e desenvolvedores, enquanto traz uma atualização visual para a experiência de administração que você conhece e ama com um novo estilo padrão.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Andre\";s: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:16373:\"\n<p class=\"wp-block-paragraph\">O WordPress 7.0 Beta 1 está pronto para baixar e testar! <strong>Esta versão Beta destina-se a testes e desenvolvimento</strong> somente. Não instale, execute ou teste esta versão do WordPress em sites de produção ou de missão crítica. Em vez disso, use um ambiente de teste ou um site local para explorar os novos recursos.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Como Testar o WordPress 7.0 Beta 1</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Você pode testar o WordPress 7.0 Beta 1 de qualquer uma das seguintes maneiras:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Instale e ative o plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> em uma instalação do WordPress. (Selecione o canal “Bleeding edge” e o fluxo “Beta/RC Only”)</td></tr><tr><td><strong>Baixe diretamente</strong></td><td>Baixe a <a href=\"https://wordpress.org/wordpress-7.0-beta1.zip\">Versão Beta 1 (zip)</a> e instale em um site WordPress.</td></tr><tr><td><strong>Linha de comando</strong></td><td>Use o comando do <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a>:<br><code>wp core update --versão=7.0-beta1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Utilize uma <a href=\"https://playground.wordpress.net/?php=8.3&wp=beta&networking=no&language=&multisite=no&random=r8nny4q18x\">instância 7.0 Beta 1 do WordPress Playground</a> para testar o software diretamente no seu navegador. Não precisa instalar, é só clicar e testar!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">A data de lançamento final programada para o WordPress 7.0 é <strong>9 de abril de 2026</strong>. O cronograma de lançamento completo <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">pode ser encontrado aqui</a>. Sua ajuda para testar versões Beta e RC é vital para tornar esta versão o mais estável e poderosa possível. Agradecemos a todos que contribuem testando!</p>\n\n\n\n<h2 class=\"wp-block-heading\">Qual a importância dos testes?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O teste de erros é uma parte crítica do desenvolvimento de qualquer software, e é uma maneira significativa de qualquer pessoa contribuir, mesmo se você tem ou não experiência. <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">Detalhes sobre o que testar no WordPress 7.0 estão disponíveis aqui</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Se você encontrar um problema, por favor, compartilhe-o na <a href=\"https://wordpress.org/support/forum/alphabeta/\">área Alfa / Beta</a> dos fóruns de suporte. Se você está confortável em enviar um relatório de erros reproduzível, você pode fazê-lo <a href=\"https://core.trac.wordpress.org/newticket\">via WordPress Trac</a>. Você também pode verificar seu problema contra essa lista de <a href=\"https://core.trac.wordpress.org/tickets/major\">bugs conhecidos</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curioso sobre testes de lançamentos em geral e como começar? Acompanhe as <a href=\"https://make.wordpress.org/test/\">iniciativas de teste no Make Core</a> e junte-se ao <a href=\"https://wordpress.slack.com/messages/core-test/\">canal #core-test</a> no <a href=\"https://wordpress.slack.com/\">Making WordPress do Slack</a>. O WordPress 7.0 incluirá novos recursos que anteriormente estavam disponíveis apenas no plugin Gutenberg. Saiba mais sobre as atualizações do Gutenberg desde o WordPress 6.9 nos posts <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s New in Gutenberg (em inglês)</a> para versões <a href=\"https://make.wordpress.org/core/2025/11/05/whats-new-in-gutenberg-22-0-05-november/\">22.0</a>, <a href=\"https://make.wordpress.org/core/2025/11/20/whats-new-in-gutenberg-22-1-18-november-2025/\">22.1</a>, <a href=\"https://make.wordpress.org/core/2025/12/03/whats-new-in-gutenberg-22-2-dec3/\">22.2</a>, <a href=\"https://make.wordpress.org/core/2025/12/17/gutenberg-22-3-december-17/\">22.3</a>, <a href=\"https://make.wordpress.org/core/2026/01/22/whats-new-in-gutenberg-22-4-20-january/\">22.4</a>, <a href=\"https://make.wordpress.org/core/2026/02/04/whats-new-in-gutenberg-22-5-04-february/\">22.5</a> e 22.6.</p>\n\n\n\n<h2 class=\"wp-block-heading\">O que há de novo no WordPress 7.0?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 7.0 possui inúmeras atualizações na experiência de edição e administração, oferecendo colaboração aprimorada em tempo real, personalização refinada, novos estilos de painel e uma caixa de ferramentas de desenvolvimento expandida para pessoas que projetam e criam com o WordPress todos os dias.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Trabalhar como uma equipe ficou mais fácil com a capacidade de vários usuários editarem juntos em tempo real, enquanto as revisões visuais permitem uma comparação visual entre as versões da página, adicionando agilidade ao processo de criação e revisão. O trabalho com padrões foi simplificado, tornando as atualizações de layout e as alterações de conteúdo mais intuitivas, enquanto as transições de visualização te movem na tela à medida que você clica.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Blocos e recursos de design novos e aprimorados na versão 7.0 tornam os sites mais personalizáveis, com fundos de incorporação de vídeo no bloco de cobertura, um bloco de grade habilitado para responsividade e novos ícones, breadcrumbs e blocos de cabeçalho. Um bloco de navegação atualizado torna as alterações do menu mais fáceis e confiáveis em menos etapas. Controles responsivos e compatíveis com dispositivos móveis na versão 7.0 permitem ocultar ou revelar blocos com base no tamanho da tela, enquanto o manuseio de mídia do lado do cliente acelera o processamento de mídia. A tela da Biblioteca de Fontes para gerenciar fontes instaladas agora está habilitada para todos os temas, portanto, os editores de sites sempre podem navegar, instalar e organizar fontes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Para os desenvolvedores, agora é mais fácil construir experiências modernas, mantendo-se alinhado com os princípios básicos. O novo <em>WP AI Client</em> no WordPress 7.0 traz uma camada no núcleo que permite alavancar modelos de IA de qualquer provedor dentro da estrutura do WordPress. Isso significa que plugins e temas podem explorar qualquer modelo de IA para expor suas infinitas opções. O WordPress 7.0 oferece ainda mais versatilidade com a API <em>Client Side Abilities</em> que introduz uma maneira padronizada de registrar e executar “habilidades” no navegador, suportando fluxos de trabalho mais ricos e consistentes. Além disso, o WordPress 7.0 introduz o registro de blocos somente por PHP com controles de inspeção gerados automaticamente, adicionando uma nova dimensão à criação de blocos, enquanto as atualizações do Block Bindings para substituições de padrões expandem o suporte a blocos dinâmicos personalizados, dando aos criadores de blocos mais opções.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Esta versão oferece uma ampla gama de flexibilidade para criadores, equipes e desenvolvedores, enquanto traz uma atualização visual para a experiência de administração que você conhece e ama com um novo estilo padrão.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Trabalhem juntos em tempo real</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Com base no impulso iniciado no WordPress 6.9, a capacidade das equipes de criar e editar juntas é mais refinada e robusta no WordPress 7.0. Com esta versão do WordPress, vários usuários podem editar e colaborar no mesmo post ou página em tempo real, com sincronização de dados e notas estabilizadas para um trabalho de equipe mais suave e um processo de edição e revisão mais simplificado.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Nota: A versão 7.0 introduz sincronização em tempo real de notas que ajuda a facilitar a colaboração, um atalho de teclado para novas notas, e uma série de correções focadas na qualidade que trazem mais estabilidade para o recurso notas.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Colaboração em Tempo Real: As equipes agora podem editar posts e páginas em conjunto ao vivo a partir de vários locais, com edição offline e sincronização de dados ativada, e um novo provedor padrão de sincronização HTTP com opções para plugins ou hospedagens incluir suporte a websocket. Com esse fluxo de trabalho colaborativo de criação de conteúdo, as equipes podem fazer uma colaboração mais efetiva e aumentar a produtividade. Para o período beta, a colaboração em tempo real é opt-in, a fim de obter feedback e testes mais amplos.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Uma experiência de administração refinada</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 7.0 dá a experiência do painel um impulso com um novo esquema de cores padrão e um painel de aparência mais limpo e moderno, mantendo a interface familiar. O painel atualizado aprimora a experiência de edição com novas comparações de revisão visual e a transição suave entre as telas.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Revisões visuais: Trabalhar com revisões é ainda melhor no WordPress 7.0 com a capacidade adicional de fazer comparações visuais com versões de revisão dentro do editor.</li>\n\n\n\n<li>Transições de visualização: as transições de visualização cruzada no painel oferecem continuidade visual com movimento contínuo da tela para a tela.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Personalizar o conteúdo com facilidade</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Os criadores têm mais flexibilidade na versão 7.0, com novas ferramentas para conteúdo e design, controles de edição aprimorados e atenção à compatibilidade com dispositivos móveis.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Modo de edição responsiva: A visibilidade do bloco agora é mais responsiva e compatível com dispositivos móveis, com a capacidade de que os blocos sejam exibidos ou ocultos com base no tamanho da tela.</li>\n\n\n\n<li>Interatividade de edição e conteúdo de padrões: o WordPress 7.0 introduz modos de edição em nível de padrão, uma visualização de árvore para botões e blocos de lista e a capacidade de desativar o modo de conteúdo padrão. O novo modo <em>Spotlight</em> ajuda a isolar o conteúdo em padrões e anotações, enquanto o modo <em>Editor Isolado</em> pode ser usado para editar símbolos e peças reutilizáveis, como padrões sincronizados, partes de modelo ou navegação.</li>\n\n\n\n<li>Suportes de bloco e ferramentas de design: A versão 7.0 inclui suporte de recuo de linha de texto, suporte a colunas de texto, proporções para imagens amplas e completas, largura de dimensão e suporte de altura e predefinições de dimensão, ferramentas e controles.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Novos blocos e opções de design na ponta dos dedos</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 7.0 oferece uma série de novos e aprimorados recursos de blocos, um fluxo de trabalho de navegação simplificado e opções de design mais versáteis, como incorporações de vídeo como fundos de seção.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Bloco de navegação: O fluxo de trabalho de navegação agora é mais intuitivo e claro, com edição e apresentação aprimoradas. O WordPress 7.0 apresenta sobreposições de navegação personalizáveis como peças de modelo, incluindo sobreposições de versão móvel que podem ser ocultadas ou reveladas com base nas configurações de ponto de interrupção personalizadas.</li>\n\n\n\n<li>Bloco de cabeçalho: Os níveis de cabeçalho agora estão disponíveis como variações de bloco, dando mais controle sobre a hierarquia e o design da página.</li>\n\n\n\n<li>Novos blocos: O WordPress 7.0 torna as páginas de construção mais diversificadas com novos blocos de Breadcrumbs e ícones.</li>\n\n\n\n<li>Vídeos incorporados de blocos de capa: as incorporações de vídeo agora podem ser usadas como um fundo no bloco de cobertura, abrindo oportunidades para designs mais elegantes e criativos.</li>\n\n\n\n<li>O bloco de grade agora é habilitado para responsividade, permitindo que layouts baseados em grade se adaptem mais suavemente em tamanhos de tela.</li>\n\n\n\n<li>O bloco de galeria agora tem suporte a lightbox que permite que o usuário clique e visualize cada imagem da galeria.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Caixa de ferramentas do desenvolvedor</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Trabalhar com o WordPress no back-end é agora mais robusto para desenvolvedores, com recursos de API novos e aprimorados que suportam flexibilidade e estabelecem uma base para avanços futuros. A API <em>Client Side Abilitys</em> fornece um registro do lado do cliente para recursos do WordPress que permite que você aproveite as opções de sites novos e inovadores. O WordPress 7.0 oferece ainda mais, introduzindo a API de IA do Web Client no núcleo, permitindo o acesso a modelos de IA gerativos em uma interface central.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Web Client AI API: O novo cliente de IA e API atua como um centro de comando para acessar e se comunicar com modelos de IA gerativos, com provedores permanecendo externos ao núcleo do WordPress e integração de API de Habilidades.</li>\n\n\n\n<li>API de Habilidades e Fluxos de Trabalho: Com as novas habilidades do lado do cliente, os usuários têm acesso a habilidades novas e híbridas, funcionalidade de filtro e pesquisa de habilidades e uma paleta de comandos e interface do usuário aprimoradas.</li>\n\n\n\n<li>Blocos e padrões criados no servidor: o WordPress 7.0 possui a capacidade de blocos e padrões somente para PHP serem gerados no lado do servidor e registrados automaticamente com a API de Blocos.</li>\n\n\n\n<li>DataForm: Introdução de um novo layout de detalhes, novos controles (combobox, adaptiveSelect) e gatilho atualizado para layout de painel (botão de edição dedicada). Além disso, a iteração inicial para validação está concluída: todos os controles têm suporte e todos os layouts exibem mensagens de erro.</li>\n\n\n\n<li>DataViews: O DataViews tem um novo layout de atividade, e uma base foi lançada para poder registrar tipos de terceiros em lançamentos futuros.</li>\n\n\n\n<li>Atualização do CodeMirror: O CodeMirror foi atualizado para a versão 5.65.40, auxiliando opções de extensibilidade e biblioteca mais flexíveis.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Processamento de mídia no navegador</h2>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 7.0 apresenta o processamento de mídia do lado do cliente, aproveitando os recursos do navegador para lidar com tarefas, como redimensionamento e compressão de imagens, para um processamento de imagem mais suave. Isso permite o uso de formatos de imagem e técnicas de compressão mais avançados e reduz a demanda no servidor da Web; fornecendo um processo de manuseio de mídia mais eficiente para conteúdo novo e existente e suportando fluxos de trabalho de mídia mais suaves.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Com tantas opções e aprimoramentos no WordPress 7.0 Beta 1, isso ainda é apenas o começo. Você pode esperar que os lançamentos futuros sejam ainda melhores.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Agradecemos a <a href=\"https://profiles.wordpress.org/ellatrix/\">@ellatrix</a>‚ <a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</a>‚ <a href=\"https://profiles.wordpress.org/annezazu/\">@annezazu</a>‚ <a href=\"https://profiles.wordpress.org/chaion07/\">@chaion07</a>‚ <a href=\"https://profiles.wordpress.org/zunaid321/\">@zunaid321</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>‚ <a href=\"https://profiles.wordpress.org/mukesh27/\">@mukesh27</a>‚ <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">@ankit-k-gupta</a></em>‚ <em><a href=\"https://profiles.wordpress.org/oandregal/\">@oandregal</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">@westonruter</a>‚, <a href=\"https://profiles.wordpress.org/karmatosed/\">@karmatosed</a>‚ <a href=\"https://profiles.wordpress.org/bph/\">@bph</a> pela revisão e colaboração no post original.</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:4:\"3402\";s: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: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:46:\"WordPress 6.9.1 -Atualização de manutenção\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://br.wordpress.org/2026/02/03/wordpress-6-9-1-atualizacao-de-manutencao/\";s: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, 03 Feb 2026 20:24:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:12:\"Lançamentos\";s: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:\"6.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3397\";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:210:\"Esta versão de ciclo curto inclui correções para 49 erros em todo o núcleo e no editor de blocos, abordando problemas que afetam várias áreas do WordPress, incluindo também os e-mails e temas clássicos.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Andre\";s: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:9395:\"\n<p class=\"wp-block-paragraph\"><strong>O WordPress 6.9.1 já está disponível!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Esta versão de ciclo curto inclui correções para 49 erros <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&milestone=6.9.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">em todo o núcleo</a> e no <a href=\"https://github.com/WordPress/gutenberg/pull/74806\">editor de blocos</a>, abordando problemas que afetam várias áreas do WordPress, incluindo também os e-mails e temas clássicos. Para obter uma lista completa das correções dos erros, consulte o <a href=\"https://make.wordpress.org/core/2026/01/30/wordpress-6-9-1-rc1-is-now-available/\">anúncio do Release Candidate.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 6.9.1 é uma versão de manutenção de ciclo curto. A próxima versão principal do WordPress será a versão 7.0, que está prevista para lançamento em 9 de abril de 2026 no <a href=\"https://asia.wordcamp.org/2026/\">WordCamp Ásia</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Se você tiver sites que suportam atualizações automáticas em segundo plano, o processo de atualização começará automaticamente.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Você pode <a href=\"https://wordpress.org/wordpress-6.9.1.zip\">baixar o WordPress 6.9.1 no WordPress.org</a> ou visitar seu Painel do WordPress, clicar em “Atualizações” e, em seguida, clicar em “Atualizar agora”. Para mais informações sobre esta versão, <a href=\"https://wordpress.org/support/wordpress-version/version-6-9-1\">visite o site do HelpHub</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Agradecemos aos colaboradores do WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Este lançamento foi liderado por <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> e <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">O WordPress 6.9.1 não teria sido possível sem as contribuições das seguintes pessoas. Sua coordenação assíncrona para fornecer correções de manutenção em uma versão estável é uma prova do poder e da capacidade da comunidade WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/acmoifr\">acmoifr</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/oztaser\">Adil Öztaşer</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/albigdd\">Alexander Bigga</a>, <a href=\"https://profiles.wordpress.org/amanandhishoe\">amanandhishoe</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter\">Bernie Reiter</a>, <a href=\"https://profiles.wordpress.org/brumack\">brumack</a>, <a href=\"https://profiles.wordpress.org/darerodz\">David Arenas</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/raftaar1191\">Deepak Gupta</a>, <a href=\"https://profiles.wordpress.org/deepakprajapati\">Deepak Prajapati</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/digitalblanket\">digitalblanket</a>, <a href=\"https://profiles.wordpress.org/ellatrix\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">Fabian Kaegy</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/hbhalodia\">Hit Bhalodia</a>, <a href=\"https://profiles.wordpress.org/iflairwebtechnologies\">iflairwebtechnologies</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/jdeep\">Jaydeep Das</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/maverick3x6\">Jeff Golenski</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jhtjards\">jhtjards</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</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/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/karthickmurugan\">Karthick</a>, <a href=\"https://profiles.wordpress.org/solankisoftware\">Kirtikumar Solanki</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/luisherranz\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/madhavishah01\">Madhavi Shah</a>, <a href=\"https://profiles.wordpress.org/sirlouen\">Manuel Camargo</a>, <a href=\"https://profiles.wordpress.org/jillro\">Maud Royer</a>, <a href=\"https://profiles.wordpress.org/mehrazmorshed\">Mehraz Morshed</a>, <a href=\"https://profiles.wordpress.org/monarobase\">Monarobase</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">mrwweb</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/muryam\">Muryam Sultana</a>, <a href=\"https://profiles.wordpress.org/mydesign78\">mydesign78</a>, <a href=\"https://profiles.wordpress.org/narenin\">Narendra Sishodiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/ninos-ego\">Ninos</a>, <a href=\"https://profiles.wordpress.org/noruzzaman\">Noruzzaman</a>, <a href=\"https://profiles.wordpress.org/oglekler\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/gabertronic\">Ophelia Rose</a>, <a href=\"https://profiles.wordpress.org/ov3rfly\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ozgursar\">Ozgur Sar</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/vybiral\">Pavel Vybíral</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pmbs\">pmbs</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/r1k0\">r1k0</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/ricjcs\">Ricardo S.</a>, <a href=\"https://profiles.wordpress.org/rollybueno\">Rolly Bueno</a>, <a href=\"https://profiles.wordpress.org/mikachan\">Sarah Norris</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/sajib1223\">Shazzad Hossain Khan</a>, <a href=\"https://profiles.wordpress.org/siliconforks\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/soyebsalar01\">Soyeb Salar</a>, <a href=\"https://profiles.wordpress.org/spielers\">spielers</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/studiomondiale\">studio_m</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/inc2734\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/threadi\">threadi</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">Tobias Bäthge</a>, <a href=\"https://profiles.wordpress.org/shimotomoki\">Tomoki Shimomura</a>, <a href=\"https://profiles.wordpress.org/umeshsinghin\">Umesh Singh</a>, <a href=\"https://profiles.wordpress.org/twvania\">Vania</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wfmattr\">WFMattR</a>, <a href=\"https://profiles.wordpress.org/wolf45\">wolf45</a> e <a href=\"https://profiles.wordpress.org/zoe20\">zoe20</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Como contribuir</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Para se envolver no desenvolvimento do núcleo do WordPress, vá até o Trac, <a href=\"https://core.trac.wordpress.org/report/6\">escolha um ticket</a> e participe da conversa no canal <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> do Slack. Precisa de ajuda? Confira o <a href=\"https://make.wordpress.org/core/handbook/\">manual do contribuidor do núcleo</a>.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Agradecemos a </em><a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">@westonruter</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</a> e <a href=\"https://profiles.wordpress.org/presskopp/\">@presskopp</a><em> pela revisão do <a href=\"https://wordpress.org/news/2026/02/wordpress-6-9-1-maintenance-release/\">post original</a>.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></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:4:\"3397\";s: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: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:32:\"Nova Agent Skills para WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://br.wordpress.org/2026/02/03/nova-agent-skills-para-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://br.wordpress.org/2026/02/03/nova-agent-skills-para-wordpress/#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, 03 Feb 2026 15:44: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:1:{i:0;a:5:{s:4:\"data\";s:12:\"Lançamentos\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://br.wordpress.org/?p=3391\";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:359:\"Os agentes de código baseados em IA estão cada vez melhores em escrever plugins e temas para WordPress, mas os testes ainda podem ser a parte lenta do processo. O colaborador do WordPress Brandon Payton publicou wp-playground, uma nova habilidade para agentes (Agents Skill) de IA projetada para executar o WordPress via Playground CLI, oferecendo […]\";s: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:\"Fellyph Cintra\";s: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:5409:\"\n<p class=\"wp-block-paragraph\">Os agentes de código baseados em IA estão cada vez melhores em escrever plugins e temas para WordPress, mas os testes ainda podem ser a parte lenta do processo. O colaborador do WordPress <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> publicou <code>wp-playground</code>, uma nova habilidade para agentes (Agents Skill) de IA projetada para executar o WordPress via <a href=\"https://www.npmjs.com/package/@wp-playground/cli\">Playground CLI,</a> oferecendo aos agentes uma maneira rápida e repetível de rodar o WordPress e verificar seu trabalho à medida que iteram.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">“Agentes de IA funcionam melhor quando têm um ciclo de feedback claro. Foi por isso que criei a habilidade wp-playground. Ela dá aos agentes uma maneira fácil de testar o código WordPress e torna a construção e a experimentação com o WordPress muito mais acessíveis.”</p>\n\n\n\n<p class=\"wp-block-paragraph\">— Brandon Payton, Colaborador do WordPress</p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">O que a habilidade(skill) Playground faz</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Quando iniciada, a habilidade executa o WordPress e detecta onde o código atual deve residir em uma instalação do WordPress. Por exemplo, ela pode montar um plugin em wp-content/plugins ou um tema em <code>wp-content/themes </code>reconhecendo assinaturas de arquivos comuns (como cabeçalhos de plugins ou o arquivo <code>style.css</code> de um tema). Isso ajuda os agentes a passar de “código gerado” para “site em execução” com menos etapas manuais.</p>\n\n\n\n<div class=\"wp-block-group has-light-grey-2-color has-charcoal-3-background-color has-text-color has-background has-link-color wp-elements-ad22c0bc1956e32d76ec6b3cf794dae0 is-layout-constrained wp-container-core-group-is-layout-2226b1b1 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)\">\n<h4 class=\"wp-block-heading has-text-align-center\">Instale e experimente hoje.</h4>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">Encontre mais informações neste link do GitHub:</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-36078703 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://github.com/WordPress/agent-skills\">WordPress AI Agent Skills</a></div>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Resultados iniciais e fluxo de trabalho de testes</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Nos testes, os agentes foram capazes de iniciar o WordPress, desenvolver plugins experimentais e validar o comportamento em um ciclo de feedback rápido. Uma vez que o Playground estava em execução, o agente alternava entre ferramentas como <code>curl</code> e Playwright para interagir com o WordPress, verificar resultados, aplicar correções quando necessário e, em seguida, verificar novamente com o Playground.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Inicialização mais rápida e iteração mais suave</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Scripts auxiliares lidam com a inicialização e o encerramento, para que o agente não perca tempo tentando adivinhar quando o WordPress estiver pronto. O uso desses scripts reduziu o tempo de “pronto para testar” de cerca de um minuto para alguns segundos na máquina do autor. A CLI do Playground também pode fazer login automaticamente para facilitar o acesso ao WP-Admin durante os testes.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Instale e experimente agora</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Para aqueles que desejam experimentar no Claude Code, Codex ou outro agente de IA, a instalação requer Node.js e npm e é feita da seguinte forma no terminal de linha de comando:</p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; gutter: false; title: ; notranslate\">\n# Execute isso em um diretório de projeto para instalar as habilidades para esse projeto\nnpx openskills install WordPress/agent-skills\n\n# Torne as habilidades disponíveis para agentes que não sejam o Claude\nnpx openskills sync\n</pre></div>\n\n\n<h2 class=\"wp-block-heading\">Um novo repositório para habilidades de agentes WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Este lançamento também vem com um novo lar para esse tipo de trabalho:<br><a href=\"https://github.com/WordPress/agent-skills\">https://github.com/WordPress/agent-skills</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">É um passo inicial na exploração de como os agentes de IA podem colaborar com as ferramentas do WordPress, e contribuições da comunidade são bem-vindas. Adições futuras sendo exploradas incluem sites do Playground persistentes baseados no diretório atual, execução de comandos em uma instância existente do Playground (incluindo <code>wp-cli</code>) e geração de Blueprints.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Post original: <a href=\"https://wordpress.org/news/2026/01/new-ai-agent-skill/\">https://wordpress.org/news/2026/01/new-ai-agent-skill/</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"></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:74:\"https://br.wordpress.org/2026/02/03/nova-agent-skills-para-wordpress/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:4:\"3391\";s: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:35:\"https://br.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:\"13096052\";s:7:\"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\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 13 Mar 2026 12:57:48 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:\"Thu, 12 Mar 2026 16:19:11 GMT\";s:4:\"link\";s:61:\"<https://br.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}s:5:\"build\";i:1760643936;s:21:\"cache_expiration_time\";i:1773449878;s:23:\"__cache_expiration_time\";i:1773449878;}','off');
INSERT INTO `wp_options` VALUES (1708,'_site_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1773449880','off');
INSERT INTO `wp_options` VALUES (1709,'_site_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:112:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: New Headphones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151463\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://ma.tt/2026/03/hdb630/\";s: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:384:\"<p class=\"wp-block-paragraph\">Not doing a full <a href=\"https://ma.tt/category/in-my-bag/\">What’s In My Bag</a> yet, but I do want to highlight I’ve been really enjoying the <a href=\"https://www.amazon.com/dp/B0FK4K5Z37?tag=photomatt08-20\">Sennheiser HDB 630 Wireless Over-Ear Headphones</a>. <cite>Hat tip: <a href=\"https://pud.com/\">Philip Kaplan aka Pud</a>.</cite></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Mar 2026 10:45:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Selling Your Company\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151455\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2026/03/selling-your-company/\";s: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:2863:\"<p class=\"wp-block-paragraph\">I would like to offer some free business advice to people who are considering selling something they’ve created.</p>\n\n\n\n<p class=\"wp-block-paragraph\">First, if the buyer insists you don’t talk to any other bidders, you are being screwed. They only do this because they don’t want you to find the market-clearing price.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Do you think when Microsoft called LinkedIn and said, “We want to buy you for $26B,” and they replied, “Sure! That sounds good.”</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re very lucky, you get to work with a bank like <a href=\"https://qatalyst.com/\">Qatalyst</a>, which says, “That’s a lovely offer, let’s see who else would be interested.”</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ask yourself why someone wants to buy you? Who else might have the same motivations? That begins a process in which a wide array of parties review the deal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you don’t have the connections or a bank to help you, just email the CEOs of other companies that might be interested. Say: “XYZ wants to buy me for $Y dollars. Is that something you’d also be interested in?”</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now you’re creating a market.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Remember that you’re doing this for the first time, and on the other side of the table, they’ve done dozens of deals.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It <em>really</em> pains me to see WordPress-adjacent companies get taken advantage of by sophisticated financial and corpdev players who strong-arm them into not shopping their deal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A confident buyer doesn’t care if you talk to others because they know they can offer you the best deal, which usually combines money with what happens to the business after it’s sold. This is the magic of <a href=\"https://www.berkshirehathaway.com/\">Berkshire Hathaway</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Warren Buffett doesn’t care if you talk to other bidders; in fact, he wants you to, so you see why he’s the better outcome for your business if you want to sell it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s tempting to want to celebrate every time a creator sells something. Say it’s good for the community. But if they didn’t sell it through a fair process, it’s more likely they were taken advantage of, and that saddens me. </p>\n\n\n\n<p class=\"wp-block-paragraph\">For public companies, failing to follow the process I describe above can constitute a breach of your fiduciary duty to shareholders and expose you to legal action. But there aren’t any such rules for private entities, which is why they get rolled over so often.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Mar 2026 07:09:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Tumblr Unblocked\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151452\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2026/03/tumblr-unblocked/\";s: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:489:\"<p class=\"wp-block-paragraph\">For a brief period, <a href=\"https://www.tumblr.com/\">Tumblr</a> was unavailable to the 115M+ people in the Philippines because the government had blocked it. To their credit, the <a href=\"https://cicc.gov.ph/news/cicc-clears-the-air-system-error-led-to-unintentional-tumblr-blackout-restoration-underway/\">Philippines CICC quickly reviewed and corrected their block after mass public outrage from the Filipino Tumblr community</a>. Let the people tumble!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Mar 2026 05:56:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: Popping Bottles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151449\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2026/03/popping-bottles/\";s: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:809:\"<p class=\"wp-block-paragraph\">With the rise of GLP-1 drugs, there’s a trend that magnums are being ordered at clubs to meet minimums but left unfinished.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think there’s a space for an ultra-high-end wellness drink at clubs. Imagine <a href=\"https://ship.erewhon.com/\">Erewhon</a> meets <a href=\"https://magicmind.com/\">Magic Mind</a> meets <a href=\"https://www.kineuphorics.com/\">Kin</a>, maybe with some effervescence. An elixir that comes out with sparklers but makes you feel great with nootropics not hungover. Priced at hundreds of dollars retail so thousands at a club. It could even be a cold chain, with the freshest ingredients that need to be preserved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Let’s do some turmeric-ginger-cayenne shots and get crunk.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Mar 2026 04:14:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 7.0 Beta 5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20189\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/03/wordpress-7-0-beta-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6714:\"<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 5 is ready for download and testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This version of the WordPress software is still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to test Beta 5 on a test server and site.WordPress 7.0 Beta 5 can be tested using any of the following methods:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.0-beta5.zip\">Beta 5 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=7.0-beta</code>5</td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn\">WordPress Playground instance</a> to test the software directly in your browser. No setup is required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.0 is still <strong>April 9, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who helps with testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/7-0\">7.0-related posts</a> in the coming weeks for more information. <strong>What’s new in WordPress 7.0</strong>? Check out the <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2026/03/wordpress-7-0-beta-3/\">Beta 3</a> and <a href=\"https://wordpress.org/news/2026/03/wordpress-6-9-3-and-7-0-beta-4/\">Beta 4</a> announcements for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Your help testing the WordPress 7.0 Beta 5 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">detailed guide</a> will walk you through testing features in WordPress 7.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 5 updates and highlights</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 5 contains more than 101 updates and fixes since the Beta 3 release.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Each beta cycle focuses on bug fixes, and more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 3 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-05&until=2026-03-12\">GitHub commits</a> since March 5, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=03%2F05%2F2026..03%2F12%2F2026&milestone=7.0&group=component&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets</a> since March 5, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Issues addressed since Beta 4:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-03-10&until=2026-03-12\">GitHub commits</a> since March 10, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=03%2F10%2F2026..03%2F12%2F2026&milestone=7.0&group=component&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets</a> since March 10, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WordPress 7.0 Beta 5 contains a new feature!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Instantly access all the tools you need with a single click using the <strong>new Command Palette shortcut in the Omnibar</strong>! In 7.0 Beta 5, logged-in editors will see a field with a <code>⌘K</code> or <code>Ctrl+K</code> symbol in the upper admin bar that unfurls the command palette when clicked. The new command palette entry point streamlines navigation and customization, giving you full control from anywhere on your site – whether you’re editing, designing or just browsing plugins.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 5 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>A smooth melody</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beta 5 plays on its strings.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Seven brings good things.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a class=\"mention\" href=\"https://profiles.wordpress.org/amykamala/\"><span class=\"mentions-prefix\">@</span>amykamala</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/annezazu/\"><span class=\"mentions-prefix\">@</span>annezazu</a> and <a class=\"mention\" href=\"https://profiles.wordpress.org/4thhubbard/\"><span class=\"mentions-prefix\">@</span>4thhubbard</a> for proofreading and review.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Mar 2026 15:49:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Ahmed Kabir Chaion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Open Channels FM: The Evolution of Hosting Security Standards and the Impact on Emerging Technologies\";s:7:\"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:34:\"https://openchannels.fm/?p=2088299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://openchannels.fm/the-evolution-of-hosting-security-standards-and-the-impact-on-emerging-technologies/\";s: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:375:\"In today’s episode it’s time to take a look into the world of ethical hosting and the ever-evolving challenges of internet infrastructure. Joining co-hosts Dave Lockie and Robert Jacobi is David Snead, director of the Secure Hosting Alliance (SHA) and a longstanding advocate for better standards in web hosting. In this conversation, they explores what […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Mar 2026 10:44:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: WordPress Everywhere\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151433\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2026/03/wordpress-everywhere/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6781:\"<p class=\"wp-block-paragraph\">As we <a href=\"https://wordpress.org/news/2026/03/announcing-my-wordpress/\">announced</a> and <a href=\"https://techcrunch.com/2026/03/11/wordpress-debuts-a-private-workspace-that-runs-in-your-browser-via-a-new-service-my-wordpress-net/\">TechCrunch covered</a>, <a href=\"https://my.wordpress.net/\">my.wordpress.net</a> has soft-launched.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What this means is you need to fundamentally shift how you think about WordPress. </p>\n\n\n\n<p class=\"wp-block-paragraph\">From the beginning, WordPress has always been open source, giving you freedom, liberty, autonomy, and digital sovereignty. <a href=\"https://automattic.com/creed/\">Open source is the most powerful idea of our generation</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For the past few decades, WordPress was software you got from a cloud provider or web host, such as <a href=\"https://wordpress.com/\">WordPress.com</a>, <a href=\"https://www.bluehost.com/\">Bluehost</a>, <a href=\"https://www.hostinger.com/\">Hostinger</a>, or <a href=\"https://pressable.com/\">Pressable</a> (the currently <a href=\"https://wordpress.org/hosting/\">recommended WordPress hosts</a>). You could self-host it on a Raspberry Pi or home server, but few people did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The experience of <a href=\"https://wordpress.org/download/\">downloading WordPress</a>, as my Mom did, is that it unzips a bunch of PHP and various code files onto your desktop. Very confusing!</p>\n\n\n\n<p class=\"wp-block-paragraph\">But now, thanks to incredible advances in <span style=\"margin: 0px; padding: 0px;\"><a href=\"https://webassembly.org/\" target=\"_blank\">WebAssembly (WASM)</a>, we can spin up a web server, a database (SQLite or MariaDB), and a full WordPress installation</span> inside your browser in about 30 seconds. Instantly. No server needed. <a href=\"https://youtu.be/VeigCZuxnfY?t=2914\">I introduced Playground at State of the Word in 2022</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can even use it to cross-publish apps to the web, desktop, and iOS, like <a href=\"https://wptavern.com/blocknotes-app-runs-wordpress-natively-on-ios-now-in-public-beta\">Blocknotes did in 2023</a>. You <a href=\"https://blocknotes.org/\">can get the latest Blocknotes at Blocknotes.org</a>. One codebase, multiple platforms.</p>\n\n\n\n<p class=\"wp-block-paragraph\">These <a href=\"https://wordpress.org/playground/\">WordPress Playground </a>containers are fully composable and atomic. You can track and roll back any change. Undo for everything. Stop thinking of WordPress as just on a web host and worrying about maintenance and management, and more as a self-contained unit of open source goodness, a fun little package where you own and control the code and data and can run it however you like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How perfect is that for AI to work with? <a href=\"https://wordpress.org/playground/\">Playground</a> makes WordPress local, fast, and trivial to spin up multiple instances, test code changes, and save them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Next up, we’re going to add peer-to-peer sync, version control integration, and cloud publishing so other people can access it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I believe this will take us <a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">from millions of WordPresses</a> in the world to billions. Hosting isn’t going away; in fact, I think demand for cloud syncing will increase drastically as we radically open up what people can build on top of WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In an AI age where it’s trivial to spin up software from scratch, consumers will have to give much more thought to brands they trust to be in it for the long term. We’ve been relentlessly iterating on WordPress since 2003. I plan to work on it the rest of my life, and there’s a broad community of hundreds of thousands, if not millions, of people who make their living on top of WordPress. </p>\n\n\n\n<p class=\"wp-block-paragraph\">On WordPress.com we offer <a href=\"https://wordpress.com/100-year/\">100-year plans</a> and <a href=\"https://wordpress.com/100-year-domain/\">100-year domains</a>, and I believe we’re one of the few companies where that’s credible. It’s led by <a href=\"https://rosefutures.com/\">Zander Rose</a>, who ran the <a href=\"https://longnow.org/\">Long Now Foundation</a> (one of my favorite non-profits) from 1997 to 2023, a quarter century.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In core WordPress, we are <em>obsessed</em> with backwards compatibility. You can run plugins and themes written 20 years ago on today’s WordPress. I’ve stumbled on decade-old installs, and the built-in auto-upgrade took everything to the newest version.</p>\n\n\n\n<p class=\"wp-block-paragraph\">At <a href=\"https://automattic.com/\">Automattic</a>, for better and worse, <a href=\"https://killedbygoogle.com/\">unlike Google</a>, we almost never shut things down. We obsess about <a href=\"https://blog.archive.org/2026/02/04/inside-the-new-wayback-machine-plugin-for-wordpress/\">maintaining or redirecting permalinks</a>. We make it easy not just to get your data in, but take it out too. We build businesses that lower churn not by locking you in (<a href=\"https://support.wix.com/en/article/exporting-or-embedding-your-wix-site-elsewhere\">Wix famously has no export</a>) but by making it easy for you to leave. <a href=\"https://www.youtube.com/watch?v=LSGl3d4KOMk\">If you love somebody, set them free</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In the next few years, there will be a <a href=\"https://en.wikipedia.org/wiki/Cambrian_explosion\">Cambrian explosion</a> of software and services. You’re going to have a lot of choices about where to put your most precious data and software. You should demand open source and bet on those who are clearly in it for the long-term.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Today, everyone gets a phone number and email when they grow up. That will expand in the future, everyone will have <a href=\"https://wordpress.com/domains/\">a domain</a> and a WordPress. A part of the internet that you own.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Technology is best when it brings people together. Technology is best when it puts you in control, gives you ownership, digital autonomy, freedom, and liberty. That’s open source. It’s so exciting to see how AI is supercharging open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"http://make.wordpress.org/\">Join the WordPress community</a>. It’s fun! We have cookies that don’t track you. <img alt=\"😉\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png\" style=\"height: 1em;\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Mar 2026 02:07:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress.org blog: WordPress 6.9.4 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20184\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/03/wordpress-6-9-4-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2238:\"<h2 class=\"wp-block-heading\">WordPress 6.9.4 is now available</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/03/wordpress-6-9-2-release/\">WordPress 6.9.2</a> and <a href=\"https://wordpress.org/news/2026/03/wordpress-6-9-3-and-7-0-beta-4/\">WordPress 6.9.3</a> were released yesterday, addressing 10 security issues and a bug that affected template file loading on a limited number of sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The WordPress Security Team has discovered that not all of the security fixes were fully applied, therefore 6.9.4 has been released containing the necessary additional fixes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because this is a security release,<strong> it is recommended that you update your sites immediately</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-6.9.4.zip\">download WordPress 6.9.4 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on WordPress 6.9.4, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-4/\">version page on the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The security team would like to thank the contributors who reported and investigated this issue, in particular <a href=\"https://profiles.wordpress.org/kraftner\">Thomas Kräftner</a> for his responsible disclosure. The security issues that are resolved in 6.9.4 are:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A PclZip path traversal issue reported independently by <a href=\"https://profiles.wordpress.org/francescocarlucci/\">Francesco Carlucci</a> and <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An authorization bypass on the Notes feature reported by <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An XXE in the external getID3 library reported by <a href=\"https://profiles.wordpress.org/regex33/\">Youssef Achtatal</a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Mar 2026 15:34:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: #208 – Behind the Scenes at the CloudFest Hackathon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=203053\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/podcast/208-behind-the-scenes-at-the-cloudfest-hackathon\";s: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:34011:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case a firsthand look at the CloudFest Hackathon.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you or your idea featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have something different. Usually it’s me, Nathan Wrigley, chatting with a guest about something related to WordPress, whether that’s a plugin, Core updates, or perhaps an aspect of the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This time around, it’s me, and later on, a bunch of guests talking about an event. The event in question has already taken place, but the next iteration of it is just around the corner. And if you read the title of this episode, you’ll already know that I’m talking about CloudFest.</p>\n\n\n\n<p class=\"wp-block-paragraph\">CloudFest is an unusual event. The most obvious indicator of this fact is that it takes place in Europa Park in Rust, Germany. It’s one of the world’s premier theme parks.</p>\n\n\n\n<p class=\"wp-block-paragraph\">CloudFest is at its heart, a tech conference, but every year, just before the main CloudFest conference begins, a very different event takes place. It’s called the CloudFest Hackathon. So whilst the rollercoasters are testing the laws of physics outside, inside a group of developers, UX designers and system architects are testing the limits of the modern internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Dozens of the world’s most talented engineers strip away the corporate sales pitches and set themselves a variety of collaborative challenges to be completed in just three days. Now we see hackathons all the time. Usually they’re sponsored by a single company trying to get people to use their specific API, or their high pressure competitions, to build a disruptive startup in 48 hours. But the CloudFest Hackathon isn’t like this. It’s professional, it’s non-commercial, and its primary intention isn’t necessarily to build a product, it’s to maintain the ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So let’s hear from somebody who knows all about the CloudFest Hackathon, and that person, is Carole Olinger.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:04] <strong>Carole Olinger:</strong> My name is Carole, and I am the head of CloudFest Hackathon. I’m very excited about my role here and to be able to connect so many awesome people and talent around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think there are multiple definitions for a hackathon. In this case I would probably define it as a gathering of open source enthusiasts who are going to be working and coding and designing a lot of exciting projects together. They haven’t met before in many cases, and they are put in the same room for three days being fed, being caffeinated and trying to improve the open web.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:42] <strong>Nathan Wrigley:</strong> Who’s on the organizing team?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:44] <strong>Carole Olinger:</strong> So basically, I am leading the whole operation in my role for CloudFest and the World Hosting Days. And I have the most amazing supporting team around me that anyone could ever imagine. So it is Lucas Ratke from Automattic, Alain Schlesser from Yoast, and Thierry Muller from Google, who are on the project support team, and making sure that we have all these really valuable projects in our event. And that project leads are prepared in the best possible way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And for the first time we also have a volunteer that is helping during the event. And is specifically helping me wrangling the 110 amazing sheep around me, and to make sure that there are accommodations are covered. That all the catering is being done. And that is a Simon Kraft from Group One.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:36] <strong>Nathan Wrigley:</strong> I show up to an event like this, all the jigsaw pieces are in place you think, oh, it just happens, but of course it doesn’t just happen. How long have you spent working on this event? How long have you been wrangling this whole thing into existence?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:49] <strong>Carole Olinger:</strong> Usually we start in September. And then it’s more okay, what are our objectives? What are our goals for this edition? We are really trying to take as much feedback as possible from previous year’s attendees, to make sure that we have improvements in place and new additions to the event for the following edition. So that happens in September. Creating the team, making sure that we have specific objectives and goals and those are manageable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the actual work starts in October, and then becoming more and more intense over the upcoming months. And I would say January is probably the most crazy month. I barely slept.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:31] <strong>Nathan Wrigley:</strong> So the idea really is that you put. In this case, 10 projects in a room. You’ve got 10 project leads and, in some cases there’s multiple people leading a project. And then you add into that mix over a hundred people, many of whom appear to be developers, and you stir that pot up a bit, and hope that things come out the end that are useful, that have been enjoyable to work on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How do you decide what the 10, in this case, projects were? And are you oversubscribed with people wishing to be a part of it? And so how do you decide what makes it? How do you decide which projects are interesting to CloudFest Hackathon each year?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:10] <strong>Carole Olinger:</strong> So this has been evolving over the years. So I remember additions, three or four years ago, or previous to the pandemic. Where our project team was pulling projects out of the different CMS communities, open source project communities. So we had ideas about what we wanted to tackle, and some projects came out of the communities. So we were like hunting ideas, and also planting ideas inside communities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This year is the first year where we didn’t have to do any of that. We had 22 pitches from different CMS communities and other open source projects that were pitching their ideas to us. So it was like a kind of a hard choice to determine which ones are going to make it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So usually we are trying to take into consideration what the theme of the main event CloudFest is, and obviously as everyone is excited about AI these days, that is something we wanted to cover. So we made sure we had some projects that had AI involvement. And then what is really important to my heart, and to the team’s heart, is that we are having cross CMS collaborations.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we are trying to have WordPress people here, which is obviously the community that I am mostly connected with. But also TYPO3. TYPO3 is one of our, the W3 Association is one of our top level sponsors. We since years we have Joomla people, Drupal people joining us. We are trying to find a good mix to empower those cross CMS collaborations and also cross-project collaborations. So even within one platform, just to name WordPress as an example, we try to make sure that we have projects that could eventually benefit from each other.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:54] <strong>Nathan Wrigley:</strong> I’m guessing also, there’s a component of trying to work out projects that if you put a hundred people in a room, there’s not a hundred replicas of the same person. Each of them are different. That there are 10 different places where they can land. Because one thing that I didn’t realize and was really curious to me, is when the Hackathon started, apart from the project leads, nobody’s assigned a place to go. They listen to a little speech at the beginning. It’s like a promotional thing. Two minutes, this is what we want to do, the pitch. And then the people make a decision. And for 10 minutes or something, there’s this sort of chaotic moving of people around, and then it all settles down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So presumably you have a wide array of project pitches, so that those a hundred plus people can decide, they’re not all surrounding the one table and there’s a table over there that’s empty, I guess that fits in the jigsaw as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:44] <strong>Carole Olinger:</strong> So we are taking very much care about the selection process of applicants. So when we know what our projects are going to look like, we are trying to match their needs in terms of skills that attendees are going to present to us during their application.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So usually we have between 300 and 400 applications for the Hackathon, and we have 110 slots. But, and this is important to understand, our partners are bringing team members within these 110 attendees. And our partners this year have been super actively involved, which I love. So they were not only giving us money to make this event possible, to be able to invite open source contributors to this place, including their hotel, accommodation and food. They were bringing, people resources. I hate the term, but you know what I mean. So they were sending their crew to lead, to participate in these open source ideas and projects. So in the end we had 60 available spots for open source contributors. And then we made sure that we are matching the skills that they were sharing with us in their applications with the needs that the projects will have on the table.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we have a pretty good understanding already about who’s going to be at what table. And obviously we are monitoring that. So we give them some time to make the decisions. And if we see that there are skills missing at a certain table, or if there’s another table that is going to be too full and too complicated to manage by the project lead, we are kindly convincing, and reassigning people, to participate in different projects.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:19] <strong>Nathan Wrigley:</strong> So that’s interesting. So it’s not just a free for all? The idea is to maximize the output of the projects, the 10 different projects at the end, and you will, like you said, politely, ask people to move over if you believe that the thing that they have said that they’re good at, is, matching. And there’s a, I don’t know, a hole in one particular project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That brings me to this question then. Is the intention that these projects have a life after this event has finished? Or is it just a case of, okay, we’ve all had a nice time, the event has closed, let’s all move on with our lives.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:48] <strong>Carole Olinger:</strong> This is becoming more and more important to us. As I said earlier, we are trying to improve something every year like, like focusing on something when we are fixing our goals that we can do better every year. And what we can definitely do better is spreading the word about what amazing achievements the teams have been building during the event, and make sure that this project’s become more sustainable. So that the world knows that there’s potential in the outcomes of CloudFest Hackathon project, and to potentially unlock support and resources for these projects to continue.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I would love to spread the word, making it possible to unlock these resources. And then also inside our team, building more and more resources to follow up with this project leads from our end.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:33] <strong>Nathan Wrigley:</strong> There’s an element of, how to describe it? There’s this time pressure in the whole event. So that the thing is basically three days long, from inception until final judging, three days. So the pressure is on, and I can feel at the moment the pressure is increasing slightly. You can sense that people are getting quite into the project they’re working on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I noticed last night, long after the event had officially closed down, there was quite a lot of people still sitting there. They’re were obviously wedded to what they’re doing. There is this sort of like Shark Tank element where there’s going to be a judgment at the end and somebody’s going to win.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How does that work? Who gets to decide who’s the winner?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:06] <strong>Carole Olinger:</strong> So we do have a jury, and the jury is composed of representatives of our top tier partners. And they send one representative to the jury. Then we do have one representatives from the Groundbreaker Talents charity project. Because, on a side note, all these awards are being sponsored by companies, and everything that we are collecting in terms of sponsorships is going to the Groundbreak Talents initiative. And then we have the project support team, and myself being on the juries. And it’s an uneven number. So we have nine people, which is always good to have on a jury. And after the presentation of results on the last day of the hackathon, the jury is going to deliberate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then we are going to listen to the project support team, who has been working the room and connecting with the project tables during the three days in terms of technical achievements, challenges they have seen. So they’re going to give us some impression on that. And that is mostly important for the Tech Visionary Award. And then, all of us have had the chance to obviously see the presentations, which is important for the Pitch Perfect Award. Who has the most appealing presentation of results? We do have the Social Media Master Award, that is fully being tracked.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So Simon and I, we are going to give the jury some insights on who has created the most boss on social media. . And, then we do have the Breaking Barriers Award, which is a new one. So this is about using inclusive technologies, and getting some outputs that are going to be helpful for a diverse set of users, and connecting people on the user base, but also how the people have been working together in terms of having diverse skills and perspectives on the table.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So these are some of the awards, and there’s going to be an overall winner. We have five categories, and an overall winner. And the overall winner is, the one that has the most points.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks to Carole for that comprehensive introduction to the CloudFest Hackathon. Now, let’s look at the why. Why do people travel from 30 plus different countries around the world to do all of this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">In our industry, we talk a lot about the cloud, but we often forget that the cloud is just a massive collection of interconnected open source projects. You have WordPress powering 40 plus percent of the web, you have the Linux kernel, you’ve got PHP and Python communities, and then you have the hosting providers and hardware manufacturers. Normally, these groups live in silos. They communicate via GitHub issues or formal API documentation. Well, the intention of the hackathon is to create what might be called the human API. It’s about taking a person who might maintain a security plugin, and sitting them at the same table as an engineer who manages millions of servers for a global host.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When you remove the barrier of the screen, the friction of the internet disappears. Problems that have been sitting in a backlog for six months get solved over a coffee, or a shared meal because the right people are finally in the same physical space.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Although, as Carole mentioned, there is a winner, this isn’t really about winning a prize. In fact, the prizes are almost secondary to the real goal, which is contributing back to open source projects, some of which already exist, some of which are new. The intention is all free and open source software or FOSS for short.</p>\n\n\n\n<p class=\"wp-block-paragraph\">These contributors aren’t there to build something proprietary and closed. They’re there to ensure the plumbing of the internet stays robust, secure, and interoperable. Oh, and to have some fun collaborating at the same time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Speaking of contributors, let’s hear from some of them now and get a little taste of what their project was all about.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The room as you will hear was a little noisy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:52] <strong>Javier Casares:</strong> I am Javier Casares and I am one of the co-leads from for the CMS Cloud Manager Project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:58] <strong>Nathan Wrigley:</strong> What does this project hope to achieve?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:00] <strong>Javier Casares:</strong> Usually when you have a cPanel or Plesk or some kind of panel, you can install a WordPress, for example, with one click, but the server is not configured.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So in this project, we want to configure not only the CMS, but also the server where the CMS is going to be</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:20] <strong>Nathan Wrigley:</strong> And how’s it going so far?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:22] <strong>Javier Casares:</strong> It’s fine. We have the public part because we want to have a website so you can configure things and prepare everything. And then we have this software, the real software that creates everything. And more or less it’s, fine, at this moment. So I think we can achieve everything for the hackathon, for the finals.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:46] <strong>Mattias Pfefferle:</strong> I’m Mathias. I am working on Activity Pub and the Fediverse.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:51] <strong>Nathan Wrigley:</strong> And what’s the project that you’re working on at CloudFest, the Hackathon?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:55] <strong>Mattias Pfefferle:</strong> We are working on federated events. So it’s very much a special case of the Fediverse.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:02] <strong>Nathan Wrigley:</strong> And what is the intention of the project? What are you hoping to get out of it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:05] <strong>Mattias Pfefferle:</strong> We try to build a decentralized, alternative to the big social networks around events, so that people does not have to rely on something they do not have control over. So we would hope to get an alternative to meetup.com, maybe, or any other big closed proprietary social network, around events.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:29] <strong>Nathan Wrigley:</strong> And how’s it going so far?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:30] <strong>Mattias Pfefferle:</strong> It’s mixed, because even if it’s a standard, there are different variations of using the standard. So we filed a lot of bug reports, and tried to work on a standard that better describes the standard , if that makes sense? And we’re trying to make federation happen using WordPress and some other platforms that are built by people that are part of the Hackathon team.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:58] <strong>Milana Cap:</strong> My name is Milana Cap, and I’m on a project WPCLI as MCP. MCP stands for Milana Cap pro. No, it doesn’t</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:09] <strong>Nathan Wrigley:</strong> What is the intention of this project then?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:11] <strong>Milana Cap:</strong> We are introducing AI into WPCLI. So, you could use AI in different aspects of WordPress, like content creation and all of that. But it was missing in development process, especially in local instances. So now we have that, and it’s actually a lot of fun. Much more fun than I thought.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:32] <strong>Nathan Wrigley:</strong> And how’s it going so far?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:34] <strong>Milana Cap:</strong> So far we build a spam machine, and that’s official name. And we actually had a MVP on first day. It’s really fun. Yeah. And we are just learning how this AI is behaving by itself in our locals.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:52] <strong>Patricia BT:</strong> Hello, Nathan. I’m Patricia BT. I’m living in Geneva, Switzerland. I speak French, and I am my own boss, . And I came, with that pitch, as a project for the Hackathon because for me it’s very important to own your data and preserve what exists on the web, and not lose anything.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:11] <strong>Nathan Wrigley:</strong> And what’s the name of your project?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:13] <strong>Patricia BT:</strong> CMS Freedom.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:14] <strong>Nathan Wrigley:</strong> And how’s it going so far?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:16] <strong>Patricia BT:</strong> It’s going very well. We have, tech people here, engineer, who are doing amazing work with, especially LLMs. So we are using AI to grab any HTML content and discover the format, the elements, and then later be able to import that into WordPress block theme.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For now it’s WordPress block theme and content. And later the hope is that people from other CMSs, other system, can just modify that last bit and import what the tool extracts, and import to their own system. So we can move from any HTML, render any page on the web and create that for your CMS.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:59] <strong>Nemanja Cimbaljevic:</strong> Hi, I am Nemanja. I come from Serbia and currently I’m with GoDaddy as a software engineer.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:05] <strong>Nathan Wrigley:</strong> And what’s the name of your project?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:07] <strong>Nemanja Cimbaljevic:</strong> I will not break my tongue. We will call it AI Accessibility Content Updater.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:12] <strong>Nathan Wrigley:</strong> And what is the intention? What are you hoping to achieve over these three days?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:16] <strong>Nemanja Cimbaljevic:</strong> We will try to make a proof of concept that will allow us to move on in the future where the AI is capable to help with accessibility of the websites that can be improved? Not all of them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:29] <strong>Nathan Wrigley:</strong> Are there any constraints around what it is that you are hoping to be able to do? Or is it literally all the accessibility?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:35] <strong>Nemanja Cimbaljevic:</strong> It’s all about accessibility, and yes, we will see where we will go. It was announced as a trial and error. So we will see if there is any trial or just error.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:48] <strong>Anne-Mieke Bovelett:</strong> Hi, I’m Anne Bovelett.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:50] <strong>Nathan Wrigley:</strong> And what’s the name of the project you’ve got at CloudFest Hackathon?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:54] <strong>Anne-Mieke Bovelett:</strong> It’s called Accessible Infographics.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:56] <strong>Nathan Wrigley:</strong> And what is the intention? What are you hoping to achieve in these three days?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:01] <strong>Anne-Mieke Bovelett:</strong> Right now we’re creating a plugin for WordPress. . And when you have infographics on your site because you produce medicine, or machines, or you have statistics on your site. You can use our WordPress block, and upload an image through that, and then it will help you to make it accessible by creating extra information under the hood.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the best thing of this is it’s not just going to be for WordPress, because we’re conceptualizing that for others so they can easily recreate this in other open source CMSs. And it will save millions and millions of people from sitting in the dark with very important information on websites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What it actually means is that, also when we manage to move on with this project in the next phase, we’re gonna try and do this in bulk. To do it backwards for companies that already have a lot of infographics on their website, and understand that they have to do it either by law, or because they’re smart and want higher converting web shops, for example.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the possibility will come that they can do that backwards in bulk, and it will save them thousands and thousands in money that they have to invest in making this happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:20] <strong>Wesley Stessens:</strong> Yes. My name is Wesley Stessens, and I’m from Belgium, and we work on the Peer-to-peer Federated RAG Framework with, our team.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:30] <strong>Nathan Wrigley:</strong> And can I ask, what is the intention of that project over the three days? What are you hoping to achieve?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:35] <strong>Wesley Stessens:</strong> We are hoping to achieve something that hasn’t been done before in the, in the RAG space.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So basically RAG, or Retrieval Augmented Generation is way how you can augment an LLM and AI with extra data. And we want to allow everyone to create their own databases. And anyone can just join our network with their own knowledge.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, someone who knows a lot about beers, they can join our network and have like a library full of all information about very specific niche beers, maybe beers they brew themselves or whatever. And then any other node in the network can ask a specific question. And then our purpose is to route that question to the best matching node in a decentralized way. So there’s no servers or big companies. In between everything is done in a peer to peer way. So they get back the best matching documents from other people’s libraries, so to speak.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then we use that to ask an LLM, or an AI a question with the context that we got from other people’s databases that matched best. And now we show the results to the user, or we create like a chat interface maybe around that. That’s the end result that we hope to achieve.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:49] <strong>Tadas Pukas:</strong> I’m Tadas.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:50] <strong>Nathan Wrigley:</strong> And what is the name of the project?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:52] <strong>Tadas Pukas:</strong> It’s WordPress Staging Environment Manager. It’s a bit complex to understand, but it does very simple thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:59] <strong>Nathan Wrigley:</strong> And what’s the intention at the end of these three days? What would you ideally like to be shipping? Have finished?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:05] <strong>Tadas Pukas:</strong> Yeah, so we want to have open source plugin, and actually we have it almost, so it’s the final touches.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And this will be distributed. It’s already in the public GitHub repo. So people will be able to download zip file, install a plugin, and create staging environments. Not only create but sync changes from staging to live. Actually, our name of the plugin is Staging to Live, so it’s, yeah, almost done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Almost ready.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:29] <strong>Nathan Wrigley:</strong> Okay. I hope that you enjoyed this different style of podcast. Hopefully you learned something about CloudFest and the CloudFest Hackathon.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You certainly got to hear from a wide variety of contributors, and got to peel back the curtain about what a hackathon is, and the different projects people work on. There’s a great energy at events like this, and maybe this will convince you to explore hackathons in the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You don’t need to be a coder. Each project needs a wide array of talents from coders to marketers, designers, to project wranglers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like I said, at the top of the show, CloudFest 2026 is just around the corner. There’s an annual event both in the US and the one discussed here in Germany.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And we’ll be back next week with more from CloudFest and the CloudFest Hackathon.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have something different.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Usually it’s me, Nathan Wrigley, chatting with a guest about something related to WordPress, whether that’s a plugin, Core updates or perhaps an aspect of the WordPress community. </p>\n\n\n\n<p class=\"wp-block-paragraph\">This time around it’s me, and later on a bunch of guests talking about an event. The event in question has already taken place, but the next iteration of it is just around the corner, and if you read the title of the episode, you’ll already know that I’m talking about <a href=\"https://www.cloudfest.com\">CloudFest</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">CloudFest is an unusual event; the most obvious indicator of this is the fact that it takes place in Europa-Park in Rust, Germany. It’s one of the world’s premier theme parks.</p>\n\n\n\n<p class=\"wp-block-paragraph\">CloudFest is at its heart a tech conference, but every year, just before the main CloudFest conference begins, a very different event takes place. It’s called the <a href=\"https://hackathon.cloudfest.com\">CloudFest Hackathon</a>. So, whilst the roller coasters are testing the laws of physics outside, inside, a group of developers, UX designers, and system architects are testing the limits of the modern internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Dozens of the world’s most talented engineers, strip away the corporate sales pitches, and set themselves a variety of collaborative challenges, to be completed in just three days.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, we see “hackathons” all the time. Usually, they’re sponsored by a single company trying to get people to use their specific API, or they’re high-pressure competitions to build a “disruptive” startup in 48 hours. But the CloudFest Hackathon is not like this. It’s professional, it’s non-commercial, and its primary intention isn’t to build a product, it’s to maintain the ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Today we’re going to be hearing from a variety of people who were involved in the 2025 event. The 2026 event is just around the corner.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You’ll hear from:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Carole Olinger (the Hackathon lead)</li>\n\n\n\n<li>Javier Casares</li>\n\n\n\n<li>Mattias Pfefferle</li>\n\n\n\n<li>Milana Cap</li>\n\n\n\n<li>Patricia BT</li>\n\n\n\n<li>Nemanja Cimbaljevic</li>\n\n\n\n<li>Anne-Mieke Bovelett</li>\n\n\n\n<li>Wesley Stessens</li>\n\n\n\n<li>Tadas Pukas</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">They’re a tiny sample of who was present at the event, but hopefully they will give you a flavour of what the CloudFest Hackathon is, why people attend, and what kinds of projects they’re involved in.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.cloudfest.com/blog/cloudfest-hackathon-2025-review\">CloudFest Hackathon 2025 Recap</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.cloudfest.com\">CloudFest</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://hackathon.cloudfest.com\">CloudFest Hackathon</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Mar 2026 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: Your Browser Becomes Your WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19831\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/03/announcing-my-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10343:\"<p class=\"wp-block-paragraph\">For nearly two decades, WordPress has been known for a simple, powerful idea: that anyone should be able to get online and start creating with minimal friction. The famous five-minute install captured that spirit for an earlier era of the web. Today, we’re introducing <strong><a href=\"https://my.wordpress.net/\">my.WordPress.net</a></strong>, a new take on that idea designed for a new generation of creators.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-20049\" height=\"421\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image1-revised.png?resize=1024%2C421&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">With my.WordPress.net, WordPress runs entirely and persistently in your browser. There’s no sign-up, no hosting plan, and no domain decision standing between you and getting started. Built on <a href=\"https://wordpress.org/playground/\">WordPress Playground</a>, my.WordPress.net takes the same technology that powers instant WordPress demos and turns it into something permanent and personal. This isn’t a temporary environment meant to be discarded. It’s a WordPress that stays with you.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>New Ways to WordPress</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">When you open my.WordPress.net, you’re placed directly into a complete WordPress environment that runs entirely in your browser. What makes this approach meaningful is not just where WordPress runs, but how it changes the relationship between people and the software itself. By removing the need to sign up or make early decisions about hosting and visibility, my.WordPress.net reframes WordPress as a space you can enter and work within, rather than a service you have to configure before you begin.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">“This takes WordPress from being framed as something that is democratizing publishing to democratizing digital sovereignty.” – <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Seen through that lens, my.WordPress.net is not just about convenience. As you don’t need to choose a hosting provider, your WordPress belongs entirely to you. In a publishing environment, you’d briefly interact with WordPress as you prepare your next post. In a personal setting, it becomes a place you shape and return to. That change unlocks new ways of thinking about what WordPress can be.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Permanently and Privately Yours</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">Because sites on my.WordPress.net are private by default and not accessible from the public internet, they don’t behave like traditional websites. They aren’t optimized for traffic, discovery, or presentation, and they don’t need to be. Instead, WordPress becomes a personal environment where ideas can exist before they are ready to be shared, or where they may never be shared at all.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This changes how WordPress can be used day to day. It becomes a place to think, to draft, to organize, and to experiment without pressure, whether that means writing privately, collecting research, or building small tools for personal use. Learning also fits naturally into this model, since people can explore plugins, themes, and features inside a real WordPress environment where mistakes are expected and recoverable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This turns WordPress into a personal workspace. It becomes a place for thinking, learning, prototyping, and tinkering, where exploration matters more than outcomes. In that role, WordPress shifts from being something you prepare for others to visit into something you actively work inside, adapting to how you want to create and learn over time.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Sparking Creativity with Apps</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-20046\" height=\"566\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image4-revised.png?resize=1024%2C566&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">To make these ideas concrete, my.WordPress.net includes an App Catalog with pre-configured experiences designed specifically for personal use, built with <a href=\"https://wordpress.org/plugins/\">WordPress plugins</a>. These examples highlight how WordPress can function when it’s private, persistent, and easy to experiment with. Each app installs with a single click and configures itself automatically.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Personal CRM</strong></h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-20048\" height=\"531\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image2-revised.png?resize=1024%2C531&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">A private relationship manager designed to help you stay in touch with people who matter to you. Contacts can be grouped, enriched with personal details, and paired with reminders to reconnect. In the demo, this extends to analyzing communication patterns using imported chat data, all stored locally inside WordPress.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Personal RSS Reader</strong></h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-20043\" height=\"553\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image7-revised.png?resize=1024%2C553&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Using the <a href=\"https://wordpress.org/plugins/friends/\">Friends plugin</a>, WordPress becomes a quiet, personal feed reader. Instead of relying on external platforms, you can follow sites and creators inside your own WordPress and read at your own pace, free from algorithms or engagement pressure.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>AI Workspace and Knowledge Base</strong></h3>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20045\" height=\"540\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image5-revised.png?resize=1024%2C540&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20044\" height=\"539\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/02/image6-revised.png?resize=1024%2C539&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Because my.WordPress.net is powered by WordPress Playground, an AI assistant can safely modify it, empowering you to customize beyond what you’re used to. Ask it to modify a plugin to your liking, or create an entirely new one, featuring your desired block. Ask it about the data you have stored in your WordPress. The assistant remembers what it touches and makes it easy to share your changes with others. Over time, WordPress itself can become your personal knowledge base that the AI understands and works with.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Zero Barriers</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">my.WordPress.net lowers the barrier to getting started with WordPress to almost nothing. It offers a fast, commitment-free way to explore, learn, and build, whether the result is a long-term personal project or something that eventually moves elsewhere. In that sense, it updates the spirit of the <a href=\"https://developer.wordpress.org/advanced-administration/before-install/howto-install/\">five-minute install</a> for a browser-first web.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What you should know</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Storage starts at roughly 100 MB</li>\n\n\n\n<li>The first launch takes a little longer while WordPress downloads and initializes</li>\n\n\n\n<li>All data stays in your browser and is not uploaded anywhere</li>\n\n\n\n<li>Each device has its own separate installation</li>\n\n\n\n<li>Backups should be downloaded regularly</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Create and explore</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress has always grown through experimentation. People trying things, breaking things, and discovering new ways to use the platform have shaped what WordPress is today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">my.WordPress.net continues that tradition by making experimentation easier and more personal. It’s an invitation to create without pressure, to explore ideas that may never be published, and to use WordPress in ways that fit your life.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://my.wordpress.net/\">Start exploring at <strong>my.WordPress.net</strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em><a href=\"https://my.wordpress.net/\">my.WordPress.net</a> is built on WordPress Playground technology. Learn more at <a href=\"https://wordpress.org/playground/\">WordPress.org/playground</a> or join the conversation in the #meta-playground channel on <a href=\"https://make.wordpress.org/chat/\">WordPress Slack</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Mar 2026 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brandon Payton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Open Channels FM: WordPress Takes the Stage at CloudFest with the WP Business and Agency Summit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2551041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://openchannels.fm/wordpress-takes-the-stage-at-cloudfest-with-the-wp-business-and-agency-summit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:220:\"WordPress is making waves at CloudFest with the WP Business & Agency Summit on March 23 in Germany. It’s all about growth, partnerships, and innovation, connecting agencies and cloud services for great networking.\";s: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, 11 Mar 2026 10:47:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"HeroPress: WordPress: the untapped treasure for leverage.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=8462\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:162:\"https://heropress.com/essays/wordpress-the-untapped-treasure-for-leverage/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-the-untapped-treasure-for-leverage\";s: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:9009:\"<img alt=\"Pull quote: WordPress gave me my very first major client as an aspiring developer.\" class=\"attachment-large size-large wp-post-image\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/3026/03/031026.webp\" width=\"1024\" /><p>Unpopular opinion has it that the most popular cms is just an internet toy for websites. Well… it has managed to sustain more than 40% of the websites on the web, if the internet was a stock option by websites, WordPress has a sheer size plus a special place in my heart [insert_white_heart_emoji].<br /><br />Welcome to follow along on my WordPress journey. Let me be your captain. Let’s go.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-in-the-beginning\">In the beginning:</h3>\n\n\n\n<p>My early days in WordPress were influenced by a friend, <a href=\"https://www.linkedin.com/in/danielemeka/\">Emeka Daniel</a>, who at the time worked on a handful of WordPress projects. We were both undergraduates, so it was easy to see how quickly he could spin up a full website with little or no coding. At the time, I already had my web development starter pack (HTML, CSS, JavaScript) fitted in, so the idea of building any type of website from scratch at any whim was almost a default approach.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-the-rest-they-say-its-history\">The rest they say its history:</h3>\n\n\n\n<p>Fast forward to some days later in 2019, someone contacted me to build a journal library website with an ecommerce feature and more. In the multitude of counsel from one person, who happened to be Daniel, I opted to build the project with WordPress, and the rest, they say, is history.</p>\n\n\n\n<p>Over the years, across my six years (as of the time of writing this) of website development, I have dabbled with several tools in the PHP ecosystem. Fortunately, WordPress is one of them. From my first drag and drop experiment to building a WordPress theme or tinkering with WordPress plugin development, that tinkering across these sides of WordPress did pay off.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-community-writing-and-memorable-moments\">Community, Writing and Memorable Moments:</h3>\n\n\n\n<h5 class=\"wp-block-heading\" id=\"h-given-back-to-the-community\">Given back to the Community:</h5>\n\n\n\n<p>WordPress is a community driven, the number of WordCamps is a testament to that. That said, my friend shared the light with me, and I felt I should share the same with people in my space. In 2022, during my time in the mandatory national one year paramilitary service, I organized a three week program where I demonstrated to my colleagues the possibilities with WordPress and the benefits that abound for them.</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"Chidiebere standing at a speaking table.\" class=\"wp-image-8465\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3026/03/WhatsApp-Image-2026-02-01-at-12.38.15-1024x576.webp\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n \n \n \n </button></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/3026/03/WhatsApp-Image-2026-02-01-at-12.38.16.webp\"><img alt=\"Chidiebere walking to a speaking table\" class=\"wp-image-8468\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3026/03/WhatsApp-Image-2026-02-01-at-12.38.16-1024x576.webp\" width=\"1024\" /></a></figure>\n</div>\n</div>\n\n\n\n<p><em>“Yeap! That’s me.” You are NOT wondering how I came there ? Courtesy of WordPress</em></p>\n\n\n\n<p>For a three week stretch, I had a wonderful audience who had businesses and services and felt I would show them how to take those into the online space. They were curious. Rapt with attention. Engaged and interested.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"Chidiebere at the front of a classroom, teaching\" class=\"wp-image-8471\" height=\"1020\" src=\"https://heropress.com/wp-content/uploads/3026/03/WhatsApp-Image-2026-02-01-at-12.37.42.webp\" width=\"574\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-8474\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3026/03/WhatsApp-Image-2026-02-01-at-12.37.50-1024x576.webp\" width=\"1024\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-8475\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3026/03/WhatsApp-Image-2026-02-01-at-12.38.07-1024x576.webp\" width=\"1024\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-8476\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3026/03/WhatsApp-Image-2026-02-01-at-12.38.20-1024x576.webp\" width=\"1024\" /></figure>\n</figure>\n\n\n\n<p><br />We started with an introduction to websites and website development, then went through the basics of WordPress while demonstrating an Elementor walk-through.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><a href=\"https://heropress.com/wp-content/uploads/3026/03/dlcf-wordpress.webp\"><img alt=\"Poster for a WordPress workshop\" class=\"wp-image-8478\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/3026/03/dlcf-wordpress-724x1024.webp\" width=\"724\" /></a></figure>\n\n\n\n<p>The rewarding feeling is getting to see people feel powerful enough to build their first website, dismiss the phobia or perception that it is difficult, and give them a launch pad to go and “ship.”</p>\n\n\n\n<h5 class=\"wp-block-heading\" id=\"h-writing\">Writing:</h5>\n\n\n\n<p>Lots of experimentation has happened in my WordPress world and space. One of them was a website migration that I did. It involved migrating a WordPress site from WordPress.com to WordPress.org. I had to write down <a href=\"https://chidiebere.me/2022/02/15/fastest-way-to-migrate-your-site-from-wordpress-com-to-wordpress-org/\">my process</a>. It was an expository one for me. One of the memorable moments was that migration. It was an exposition to not just about WordPress but how powerful WordPress works in the terminal.</p>\n\n\n\n<p>In 2025, I was privileged to be a guest speaker for a <a href=\"https://youtu.be/s5VRBGrILUw?si=G-Ium00-WSxLGNSO\">Google Developer Event.</a> And as you guess, the topic was how WordPress could be coupled with AI (Gemini).</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\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-8483\" height=\"525\" src=\"https://heropress.com/wp-content/uploads/3026/03/wordpressss_hangout-1024x525.webp\" width=\"1024\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-8482\" height=\"941\" src=\"https://heropress.com/wp-content/uploads/3026/03/devfest_banner-1024x941.webp\" width=\"1024\" /></figure>\n</figure>\n\n\n\n<p>Personally for me, in a broader scope, this event opened quite some handful perspective as to the future of WordPress and how it could scale with AI</p>\n\n\n\n<p><br />Of many other things that has happened, I have managed to keep a heads-up on the WordPress community, how it positions itself to join the AI race and I am optimistic about the future of WordPress and the WordPress community.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-closing\">Closing:</h3>\n\n\n\n<p>WordPress (WP) gave me the material to ship fast right before “shipping fast” became a trend. WordPress gave me my very first major client as an aspiring developer. While WP sits as the most popular CMS, it definitely deserves a sit at the front table of my software engineering journey.</p>\n\n\n\n<div class=\"wp-block-group has-background is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-fc43baa9 wp-block-group-is-layout-flex\" id=\"desktop\">\n<h2 class=\"kt-adv-heading8462_0a5715-23 wp-block-kadence-advancedheading\" id=\"work-environment\">Chidiebere’s Work Environment</h2>\n\n\n\n<p>We asked Chidiebere for a view into his development life and this is what he sent!</p>\n\n\n <div class=\"hotspots-image-container\">\n <img alt=\"Chidiebere Chukwudi desk\" class=\"hotspots-image skip-lazy\" height=\"2048\" src=\"https://heropress.com/wp-content/uploads/2026/03/chidiebere_worskpace.webp\" width=\"1796\" />\n </div>\n\n\n\n\n<p class=\"has--font-size\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div>\n<p>The post <a href=\"https://heropress.com/essays/wordpress-the-untapped-treasure-for-leverage/\">WordPress: the untapped treasure for leverage.</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Mar 2026 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Chidiebere Chukwudi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress.org blog: WordPress 6.9.3 and 7.0 beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20166\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2026/03/wordpress-6-9-3-and-7-0-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5950:\"<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/03/wordpress-6-9-2-release/\">WordPress 6.9.2 was released earlier today</a> and addressed 10 security issues.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A few users have subsequently reported an issue where the front end of their site was appearing blank after updating to 6.9.2. The issue has been narrowed down to some themes using an unusual approach to loading template files via “stringable objects” instead of primitive strings for file paths.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Although this is is not an officially supported approach to loading template files in WordPress (the <code>template_include</code> filter only accepts a string), it nevertheless caused some sites to break. As a result, the Security Team has decided to address this in a fast follow 6.9.3 release.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As always,<strong> it is recommended that you update your sites to the latest version of WordPress immediately.</strong> This ensures your site is protected by all available security fixes in 6.9.2 and that you will not be affected by the bug fixed in 6.9.3.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many thanks to those who reported the issue, assisted in narrowing down the problem, and helped with the fix, in particular <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> who assisted throughout the process.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-6.9.3.zip\">download WordPress 6.9.3 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin shortly. You don’t have to do a thing!</p>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on WordPress 6.9.3, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-3/\">version page on the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 7.0 beta 4</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The next major release of WordPress will be <a href=\"https://make.wordpress.org/core/7-0/\">version 7.0</a>, which is planned for April 9, 2026. The Security Team has decided to package a new beta release (7.0 beta 4) to keep everyone protected from the patched vulnerabilities, including the dedicated members of the community focusing their time and effort on testing the upcoming release.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This will be an additional beta release in the 7.0 release cycle.</strong> The schedule will remain the same going forward, but with five total beta releases instead of the previously planned four. The next 7.0 beta release is still scheduled for Thursday, March 12th.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta version of the WordPress software is still under development</strong>. Please do not install, run, or test WordPress 7.0 beta versions on production or mission-critical websites. Instead, you should evaluate Beta 4 on a test server and site.</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.0-beta4.zip\">Beta 4 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br /><code>wp core update --version=7.0-beta</code>4</td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn\">WordPress Playground instance</a> to test the software directly in your browser. No setup is required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 4 updates and highlights</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 4 contains the ten security patches shipped in WordPress 6.9.2, and more than 49 updates and fixes since the Beta 3 release, including 14 in the Editor and 35 in Core. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Each beta cycle focuses on bug fixes. More are on the way, thanks to your help with testing. You can browse the technical details for all issues addressed since Beta 3 at these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/compare/f4d8a5803aa2fbe26e7d9af4d17e80a622b7bab8...9b8144036fa5faf75de43d4502ff9809fcf689ad\">GitHub commits for 7.0 </a> since March 5, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=03%2F05%2F2026..03%2F10%2F2026&milestone=7.0&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets for 7.0</a> since March 5, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">As always, a successful release depends on your confirmation during testing. So please download and test!</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props <a class=\"mention\" href=\"https://profiles.wordpress.org/peterwilson/\"><span class=\"mentions-prefix\">@</span>peterwilson</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/desrosj/\"><span class=\"mentions-prefix\">@</span>desrosj</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/marybaum/\"><span class=\"mentions-prefix\">@</span>marybaum</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/amykamala/\"><span class=\"mentions-prefix\">@</span>amykamala</a> for peer reviewing.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Mar 2026 23:41:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress.org blog: WordPress 6.9.2 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20142\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/03/wordpress-6-9-2-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4478:\"<h2 class=\"wp-block-heading\">WordPress 6.9.2 is now available</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is a security release that features several fixes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because this is a security release,<strong> it is recommended that you update your sites immediately</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-6.9.2.zip\">download WordPress 6.9.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on WordPress 6.9.2, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-9-2/\">version page on the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The security team would like to thank the following people for <a href=\"https://hackerone.com/wordpress?type=team\">responsibly reporting vulnerabilities</a>, and allowing them to be fixed in this release:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A Blind SSRF issue reported by <a href=\"https://hackerone.com/sibwtf\">sibwtf</a>, and subsequently by several other researchers while the fix was being worked on</li>\n\n\n\n<li>A PoP-chain weakness in the HTML API and Block Registry reported by <a href=\"https://github.com/hackerlo2003\">Phat RiO</a></li>\n\n\n\n<li>A regex DoS weakness in numeric character references reported by Dennis Snell of the WordPress Security Team</li>\n\n\n\n<li>A stored XSS in nav menus reported by <a href=\"https://x.com/Savphill\">Phill Savage</a></li>\n\n\n\n<li>An AJAX <code>query-attachments</code> authorization bypass reported by <a href=\"https://www.vitalysim.com/\">Vitaly Simonovich</a></li>\n\n\n\n<li>A stored XSS via the <code>data-wp-bind</code> directive reported by <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An XSS that allows overridding client-side templates in the admin area reported by <a href=\"https://hackerone.com/amosec\">Asaf Mozes</a></li>\n\n\n\n<li>A PclZip path traversal issue reported independently by <a href=\"https://profiles.wordpress.org/francescocarlucci/\">Francesco Carlucci</a> and <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An authorization bypass on the Notes feature reported by <a href=\"https://profiles.wordpress.org/kaminuma/\">kaminuma</a></li>\n\n\n\n<li>An XXE in the external getID3 library reported by <a href=\"https://profiles.wordpress.org/regex33/\">Youssef Achtatal</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The WordPress security team have worked with the maintainer of the external getID3 library, James Heinrich, to coordinate a fix to getID3. A new version of getID3 <a href=\"https://github.com/JamesHeinrich/getID3/releases\">is available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As a courtesy, these fixes are being backported, where necessary, to all branches eligible to receive security fixes (currently through 4.7). As a reminder, <strong>only the most recent version of WordPress is actively supported</strong>. The backports are in progress and will ship as they become ready.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>. In addition to the security researchers mentioned above, WordPress 6.9.2 would not have been possible without the contributions of the following people: <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">Luis Herranz</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Mar 2026 15:43:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Open Channels FM: Behind the Scenes at CloudFest Europe’s Playground for Cloud, Security, and Hosting Innovation\";s:7:\"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:34:\"https://openchannels.fm/?p=2550972\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://openchannels.fm/behind-the-scenes-at-cloudfest-europes-playground-for-cloud-security-and-hosting-innovation/\";s: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:183:\"In this episode Soeren, Myles and Robert discuss CloudFest 2026, highlighting its unique amusement park setting, various networking opportunities, and some new features for attendees.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Mar 2026 09:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: Gone (Almost) Phishin’\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151341\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2026/03/gone-almost-phishin/\";s: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:4817:\"<p class=\"wp-block-paragraph\">This is a little embarrassing to share, but I’d rather someone else be able to spot a dangerous scam before they fall for it. So, here goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One evening last month, my Apple Watch, iPhone, and Mac all lit up with a message prompting me to reset my password<em>.</em> This came out of nowhere; I hadn’t done anything to elicit it. I even had <a href=\"https://support.apple.com/en-us/105120\">Lockdown Mode</a> running on all my devices. It didn’t matter. Someone was spamming Apple’s legitimate password reset flow against my account—a technique<a href=\"https://krebsonsecurity.com/2024/03/recent-mfa-bombing-attacks-targeting-apple-users/\"> Krebs documented back in 2024</a>. I dismissed the prompts, but the stage was set.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What made the attack impressive was the next move: The scammers actually contacted Apple Support themselves, pretending to be me, and opened a real case claiming I’d lost my phone and needed to update my number. That generated a real case ID, and triggered real Apple emails to my inbox,<em> properly signed</em>, from Apple’s actual servers. These were legitimate; no filter on earth could have caught them.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-151420\" height=\"587\" src=\"https://i0.wp.com/ma.tt/files/2026/03/CleanShot-2026-02-07-at-19.36.31%402x-1-1024x996.png?resize=604%2C587&quality=80&ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Then “Alexander from Apple Support” called. He was calm, knowledgeable, and <em>careful</em>. His first moves were solid security advice: check your account, verify nothing’s changed, consider updating your password. He was so good that I actually thanked him for being excellent at his job.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That, of course, was when he moved into the next phase of the attack.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He texted me a link to review and cancel the “pending request.” The site, audit-apple.com, was a pixel-perfect Apple replica, and displayed the exact case ID from the real emails I’d just received. There was even a fake chat transcript of the scammers’ actual conversation with Apple, presented back to me as evidence of the attack against my account. At the bottom of the page was a Sign in with Apple button that he told me to use.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-151411\" height=\"395\" src=\"https://i0.wp.com/ma.tt/files/2026/03/CleanShot-2026-02-07-at-18.14.37%402x-1024x670.png?resize=604%2C395&quality=80&ssl=1\" width=\"604\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-151412\" height=\"418\" src=\"https://i0.wp.com/ma.tt/files/2026/03/CleanShot-2026-02-07-at-18.08.36%402x-1024x708.png?resize=604%2C418&quality=80&ssl=1\" width=\"604\" /></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">I started poking at the page and noticed I could enter any case ID and get the same result. Nothing was being validated. It was all theater.</p>\n\n\n\n<p class=\"wp-block-paragraph\">“This is really good,” I told Alexander. “This is obviously phishing. So tell me about the scam.”</p>\n\n\n\n<p class=\"wp-block-paragraph\">Silence. *Click*.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Once I’d suspected what was happening, I’d started recording the call, so I was able to save a good chunk of it, which Jamie Marsland used to make a video about the encounter. You can hear for yourself exactly how convincing “Alexander” was.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So let my almost-disaster help you avoid your own. Remember these rules.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Don’t approve any password-reset prompts</strong>—those are the first part of the attack. Do not pass Go, just head directly to your Apple ID settings. </li>\n\n\n\n<li><strong>Apple will </strong><strong><em>never</em></strong><strong> call you first.</strong> </li>\n\n\n\n<li>When you get an email from Apple—or, really, anyone telling you to complete a digital security measure—<strong>check the URL</strong> they’re trying to send you to. Apple Support lives on apple.com and getsupport.apple.com, nowhere else.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">After all, the best protection is knowing what this looks like before it happens.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\";s: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, 09 Mar 2026 15:11:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Gutenberg Times: PHP-only blocks, WordCamp Asia, Dev Notes for WordPress 7.0 — Weekend Edition #360\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=44585\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://gutenbergtimes.com/php-only-blocks-wordcamp-asia-dev-notes-for-wordpress-7-0-weekend-edition-360/\";s: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:24117:\"<p class=\"wp-block-paragraph\">Hi there,</p>\n\n\n\n<p class=\"wp-block-paragraph\">I held my first walk-through of WordPress 7.0 with friends at the Santa Clarita WordPress Meetup. The group was really excited about all the big new features and the small quality-of-life (QoL) improvements.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jessica Lyschik and I also discussed many features coming to WordPress 7.0 on our latest podcast episode. Listen in if you are curious. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Below you also find the links to the first set of Dev Notes for WordPress 7.0. Beta 4 will come out next week (3/12). Release candidate 1 is scheduled for March 19. It is now time to <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">help test WordPress 7.0</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Enjoy your weekend and these notes. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Asia heads to Mumbai on April 10–11, and I shared <a href=\"https://gutenbergtimes.com/schedule-of-wordcamp-asia-birgits-selected-sessions/\"><strong>my personally curated session picks</strong></a> — leaning heavily into block editor, themes, and AI. Highlights include Ryan Welcher on the Interactivity API, a Playground + AI testing pipelines talk by Fellyph Cintra, and a closing keynote from Matt Mullenweg. I will also be leading a Contributor Day workshop on building a block theme from scratch. <a href=\"https://asia.wordcamp.org/2026/schedule/\">The schedule</a> still has several TBD slots, so it’s worth checking back. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://asia.wordcamp.org/2026/schedule/\"><img alt=\"Networking at WordCamp Asia\" class=\"wp-image-44578\" height=\"364\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/03/WordCamp-Asia-Schedule-2026.jpg?resize=652%2C364&ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><em><a href=\"https://asia.wordcamp.org/2026/event-pass/?refresh=true#get-your-pass\">Get your WordCamp Asia 2026 event pass</a> and join the WordPress community in Mumbai on April 9–11!</em></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/03/wordpress-7-0-beta-3/\"><strong>WordPress 7.0 Beta 3 </strong></a>is now available for testing. The final release is coming closer. It’s the time of the release cycle when <strong>Developer Notes</strong> are published ahead of Release Candidate 1.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">For the <strong><a href=\"https://make.wordpress.org/core/2026/03/04/breadcrumb-block-filters/\">new Breadcrumbs block</a></strong>, <strong>Nik Tsekouras</strong> documents the two PHP filters developers will want to know. <code>block_core_breadcrumbs_items</code> lets you modify, add, or remove items just before rendering — handy for prepending a custom “Shop” crumb in WooCommerce. <code>block_core_breadcrumbs_post_type_settings</code> gives you control over which taxonomy and term appear in the trail, with sensible fallback behavior when your preferred term isn’t assigned. Props to Karol Manijak for the implementation.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Dave Smith</strong> details one of the more exciting 7.0 additions for theme developers: <strong><a href=\"https://make.wordpress.org/core/2026/03/04/customisable-navigation-overlays-in-wordpress-7-0/\">Customisable Navigation Overlays</a>.</strong> Mobile hamburger menus were previously locked to a fixed default design — now you can build your overlay from any blocks and patterns directly in the Site Editor. Themes can bundle overlays as template parts registered with a new <code>navigation-overlay</code> area in <code>theme.json</code>. The feature is opt-in currently full-screen only, and props go to <strong>Mike McAlister</strong>, whose <a href=\"https://wordpress.org/plugins/ollie-menu-designer/\">Ollie Menu Designer plugin</a> helped validate the community demand.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Luis Herranz</strong> outlines key updates in the <a href=\"https://make.wordpress.org/core/2026/03/04/changes-to-the-interactivity-api-in-wordpress-7-0/\"><strong>Interactivity API changes in WordPress 7.0</strong></a>. The main highlight is the new <code>watch()</code> function, which helps developers to track state changes outside the DOM for tasks like logging and analytics. Additionally, <code>state.url</code> in <code>core/router</code> will now be filled by the server, improving navigation tracking. Note that the <code>state.navigation</code> properties are outdated and will be removed in a future version.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>André Maneiro</strong> rounds up <strong><a href=\"https://make.wordpress.org/core/2026/03/04/dataviews-dataform-et-al-in-wordpress-7-0/\">166 contributions from 35 authors landing in the DataViews space for WordPress 7.0</a>.</strong> Highlights include a new <code>activity</code> timeline layout, expanded field validation rules, a <code>combobox</code> control for large datasets, and a <code>groupBy</code> object replacing the old <code>groupByField</code> string — a breaking change worth noting. DataForm gains a new <code>details</code> layout and collapsible card controls. A lot here for plugin developers building data-rich admin interfaces.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Miguel Fonseca</strong> documents one of the most warmly received 7.0 additions: <strong><a href=\"https://make.wordpress.org/core/2026/03/03/php-only-block-registration/\">PHP-only block registration</a>.</strong> Pass <code>\'autoRegister\' => true</code> in the <code>supports</code> array alongside a <code>render_callback</code>, and your block appears in the editor without a single line of JavaScript. WordPress automatically generates Inspector Controls for supported attribute types — string, integer, boolean, and enum. Implemented by Ricky Pena, the comments section alone tells you how long PHP-first developers have been waiting for this one.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher</strong> and <strong>Ciprian Popescu</strong> went deeper on this topic and provided you with examples and explanations on their personal blogs. (See links below.) </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-127-wordpress-7-0-beta/\">Gutenberg Changelog #127 – WordPress 7.0 Beta and Gutenberg 22.6</a> with special guest <strong>Jessica Lyschik</strong>, senior developer at Greyd</p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Jessica Lyschik and Birgit Pauli-Haack recording Gutenberg changelog episode number 127\" class=\"wp-image-44548\" height=\"184\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/02/Screenshot-2026-02-27-at-12.47.56.png?resize=652%2C184&ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p class=\"wp-block-paragraph\">In the video, <a href=\"https://www.youtube.com/watch?v=znVzVZ0jM9g\"><strong>7.0 Beta, Gutenberg 22.5, Studio & AI: WordPress for Developers in February</strong></a> <strong>Ryan Welcher</strong> walks you through the February edition of the round-up series What’s new for Developers. You’ll get the highlights from Gutenberg 22.4 and 22.5: per-instance custom CSS, viewport-based block visibility, anchor support for dynamic blocks, and the long-awaited removal of extra editor wrapper divs. The iFrame enforcement planned for 7.0 has been delayed — more breathing room, but time to prepare is now.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">WordPress lead developer <strong>Dion Hulse</strong> has shipped something quietly useful: <strong><a href=\"https://www.therepository.email/wordpress-org-now-serves-markdown-output-for-ai-agents-and-developers\">WordPress.org now serves clean Markdown output</a> </strong>for every page, built on Dennis Snell’s html-to-md plugin. You can access it by appending <code>?output_format=md</code> to any URL or sending an <code>Accept: text/markdown</code> header. The efficiency gains are real — one developer reported a WordPress docs page shrinking from 68k tokens to 11k. It’s a direct response to Mullenweg’s push to make WordPress.org a canonical knowledge source for AI agents. <em>Ray Morey reporting for The Repository</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">In this brief video, <strong>Jonathan Bossenger</strong> demonstrates <a href=\"https://www.youtube.com/watch?v=OAYyx-qEpVY\"><strong>WordPress 7.0 Beta 2’s new WP AI Client and Connectors</strong> settings page</a>, explaining how connectors can install plugins and how developers can create AI features without tying users to a specific provider. A live CLI demo showcases this approach. Bossenger also discusses connector discovery UX and areas where core improvements are needed before 7.0 is released.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress contributor <strong>Nick Hamze </strong>has quietly improved <strong><a href=\"https://www.therepository.email/the-wordpress-featured-plugins-tab-is-now-rotating-hidden-gems-every-two-weeks\">the Featured Plugins tab in wp-admin</a>,</strong> replacing a list that hadn’t changed in eight years with a rotating selection of eight lesser-known plugins, refreshed every two weeks. The goal, as <strong>Matt Cromwell</strong> reports for The Repository, is to surface genuinely promising newcomers — “not the giants, not the household names” — that you’d never stumble across through search or popularity rankings. Early results are striking; Ollie Menu Designer tripled its biggest download day within hours of appearing in the tab.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Marko Ivanovic</strong> and <strong>Noam Almosnino</strong> shared their <a href=\"https://automattic.design/2026/03/03/telex-experiments/\"><strong>Telex experiments on the Automattic Design blog</strong></a>, showcasing what happens when designers get to build WordPress blocks by simply describing an idea. Telex, Automattic’s AI-powered tool, handles the technical wiring so you can focus on creative exploration. The pair built a text-scrambling interaction inspired by Flash-era pioneer Yugop and an image carousel—all without writing block code themselves. It’s a compelling glimpse at how your design-to-block workflow could change.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Derek Hanson</strong> shares how he shipped <a href=\"https://derekhanson.blog/tufte-blocks/\"><strong>Tufte Blocks</strong></a>, a WordPress block theme he couldn’t build a year ago, drawing on Edward Tufte’s typography-first aesthetic. After two failed attempts, the right combination — <em><a href=\"https://github.com/WordPress/agent-skills\">WordPress Agent Skills</a></em> and <strong>Shaun Andrews</strong>‘ <a href=\"https://shaunandrews.com/2026/02/teaching-ai-to-design/\">design-system-first</a> approach — finally unlocked it. You don’t need to be a designer or developer; Hanson’s project management and rhetoric background turned out to be exactly the right skills for directing AI through a complete, polished theme. Does it sound attractive to you? <a href=\"https://github.com/dhanson-wp/tufte-blocks\"><strong>Download it from GitHub</strong></a></p>\n\n\n<div class=\"ng-block-67d046ba2e7b342e wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-f4a0290ab6712464 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">“Keeping up with Gutenberg – Index 2026”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-28c40af3ffc6ea87 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a> </p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ciprian Popescu </strong>walks you through <a href=\"https://getbutterfly.com/php-only-block-registration-in-wordpress/\"><strong>PHP-only block registration in WordPress</strong></a>, the new approach landing in 7.0 that lets you build Gutenberg blocks without JavaScript build tools. By setting <code>autoRegister</code> to true in the supports array, WordPress auto-generates inspector controls from your attributes and uses ServerSideRender for previews. You’ll find practical guidance on block supports, asset enqueueing caveats, and where this approach fits best—think author boxes, CTA banners, and theme-specific components rather than richly interactive blocks.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher</strong> also explains how <a href=\"https://ryanwelcher.com/2026/03/04/php-only-block-registration-in-wordpress-7-0/\"><strong>PHP-only block registration in WordPress 7.0</strong></a> lets you skip <code>block.json</code> entirely and define block metadata directly in your <code>register_block_type()</code> call. You’ll see how to enable it with the <code>autoRegister</code> support flag, define attributes that auto-generate inspector controls, and wire up render callbacks with <code>get_block_wrapper_attributes()</code>. The tutorial covers asset registration via handle arrays and helps you streamline your workflow for server-rendered blocks ahead of the April 9 release.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Paulo Carvajal</strong>‘s guide on <a href=\"https://wp-block-editor.com/mastering-event-handling-and-dom-interactions/\"><strong>mastering event handling and DOM interactions with the Interactivity API</strong></a> takes you through the <code>data-wp-on</code> directive for declarative event management. You’ll learn how to handle mouse, keyboard, form, and touch events while connecting them to store actions that update state reactively. The piece covers <code>withSyncEvent()</code> for synchronous access, automatic event delegation, and performance patterns like debouncing and throttling, wrapping up with a complete to-do app that ties it all together.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"ai-and-wordpress\">AI and WordPress </h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you use Cursor for WordPress block development, <strong>JuanMa Garrido</strong> explains <a href=\"https://juanma.codes/2026/02/24/how-to-enable-json-schema-validation-in-cursor/\"><strong>how to enable JSON schema validation in Cursor</strong></a>, which is disabled by default due to a security vulnerability where the AI agent could trigger outbound requests via <code>$schema</code> fields. You’ll need to add <code>json.schemaDownload.enable</code> to your settings—ideally at the project level in <code>.vscode/settings.json</code> to limit exposure. A quick fix that restores autocompletion and validation for your <code>block.json</code> and <code>theme.json</code> files.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<div class=\"ng-block-d06791b96bc404c0 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-fa5f788834305624 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-e2b5f64936afe7dd wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-3e1f7f65f8c6b384 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-684c393917a31f6a wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-326b14b6134141b6 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 08 Mar 2026 09:53:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Matt: Declaration of the Independence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151384\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2026/03/declaration/\";s: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:639:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Governments of the Industrial World, you weary giants of flesh and steel, I come from Cyberspace, the new home of Mind. On behalf of the future, I ask you of the past to leave us alone. You are not welcome among us. You have no sovereignty where we gather.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">30 years a 1 month later, it seems like an apt time to revisit <a href=\"https://www.eff.org/cyberspace-independence\">John Perry Barlow’s Declaration of the Independence of Cyberspace</a>. The poetry is amazing.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 08 Mar 2026 07:57:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Open Channels FM: Open Channels FM v7.1 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=1650246\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://openchannels.fm/open-channels-fm-v7-1-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Changes for 7.1 You can view our full changelog here.\";s: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, 06 Mar 2026 08:40:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 7.0 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20098\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/03/wordpress-7-0-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5875:\"<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 3 is available for download and testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta version of the WordPress software is still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should evaluate Beta 3 on a test server and site.WordPress 7.0 Beta 3 can be tested using any of the following methods:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.0-beta3.zip\">Beta 3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br /><code>wp core update --version=7.0-beta</code>3</td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn\">WordPress Playground instance</a> to test the software directly in your browser. No setup is required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.0 is <strong>April 9, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/7-0\">7.0-related posts</a> in the coming weeks for more information. Thank you to everyone who is contributing with testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Catch up on what’s new in WordPress 7.0</strong>: Read the <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-2/\">Beta 2 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Your help testing the WordPress 7.0 Beta 3 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">detailed guide</a> will walk you through testing features in WordPress 7.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 3 updates and highlights</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 3 contains more than 148 updates and fixes since the Beta 2 release, including 70 in the Editor and 78 in Core. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Each beta cycle focuses on bug fixes, and more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 2 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-02-26&until=2026-03-05\">GitHub commits for 7.0 </a> since February 26, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F26%2F2026..03%2F05%2F2026&milestone=7.0&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets for 7.0</a> since February 26, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Tapping into the power of AI is even easier in Beta 3! The WP AI Client Connectors screen now dynamically registers providers from the WP AI Client registry, in addition to the 3 default providers, giving users more flexibility and command over AI integrations.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 3 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Through sun set and rise,</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beta 3 takes off and flies.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Seven soon arrives.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a class=\"mention\" href=\"https://profiles.wordpress.org/annezazu/\"><span class=\"mentions-prefix\">@</span>annezazu</a></em>, <em><a class=\"mention\" href=\"https://profiles.wordpress.org/jeffpaul/\"><span class=\"mentions-prefix\">@</span>jeffpaul</a></em>, <em><a class=\"mention\" href=\"https://profiles.wordpress.org/chaion07/\"><span class=\"mentions-prefix\">@</span>chaion07</a></em>,<em> <a class=\"mention\" href=\"https://profiles.wordpress.org/audrasjb/\"><span class=\"mentions-prefix\">@</span>audrasjb</a> and <a class=\"mention\" href=\"https://profiles.wordpress.org/valentingrenier/\"><span class=\"mentions-prefix\">@</span>valentingrenier</a> for proofreading and review.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Mar 2026 14:47:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Amy Kamala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Open Channels FM: Why Design Systems Matter for Brand Consistency\";s:7:\"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:34:\"https://openchannels.fm/?p=1650119\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/why-design-systems-matter-for-brand-consistency/\";s: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:145:\"Consistency in digital branding through design systems fosters user trust, ensures quality, and supports scalable growth and clear communication.\";s: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, 05 Mar 2026 13:59: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"Open Channels FM: Navigating the Future of Partnerships and AI in the Open Web\";s:7:\"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:34:\"https://openchannels.fm/?p=1650459\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/navigating-the-future-of-partnerships-and-ai-in-the-open-web/\";s: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:232:\"Zach Stepek and Carl Alexander discuss the changing landscape of partnerships and web development communities, emphasizing the importance of collaboration, genuine support, and the impact of AI on sustainable business relationships.\";s: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, 05 Mar 2026 11:49:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: #207 – Rob Ruiz on WP Rig and the Future of Theme Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=202950\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/podcast/207-rob-ruiz-on-wp-rig-and-the-future-of-theme-development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61064:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case the future of theme development.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have Rob Ruiz. Rob has been involved in the WordPress ecosystem since around 2010. He began as a designer, but over the years WordPress has helped him transition into a developer, software engineer, and now an architect. Currently, he’s working full-time at an agency whilst taking on side projects independently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The main topic for today’s conversation, centers around themes, a subject that hasn’t been covered in depth on the podcast for quite some time. You see, Rob is the current custodian of WP Rig, a free and open source toolkit for WordPress theme development. WP Rig offers a modern, minimal, and best practice driven starting point for developers who want to build custom themes. Providing tools like Composer and Node integration to streamline workflows, enforce coding standards, and enable the use of future facing CSS features, right now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We start the episode with Rob sharing what attracted him to WP Rig, and his journey from user to Project Maintainer. We talk about who WP Rig is for, from experienced developers, to those just starting to dip their toes into theme building and code customization.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The discussion moves on to talking about what a theme development framework actually is, and why this approach might suit people wanting more control, and education, in their WordPress journey. Rob describes the learning curve, the workflow, and the satisfaction of creating your own theme from scratch, while highlighting tools and guardrails built into WP RIG that make professional standards and best practices accessible to all.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also get into how WP Rig fits into the changing WordPress ecosystem. With the advent of full site editing and block-based themes, Rob explains how WP Rig has evolved to stay relevant, supporting classic, hybrid, and block-based paradigms, even enabling block development at the theme level.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end, we discuss the community behind WP Rig, how you can get involved, and the many educational resources available for those who want to learn theme development, or even become contributors themselves.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in building custom WordPress themes, want to understand the nuts and bolts of theme frameworks, or are simply looking for a modern and educational starting point for WordPress tinkering, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you, Rob Ruiz.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Rob Ruiz. Hello, Rob.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:56] <strong>Rob Ruiz:</strong> Hi. How are you, Nathan?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:57] <strong>Nathan Wrigley:</strong> Rob’s joining me today to talk primarily about themes, which I confess is a subject that we haven’t touched in a good long while. So before we get into that, Rob, would you just mind spending a minute just letting the listeners know who you are? If we are on a WordPress podcast, probably better to align that with what your journey is in the WordPress space, if that’s okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:17] <strong>Rob Ruiz:</strong> Certainly. Yeah. So my name is Rob Ruiz. I’ve been leveraging WordPress since about 2010 ish, although my web development experience goes prior to that. And so I’ve been tinkering and getting more and more into it as I go along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I started off as mostly a designer back in the early two thousands, I guess. And WordPress has facilitated my journey from being a designer to more of a developer, software engineer, today, architect. And so yeah, it’s been a very fun journey. I’ve learned so much over the years, so I’m very grateful to WordPress for helping me do that at my own pace.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:58] <strong>Nathan Wrigley:</strong> Do you work for yourself? Are you perhaps engaged in an agency or something like that?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:02] <strong>Rob Ruiz:</strong> So currently, right now I work full-time at an agency, but I do also do work for myself as well. So it’s kind of a hybrid situation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:09] <strong>Nathan Wrigley:</strong> Okay, so the reason that Rob is on the podcast today, well, there’s a variety of reasons. Most of it will bind itself to the subject of themes, as I said right at the start. But we’re also going to be talking, maybe towards the end a little bit about AI and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, Rob is now the custodian. I didn’t realise he was now the custodian. We’ll get into that in a minute. But Rob is the custodian at the moment of a project called WP Rig. And you can find this, it’s a really quick URL to type in, it’s WP Rig, so WPRIG .io.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Completely free to download, completely unencumbered by a pricing page or anything like that. There’s a GitHub repo I think. Yes, that’s right. So do you just want to give us the elevator pitch for what WP Rig is. And just because it makes me happy, can you tell us how you got involved? Because that’s lovely too.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:00] <strong>Rob Ruiz:</strong> Yeah. Yeah, for sure. So WP Rig is a theme development toolkit or framework, but it’s also a starter theme as well. So you could think of it as kind of like underscores but with a whole modern development toolkit situation built into it, meaning there’s a bunch of composer dependencies, Node dependencies, and other kind of developer tools baked into it to prepare developers for the best developer experience possible when developing themes for WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How I got involved with it essentially is I was, first off, I was looking for a theme development framework. I had gone on a journey to explore many. And during that journey, I came across WP Rig, and kind of fell in love with it. It was really, really cool. I liked it a lot. I liked a lot of the opinions. I liked how well aligned it was with Core WordPress itself. I like the WordPress best practices that it enforces, you know, automatically. You don’t even have to like go look them up and think about it. You could just run a tool that’s built into it and it’ll check all your code for said best practices.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so that was very interesting to me. I was like, I’m going to start using this. And so I did. I did start using it. And then, shortly thereafter, I had been browsing my favorite WordPress news site, WP Tavern, and noticed an interesting article about the project that I had just recently fell in love with out of sheer coincidence, I suppose. Out of sheer coincidence, it just so happens this project is now looking for new maintainers, and that they were having a Zoom call in the near future where anybody interested in maintaining the project could join the Zoom call.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I did. I joined the Zoom call and I got to meet the previous maintainers, or maintainer rather, and ended up having ongoing conversations with him after the call. And one thing led to another, and now the project is basically managed solely by me with a handful of other light contributors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:04] <strong>Nathan Wrigley:</strong> So that’s really nice. I love the fact that there’s some sort of combination of WP Tavern and WP Rig out there. That’s lovely. So I appreciate that. The audience for this podcast is pretty varied. So there’ll be developers with a longstanding history with WordPress, you know, deep in the code. Will go to WP Rig and immediately everything will connect, and they’ll be like, yep, I get this. I understand what this is. It’s for me. It’s not for me, yada, yada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, we also have quite a lot of people listening to this who are brand new to WordPress. They’ve got no experience with code. They may be living inside of a page builder or something like that where everything is point, click, drag, drop, save, that kind of an environment. It just occurred to me that they very well might not know what even a theme development framework is. So can we begin there? What is the point of a thing like this? What’s the problem you’re trying to solve? Let’s start there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:53] <strong>Rob Ruiz:</strong> Yeah, that’s a great question. So like anything in WordPress, because it’s open source and so beautifully designed, might I add, from an architectural standpoint, there are lots of ways to extend WordPress beyond its base functionality.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Two of the most common ways to do this is via the plugin system, and via the theme system. And so we can add custom plugins to extend the functionality of WordPress, but we can also add custom themes to alter the way our website looks and feels aesthetically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if you’re somebody who’s more of a designer maybe, or you appreciate aesthetics and perhaps you’ve dabbled in some CSS, you might be more inclined, if you’re looking to go beyond just what Core WordPress provides to you in terms of a site building experience, I would encourage those people to look at themes and possibly creating your own custom theme. Or altering an existing theme using a concept called child theming where you can take any theme that you get from anywhere, whether you buy it or find it on the wordpress.org theme repository. You can extend themes using child themes, or you can just build your own themes from scratch.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that does include some work outside of the WordPress admin area. So once you get into developing themes for WordPress, the concept here is you’re kind of straying away from the WordPress admin experience, and you’re now like in the code editor realm, right? Because under the hood, WordPress is all just a bunch of code, PHP, JavaScript, CSS. There’s a lot going on, the React now. There’s a lot of things kind of built into WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so the beautiful thing about WordPress is that you can kind of, if you’re interested in learning how to develop, you can kind of dip your toes into the development pool as frequently as possible, as quickly as you want. Whatever you are comfortable with, you can kind of pace yourself there and say, okay, let me try and make a custom theme, or let me try to make a custom plugin. And if it doesn’t work out, it’s easy to just deactivate it, delete it, remove it, whatever. It’s a great way to learn how to develop, in my personal opinion, because a lot of the heavy lifting is done by the Core WordPress system.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Basically what WP Rig offers is, instead of having to create a file system, a theme system from scratch, you know, a lot of people will reach for a concept called a boilerplate. Something that will scaffold kind of like the common files and folders that would be necessary in a theme, and then allow you to work from there. So you’re not just starting from like ground zero, create a new directory, create a new file.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so that’s kind of what WP Rig offers is like, okay, go to our GitHub repo, clone the GitHub repo down, and then there are directions in the repo on how to get it to scaffold all the tools that come with it, all of the Node and Composer tools. And then you’re kind of off to the races.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:46] <strong>Nathan Wrigley:</strong> So with WP Rig, I’m guessing we would describe this as a framework or something like that. The idea being that you can bring this, kind of learn how it works, become adept at it, and then it’s like your constant friend. It’s always in the background. It’s the thing that you can rely on. It’s the muscle memory which develops over time. So you can ship your own themes, which kind of depend on the framework, but also, you know, you’re familiar with it so that bit is taken care of and straightforward.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What is it that attracted you to this particular theme development framework, at the time when you were sort of scrambling around looking for a project to become involved with?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I mean, one of the things that I always found curious was the leaner, the better. You know, the less that there was in such a thing, the more I was drawn towards it, because it gave me a, the basis, the scaffolding basically from which I could start building. Now, I don’t know if that’s what drew you here. So there’s the question. What is it that you thought was superior for want of a better word about this one?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:41] <strong>Rob Ruiz:</strong> Well, you nailed it. It’s really that. Like, it is quite minimal at its core. I also really appreciated how it treated CSS, as somebody who comes from a design background. I love modern CSS. I love following CSS influencers on YouTube, and learning all the new tricks. It’s a lot to keep up with and as, now that Internet Explorer is gone, CSS is progressing at an enormous rate, which I’m very excited about. But it also forces you to keep in tune with what you can do with it and what you shouldn’t do with it. And so there are tools built into WP Rig to help you assess those things as you’re developing your CSS in there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When I originally was brought onto it, we were using a tool called PostCSS. That would essentially allow you to use future CSS before it was adopted by all modern browsers. And during the compilation process, it would convert your future CSS to today CSS essentially. And so the idea there is that as CSS catches up, your compilation would just have to do less work, right? So when it compiles all your CSS, it would, you know, like now that nesting is a thing, right? I was using WP Rig before CSS nesting was supported by all modern browsers, but I was able still to use CSS nesting in WP Rig, which I really liked. So there’s that aspect of things</p>\n\n\n\n<p class=\"wp-block-paragraph\">and yes, it is very light. I’ve used other theme development frameworks where they encourage you to use kind of like a templating language or framework. I didn’t really like that approach because it felt very foreign to WordPress. Nothing else in WordPress uses such a thing. That kind of turned me off a little bit because I was like, I don’t want to learn this whole other concept that like really doesn’t exist anywhere except for Laravel. I liked that about it. It kept it simple in that regard.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then if you’re using WordPress at like a agency level, if you’re building bespoke custom sites for clients, something like WP Rig is extremely powerful because it allows you to increase your level of customisation as much as you want, and the tools are all there to help you handle that. Also, meanwhile, if you’re working on a team of developers, which is often the case if you’re working with an agency or something like that, WP Rig becomes kind of like a home base, if you will, for opinions, for coding practices, for checks and balances.</p>\n\n\n\n<p class=\"wp-block-paragraph\">All these things, it helps put everybody on the same vehicle, I guess, if you want to think of it like that. Everybody’s using the same vehicle, so there’s not wildly different ways of doing things, which can be very, very handy when working on a team and assessing other people’s code, and perhaps taking over work for other people and so on and so forth.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:23] <strong>Nathan Wrigley:</strong> So the thing about frameworks, I guess, is that, if you are in the WordPress space and you are that page builder user, so everything is within the WP admin, you know, you download a plugin, which creates pages or a theme, I guess you could do the same thing, but you’ve got that kind of experience with WordPress. Is this something that would map to those kind of users perfectly, or is there more of a learning curve? Do you need to be leaning more into the developer side of things?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Maybe there’s a happy transition that can be made. Because, you know, when you’re on the website, you have interesting acronyms. So, you know, CSS, JS, we’re probably entirely familiar with those, but then we get into things like esbuild, Lightning CSS, ESLint, NPM, Composer and so on. And at this point I can imagine quite a few of the inexperienced users thinking, you know what, this is going to be tough for me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I just want you to give us an impression, reassure people. How hard is it to go from that, I’ve never done anything like this before. To up and running, becoming familiar, if not necessarily completely familiar in a heartbeat?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:25] <strong>Rob Ruiz:</strong> In my opinion, it’s not hard because you can kind of just focus on where you want to focus. And so for instance, if you’re only interested in writing CSS styles and you just want to change colors, and sizing, and fonts, and stuff like that, you could use WP Rig to make an extremely simple theme, which is what I would encourage people to do if they’re just getting up and running.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Back to your question about page builders and such, there is like this, I don’t want to call it a problem, but there is a paradigm in WordPress that I think, especially for newer WordPress developers, they need to be very aware of, which is that you kind of have two schools of thought.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You have this school of thought of like, okay, I want to just use the WordPress admin to customise every little bit, every little piece of my WordPress site. I should be able to do it in the WordPress admin. And so that’s where some of these more complex page builders kind of come in and provide a lot more control than just what Core WordPress provides you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But with that said, it will never be ultimate control. It will never be ultimate control, because there’s always going to be some amount of constraints. You’re always going to be constrained by what configurations, what settings, what fields, what controls that page builder provides you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And not only that, you have to keep in mind some of these rules, I like to think of them as rules, configurations, settings, whether it’s at the block level, widget level, element level, whatever word you want to use to describe a part of your page, like an object or a component, it’s a very common word. When you’re using a page builder, that’s all getting saved into the database. Anytime you enter a value, you click save or whatever. Everything is in the database, all of it, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so if you need to make a global change across your whole site, let’s say you want all of the blocks on your website to all of a sudden have a border around them, or you want to change something about them, the colour, background colour, something like that. In a page builder world, you’re going to have to go into every single one of those elements, those blocks, whatever, and you’re going to have to change those values everywhere.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Where, when you’re doing things with just code, you have kind of superpowers. In my opinion, coding, if you want ultimate control over your site and you want to be able to do literally anything you can imagine, and be able to do it in a way that’s progressive and is comprehensive, without any barriers, without any limitations, code will always be the best way to exercise that control that you’re going after.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, obviously, newer people, too much control can lead to confusion and all this stuff. So I don’t fault people for using some of these other solutions like page builders to kind of get their feet wet and get up and going and kind of figure out how to use just WordPress itself.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But once you get to a point where you’ve been doing that for a while and you’re looking at like other websites that aren’t even WordPress that have all kinds of interesting, cool features built into them, new paradigms being presented and exposed. Let’s say you follow CSS and you’re looking at all the newest CSS features that are coming out. Many of those newest CSS features that are coming out, there’s really no ability to control those things in your WordPress site, because that stuff literally just got adopted by Chrome or whatever, just reached modern browser adoption like recently, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so you have to kind of wait for the page builders, for WordPress to kind of now provide you new controls, new tools, so that you can then control those things. But when you’re doing things with code, you could just do it immediately, and you could do whatever you want.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So when you’re building your own theme from scratch or you’re trying to, even creating your own plugin from scratch, it’s never really going to be a concept that’s for like new WordPress people that are just very, very new to just developing websites in general. But it is nice to know that these tools are out there and they’re there, so that when you do get to a point where you’re ready to kind of spread your wings a little bit more, you know what tools are out there to reach for. And you can begin to play with them a little bit instead of forever feeling confined to one paradigm.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:40] <strong>Nathan Wrigley:</strong> Yeah, there is something exceedingly satisfying about understanding how, whatever the thing is works. I imagine that as a child, you were perhaps that child that took things apart and enjoyed the experience of looking at the insides and thinking, how did that work? Okay, that’s how it worked. Okay, that cogs connected to that thing, and then that spins around in that way. And, oh, and look that on the front spins around as well. Got it. I understand that now. And you reassemble it and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think there is something exceedingly interesting about that in the WordPress space. Obviously, WordPress, CMS, incredibly powerful out of the box. You’ve got the WP admin, and perhaps that’s as far as you wish to go.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But peeling back the layers and understanding, how is a page constructed? Where does the CSS get called from? How is the HTML finally output? What are the bits and pieces that make it up? How does the theme layer do its bits and pieces? You don’t have to kind of understand it all in one hit. You can, with a framework, the likes of which we’re talking about, WP Rig, there is this capacity to just take little nibbles and have a slow, but realising appreciation. Oh, okay, that’s how it works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But not only that’s how it works, okay, now that I know how that works, I now am in control of it. Whereas in a way, previously, I just was sort of a passive observer. Perhaps there was a setting area in my page builder or what have you. And if it was there, I could make use of it, and if it wasn’t, I couldn’t.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But also I think it drives you into that journey of understanding the open standards, the open web, the things that make up the technology which is free, available to everybody. What WordPress builds upon.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I’m talking specifically about HTML, CSS and JavaScript, just those three things. The foundational pieces of the web. And it allows you to get involved in that, and be interested in that and understand where the web is heading. And especially like you said, with modern CSS’, it is coming really fast and it is fast replacing, in many respects, I think a lot of JavaScript really is going to be obsolete, for the front end side of things, in the fairly short term.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it allows you to sort of nibble away at that and become more experienced. And if you haven’t had that journey but you’ve got a curiosity, this is possibly a great place to start. There is no question there, but I’m just sort of offering that up to see if that jibes with what you think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:52] <strong>Rob Ruiz:</strong> I couldn’t agree more. And not only that, I think an important thing to think about WordPress as we move forward into the future and more competitors to WordPress emerge, I think it has never been more important to make sure that we have tools out there that are designed to facilitate people in their journey to getting into development. Because let’s be real, WordPress is open source, and we have to remember that WordPress is at the mercy of its contributors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so if the number of people contributing to WordPress starts to decline, so too will the progress of WordPress itself, unless other big companies with other developers that they’re actually paying are willing to foot the bill to like pay people to contribute to WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don’t know that that’s the bright future that WordPress had originally like looked towards, right? I think what’s made WordPress so powerful and so successful over the years are the tinkerers, are the people that are willing to get in there and start to like learn things and figure things out. And then those people will slowly become contributors. And the more contributors we have to WordPress, the more WordPress itself will flourish. And then if that starts to go in the opposite direction, so too will WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And now these other services, and other solutions that are out there, are going to like eclipse WordPress and then people are kind of forced into a situation where it’s like, oh, well now you have to constantly go out and pay for and buy things, and now you’re at the mercy of these product authors, if you will, as opposed to being a part of a community of people that are all kind of collectively working together to make this one platform better all the time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:37] <strong>Nathan Wrigley:</strong> Yeah, the open web and all of the web standards that are behind that, it is such an interesting time for that. Rewind the clock, I don’t know, 10 years or something, and there was this whole bond fight thing where browser vendors were just distributing things which were either in opposition, certainly in competition to features. And so you could never really figure out what the heck you were doing, and each browser would behave differently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That is so far in the rear view mirror now. In the majority of cases, new things like new CSS, the new CSS spec is broadly speaking, adopted by everybody out of the box. I mean, there might be a few tiny edge cases where, I don’t know, let’s say Mozilla is just not implementing something because they just haven’t quite got round to it yet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But there’s no, Mozilla’s not doing that. It’s just a case of, we didn’t get around to it. And understanding that and being interested in that and thinking to yourself, well, goodness me, if I change my CMS of choice, at the end of the day, I still need to be able to output HTML and CSS. And so having that tinkerer mentality, which you are providing within the WordPress space is so interesting and so credible. So thank you for that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Right, I’m going to pivot a little bit. So again, this is leaning in more to the inexperienced user. Forgive me if you are an experienced user listening to this, you probably know what you are doing. So maybe, you know, you don’t need all the 101 stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What do you need to get WP Rig up and running? Because I think a lot of the audience listening to this will simply be, I have a server somewhere. You know, I don’t really know where it is, but I pay some company and I click a button in some control panel and WordPress magically happens. And then I install a theme and plugins, and that’s basically it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So what do we need to get WP Rig up and running? What are the core parts, the processes that we would need to go through?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:24] <strong>Rob Ruiz:</strong> Yeah, well the important thing to keep in mind here is that it’s all on your own computer that you’re doing all of the work, as opposed to the WP admin approach where, when you’re interacting with WordPress, you are actually interacting with a remote server. The databases on the remote server, the files are on the remote server, all that stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When you’re developing a theme or plugin from scratch, more often than not, I would say 99% of the time you’re doing it on your own computer. And so you do have to have, if you want these tools that facilitate this development process, you have to install them on your computer so that they’re available when you go to use them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there are some pre-reqs to using WP Rig. You do have to install Node. Node.js is a very common JavaScript runtime that runs on your computer and allows your computer to process JavaScript as if it’s a browser kind of, but it’s not, it’s just doing it on a server, which essentially any computer can be a server at any time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so you have to have Node installed. You have to have Composer installed. Composer is just a package manager for PHP, and it’s used beyond just WordPress. It’s used in Laravel. It’s used in any, even just raw, vanilla PHP development. Composer is very popular. So we do leverage some Composer packages to do some PHP level work in the theme.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And you need a local development environment, of course. So there’s the wp-env package out there. If you’re into the Docker way of doing local development. I’m a big fan of Local WP. I think that’s a great solution. WordPress Studio is another very good one. There’s lots to choose from out there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So just choosing a local development environment and getting to know one of those is really handy because now you’re not dealing with a WordPress instance that’s on a remote server, you’re dealing with a WordPress instance that’s running on your computer. And this is where all of that magic is going to happen. All the automatic conversion of your CSS, all automatic conversion of TypeScript to ES5 JavaScript. All of the automatic things that WP Rig handles for you, all of that is happening on your computer.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then there’s a process, a bundle process that happens. Once you’re done working on your theme, you can bundle the theme and then, this is where things get a little weird. So like when you first get working with WP Rig, you can think of the WP Rig theme, the starter theme as kind of like a source theme. But when you bundle, WP Rig actually generates a whole new theme for you that has the name of your theme baked into it. And not just like how it shows up in the WordPress admin, it goes through and it replaces all references to WP Rig in the code everywhere, across the entire code base of the theme. It changes the words WP Rig to whatever the name of your theme is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if you build a theme with WP Rig and you decide to sell it or deploy it or ship it or whatever to anybody, user, wherever, anywhere. Anybody that’s looking through that source code, for whatever reason, they would have no way of knowing that it was built with WP Rig because it’s just going to look like your theme.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:31] <strong>Nathan Wrigley:</strong> There’s something extremely satisfying about seeing your theme. The first time you see your theme. Stick it on a website somewhere and, oh, look, there’s the thing that I built. Whereas, you know, for many people, it’s been an entire experience of going to the repo, going to commercial theme houses and what have you, and downloading something and tweaking it and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And you really can start really, really, really small. You know, a few lines is really all that you need to get going and build up from there. Obviously it will start plain, but the more complexity you add.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But given that it’s all happening on your local computer, it’s not like you need to rush. This could be something which is years in the making. You know, you start today and maybe two years from now you are entirely happy and you’ve got something that you think is worthy of the world looking at. Well, that’s the point at which you can start to distribute it. As you’ve just described, because it’s all free, completely open source, when you ship that theme, export it, everything is run in such a way that nobody would ever know, which is just lovely.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, so given all of this fresh, interesting stuff about WordPress themes, we’re in an interesting space in the WordPress theme marketplace, let’s call it that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Several years ago, full site editing came along and now we’ve got this sort of different way of doing themes. Previously we had to open up an IDE and fiddle with template files and things like that. And now we’ve moved more into a page builder, let’s go with that. You know, there’s this Gutenberg block based editing of themes, where you can do more or less everything in a UI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How does this fit into that piece, and what do you make of this new paradigm, this new way of doing themes? Are there benefits to it that you see, or drawbacks? Are you still doing it? Do you see a bright future for WP Rig? I’m guessing the answer’s yes, otherwise you wouldn’t be on this podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:16] <strong>Rob Ruiz:</strong> That’s right. Yeah. Well, I will say that as somebody who had recently decided to adopt WP Rig, when the whole concept of FSE was first announced or introduced, I did have some strong opinions because I was like, oh my gosh, this is going to make my life very difficult if this becomes the way of doing things. And so I kind of foresaw a lot of where things have gone over the past few years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So at the beginning I was a little hesitant because it kind of threw a wrench in this new thing that I was excited to adopt and start advancing. Over time I have come to appreciate it quite a bit. And in my opinion, it’s just allowed me as the maintainer of WP Rig, a lot of opportunity to really get in there and learn a lot, and get my hands dirty, and allow WP Rig to become something that was more my own, as opposed to something that I just adopted from some other people that had done a bunch of work, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Had that not happened, I probably would’ve just been like encouraged to just kind of sit back and be like, ah, yeah, you know what, this is my thing and it works and whatever. But this presented a lot of challenges and those challenges present a lot of opportunity if you look at it the right way. Not just opportunity to make something my own, not just opportunity to build things, but also opportunity, most importantly, I think, to learn things. And so that’s really been the gift of where all of this has gone for me personally.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Do I think that full site editing makes it so that you don’t have to make your own theme as much? Yes, I do think that is a thing because you have a lot more control of the way your website looks from within the WordPress admin area and creating templates and block patterns and all that stuff from within WordPress. It is different than how we used to do it, let’s put it that way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, as somebody who has decided to just like adopt it, I will say that if you can keep the paradigms and concepts all categorised and separated in your brain, then it’s actually quite powerful and can be extremely handy, especially with how fast the WordPress admin experience has gotten over the past few versions. It is very snappy now, almost to the point where it’s satisfying to use. Crazy to say. But it’s just so snappy. And we’ve got lots of little micro animations coming in there now where you can, you know, just the way everything happens is like, to me, it makes it a little bit more fun.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What does that mean for WP Rig? Well, that means there’s multiple paradigms that WP Rig has to support. So because WP Rig was originally created in the classic paradigm, when you first start using WP Rig, it does assume that you’re creating a classic style theme. But that doesn’t mean you’re forced to build a classic style theme. Because one of WP Rig’s strongest features is that there are whole bunch of custom command line commands that you can type in and run that will automatically convert WP Rig into these other paradigms.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if you want to build a block-based theme or a universal theme, which is kind of halfway between classic and block-based, you could just run a command in your terminal and it will just automatically change a bunch of files in WP Rig to convert it to this other paradigm. And now you have full site editing as part of your theme.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And many people may not be aware of this, but the whole concept of full site editing is controlled by the theme. Whether or not you even have full site editing on WordPress is dependent on the theme. It’s not well, Gutenberg can be removed via a plugin, but in order to enable these functionalities, like if you want to be able to do full site editing, it is the theme that dictates that, not a plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it is important for WP Rig to facilitate that part of things. And so that is something that I’ve had to build out among many other things. Now WP Rig has a full block authoring experience built into it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, this is where things get very, very opinionated among developers. But a lot of people argue that blocks are a, that’s plugin territory, right? Now, I don’t know about you, I’m not really much for territories. I like to pretend that borders don’t exist sometimes. And so there are situations where building theme level blocks do make sense. Keep in mind that if you decide to bake custom blocks into your theme, you have immediately disqualified yourself from contributing this theme to the wordpress.org theme repository. So keep that in mind. That’s a big cautionary, little tidbit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But if this theme is just for you, or a client, or for usage outside of the WordPress repository, WordPress does have the ability to enable block authoring within WP Rig. And then now you can start to author blocks within your theme.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Where I like to think of this as like navigation, right? When I’m looking for themes, if I’m like shopping for themes, one of the first things I look at is, what is the navigation for this theme? What is that experience like? Because there’s lots of different kind of like styles of navigation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you need to create a custom navigation, maybe there’s a situation where the navigation block in Core WordPress doesn’t suit your needs for whatever reason. Maybe the design of what you’re trying to build somehow goes beyond what that block provides to you in terms of functionality. You could create your own custom navigation block, and in my opinion, that makes a lot of sense to be part of the theme as opposed to a plugin, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there’s opinions there. Again, this is the nice thing about open source. There’s freedom there. But yeah, WP Rig has not just the ability to facilitate full site editing, but also the ability to facilitate block authoring at the theme level. So, yeah, one could look at this and be like, oh, this makes theme development kind of pointless because you could just do everything within the full site editor. I’m somebody that likes to kind of flip things on its head a little bit sometimes and say, actually, you know what that really means is that this gives the theme more control than perhaps you would’ve thought previously. And if you exercise said control, and if somebody provides an easy way to allow you to exercise that control, now we have a whole new paradigm. And in my opinion, that’s extremely interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:39] <strong>Nathan Wrigley:</strong> Yeah, I think the thing that I’m taking away, well, there’s a few things from what you just said. The first one, fully hybrid. You know, it could be classic, it could be block based, or it could be somewhere in the middle, like this hybrid sort of approach, which doesn’t really get talked about all that much anymore, actually, which is curious. It was a big thing for a while, and now people seem to be on one side or the other. So there’s that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But also the bit that I’m taking away from all of this is how much you are encouraging people to use this as an education piece. How to learn and scaffold your learning around something like the WP Rig project. It enables you to sort of peel back the layers. Start from a base of kind of nothing and build that up, slowly one piece at a time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And your navigation is a really great example. You might have, I don’t know, maybe a client comes along who have proclivities around, it’s got to be 100%, we’ve got to give everything over on the accessibility side, we’ve really got to do that perfectly. Well, this maybe is a great place to start. You know, you start with a blank template for that, and you build your navigation. So you will end up exploring all sorts of documentation over on the W3C website. Probably not necessarily so much on the WordPress side of things. Figure out how to do that really well, import your knowledge that you’ve gained from that into the navigation aspect of WP Rig, ship that, you’re off to the races.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, with that in mind, if you go to the WP Rig website, there’s a lot of educational content there. So there’s the inevitable kind of getting started, which is what we talked about earlier, all of the packages and the package managers and what have you that you need to get up and running. So it explains how that is all to be done. Relatively straightforward to follow that through, I would’ve thought.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then entirely separate to that is two different sections. You’ve got this like learn section where you’ve got documentation, video tutorials and things like that. But then you’ve also got like the docs area where you go into explain, oh I don’t know, how you might use JavaScript or CSS or some sort of compiled CSS or PHP and so on and so forth.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So again, no question there really, but it does feel, from my point of view, looking at this project that education is kind of the big piece. That’s the thing that you are most interested in. I don’t know if I’ve misrepresented this project, but that’s what it feels like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:58] <strong>Rob Ruiz:</strong> A hundred percent. And I think that’s inevitable when it comes to getting into this tinkerer mindset. There must be a way to learn how to tinker properly. It is also nice to add guardrails to said, because let’s be honest, there’s like a million different ways to do everything, but there’s very, very few correct ways to do everything.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so that’s another nice feature of WP Rig is that it has these sort of guardrails in place that allow you to check and make sure that you’re doing things properly. And if there’s anything that you’re doing improperly, you can obviously ignore those if you want to for whatever reason, or you can like dive into the weeds and say, okay, why is this improper?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So for instance, WordPress, Automattic created a package. It’s essentially an extension for a tool called PHPCS, which stands for PHP Coding Standards. This tool is used by PHP widely beyond just WordPress. But then WordPress adopted it a while back and decided to use it and create their own extension for it called the WordPress Coding Standard. It’s WPCS.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so they’ve iterated on it over the years and WPCS is baked into WordPress, or into WP Rig rather. So if you want to make sure that your theme is following all of the WordPress coding standards for whatever reason, maybe it’s because you’re going to create a theme that you want to contribute to the wordpress.org theme repository, then that tool is baked into WP Rig for you, so that you can make sure that your theme meets all of the requirements for a properly developed theme before you even try to go and like submit it for a review or whatever.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because that’s one of the most frustrating things ever is somebody who wants to contribute. If you try to contribute and then you get pushed back on, that’s like not a great experience. And so what I try to do with WP Rig is bake in this layer that is kind of like a, test it yourself type situation. Where you can kind of like have the system sort of, kind of review the code for you, and then that way you can make sure you’ve done your due diligence before you even try to submit it for review. To prevent that unfortunate situation where your theme might get rejected for one reason or another, and now you got to go back and rework it and then back and forth, back and forth, back and forth.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Having a tool like WP Rig that just tells you early on before you even try to submit it, hey, you should change this, you should change that. I think that’s extremely valuable for people. And again, I really want WP Rig to be something that encourages people to get more into contributing back into Core as opposed to. I mean, it can also be looked at as something like, okay, well you want to go develop your own thing and it’s for profit or whatever. It does very much facilitate that way of doing things too. But let’s be honest, anything that meets WordPress’s coding standards is probably going to make your theme, even if you’re putting it up for sale, it’s going to make it better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:53] <strong>Nathan Wrigley:</strong> Yeah, I love that you’ve built all of that in. That’s really interesting. So it does a lot of the heavy lifting, trying to make sure that you are adhering to the standards, which one would hope would be in a shippable, distributable product.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Speaking of community, do you have a community which coalesce around this project? Is it basically just you? Or is there like a little team? And if not necessarily a team, is there a little community which gathers and sort of helps you put this project together? And a corollary to that question really is, do you anticipate in the future that you will like some contributors to help you maintain this as well?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:43:27] <strong>Rob Ruiz:</strong> Yeah, for sure. So when I first started, when I first adopted this as my own, there was more of a team in place because Morten is a very well-known individual. And so he had a lot of followers and so a lot of those followers had followed WP Rig. As time has progressed, a lot of those people have kind of unfortunately gone their own way. For whatever reason, a lot of the people that were following him weren’t really like, they might have been into learning how to develop themes. They certainly were into WordPress. But working on a project like this is more than just knowing how to develop themes. You also have to know how the underlying tools work too.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that’s been my biggest challenge is learning, what is Lightning CSS? How do you use it? What is esbuild? How does that work? When I first took it over, it was ran on Gulp. What is Gulp? And what is that, and how do I modify it? And like that’s kind of far beyond WordPress, and so I think people became aware of that over time. And so while I rose up to the challenge, other people were just kind of moved on to other things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it is largely me. We do have a handful of contributors that kind of, when they have time, you know, they’ll feel ambitious again and jump in and do some more contributions and they’ll fall back and do their own thing for a while. And so there’s a lot of that. It’s not a very active community, certainly not as active as it was when I first adopted it. However, we do have a Discord now. You can find a link to the Discord on the website. If you go to the Learn V3 link in the header, there’s links to our YouTube channel and the Discord server.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we are looking, I do want more of a community around WP Rig. And so I do encourage people to come on. Obviously we’ve been on GitHub this entire time, so if anybody wants to raise issues or submit a PR, there are guides on there. There’s a contributing.md file in there for anybody that wants to contribute, or wants to raise an issue. If you have ideas for how WP Rig could be better, that’s always been there. It’s just that, for one reason or another, it’s just not popular, which is a big reason why I’m on your show today actually is just to raise awareness about WP Rig now that I have had the opportunity to overhaul it dramatically over the past couple years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In my opinion, it was a little bit, it started to feel a little bit slow compared to most modern tools. If anybody’s familiar with like Vite, or just modern frontend development frameworks. In general, they use more modern tools that build things faster and better, and they’re leaner. And so WP Rig was falling behind a little bit in that regard. And so I did have to like overhaul the project a lot. That’s why we came out with the version three because it is a pretty substantial overhaul.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so now that we have version three and it is much better and there are all kinds of new features built into it as a result of it being faster, it’s now more capable. I want to raise awareness. A, I’ve already done the work, so it would be a shame for all that work to go unnoticed and unappreciated. But also, for anybody who was familiar with WP Rig from previous years, back in the version one, version two days, I think it’s important to make people aware that version three is substantially more capable than what it was prior.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:46:38] <strong>Nathan Wrigley:</strong> That’s wonderful. I’m just going to round off the episode by mentioning the URL once more so that after that clarion call, if people have been inspired and they have listened to this and think, I’d like to explore that. You know, for the multitude of reasons that we’ve covered in this topic. The URL, it’s really easy. It’s WP Rig, wprig.io. Go there, there’s a whole bunch of ways to get involved. So there’s the Learn documentation, there’s the contribute tab and so on and so forth. You can peruse at your leisure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Rob, just before we end, is there a way that people could communicate with you more directly if they wanted to off the back of this? Is there a, like a, I don’t know, a social network or something that you frequent? Or a contact form that you’d like people to be mindful of?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:22] <strong>Rob Ruiz:</strong> Yeah, sure. I mean, I am very responsive to people on LinkedIn, so if you want to find me on LinkedIn, I am on there, Rob Ruiz, just look me up. If it looks like it’s a Rob Ruiz that does WordPress stuff, it’s probably me. And then of course, I’m on the Discord server. So if you want to communicate directly with me, joining the Discord and then messaging me directly is a nice way to do that. I’d love to help people, hold their hand if needed, get up and running with WP Rig. If you have any questions about specifics, I’m happy to address them, or you just need a little guidance, I’d be happy to help there as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:54] <strong>Nathan Wrigley:</strong> Well, thank you so much for chatting to me today, Rob. It’s been really interesting. So once more, just before we end to find out more. Rob Ruiz, thank you very much for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:48:04] <strong>Rob Ruiz:</strong> Thank you so much for your time, Nathan. I really appreciate it.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://www.linkedin.com/in/robcruiz/\">Rob Ruiz</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Rob has been involved in the WordPress ecosystem since around 2010. He began as a designer, but over the years WordPress has helped him transition into a developer, software engineer, and now an architect. Currently, he’s working full-time at an agency while still taking on projects independently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The main topic for today’s conversation centres around themes, a subject that hasn’t been covered in depth on the podcast for quite some time. You see, Rob is the current custodian of WP Rig, a free and open source toolkit for WordPress theme development. WP Rig offers a modern, minimal, and best-practice driven starting point for developers who want to build custom themes, providing tools like Composer and Node integration to streamline workflows, enforce coding standards, and enable the use of future-facing CSS features right now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We start the episode with Rob sharing what attracted him to WP Rig, and his journey from user to project maintainer. We talk about who WP Rig is for, from experienced developers to those just starting to dip their toes into theme building and code customisation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The discussion moves on to talking about what a theme development framework actually is, and why this approach might suit people wanting more control, and education, in their WordPress journey. Rob describes the learning curve, the workflow, and the satisfaction of creating your own theme from scratch, while highlighting tools and guardrails built into WP Rig that make professional standards and best practices accessible to all.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also get into how WP Rig fits into the changing WordPress ecosystem. With the advent of full site editing and block-based themes, Rob explains how WP Rig has evolved to stay relevant, supporting classic, hybrid, and block-based paradigms, even enabling block development at the theme level.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end, we discuss the community behind WP Rig, how you can get involved, and the many educational resources available for those who want to learn theme development, or even become contributors themselves.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in building custom WordPress themes, want to understand the nuts and bolts of theme frameworks, or are simply looking for a modern and educational starting point for WordPress tinkering, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wprig.io\">WP Rig website</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.linkedin.com/in/robcruiz/\">Rob on LinkedIn</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/themes/\">WordPress.org theme repository</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://postcss.org\">PostCSS</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://developer.wordpress.org/block-editor/getting-started/devenv/get-started-with-wp-env/\">Get started with wp-env</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://developer.wordpress.com/studio/\">WordPress Studio</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://codex.wordpress.org/WordPress_Coding_Standards\">WordPress Coding Standards</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wptavern.com/podcast/15-morten-rand-hendriksen-on-governing-open-source-projects\">Morten Rand-Hendriksen on the WP Tavern Jukebox podcast</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://discord.com/invite/su2et45Rat\">WP Rig’s Discord</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.youtube.com/@wprig1203\">WP Rig’s YouTube channel</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://vite.dev/guide/\">Vite</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Mar 2026 17:08:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Open Channels FM: Inside the Checkout Summit: What WooCommerce Events Mean for the Ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=1650498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://openchannels.fm/inside-the-checkout-summit-what-woocommerce-events-mean-for-the-ecosystem/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"In this episode, James Kemp, Katie Keith, and Rodolfo Melogli discuss the revival of in-person WooCommerce events like Checkout Summit, the influence of AI on businesses, and community value.\";s: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, 04 Mar 2026 11:32:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"Open Channels FM: AI’s Impact on Human Interaction with the Open Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=539201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://openchannels.fm/ais-impact-on-human-interaction-with-the-open-web/\";s: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:227:\"AI\'s rapid evolution is reshaping web interactions, with automated traffic outpacing human engagement. This shift raises concerns about content value, as creators struggle to balance utility and genuine human experience online.\";s: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, 04 Mar 2026 09:47:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Open Channels FM: Open Channels FM, a Media Partner for CloudFest 2026 and the Hackathon\";s:7:\"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:34:\"https://openchannels.fm/?p=1650323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://openchannels.fm/open-channels-fm-is-a-media-partner-for-cloudfest-2026-and-the-hackathon/\";s: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:112:\"For the third year in the row we are proud to be a media sponsor for both the CloudFest Hackathon and CloudFest.\";s: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, 04 Mar 2026 09:33:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Open Channels FM: Expanding Your Skills Stack During the Rapid AI Shift\";s:7:\"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:34:\"https://openchannels.fm/?p=1650385\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://openchannels.fm/expanding-your-skills-stack-during-the-rapid-ai-shift/\";s: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:224:\"Hosts Carl Alexander and Zach Stepek discuss the challenging yet empowering transition in careers, emphasizing the need to adapt skillsets, leverage AI tools, and focus on personal branding in a rapidly changing environment.\";s: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, 03 Mar 2026 14:47:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Open Channels FM: Preparing Your WooCommerce Store for the AI Era: Data and Catalog Management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=535677\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://openchannels.fm/preparing-your-woocommerce-store-for-the-ai-era-data-and-catalog-management/\";s: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:365:\"As WooCommerce continues to evolve in its integration with AI technologies, one theme stands out: the importance of structured and accessible data for store success. Conversations in a recent episode illuminated how a well-managed product catalog is the backbone of leveraging AI features, both now and in the future. Store owners and developers are urged […]\";s: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, 03 Mar 2026 12:38:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Open Channels FM: What’s New at CloudFest Hackathon 2026: Trends, Changes, and Creative Energy\";s:7:\"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:34:\"https://openchannels.fm/?p=1650438\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://openchannels.fm/whats-new-at-cloudfest-hackathon-2026-trends-changes-and-creative-energy/\";s: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:185:\"In this episode enjoy a chat about the CloudFest Hackathon 2026\'s history, future initiatives, and community engagement, emphasizing inclusivity, mentorship, and project sustainability.\";s: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, 03 Mar 2026 10:22:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matt: Emacs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://ma.tt/2026/03/emacs/\";s: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:740:\"<p class=\"wp-block-paragraph\">People are doing pretty interesting things with <a href=\"https://www.gnu.org/software/emacs/\">Emacs</a> (now on version 30.2!) these days, if you haven’t checked in recently. The bleeding edge has always been people into <a href=\"https://orgmode.org/\">Org Mode</a>. <a href=\"https://sachachua.com/blog/2026/01/using-whisper-el-to-capture-text-to-speech-in-emacs/\">Sacha Chua has hooked up Whisper to Emacs</a> to talk to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Emacs is probably one of the first and best examples of self-modifying software that contours to your brain. With vibe coding, we may get back to that space where everyone’s personal setup is like a crazy specific Emacs config file.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Mar 2026 10:11:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Open Channels FM: How Freelancers Can Tame Digital Distractions\";s:7:\"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:34:\"https://openchannels.fm/?p=1650174\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://openchannels.fm/how-freelancers-can-tame-digital-distractions/\";s: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:173:\"Starting conversations around strategies to reduce digital distractions, emphasizing boundaries for emails, social media habits, and personalizing routines for better focus.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Mar 2026 09:29:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Gutenberg Times: Schedule of WordCamp Asia Birgit’s selected sessions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=44484\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://gutenbergtimes.com/schedule-of-wordcamp-asia-birgits-selected-sessions/\";s: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:6541:\"<p class=\"wp-block-paragraph\">This year’s WordCamp Asia just published the first version of its <a href=\"https://asia.wordcamp.org/2026/schedule/\">schedule with sessions and workshops</a>. Contributor Day also has a few workshop slots. If you registered for Contributor Day you are looking at three days of learning and discussions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Here is my personal list of talks and workshops, mostly about the block editor, themes or AI in WordPress. I will update the post with the video links after WordCamp Asia once the recordings are uploaded to WordPress TV. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Livestreams are available on April 10 and 11 on the three session tracks, Foundation, Growth and Enterprise. Times are all local Indian Standard time (UTC +5.30).</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Updated March 2, 2026</strong>,</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://asia.wordcamp.org/2026/schedule/\">The schedule</a> has a few placeholder spots for </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Journalism and the Open Web </li>\n\n\n\n<li>AI and WordPress </li>\n\n\n\n<li>And quite few TBD for talks and workshop</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The schedule for the Contributor Day hasn’t been finalized either. It’s unclear when my workshop <a href=\"https://asia.wordcamp.org/2026/session/building-a-block-theme-from-scratch/\"><strong>Building a block theme from scratch</strong></a> will take place. There are three workshop slots reserved. We will have a <a href=\"https://asia.wordcamp.org/2026/wordpress-7-0-release-on-contributor-day/\">WordPress 7.0 Release</a> ssession and Open-source Library spaces as well. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The conference days also have six workshop slots that are still “TBA”. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The program team is working on the final version of the schedule. Make sure to check back on weekly basis. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\">Birgit’s selected sessions</h2>\n\n\n\n<h3 class=\"wp-block-heading\">April 10, 2026</h3>\n\n\n\n<p class=\"wp-block-paragraph\">After opening remarks and introduction of speakers the day begins with</p>\n\n\n\n<p class=\"wp-block-paragraph\">10 am <a href=\"https://asia.wordcamp.org/2026/session/fireside-chat/\"><strong>Fireside Chat with Mary Hubbard</strong></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">1:00 pm <a href=\"https://asia.wordcamp.org/2026/session/from-static-to-dynamic-mastering-the-interactivity-api/\"><strong>From Static to Dynamic: Mastering the Interactivity API</strong></a> with Ryan Welcher</p>\n\n\n\n<p class=\"wp-block-paragraph\">2:50 pm <a href=\"https://asia.wordcamp.org/2026/session/lost-found-in-ai-wonderland-an-honest-journey-through-hype-headaches-and-real-wins/\"><strong>Lost & Found in AI Wonderland: An Honest Journey Through Hype, Headaches, and Real Wins</strong></a> with Nirav Mehta</p>\n\n\n\n<p class=\"wp-block-paragraph\">3:55 pm <a href=\"https://asia.wordcamp.org/2026/session/ten-times-the-value-why-automation-is-worth-the-investment-in-open-source/\"><strong>Ten Times the Value: Why Automation Is Worth the Investment in Open Source</strong></a> with Jonathan Desrosiers</p>\n\n\n\n<h3 class=\"wp-block-heading\">April 11, 2026 </h3>\n\n\n\n<p class=\"wp-block-paragraph\">9:15 am <strong><a href=\"https://asia.wordcamp.org/2026/session/wordpress-playground-ai-building-autonomous-testing-pipelines/\">WordPress Playground + AI: Building Autonomous Testing Pipelines</a> </strong>with Fellyph Cintra</p>\n\n\n\n<p class=\"wp-block-paragraph\">11:15 <strong><a href=\"https://asia.wordcamp.org/2026/session/entity-first-optimization-how-to-make-wordpress-content-machine-readable/\">Entity-First Optimization: How to Make WordPress Content Machine-Readable</a> </strong>with Adeline Dahal</p>\n\n\n\n<p class=\"wp-block-paragraph\">11:35 am: <strong><a href=\"https://asia.wordcamp.org/2026/session/from-chaos-to-clarity-scaling-teams-with-block-theme-standards/\">From Chaos to Clarity: Scaling Teams with Block Theme Standards</a></strong> with JC Palmes</p>\n\n\n\n<p class=\"wp-block-paragraph\">12:25 pm <a href=\"https://asia.wordcamp.org/2026/session/build-for-what-comes-next-how-enterprise-wordpress-is-powering-the-agentic-future/\"><strong>Build for What Comes Next: How Enterprise WordPress Is Powering the Agentic Future</strong></a> with James Giroux</p>\n\n\n\n<p class=\"wp-block-paragraph\">3:00 pm Don’t miss: <a href=\"https://asia.wordcamp.org/2026/session/closing-keynote-wordpress-co-founder-matt-mullenweg/\"><strong>Closing Keynote: WordPress Co-Founder Ma.tt Mullenweg</strong></a></p>\n\n\n\n<h2 class=\"wp-block-heading\">First time in Mumbai?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The communication team published some really cool posts about Mumbai and India, which is super helpful for anyone heading there for their first time.</p>\n\n\n\n<div class=\"wp-block-columns has-light-background-background-color has-background is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">First-time WordCamper</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://asia.wordcamp.org/2026/how-to-make-the-most-of-your-first-wordcamp/\">How to Make the Most of Your First WordCamp Asia?</a></li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2026/about-the-venue/\">Venue</a></li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2026/how-to-prepare-for-contributor-day/\">How to Prepare for Contributor Day?</a></li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2026/5-career-conversations/\">5 Career Conversations You Will Have at WCAsia26</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Food, Culture and Travel</h3>\n\n\n\n<ul class=\"wp-block-list has-small-font-size\">\n<li><a href=\"https://asia.wordcamp.org/2026/food-walk/\">Your Next Bite Is Here</a></li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2026/sim-cards-internet-and-upi-payments-made-simple/\">SIM Cards, Internet, and UPI Payments Made Simple</a></li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2026/namaste-india-guide-to-indian-culture/\">Namaste India! Guide to Indian Culture</a></li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2026/mumbai-on-a-plate/\">Mumbai on a Plate</a></li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2026/things-to-do-in-mumbai/\">Things to do in Mumbai</a></li>\n</ul>\n</div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Mar 2026 12:01:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"Open Channels FM: Open Channels New YouTube Channel and Newsletter\";s:7:\"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:34:\"https://openchannels.fm/?p=1650400\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://openchannels.fm/open-channels-new-youtube-channel-and-newsletter/\";s: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:80:\"Host Bob Dunn announces a new YouTube channel and a new newsletter and roundup.\";s: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, 02 Mar 2026 11:45:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"Open Channels FM: Omnisend Continues Their Support of Open Channels FM\";s:7:\"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:34:\"https://openchannels.fm/?p=1650182\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://openchannels.fm/omnisend-continues-their-support-of-open-channels-fm/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"Omnisend continues to sponsor us, offering a powerful marketing platform for ecommerce. They provide easy migration support and so much more.\";s: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, 02 Mar 2026 09:46:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Sunday Links\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151324\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2026/03/sunday-links/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2313:\"<ul class=\"wp-block-list\">\n<li><a href=\"https://transparency.automattic.com/2026/02/23/transparency-report-update-july-december-2025/\">Automattic’s new transparency report is up</a>, and <a href=\"https://transparency.automattic.com/wordpress-dot-com/intellectual-property/intellectual-property-2025-jul-1-dec-31/\">TorrentFreak covers how AI-generated notices have been flooding the system</a>. We don’t talk about it much, but for two decades now Automattic has been a fierce fighter for free speech on behalf of our customers and journalists. Our legal team has gotten a big upgrade in the past 15 months so look for more in this area.</li>\n\n\n\n<li>WordPress 7.0 is shaping up to be a great release, and we’re moving fast! As someone noted, after <a href=\"https://make.wordpress.org/core/2026/02/18/wordpress-7-0-product-review-meeting-with-matt/\">the product review</a>, <a href=\"https://x.com/SteveJBurge/status/2027152882445775168\">we got the new Connectors setting screen in beta 2 at AI speed</a>.</li>\n\n\n\n<li>Yesterday, <a href=\"https://tinkertendo.com/\">TinkerTendo</a> hosted a fun <a href=\"https://luma.com/a6t92ohv\">BioArena Hackathon</a>. <a href=\"https://cloudup.com/cYjePWS3QRx\">From the pics, it looked like a great event</a>.</li>\n\n\n\n<li>Kudos to WP community member Matt Medeiros, <a href=\"https://www.youtube.com/watch?v=zcKBDzrER3g\">who used AI to spin up a quick webapp to help his community</a> track which streets had been plowed after that crazy snowstorm. Making local communities better is definitely part of the WordPresser ethos.</li>\n\n\n\n<li><a href=\"https://claude.com/import-memory\">Claude’s hack to import your memory</a> is an amazing application of what I hoped for with the <a href=\"https://wordpress.org/data-liberation/\">Data Liberation push on WordPress.org</a>. However, it’s just re-arranging deck chairs on the Titanic; what you really want is for that memory to be personal to you and work with every model, which is what <a href=\"https://github.com/openclaw/openclaw\">OpenClaw</a> and its many claw descendents, like <a href=\"https://github.com/zeroclaw-labs/zeroclaw\">ZeroClaw</a>, do for you. It reminds me of <a href=\"https://tantek.com/presentations/2005/01/attentionxml.html\">Tantek’s 2005 Attention.xml presentation</a>.</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 01 Mar 2026 18:55:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Gutenberg Times: Gutenberg Changelog #127 – WordPress 7.0 Beta and Gutenberg 22.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=44570\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-127-wordpress-7-0-beta/\";s: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:68978:\"<p class=\"wp-block-paragraph\">In Episode 127 of the GT Changelog podcast, Birgit Pauli-Haack and Jessica Lyschik dive deep into the upcoming release of WordPress 7.0, focusing on the features arriving with beta 2 and their impact on users and developers. They begin by emphasizing the importance of testing betas, especially for plugin and theme creators, highlighting how early testing helps prevent compatibility issues at launch. A walk-through of the beta testing process, tools like the beta tester plugin, and considerations for time zone differences during the official release (scheduled for April 9th) are discussed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The majority of their conversation centers around the headline features of WordPress 7.0. Real-time collaboration steals the spotlight, now allowing multiple users to edit posts and pages simultaneously—streamlining workflows and minimizing version conflicts. The episode also celebrates the introduction of visual revisions within the block editor, making change tracking clearer and more intuitive. Other notable updates include responsive block visibility controls, enhanced navigation and submenu options, improved lightbox support for gallery blocks, and the long-awaited introduction of the icon and breadcrumbs blocks.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack and Jessica Lyschik also discuss the new content-only pattern editing feature, revamped backend color schemes, and incremental improvements for both end-users and developers, such as the font library UI and under-the-hood advances. They note that some planned features, like the playlist and tabs blocks, did not make the cut for 7.0 but might arrive in future releases. The episode ends with practical advice: test your sites early and stay informed to ensure a seamless transition to WordPress 7.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-127-wordpress-7-0-beta/\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-127-wordpress-7-0-beta/\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor: <a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size wp-block-paragraph\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special guest: Jessica Lyschik</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://x.com/jessicalyschik\">https://x.com/jessicalyschik</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/@jessicalyschik\">https://www.youtube.com/@jessicalyschik</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/redirect?event=channel_description&redir_token=QUFFLUhqa2tsT25ETnVSM20xS3ZoNDhpTkhwUVhlM2J0UXxBQ3Jtc0tsY2NmeEdxT01xdEMzMlR4WWxjYll2bGoyMXlSZVZFZm82alVtS3hpdW01Y3U1R3U0RGVBT19lbEhQeXNYeTcxZ0EwaVg4YUlYV2ZGR085ZXA1U0pYYzdSelRnejR5cDBHUm1pZDRpQi1fdHRPbkw3UQ&q=https%3A%2F%2Fprofiles.wordpress.org%2Fluminuu\">profiles.wordpress.org/luminuu</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/playlist?list=PLtf0_A0KILu5lspB8oXQjinPhIe87s3nJ\">Greyd Conversations, to be found on YouTube</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 7.0</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">Help Test WordPress 7.0</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/24/iframed-editor-changes-in-wordpress-7-0/\">Iframed Editor Changes in WordPress 7.0</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/12/11/planning-for-7-0/#comment-48392\" id=\"https://make.wordpress.org/core/2025/12/11/planning-for-7-0/#comment-48392\" type=\"link\">What made it into WordPress 7.0</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/\">What’s new in Gutenberg 22.6? (25 February)</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So welcome to our 127th episode of the Gutenberg Changelog podcast. In today’s episode, we will talk mostly about WordPress 7.0 because Beta 2 has been out and a little bit about Gutenberg 22.6, but most of what’s in that release is actually coming to WordPress 7.0. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress open source project, sponsored by Automattic. And today, Jessica Lyschik is with me on the show again, and we will tackle most of the WordPress 7.0 updates. Jessica is a core contributor to WordPress, default theme co-lead for Twenty Twenty-Four, speed building champion Twenty Twenty-Five, and works as a senior developer for Grade, a company building WordPress products for agencies and large companies. And Jessica is a regular host on the Grade Conversations to be found on YouTube. How are you today, Jessica? Welcome to the show again.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik:</em> Thanks for having me. I’m good. I’m good. I mean, the sun is shining outside, so I’m expecting hopefully a nice workday today and then catch some sun rays because it’s been a long winter here. Yeah, it’s been very cold, very moody, cloudy. So the sun is very nice. Having some sunshine is a very nice change.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, I was walking the streets of Munich the other day and I saw the little plants kind of coming out, crocuses and whites and yellow. So spring is coming.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik: </em>Definitely, definitely.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>And it’s— I actually saw a sunrise at 6:30 in the morning. So the days are getting longer too, which is part of my mood changing thing. Yeah. </p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released – WordPress 7.0</h3>\n\n\n\n<p class=\"wp-block-paragraph\">So WordPress 7.0 comes in big steps and WordPress 7.0 Beta 2 was released just yesterday and we’re recording this on February 27th. So let’s go through the list of things that actually made it into 7.0. I’m also sharing in the show notes, not only the list, but also a link to the help test WordPress 7.0 that the test team has put together with some nice instructions and videos on how things are supposed to work. And you have to— can go in and test if they’re actually working like that or if something else is breaking. And you ask dear listeners to help do that. I also always kind of say, the best way to learn what’s in WordPress 7.0 is to heed to the call of testing, because that’s the first step to learn what’s working for you, what works with your sites and with your plugins. And it will be really helpful to know this before the release comes out. So if you just follow the instructions on how to present feedback and bug reports. Your team has started testing. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: When you have a plugin and you do not look at the Beta versions or release candidates and suddenly the release date rolls around and you’re not prepared and clients update their websites and then they say, hey, my site’s broken, then you’re in trouble. So avoid that as best as possible. That’s why I’m glad that we have Beta phase and release candidate phase so we can like really have a closer look. And it’s so easy with the Beta tester plugin. To be honest, that’s still the one way I’m using it, just installing the plugin. I configure the default configuration a little bit differently only to show me Beta and release candidates versions. And then it’s just hit update and go for it with whatever installation you have at the moment. So that’s actually, I find this to be one of the easiest ways without needing to have big technical knowledge about that. Of course there’s WP CLI, there’s many other ways you can achieve that, but for me, this is probably the easiest and can be thrown on any installation, local or online, probably not live sites, but any staging or testing environment that you have.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So exactly. And it’s a good point. Don’t test this on a live site.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah. Things can break. I mean, that’s why it’s called a Beta version or release candidate. Things are supposed to break. I spotted an issue this morning with something, not a big issue, but it is an issue. So we have to look into this, but we still have time. How long are we away? 6 weeks, I think about 6 weeks.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So yeah, April 9th is the final release date. So we are a little bit 5 weeks more than 6 weeks.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: And it will be, I just saw the note, will be released during Contributor Day at WordCamp Asia. So some of the release squad members will be in Mumbai to hit the big button. But of course, it’s all remotely and you can do it from anywhere. So it doesn’t really matter where the release squad is. The only thing that might screw it a little bit, skew it, not screw it, skew it a little bit is the time difference between where the other release squad members are and the ones in Mumbai. But for Europe, it’s a 3.5-hour time difference. So it’s not that big of a deal. You just need to organize it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, usually they are fast in Europe, their releases are in the evening. So something around 7 PM, 8 PM sometime. It depends on when the dates are announced and the times. So it will be a bit earlier for us in the day, but still like afternoon-ish. So not in the middle of the night. So, but of course, if you move further to US time zones, like East Coast, West Coast is particularly early for them, I guess. If it’s fun, it could be like early morning for them.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, could be in the middle of the night.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Oh no, no, we have to, we have to think backwards. It will be like, I don’t know, but is it like in the afternoon on the 9th? Do you know more details about that?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: I was looking for the release party. Post, but I haven’t seen it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I mean, there’s an overview post somewhere.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. I remember that. Yeah. On the Make blog. Definitely. I’m just looking at it when the release party schedule is.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I’ll see if, uh, there’s only a date so far on the, on the overview.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. Beta release was about 3 PM UTC. So that’s 4 o’clock in the afternoon in Europe. -9, that’s about 7 o’clock in the morning.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: It’s early morning. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: In Pacific time. Yeah. So about that time. Yeah. I’ll get a better look at that when we get closer to see when they actually schedule the release parties. But it’s always great fun to be in the core channel to kind of see it coming together.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. So that’s about the process. April 9th, we mentioned it, is the release. We have release candidate. So Beta is the feature freeze. So after that, only bug fixes are going to be merged into core. Release candidate 1 is on March 19th, and that is considered a string freeze. There will be release candidate 1, 2, and 3, and only things that are— don’t have a string. Well, the reason why they do string freeze is because then the translator can start translating the version or the new strings into their respective languages. And to give them about 3 weeks to 4 weeks is a good number. But when you don’t do string freeze, then they have to start all over again when the new version comes out.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: So many things change. I mean, things will change. Maybe there’s always the thing that a bug appears and maybe strings have to be changed. So there’s always some moving parts, but it is way much reduced if you would just, if you’re stopping to actually make massive changes so people can catch up with things and then when it’s just a few more strings that need to be adjusted or retranslated, then it’s not like 500 new strings, but only 5 the day before the release. So yeah, it makes total sense. I mean, it has worked great over the past many years that we’ve been doing this like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Absolutely. Yeah. So now with all the talk about the release, what’s actually going to be in WordPress 7.0? And there have been quite a few. So there was a roadmap and then there were these tracking issues that are on the Gutenberg repo. So there is not a whole lot of mystery behind what’s coming, but we definitely should talk through that. And one of the biggest features is the real-time collaboration. So now the message that somebody else is editing your post will go away, or it will still be there, but you still can access the post and then you can see who else is working on the post. And you can have more than one person in the post or in the page to actually edit that and not get into trouble with losing content. So that’s a feature that has been a long time coming. And it’s also something that has been tested already in the enterprise section for, I think, a little over a year or half a year since August last year. So, and now it comes to WordPress core. So it’s really cool. I’ve, I like it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I have not seen it in action yet because I mostly work on things where it’s only me and rarely anyone else, but I’ve seen the notes feature. This is like the kind of site quest, if you will, which has been already around since 6.9, if I remember correctly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: But yeah, I’ve just opened the GitHub issue around it that is linked in the testing post. And it’s quite interesting. It will be interesting to see. I think we have to spin up a session with my colleagues and all go into one page and see what it looks like, how it feels like.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So yeah, there are some avatar bubbles showing up on multiple places. Yeah, it’s kind of in the headline and also when they’re both there. And also if they’re the notes and the real-time collaboration are kind of merging now. So the same avatars that show up in the notes will also show up in the, in as where the cursor is. So it’s kind of really interesting to see. I think it’s not only for enterprise, it’s also for if you have a blog site, you probably also have a designer or a person that manages your media. You can all be in the post and kind of do things just right before publishing and you don’t have to coordinate, get out of the post, get into the post. What do we change? Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: It will save things. Even if you have a team of two, it’s still an interesting feature. And I’m really hoping as working on the WordPress developer blog that we kind of cut out the step where we do everything in Google Docs, do all the comments there. And then once everybody kind of has their word and say to move it and that we actually start creating the post in the blog and then just do the reviews from there. The only caveat is that to review and help, you have to be a member of the blog. You have to be an editor of the blog. But I think everybody who’s writing and reviewing either will be on the blog or will in the future or already has written a blog post. So they should be able to do it. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Right now it’s only me doing it. Yeah, I publish in January and in February a post and it’s only me doing it. But it’s interesting to do this via notes. Yeah, because you get emails and all of that. Yeah, already. So it’s a good feature. The real-time collaboration, I haven’t done anything on that yet because it just came out. Yeah. So it’s not yet implemented. Anything else about real-time collaboration? Oh yeah. At the moment, and that’s with Beta 2, it’s a setting that you can opt into. So you have to go to settings. Writing, and I think the fourth from the top is the enable collaborative editing or real-time collaboration. Otherwise it wouldn’t work. I think for later versions it will be an opt-out, but it will be on the same space.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Where do you put this? I’ve just opened up the preferences. I have a test site which I spin this one up.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: But you go to the admin settings, the normal settings for writing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Ah, the normal setting. Okay. I was in the editor, so that’s probably why I’m not seeing it there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. It’s not in the preferences. It’s in the admin dashboard and then settings and then writing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Writing. Yeah. Oh yeah. There it is. Enable real-time collaboration. Let’s just try this out, how it looks like.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I mean, I’m curious to see.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: You don’t see it when, when you are alone, all alone.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Well, I could create a second user and then just—</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, and switch over in the second browser.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Switch over in another browser or another incognito tab.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: I think it could be in a different browser window. I tested it with Firefox and Google just to kind of not get into the way of each other.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, you need a different browser tab in the same browser. It’s not going to work because then you’re logged in with the same user, so you need to be logged in with two different users in order to make that happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: So it’s either an incognito window in the same browser or a different browser.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Basically, you log in as admin, but you can switch the user over. There’s a user switching plugin. That’s what I’m using by John Blackburn. He has a very easy user switching plugin, and I’ll share the plugin link in the show notes. But then you can switch over to a different user. And then because I uploaded two avatars, so I can see the difference and all that. In the same note, another big feature, it’s not a new feature, but it’s a total revamp, is the visual revisions.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Oh yeah. Yeah. This is a big change. I’ve, I’ve tested this out before we started because I was really curious to see and Yeah, this is no more text walls and complicated HTML tags to understand and everything like before. I mean, I think the old one does have an advantage for like someone like me who’s used to looking at code all day and I can get my way around it. But I guess for many people who are not this, do not have an eye for this, this is like a massive wall of text and some green and some red stuff flying around somewhere. So I found it a very interesting way to create the revisions, to visualize the changes. I mean, I only made minimal changes to a page, like adding a paragraph, removing, removing a sentence and whatnot. But yeah, it’s actually kind of interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So one of the major features is it’s in the editor. You don’t have to switch screens to see your revisions. That’s also a plus. It knows what blocks are. So every change is filled in red and green. Red when you remove something, green when you add something. And it has a little banner on the right-hand side to outline.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: To indicate where on the page about where. I mean, I only had a short page, so it wasn’t that big of a deal, but it kind of, I think it really showed where it was. Like if there’s a specific paragraph you’re looking at, then let me just open up this.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, it’s really nice. Ella did a fabulous job on that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: And there’s also not just red and green, but there’s also yellow if something inside a paragraph changes that is not like completely adding or I think I know for this one, I added something inside an existing block. So the block itself is outlined in yellow. Hey, something changed here. And then the part where I added the words that is highlighted in green. So it’s like also kind of detailed and not just red and green like before, but you have also yellow, which indicates some sort of change, maybe with either an additional removal.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. Yeah. It’s really nice. It’s very visual and staying in the block editor is such a relief. You don’t have to go back and forth and you have on the top of the screen. You also have the different versions of things. So you can, it’s a slider with the dates attached. So you can kind of, and the publish button changes to a restore button. So you can select the version that you wanna restore here.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: And you can also exit there. So it’s like you do not have the editing ability anymore. So the entire editing ability is stripped from that page. And instead you have either restore or exit. So I think this makes it distraction-free. So it’s also good because then people will not start editing inside that. It’s just a visual representation of things that have changed.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Exactly. Yeah. Good. And then do you want to take the next feature or?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I have not. I have seen this. So I was curious to see because I saw something else down in the Gutenberg 22.6 Release notes, if you will. But I saw that when you’re trying to hide any block, you can now hide them specifically either on desktop, tablet, or mobile. So it’s not just on or off, but you can now, in WordPress core without any extra plugins, say this either show only on desktop, show only on tablet, show only on mobile. The little downside here is that if I’m not mistaken, you can still not change the ranges of the viewports. You can?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: No, no, that’s still hard-coded. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Exactly. So you’re still tied to the default states of what is desktop, what is tablet, what is mobile. So that is the little downside, if I say so, because oftentimes, at least in my experience, people want to really hone in. I want mobile to go to up until this specific size and tablet to be in this range. And they often differ from what WordPress offers by default. So that’s why many plugins have been popular in the past and many different integrations are there. So I think it’s important to mention that it does work. I guess it does work because otherwise it wouldn’t be in the Beta version, but it is restricted to what core says about the viewports.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So yeah, yeah. And it’s a, it’s a range. It’s mobile starts at 480 and desktop starts at 768 and in between is the tablet. So I have found that I cannot make my browser window small enough to see the mobile version, but that’s, I think, a setting on my desktop. I’m not quite sure, but if you use the developer tools, you can see it or the previews, of course. Yeah, the preview inside the block editor will show you yes or no. With 20.6, they also added a feature for the list view where you see the eye for visible or invisible. It also has a little tooltip saying, okay, it’s visible on desktop or it’s visible on mobile and hidden on tablet and these kind of things. So there’s a little bit more visual support for figuring out why is that block not working. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, that’s true. Yeah, it seems to work pretty well. So I just played around with it and put a paragraph to hide on desktop. It does no longer show at desktop, but once I make the browser smaller, it appears again. So seems to be working pretty well.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. Yeah, the next feature is, well, it’s kind of a set of features for the navigation block. That has been coming in. There are a few things that are making navigation easier. One is that you now have control for your hamburger menus, your mobile hamburger menus, or if you want them on desktop too. Yeah. So you can now create different overlays for your navigation. And 7.0 will come with a few patterns. So you don’t have to do the whole creative work. You can just kind of say, okay, I will use this one and this one. It’s on the basis of template parts, so it can be reused on other places and templates if you have different overlays. And so I really like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, it gives more customization that wasn’t there before because you just only had a mobile version of the navigation you created. And I know from our experience at Grade that people like to switch up things in this mobile view because they want to add a button or add information or whatever, or change the menu items by default to have less menu items than they would have on desktop. So this was only possible with other tools, and now it’s in core as well. I also played around with it a bit, just adding random blocks to it. So it’s not just limited to specifically a navigation, but can add anything you need into that because it’s a template part, as you said.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So yeah, right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So it actually is then also possible to create mega menus, which is also something that a lot of people wanted to do with those template parts.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Well, I haven’t played with, played it that far so far. I haven’t looked at the settings in detail, but. I guess I have to test this out.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. Well, there are a lot of people who are going to be testing things and I wish they would share a little bit more about their successes or, well, they never really talk about their successes, mostly about, oh, this is a bug that needs to change kind of thing. But it would be really cool to see some other implementations. Yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">They also revamped the submenus a little bit with handling that. So it now defaults to open or closed states, and you have a place to put the close button for that. Yeah, the patterns we talked— the overlay patterns is kind of with a black background, with an orange background, with a side info as well. So it’s pretty cool. Oh yeah, and what also changed in the navigation is that you can now— well, you always could add new pages when you create a navigation bar, create a new page, but now you can, you have a toggle switch that you can actually publish it. So the create a page is then available in your pages, but the menu works. And they did also a fantastic job making the links in the menu a little bit more smart. Yeah. So when you change the title or the slug of a page, it now reflects in the menu where it’s actually used. So that is, was also a big big pain point that you always had to think about, oh, I changed the slug of my page or my post. Now I need to update two menu items because I have a header, a footer, a header menu and a footer menu. And yeah, it’s all kind of a, it was a little bit.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Or another five menus in different places that you all need to update and you forgot about them. So yeah, that’s actually very nice. I just opened up also the, when you have a navigation block focused and go select one of the pages that is in there. It now shows a little, I’m not sure how long this has been there, but there’s a box popping out saying the title of the link and then it links to this specific page, which is a page. So the post type is shown and also what status it has. So it is published, is it draft or whatever. So there’s, I think if I click on that, yeah, I can now go directly into editing and I can go back. Oh, this is fancy.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. Yeah. That’s also fairly new. I think it was in 22. So it’s between 6.9 and 7.0. It’s a new feature. It’s a new feature.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah. I think this will definitely enhance the whole working with navigation, with navigation in general, because to be honest, it has been a pain to work with navigation. So I’m glad to see some improvements here. They’re looking really good. Oh, you can even add more stuff, description and real attribute. Nice. That’s looking good. I like that. I honestly like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Awesome. Very good, Birgit. What’s next on the list?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Next on the list is gallery block add lightbox support.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Ooh, that’s my personal favorite. Yeah. Well, lightbox support was there before, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I was just saying that the lightbox has been around for a while. But yeah, not only for images, right? Not for the gallery.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: It was for the gallery, but it only added the click to open big. It wasn’t a real lightbox. It kind of— you needed to close it and then look at the next picture and open it up again. And now you actually have navigation with next and previous, so you could actually have a really nice gallery viewing experience. And I was waiting for this for quite a while. Not that I didn’t find any plugins that do that, but yeah, to have it in the browser.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I think that’s a very nice feature because it reduces the need for a plugin if the functionality is enough for the user. I mean, there will always be plugins that enhance this functionality or create another variation of a lightbox with even more features. There’s always like that, but it’s, it’s good to have that because it’s just, I’ve never really worked so much with galleries in the past, but probably I will do more because now you can continue switching to the other images without even having to close that. So I think that’s really a good quality of life improvement.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Absolutely. Absolutely. Yeah. Yeah. Those sites that have big visual assets on there, like pictures and they have portfolios or they want to show a decoration or be it food. Yeah. Each one of the sites. And what I like about it is also that you can swipe it on mobile. You don’t need to—</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Oh, nice.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: It’s not animated, but it’s definitely there. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So the thing that moved to the next version in WordPress is showing the captions somewhere on that. Yeah. Right now it’s just a picture and the navigation, but that’s a huge step forward. What also is new for the gallery block and many blocks is that the sidebar where the settings and the styles are now also have a content tab where you can see, for instance, all the pictures in a list and then just open it up and add an alt text to it, for instance. So you can have an easier way to update the content of things. You’ll see that also on other blocks that are kind of multi-blocks, like the social icons or the buttons or the list, that you get now a little content section on the right-hand side. And you don’t have to, for that, open up the list view. It’s a little bit of duplication, but I think it’s a different mindset when you just want to edit that particular group of blocks and see it in one view.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, but you can, I just created a gallery on my test site and picked some of the pictures. And when you are in this content section and you click on an image, you are put to the specific image block within the gallery. So I don’t think this is too much of a crazy thing. Yeah, you are right about the duplication that if you are on the gallery block itself, you can add something. That’s probably easier on the right side now to add something. But you also get the context options that you would have in the list view. So this is the duplicated part. But to be honest, I mean, I work a lot with the list view. I always— the first thing I do when I come into a brand new editor is go to preferences and say, list view, always show list view. Because I still don’t get why this is not the default. But yeah, for people who may be not using the list view too much, I think this is a pretty nice way to work with the gallery block. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: And there are also people who are overwhelmed by the list view. Yeah. So kind of, they don’t.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, I can understand. But yeah, I’m a big fan of the list view.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So yeah, there will be two new blocks. There’s a breadcrumbs block and the icon block. And the icon block just made it out of experimental with 22.6. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I think this was a very close call, right? I just saw Ryan’s post the other day. It’s like, we made it. And I was like, oh, that’s close. Isn’t Beta 1 already out yet?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, no, it was, uh, actually in Beta, but the discussion was about— not about the icon block per se, but it only has limited functionality. When you— for a designer, you cannot register your own icon collection.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: That would have been my question. Yes.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: And that has been the API that was too close to be comfortable in creating a new API at the last minute, so to speak. And they said that needs to be similar for a moment. And that was pushed in 7.1, but you still can use the icons that are in the block editor already.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: It mostly, it will be arrows or the chevrons or maybe something like pencil or image or home. Yeah. The default ones are there. So it’s, I would say for, for the, for the beginning, it’s fine. And I think for the extensibility, it’s definitely needed that we have an API to add any kind of icon that we want or that the user needs because people work with the most different things. I think the same, we had the same thing with the social icons block, if I remember correctly, like you had a fixed set, but then later on. It was added the ability that you can upload your own icons, if I’m correct.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: So I would very much look forward to potentially in 7.1 that we get the ability to extend this icon library to whatever icons we need, have an upload.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. Yeah. I think designers really work, love working with icons and when they design sites, it would be really helpful to actually have the branded icons, whatever they have to be uploaded. But yeah, in the release post of 22.6, Bernie Reiter, who was a release lead, he uploaded an implementation which makes perfect sense, which is the location for a map, kind of, yeah, what’s the address, what’s the link for Google Maps, and what are the ratings, so to speak. And you can all do that with the icon set that’s already in the block editor. It was worth it, even with not registering the API, to put that into a core. And it’s still helpful.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I mean, the icon block has been long awaited, so it was about time.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. And the other block is the breadcrumbs block, which I’m really happy that it made it because that’s a very versatile block. It has a lot of smartness behind it where you can put it on any page and then it figures out what are the breadcrumbs to get to that page and also to get back again. So you could do categories, archives, subpages, parent pages, child pages. It’s all picking up those things. And it’s a really nice addition for larger websites to have a user find their way back or orient themselves on the website.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, I think there’s also enough settings to work with it. So it’s looking good. I just added it to my test page. You have all the color, typography, dimensions, border. So there’s, there’s something to do with it. I would say.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, you can definitely work with that. So then the existing blocks obviously also get some improvements. Do you have any favorite of those? I do. So the paragraph has two new things. One is the indentation. So you can make a paragraph or on a page manage the indentation of the first line in a paragraph. There are two versions of it that you need to handle in the settings page. One is to have the first paragraph not indented, but all the subsequent paragraphs. And then if you toggle that off, then also the first paragraph is indented. And that is that it’s in the English-speaking countries, the first paragraph is not indented. But in the right-to-left and other countries, even if they are left-to-right, they always want all the paragraphs indented. So it’s a different standard for publications in different countries. So they needed to take care of that. But the default is to have the first paragraph not indented and all the subsequent paragraphs are.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: It’s like I usually do not come around that the need for this. But obviously if there’s a need for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. A lot of publications have that as standard, especially those that are in the news and long-form content publications like essays and that kind of thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Apparently I do not read those, so I do not have any experience with that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Or you just haven’t noticed it because it feels natural.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: But probably, yeah, yeah, I maybe, maybe that’s also the case. I don’t know. Yeah, but it’s interesting to see that. I was wondering, didn’t we have something like this before, or was it something else, or I’m mixing this up with something? I don’t know.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. And the second formatting part for paragraph block is that automatic text columns. So you can have a larger paragraph and say, okay, but I need this into a smaller space, but I have multiple columns. And that also works very well. That was actually a plugin from the Block Editor Learn program. There was one course that actually created that kind of columns. So I’m glad that it made it to core because I really found it nice to have that possible. It automatically creates those columns. You can say 2 columns or 3 columns, and it’s really nice. You need to enable it through the typography, the 3-dot menu. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I was just about to say, I’m not seeing the setting. Where is it? Ah, here it is. Columns.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, yeah, columns. And also the indentation. And that’s also where you’ll find the fit the text into that. So there are typography changes, but right now only, I think, available for the paragraph block.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, it made sense to have moved to the tools panel to get a bit more in the technical side, because if I’m looking now at the typography settings that are available, but this list is like endless. Yeah, it’s getting endless. So having this to be hidden by default and you can, if you need the to change something, you edit. That’s something, yeah, definitely to not clutter the sidebar too much.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah. Yeah. It’s a good call to always look at the three dots in the menu to see, okay, what other options do I have available there? Because they may not be visible just, and you look stupid like I did to find the columns.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: You look not that stupid.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, it’s just like, well, why, why I’m not seeing this? Where is this? Is this a setting somewhere? It’s like panicking on the inside on the podcast. I know it’s, it’s like day-to-day business.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So yeah, I’m all good. So what else is in the current block? There are so many things in there. So the font library has now its own menu item in the appearance menu. Yeah. Nothing else.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: So it’s available for any themes if I recall correctly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So it’s not—</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: you can now do all the stuff. Yeah, it’s exactly the same like the modal. You just have it like as in the regular backend, basically. It’s been like extracted from the editor to be its own backend page.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: But it’s in the new style. I just realized that when switching between the default themes, we have the overview to switch the themes. It’s like still the we did get a little change in the backend. Maybe we can talk about that later. But when you are on themes, you have still this dark, not dark, but lighter gray, very light gray background. And it’s no rounded corners. And when you go into fonts, you have this more site editor-like white background and rounded corners around. I just realized that there’s this kind of difference.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, I think that the team really wanted to do the data views. Use components from the data views for these new pages. And it will also be, and I just saw that for the Beta 2, that the connector for the AI client, that the connector page is under Settings. Yep. And the page also follows that data view.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Correct.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Design from what’s actually going to be the new admin design that’s not coming to 7.0, but some of the pages are, look a little bit different yet. Now.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I just see, I just see these small details like instantly. So I was like, oh, this looks different.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. Yeah. It looks a little bit fresher. It’s my personal view on that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: And I, I think the most visual change everyone will have is when they log in. So, or when they upgrade to 7.0 and they have not seen the Beta or release candidate that suddenly the default color scheme changes. In the backend. So I think this will be a bit of a woo moment for everyone who is not like looking into this before. So if I guess it’s a shout out to everyone who’s working with clients who do not see a Beta version before, be prepared because I’m sure there will be questions coming in from everyone like, my admin looks different. What happened?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, the buttons all have a different color. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, the, the, I think the black is a bit darker if I remember correctly. And of course the blue shines very differently. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So, but the color scheme was available before. It’s called the modern.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yes, correctly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. So it’s now just the default. I don’t think we have materialized any writing about that. So I kind of need to look at the core changes. Right now I’m just looking at the block changes, but yeah. Oh, and one thing that we should mention is the content-only pattern editing that’s now coming with 7.0. And that is a way, if you have a pattern that you put into a post or a page, that the edit the pattern is kind of reduced to edit the content of it. So you don’t have to change the pattern. Yeah. And I think that’s reducing a little bit the overwhelm. And the danger that people get into when they just use pattern, that they are kind of, you still can edit them, throw out the image and put a different block in there. You always can, you can change the headline, paragraph, whatever the pattern is designating as content only. Blocks, patterns, headlines, paragraphs, lists, buttons, those can all be just added, just change the content of it. But there is an edit button on the right edit pattern, and it’s for unsynced patterns as well as for sync patterns. The sync patterns has a different workflow when you change the original. That was always in there, but now this is coming to the unsynced patterns as well. When there are multiple patterns in multiple blocks in a pattern. So they’re kind of designated a section and then you can reduce the trouble a content editor can get themselves into.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I see. I see. Yeah, it certainly looks different. Yeah, you have different buttons. But yeah, you cannot go into like— yeah, you can like make it bold or italic or any of the work with the text. But yeah, you cannot say I want the button color to change. Is this the default for all patterns? As you said, it’s like I’ve now just added a regular pattern. And it’s not synced. So I assume it’s not synced.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Let me check.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I think so. Interesting. So when I go to edit pattern, oh, I now have to go to edit pattern in the toolbar. In the sidebar. I have now edit pattern.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: No, no, in the block toolbar.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: That’s the block toolbar. You can say edit pattern and then you get all the controls for each block to move them, delete them, whatever. And then you can go back and then you have, when you are in the pattern, you have only the editing ability as you described. So you can, cannot change the blocks itself, but you can like change the contents. I can change the image and set an alternative text, but I cannot say, give it a different aspect ratio or use a different image size or whatever.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Or make the paragraph a list or something like that. There, those decisions.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: So this is actually very good to know because I just stumbled upon that and, ooh, this will be why I wanted to do this. This will be interesting because that’s like, that’s a huge change. I can see the struggle people will have who are not aware of this to get into the editor. They have added a pattern, simply a pattern, and now they want to change the heading. For example, and now on 7.0, they’re like, the possibility to change the heading is gone. And they do not realize that they have to click on the edit pattern block first in order to change the heading level, for example. So I think this could be from the user experience part.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, a little bit of a stumble block. Yeah, absolutely. The dev note, and I see, I saw the draft of this dev note for that. There’s also a way for site admins to opt out of content-only. That especially if you are working with clients or you’re creating themes, you probably want to, because you want to edit the pattern all the time. You can opt out of it with a filter. And both are available for PHP as well as for JavaScript. And as a plugin developer or theme developer, you can designate patterns as content-only. And with an attribute in the pattern. Block thing. Those who create custom blocks, they can also designate in the block JSON which attributes are content only. You give it a role equals content in the block JSON. So there are multiple ways to kind of skin that cat, as they say in America. So for the end user, I think the advantage is that there is no ambiguity if I change that. Is that getting me into trouble or something like that? Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah. Yeah. From that point of view, I’m coming from a different point of view where the user is used to working with that and suddenly they cannot on the first glance, they cannot edit stuff anymore. Like they cannot change the heading level or font, font size, font, font family, whatever. So I think from that perspective, this will be a bit of a struggle.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So yeah. But I think the edit pattern button is prominent enough in the sidebar. But yeah, we’ll kind of need to see what the verdict is about that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, yeah, true, true. So this will be an interesting thing to catch on, especially if you’re a heavy pattern user. This will be very interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, I think the—</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik: </em>I mean, I do see, I do see, don’t get me wrong, I do see the point in like having this content only. I mean, we have something very similar in our Grid plugin. Where you can lock down, like you have the structure, but you can only edit the content. It’s very, very similar. So there is the need for this. It’s just like coming when you are already working with WordPress and then you’re coming to this. That is the issue that I’m seeing. So, but for real, for real, the, yeah, for real, the, this reduction of overwhelm to, oh my God, I have so many options, but the pattern is there, but you cannot break it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Mm-hmm.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Uh, totally. That’s totally a cool thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. And I get your point, but what is it? It’s a 30-second, oh, I need to click on edit pattern. Uh, kind of reveal of that. Yeah. It’s not a kind of totally, oh, I, I get your point.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Well, if, if you are lucky, if you are lucky and the people see it and have the, I do not want to sound, uh, too, too negative about it, but if they have the curiosity to like explore. To do like, okay, what happens if I click on edit pattern? But you also have those people like who are like literally overwhelmed already by this and then go to whatever support people you have, whether it’s a plugin, a specific plugin is, I do see an increase of people coming into our support, for example, and saying, hey, things are not working anymore because of, I don’t know what’s happening here.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. So I get that, especially because people just go into the website to get something done. And if they are overwhelmed with all the changes, it’s kind of a certain whoops.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: I didn’t expect that to change on me forever. Yeah. I totally get it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: If they just want to add a text, they will probably not notice or maybe realize, okay, something is different. But as soon as they want to change anything that is related to the blog, I think then it’s when it’s going to be—</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: just to the design. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Absolutely. Yeah. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, exactly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So I think the last thing that we talk about a little bit here is what did not make it into the 7.0. That was on the roadmap. And that was the playlist block didn’t finish in time. The dialog block, which I really like. The dialog block is something that you get a button or a link and then you can control what dialog comes up for that. And the tabs block that I’m really sad about that it did not make it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Do you know what happened to like why the decision was made to not bring it in?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: They have some, there was an aspect of the active tab state in a non-standard way. There were some accessibility issues that they kind of wanted to revisit.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Oh yeah. Tell me about it. Tell me about it. I made the Tabs plugin, the great plugin accessible. So it’s possible. So, but yeah, I get that this may be the reason why it has been cut out.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: I think there were too many people, too many cooks in the kitchen for that with different changes. So I think they need to be finalized as well. And then the playlist block. I’m really sad about that, but we will see. And then some of the notes features that were thought about didn’t make it either. There were a few things that haven’t been worked on that were in the roadmap, were kind of, kind of was aspirational, but it wasn’t really prioritized. So like there were short blocks. A lot of people would like to see that. That’s like block binding, but inside the paragraph. So you can change dynamic data in a paragraph and just in, in a certain way. It could be a date or could be a change like the time zone change, yeah, depending on something. Or data from the meta fields, custom fields that are just in the flow text kind of, you want to put them in. I know that people work on that. Slider block was not worked on and some of the media things. Didn’t make it either. So are you excited about WordPress 7.0? </p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: I mean, there’s a lot of very interesting changes and I mean, just because something didn’t make it, I think there’s a lot that made it that is already giving an impact. We haven’t even touched the AI part. So I think this is also something that is really coming. And even that in itself is probably enough to make another episode about if you want to. Yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But overall, I think there’s some good quality of life improvements. I mean, real-time collaboration is something that everyone has to look for themselves if it’s useful. I can see it useful, of course, in like Google Docs style if you need to collaborate really on something, but also in support essentially to like, okay, let me get into the same page and show me on a video call what are you doing, or without even being on a video call, without screen sharing, to see what the other person is doing essentially. I’m not sure if I think you can only see the editing sort of things, but overall to see, okay, I do this, I do that, and then this happens. I don’t know. This could maybe be a thing. Maybe we get the icon block, long, long awaited. We do have some more responsive hiding features, if you will. It’s, how to say, rudimentary, but it’s like, it works. So if you’re fine with that, then you’re good. Font library available to everyone. I think that’s not bad either. So yeah, I think overall this will be an interesting, an interesting release to have available.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: And I mean, there’s always work to do, so we’re not running out of work. You know, no, even if, uh, with the help of AI, I think the work is always going to be there. So for the developers amongst us, I think you want to look at the PHP-only registration for blocks. Also, some of the data view package changes for your own plugin might be very interesting for you. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 22.5 RC</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Also, the client-side media improvements, they are there, but it’s not visible to anybody. It’s just kind of that the browser is now doing all the changes to the image, the downsizing for smaller aspect ratios or sizes. Yeah, it is done in the browser and doesn’t have to go to server and back. But that’s all relatively invisible to a normal user. True. I would come to an end here. We are almost at the hour and it was so much stuff to talk about. So is there anything, Jessica, that you want our listeners to know and you didn’t get a chance to talk about?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Not really. Go testing, I would say. Make sure if you have a product like us, make sure things work so you do not get in too much trouble. There will always be people coming to you saying, hey, something does not work. I mean, we do have that too. It’s like, then it’s just simply helping people with WordPress that is not related to the product itself. But yeah, overall, just make sure things work because like there are some changes happening. We also didn’t touch too much on the iframe editor situation in our chat. So I think this is something you should look into. I think there has been a new post by Ella this week with some more information. So yeah, for the developers of us, take a look at that because I think that maybe can potentially cause issues.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: It shouldn’t, but yeah. And I’m kind of hard to think about a scenario how we could test this with older plugins because I don’t see sites that are in with maintenance with a developer, so they probably won’t have a problem. They’re already kind of up there because the Gutenberg plugin has always already been updated with the iframe. So, I’m looking at people who haven’t updated their site for 5 years or something like that with the old blocks version in there. And all of a sudden they come back, but they, the front end won’t change. So they wouldn’t see it unless they go in, in the editor. And I have not seen yet something that fails. So that’s why it’s now in the Gutenberg plugin. That the post editor is loaded in the iframe.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Yeah, it will not be enforced in 7.0, but on the horizon we already see, okay, if it’s now in Gutenberg 22.6, potentially we will have to deal with it in 7.1. So this summer around that time. Yeah, I think that’s, that’s something important to, to just have in the back of your mind that if you have a product or if you have not just a product, but also like, like you said, created custom blocks for a client for specific websites. And there is like either no maintenance or very low maintenance contract, then you need to be aware that things can change, will change. And we had these discussions in the past. I have to say that there are people who were very frustrated that things have changed in the editor and made actually their frontend go sideways and not too bad, but like, okay, wasn’t looking as it was before. So I can totally understand that frustration, but, I mean, it’s software. It’s a moving project. It’s never going to be this forever unless you lock in the default WordPress version and only receive security updates, then well, okay, you can deal with that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: But yeah. Yeah. But I don’t think that this block iframe or block editor iframe thing for post edits, this is really a major change or breaking change. That, yeah, it, I don’t think that most WordPress users would even know that that happened or haven’t even noticed that it’s already happening. So for those who do client-side that are a little older, yeah, keep an eye out and let us know or let the contributors know if it’s breaking, what is breaking, so it can be dealt with for the next iteration on it. All right. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And I also share in the show notes, the latest conversations that Grade and Jessica had with two agency owners about the block editor and FSE. I think that’s pretty insightful.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Oh, that was with the Codable Experts. Yeah, it was not the agency owners, but the Codable Experts.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. Yeah. Codable is an agency that matches up projects with freelancers and they have a very strict screening method for the freelancers. So they are real experts and they know what they’re doing and so, thank you for telling me that. Anyway, so I will share that. So if anybody who wants to listen some more, it’s on YouTube and it was Jessica. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So, and as always, the show notes will be published on <a href=\"http://gutenbergtimes.com/podcast\">gutenbergtimes.com/podcast</a>. This is episode 127. And if you have questions and suggestions or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That’s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. And thank you so much for spending this time with me and Jessica and going over the WordPress 7.0 features with me. And it was good to see you and talk to you. Thanks for listening and goodbye.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Jessica Lyschik</em>: Thanks for having me. Bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 01 Mar 2026 17:15:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Gutenberg Times: Help test WordPress 7.0 beta2, CSS in Block themes, AI experiements – Weekend Edition 359\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=44470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://gutenbergtimes.com/help-test-wordpress-7-0-beta2-css-in-block-themes-ai-experiements-weekend-edition-359/\";s: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:24645:\"<p class=\"wp-block-paragraph\">Happy Saturday! </p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s been another interesting week in WordPress, Gutenberg and AI. </p>\n\n\n\n<p class=\"wp-block-paragraph\">If you would like to know more about my two weeks in New York and the immersive AI training there, here is a post for you. <a href=\"https://automattic.com/2026/02/25/ai-enablement-wordpress/\">What Automattic’s AI Enablement Training Means for WordPress</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And now, enjoy all the videos, blog posts and podcasts below.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress <strong><a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-2/\">7.0 Beta2</a> </strong>is now available for testing. How? Glad you asked. The Test team has compiled a great list in their post <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\"><strong>Help Test WordPress 7.0</strong></a>. It’s the perfect way to learn what’s in the new release and you can help find bugs, that could be squashed before the final release.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ray Morey</strong>, editor of The Repository, has some details in <a href=\"https://www.therepository.email/wordpress-7-0-beta-2-ships-with-connectors-ui-delivering-on-mullenwegs-ai-vision\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>WordPress 7.0 Beta 2 Ships With Connectors UI, Delivering on Mullenweg’s AI Vision</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ella Van Durpe</strong> shares <a href=\"https://make.wordpress.org/core/2026/02/24/iframed-editor-changes-in-wordpress-7-0/\"><strong>what’s shifting with the iframed post editor in WordPress 7.0</strong></a>: instead of checking all registered blocks across your plugins, WordPress will now only look at blocks actually inserted in the post. If they’re all Block API version 3 or higher, you get the iframe — if not, it steps back gracefully. Full enforcement isn’t happening in 7.0, but <em>Gutenberg plugin 22.6</em> enforces it for classic themes to gather real-world feedback first.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">Release lead <strong>Bernie Reiter,</strong> published a new version, Gutenberg 22.6 and in his release post <a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/\"><strong>What’s new in Gutenberg 22.6? (25 February)</strong></a> he highlighted:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/#in-editor-revisions-visual-change-tracking\">In-Editor Revisions: Visual Change Tracking</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/#icon-block\">Icon Block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/#navigation-overlay\">Navigation Overlay</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/#client-side-media-processing\">Client-Side Media Processing</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/#real-time-collaboration\">Real-Time Collaboration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/#gallery-lightbox-navigation\">Gallery Lightbox Navigation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/25/whats-new-in-gutenberg-22-6-25-february/#other-notable-highlights\">Other Notable Highlights</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Anne McCarthy</strong> shares a candid look at <a href=\"https://nomad.blog/2026/02/28/iterating-on-notes-in-wordpress/\"><strong>iterating on Notes features in WordPress</strong></a> that didn’t quite make the 7.0 cut. Built with Claude Code as part of her “Learn AI deeply” efforts, the three PRs in progress cover show/hide notes on the canvas, filter options (she leans toward “Open” over “Unresolved”), and compact note display. Questions around a resizable sidebar and UX friction remain open — your feedback on the PRs is warmly welcomed.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jessica Lyschik,</strong> senior developer at Greyd, and I had fun recording another Gutenberg Changelog episode. We discussed the main user-facing features coming to WordPress 7.0. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-127-wordpress-7-0-beta/\">Gutenberg Changelog #127 – WordPress 7.0 Beta and Gutenberg 22.6</a> with special guest <strong>Jessica Lyschik</strong>, senior developer at Greyd</p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Jessica Lyschik and Birgit Pauli-Haack recording Gutenberg changelog episode number 127\" class=\"wp-image-44548\" height=\"184\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/02/Screenshot-2026-02-27-at-12.47.56.png?resize=652%2C184&ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Tom Finley</strong> introduces <a href=\"https://tomfinley.com/stop-rebuilding-wordpress-block-patterns-from-scratch-use-block-zapper/\"><strong>Block Zapper</strong></a>, a utility block that strips custom colors, spacing, typography, and backgrounds from WordPress block patterns in one click — so you can actually use them as clean starting points. You get granular control: preserve images and cover backgrounds while clearing everything else. Finley’s one important warning: it’s largely vibe-coded with AI assistance, so sandbox it thoroughly before touching any real project, and move your zapped blocks out before leaving the editor.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This seems to be inline with the <strong>Content Only Pattern editing experience</strong>, core contributors also try to achieve abstracting away the design aspects of working with patterns for content creators. It’s about to come to WordPress in 7.0 (or 7.1, the jury is still out) It is already available in the Gutenberg plugin 22.6 and this <a href=\"https://github.com/WordPress/gutenberg/issues/73775#issuecomment-3930751877\">GitHub comment by Ramon Dodd.</a> </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">Carleton University’s <strong>Troy Chaplin</strong> built the <a href=\"https://wordpress.org/plugins/block-accessibility-checks/\"><strong>Block Accessibility Checks plugin</strong></a> to catch what the WordPress block editor won’t — out-of-order headings, missing image alt text, and other gaps that slip through unexpectedly. Chaplin joined Chris Reynolds, Pantheon, on this week’s <a href=\"https://www.youtube.com/live/mLsC2tDcdL8\">YouTube Livestream</a> for a walk-through of how the plugin validates your content in real time and flags issues before they reach your readers. A practical tool for anyone serious about making their content genuinely accessible to everyone.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">On WP Builds, <strong>Nathan Wrigley</strong> sits down with <strong>Ian Svoboda</strong>, a veteran of 10up, GenerateBlocks, and GeneratePress, to unpack the<a href=\"https://wpbuilds.com/2026/02/26/458-unpacking-the-clever-content-area-block-with-ian-svoboda/\"> <strong>Content Area Block plugin</strong></a>. Born from a news site needing multiple editable regions per template, the plugin solves WordPress’s single-content-area limitation without meta field workarounds. You’ll hear about the technical hurdles — duplicating core hooks, navigating unstable APIs — and why this capability still hasn’t made it into Core.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rodolfo Melogli</strong> is the organizer of the <a href=\"https://checkoutsummit.com/\">Checkout Summit in April</a> and editor of the <a href=\"https://wcwkly.com/\">WooWeekly</a> newsletters. In his recent blog post, he discusses <a href=\"https://www.businessbloomer.com/my-honest-take-on-woocommerce-checkout-block-adoption/\">WooCommerce Checkout Block adoption</a> and explains that most merchants still use the classic Shortcode even after two years of the block being the default option. The main issue is hesitation around plugin compatibility. Although WooCommerce data shows a 27% boost in conversions with the block checkout, the ecosystem has not fully adapted, and merchants are reluctant to risk disrupting their working stores.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you’ve ever wondered where your custom CSS actually lives — or should live — this comprehensive guide on <a href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/\"><strong>14 ways to add custom CSS in the WordPress Block Editor</strong></a> is your new reference. Covering everything from <code>theme.json</code> structured properties and CSS variables to per-block Additional CSS, Block Style Variations, and <code>wp_enqueue_style()</code>, you’ll find a decision guide to match each method to your role, whether you’re a site builder, designer, or theme developer.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jon Ang</strong>, Human Made, made the case that <a href=\"https://humanmade.com/wordpress-for-enterprise/how-wordpress-solves-visual-editing-without-the-complexity-tax/\"><strong>WordPress in 2026 escapes the complexity tax</strong></a> that headless and composable stacks imposed on enterprise teams. The Site Editor, combined with Synced Patterns, Block Bindings, and the Interactivity API, now forms a structured visual system that scales alongside enterprise design systems without forcing teams into heavyweight JavaScript frameworks or fragile third-party glue. As Ang put it, it becomes a system interface “where visual work is grounded in real content models”.</p>\n\n\n<div class=\"ng-block-1dfdcf894ca90e69 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-b867ca7c6a333473 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">“Keeping up with Gutenberg – Index 2026”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-6c53850707213443 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher</strong> released v. 1.0.3 of his VSCode extension <strong><a href=\"https://marketplace.visualstudio.com/items?itemName=ryanwelcher.wordpress-interactivity-api-helper\">WordPress Interactivity API Helper</a></strong> that adds autocomplete for directive and even detects items in your store. After you install it you can invoke it by “Simply start typing <code>data-</code> in any HTML attribute position within PHP or HTML files”. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Ryan Welcher\'s Interactivity API VSCode extension\" class=\"wp-image-44552\" height=\"318\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/02/interactivityAPI-VSCode-extension-1024x500.jpg?resize=652%2C318&ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher </strong>also released a new version of <a href=\"https://github.com/ryanwelcher/advanced-query-loop/releases/tag/4.4.0\"><strong>Advanced Query Loop 4.4.0</strong></a> that enhances query speed and reliability. It includes transient caching for AQL instances and a new management control, along with fixes and improvements to caching. The current post ID and type are now included in the context, and the release features expanded unit tests, E2E tests via Playground, and static linting for both PHP and JavaScript.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>JuanMa Garrido</strong> walks you through <a href=\"https://developer.wordpress.org/news/2026/02/a-better-way-to-test-html-in-wordpress-with-assertequalhtml/\"><strong>the new <code>assertEqualHTML()</code> assertion introduced in WordPress 6.9</strong></a>, available on <code>WP_UnitTestCase</code>. If fragile PHPUnit tests that break over attribute ordering or style whitespace are your nemesis, this is your fix. It compares HTML semantically — not literally — so your tests only fail when markup is genuinely different. Covers block render callbacks, HTML API transformations, Interactivity API directives, and tips for migrating away from <code>assertSame()</code>. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"ai-and-wordpress\">AI and WordPress </h2>\n\n\n\n<p class=\"wp-block-paragraph\">In his post on The Repository, <strong><a href=\"https://www.therepository.email/wordpress-faces-an-event-horizon-not-a-sunset\">WordPress Faces an Event Horizon, Not a Sunset</a></strong>, <strong>Matt Cromwell</strong>, founder of Roots & Fruits, pushes back on the “WordPress is dying” narrative, reframing what looks like decline as an event horizon — a boundary where old rules break and new, denser ones form. AI, he argues, actually favors WordPress’s open, structured architecture. Flat plugin sales signal market maturity, not collapse. Educational pipelines are creating new builders. The real question isn’t whether WordPress survives, but whether its community will design for the physics ahead.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">In this <a href=\"https://www.youtube.com/watch?v=gD-KgrQ_E_w\"><strong>WordPress AI experiments roundup</strong></a>, <strong>Jonathan Bossenger</strong> dives into community-submitted projects, starting with the WP AI Client Mistral provider, where he clones the repo, gets the AI SDK running, and generates a “WordPress haiku” post — though the model returns Markdown rather than block markup. He then tests a Claude-to-WordPress MCP integration plugin, successfully publishing a post directly from Claude, uses MCP Tracker to monitor requests, and briefly explores Ability Scout, which surfaces potential abilities from code.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rich Tabor</strong> walks you through <a href=\"https://richtabor.com/wordpress-ai-client\" id=\"https://richtabor.com/wordpress-ai-client\" type=\"link\"><strong>the new WP AI Client landing in WordPress 7.0</strong></a> — a provider-agnostic layer for calling Anthropic, Google, OpenAI, and other AI models from both PHP and JavaScript, without plugins shipping their own API wrappers or credential pages. Configure once, use everywhere. His companion <a href=\"https://github.com/richtabor/wp-ai-content-kit\"><em>WP AI Content Kit</em></a> demonstrates auto-generating alt text and post excerpts using structured JSON responses. WordPress 7.0 is due April 9, coinciding with WordCamp Asia. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Glen Davies </strong>at Automattic introduces <a href=\"https://wordpress.com/blog/2026/02/13/new-plugin-and-skills-for-claude-cowork/\"><strong>new Skills and a Claude Cowork plugin</strong></a> that turns a conversation with Claude into a fully built block theme, deployed locally via WordPress Studio — no technical skills required. Describe your site, pick from design options, and Claude builds it. Setup takes about ten minutes and currently requires macOS. These tools are early and evolving fast, but the team wanted to ship them now rather than wait.</p>\n\n\n<div class=\"ng-block-745cf619d36fc537 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-5e61095f0ed434b9 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-14198805c0c21115 wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-dac8ef522009c9f4 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-85780320d3e215f4 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Feb 2026 12:53:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Gutenberg Times: 14 ways to add Custom CSS in WordPress Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=44344\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:100197:\"<p class=\"wp-block-paragraph\">With the new Custom CSS on a block and post/page level, I was wondering if I would know where to look if something needs to be changed that was modified by a Custom CSS setting. Turns out there are 14 different ways to skin WordPress. I am a fan of keeping one source of truth, but it might not always be possible to keep it in theme.json. So I also wanted to figure out what decisions making process goes into selecting a method in the first place.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Below is a comprehensive reference for users, site builders, designers and developers covering all methods from no-code to full theme development.</p>\n\n\n\n<p class=\"wp-block-paragraph\">These methods only apply to Block themes, though. Classic theme methods (like the Customizer’s Additional CSS panel etc.) are excluded.</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><strong>Table of contents</strong></p>\n\n\n\n<nav class=\"wp-block-table-of-contents\"><ul><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#the-specificity-cascade\">The specificity cascade</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#1-theme-json-structured-style-properties\">1. theme.json — structured style properties</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#2-theme-json-the-css-property\">2. theme.json — The css Property </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#3-custom-css-properties-variables-via-theme-json-settings\">3. Custom CSS Properties (Variables) via theme.json Settings</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#4-child-theme-s-theme-json\">4. Child Theme’s theme.json</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#5-global-styles-ui\">5. Global Styles UI </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#6-additional-css\">6. Additional CSS </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#7-per-block-additional-css\">7. Per-Block Additional CSS </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#8-additional-css-class-es-on-individual-block-instances\">8. Additional CSS Class(es) on individual block instances</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#9-global-style-variations-theme-level-style-presets\">9. Global Style Variations (Theme-Level Style Presets)</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#10-block-style-variations-json-php-and-javascript\">10. Block Style Variations (JSON, PHP, and JavaScript)</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#11-section-styles\">11. Section Styles </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#12-block-stylesheets-via-wp-enqueue-block-style\">12. Block Stylesheets via wp_enqueue_block_style()</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#13-enqueuing-stylesheets-via-wp-enqueue-style-in-php\">13. Enqueuing Stylesheets via wp_enqueue_style() in PHP</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#14-the-theme-s-style-css\">14. The Theme’s style.css</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#summary-table\">Summary Table</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/14-ways-to-add-custom-css-in-wordpress-block-editor/#decision-guide\">Decision Guide</a></li></ul></nav>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-specificity-cascade\">The specificity cascade</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before diving in, it helps to understand WordPress’s style hierarchy for block themes. Styles resolve in this order, with later layers overriding earlier ones on four levels.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Default </strong>mostly the styling and layouts of WordPress Core.</li>\n\n\n\n<li><strong>Block-level</strong> styling can be altered with plugins and overwrites the Default styling.</li>\n\n\n\n<li><strong>Theme-level </strong>styling is the whole suite of design tools controlled by the active Theme. It overwrites Default and block-level styles and layouts for instance (e.g. template and template parts).</li>\n\n\n\n<li><strong>User-level</strong> styling uses the Design tools within the Site Editor to modify styles and layouts. These changes are stored in the database and overwrite the theme-level styling.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Within each layer, more specific targets (per block, per element) override more general ones. This cascade is central to how all the methods below interact.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-theme-json-structured-style-properties\">1. theme.json — structured style properties</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Theme developers, child theme authors<br /><strong>Where:</strong> <code>theme.json</code> (root of your theme) → <code>styles</code> section</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is the <strong>recommended first choice</strong> for styling in block themes. Rather than writing raw CSS, you define styles as structured JSON properties — colors, typography, spacing, borders, shadows, and more — at the global, element, or per-block level.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can use hardcoded values directly in <code>styles</code>, and they work just fine:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n \"version\": 3,\n \"styles\": {\n \"color\": {\n \"background\": \"#ffffff\",\n \"text\": \"#333333\"\n },\n \"elements\": {\n \"link\": {\n \"color\": { \"text\": \"#0073aa\" }\n }\n },\n \"blocks\": {\n \"core/button\": {\n \"color\": { \"background\": \"#0073aa\" }\n }\n }\n }\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">version</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">3</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">styles</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">background</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#ffffff"</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">text</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#333333"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">elements</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">link</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">text</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#0073aa"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">blocks</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">core/button</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">background</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#0073aa"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">As your theme grows, hardcoded values become harder to manage. If you decide to change your primary color, you’d need to find and update every instance of <code>#0073aa</code> across styles. A more maintainable approach is to define your values as presets in the <code>settings</code> part of theme.json and then reference them in <code>styles</code> using the <code>var:preset||</code> syntax. WordPress converts these presets into CSS custom properties (e.g., <code>--wp--preset--color--primary</code>), keeping everything connected:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n \"version\": 3,\n \"settings\": {\n \"color\": {\n \"palette\": [\n { \"slug\": \"primary\", \"color\": \"#0073aa\", \"name\": \"Primary\" },\n { \"slug\": \"base\", \"color\": \"#ffffff\", \"name\": \"Base\" },\n { \"slug\": \"contrast\", \"color\": \"#333333\", \"name\": \"Contrast\" }\n ]\n },\n \"typography\": {\n \"fontSizes\": [\n { \"slug\": \"medium\", \"size\": \"18px\", \"name\": \"Medium\" }\n ]\n }\n },\n \"styles\": {\n \"color\": {\n \"background\": \"var:preset|color|base\",\n \"text\": \"var:preset|color|contrast\"\n },\n \"typography\": {\n \"fontSize\": \"var:preset|font-size|medium\",\n \"lineHeight\": \"1.6\"\n },\n \"elements\": {\n \"link\": {\n \"color\": { \"text\": \"var:preset|color|primary\" }\n },\n \"heading\": {\n \"typography\": { \"fontWeight\": \"700\" }\n }\n },\n \"blocks\": {\n \"core/button\": {\n \"border\": { \"radius\": \"4px\" },\n \"color\": { \"background\": \"var:preset|color|primary\" }\n },\n \"core/quote\": {\n \"typography\": { \"fontStyle\": \"italic\" }\n }\n }\n }\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">version</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">3</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">settings</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">palette</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">[</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"primary"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#0073aa"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"Primary"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"base"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#ffffff"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"Base"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"contrast"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#333333"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"Contrast"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">]</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">fontSizes</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">[</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"medium"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">size</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"18px"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"Medium"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">]</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">styles</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">background</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"var:preset|color|base"</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">text</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"var:preset|color|contrast"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">fontSize</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"var:preset|font-size|medium"</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">lineHeight</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"1.6"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">elements</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">link</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">text</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"var:preset|color|primary"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">heading</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">fontWeight</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"700"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">blocks</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">core/button</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">border</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">radius</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"4px"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">background</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"var:preset|color|primary"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">core/quote</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">fontStyle</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"italic"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">This token-based approach pays off in a few ways. When a user changes “Primary” in the Global Styles UI, every element referencing that token updates automatically. It keeps your theme internally consistent — no risk of one button being <code>#0073aa</code> while another drifted to <code>#0074ab</code>. And it makes global style variations far simpler to create: a dark mode variation only needs to redefine the palette, not hunt down every color reference in styles. Either approach is valid, but tokens tend to save time as a theme matures.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Automatic integration with the Global Styles UI:</strong> Users can view and override your styles in the Site Editor without writing CSS.</li>\n\n\n\n<li><strong>WordPress manages specificity for you:</strong> the “base → theme → user” cascade works correctly.</li>\n\n\n\n<li><strong>Generates CSS custom properties automatically</strong> (e.g. <code>--wp--preset--color--primary</code>).</li>\n\n\n\n<li><strong>Visual parity</strong> between editor and front end.</li>\n\n\n\n<li><strong>Machine-readable: </strong>other tools and plugins can consume and extend these styles.</li>\n\n\n\n<li><strong>Reduces the amount of CSS</strong> enqueued overall.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Can only express what <a href=\"https://schemas.wp.org/trunk/theme.json.\">theme.json’s schema</a> supports (growing with each release, but not yet comprehensive).</li>\n\n\n\n<li>Pseudo-classes like <code>:hover</code>, <code>:focus</code>, <code>:active</code>, and <code>:visited</code> are supported for elements such as links and buttons (e.g., <code>\"elements\": { \"link\": { \":hover\": { \"color\": { \"text\": \"var:preset|color|contrast\" } } } }</code>), but pseudo-elements like <code>::before</code> and <code>::after</code>, media queries, and more complex selectors are not available in the structured properties — use the <code>css</code> property (#2) or block stylesheets (#3) for those.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Documentation</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/themes/global-settings-and-styles/\">Global Settings and Styles (theme.json)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2024/10/mastering-theme-json-you-might-not-need-css/\">Mastering theme.json: You might not need CSS</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/global-settings-and-styles/styles/using-presets/\">Using Presets</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/global-settings-and-styles/styles/styles-reference/\">Styles Reference</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-theme-json-the-css-property\">2. theme.json — The <code>css</code> Property </h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Theme developers<br /><strong>Where:</strong> <code>theme.json</code> → <code>styles.css</code> (global) or <code>styles.blocks.[blockname].css</code> (per-block)</p>\n\n\n\n<p class=\"wp-block-paragraph\">When theme.json’s structured properties aren’t enough, you can drop to raw CSS strings within theme.json itself. Available since WordPress 6.2.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"global-custom-css\">Global custom CSS</h3>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n \"version\": 3,\n \"styles\": {\n \"css\": \".my-custom-class { opacity: 0.8; } body { scroll-behavior: smooth; }\"\n }\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">version</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">3</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">styles</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">css</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">".my-custom-class { opacity: 0.8; } body { scroll-behavior: smooth; }"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"per-block-custom-css\">Per-block custom CSS</h3>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n \"version\": 3,\n \"styles\": { \n \"blocks\": {\n \"core/image\": {\n \"css\": \"& img { border-radius: 8px; transition: transform 0.3s; } &:hover img { transform: scale(1.02); }\"\n }, \n \"core/post-title\": {\n \"css\": \"letter-spacing: 1px;\"\n },\n \"core/paragraph\": { \n \"css\": \"&.has-background { padding: .5rem .8rem; }\"\n }\n }\n }\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">version</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">3</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">styles</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">blocks</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">core/image</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">css</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"& img { border-radius: 8px; transition: transform 0.3s; } &:hover img { transform: scale(1.02); }"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span><span style=\"color: #575279;\"> </span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">core/post-title</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">css</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"letter-spacing: 1px;"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">core/paragraph</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">css</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"&.has-background { padding: .5rem .8rem; }"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress auto-generates the selector for per-block CSS—you don’t need to know the block’s class name. The <code>&</code> selector is supported for targeting nested elements and pseudo-selectors (<code>:before</code>, <code>:after</code>, <code>:hover</code>, <code>:not()</code>, etc.).</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Integrates with the Styles interface in the Site Editor — users can see and modify your per-block CSS under Styles → Blocks → [Block] → Advanced → Additional CSS.</li>\n\n\n\n<li>WordPress handles the selector, so you avoid specificity conflicts.</li>\n\n\n\n<li>CSS from elements and variations is also supported (from WordPress 6.6).</li>\n\n\n\n<li>Provides a bridge between structured theme.json properties and full CSS freedom.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>JSON doesn’t support line breaks, so everything must be on one line — cumbersome for large blocks of CSS.</li>\n\n\n\n<li>No syntax highlighting in JSON files.</li>\n\n\n\n<li>Best for small, targeted additions — for anything extensive, use block stylesheets instead.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Documentation</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2023/03/06/custom-css-for-global-styles-and-per-block/\">Custom CSS for global styles and per block</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-custom-css-properties-variables-via-theme-json-settings\">3. Custom CSS Properties (Variables) via theme.json Settings</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Theme developers<br /><strong>Where:</strong> <code>theme.json</code> → <code>settings.custom</code></p>\n\n\n\n<p class=\"wp-block-paragraph\">Create your own CSS custom properties that can be used anywhere in your CSS—in stylesheets, block stylesheets, or even within the <code>css</code> property.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n \"version\": 3,\n \"settings\": {\n \"custom\": {\n \"contentMaxWidth\": \"800px\",\n \"spacing\": {\n \"gutter\": \"2rem\"\n },\n \"transition\": \"all 0.3s ease\"\n }\n }\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">version</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">3</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">settings</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">custom</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">contentMaxWidth</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"800px"</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">spacing</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">gutter</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"2rem"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">transition</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"all 0.3s ease"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">This generates:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">body {\n --wp--custom--content-max-width: 800px;\n --wp--custom--spacing--gutter: 2rem;\n --wp--custom--transition: all 0.3s ease;\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #575279;\">body </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">--wp--custom--content-max-width</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">800</span><span style=\"color: #B4637A;\">px;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">--wp--custom--spacing--gutter:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">2</span><span style=\"color: #B4637A;\">rem;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">--wp--custom--transition:</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">all</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">0.3</span><span style=\"color: #B4637A;\">s</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">ease;</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Centralized design tokens accessible from any CSS source.</li>\n\n\n\n<li>Automatic generation of CSS custom properties following WordPress naming conventions.</li>\n\n\n\n<li>Changes propagate everywhere the variable is used.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Only generates the variables — you still need to reference them in your CSS.</li>\n\n\n\n<li>Not directly editable by users in the Site Editor UI (unlike presets for colors or font sizes).</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Documentation</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\">Adding and using custom settings in theme.json</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-child-theme-s-theme-json\">4. Child Theme’s <code>theme.json</code></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Developers customizing a parent theme<br /><strong>Where:</strong> <code>theme.json</code> in the child theme root</p>\n\n\n\n<p class=\"wp-block-paragraph\">Override or extend the parent theme’s <code>theme.json</code> with a child theme. WordPress merges both files automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>All changes survive parent theme updates.</li>\n\n\n\n<li>Full access to every theme.json capability — structured properties, css property, presets, and settings.</li>\n\n\n\n<li>Combined with block stylesheets and style.css, it provides a complete override system.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Requires maintaining a child theme.</li>\n\n\n\n<li>Merging behavior can be tricky: child values override parent values at the same path but won’t remove parent values at other paths.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Documentation</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Theme Handbook: <a href=\"https://developer.wordpress.org/themes/advanced-topics/child-themes/\">Child Themes</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"5-global-styles-ui\">5. Global Styles UI </h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Site owners, content editors (no code required)<br /><strong>Where:</strong> <strong>Appearance → Editor → Styles</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">The visual interface for customizing your site’s appearance. Users can adjust typography, colors, spacing, and layout for the entire site, individual elements, or specific block types — all without writing any code.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-44500\" height=\"569\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/02/Screenshot-2026-02-24-at-18.40.45.png?resize=652%2C569&ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong>Style Book</strong> helps you keep the overall context for your styles and you and double-check on how blocks behave when Styles change. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-44499\" height=\"334\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/02/Screenshot-2026-02-24-at-18.38.39.png?resize=652%2C334&ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>No code required — fully visual.</li>\n\n\n\n<li>Highest specificity: user styles override theme defaults.</li>\n\n\n\n<li>Changes are stored in the database (<code>wp_global_styles</code> post type), separate from theme files, so they survive theme updates.</li>\n\n\n\n<li>Supports global style variations — users can switch between whole-site style presets.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Limited to what the UI controls expose (which grows with each WordPress release).</li>\n\n\n\n<li>For anything the UI can’t handle, users fall back to the Additional CSS options below.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"6-additional-css\">6. Additional CSS </h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Site owners with CSS knowledge<br /><strong>Where:</strong> Appearance → Editor → Styles → three-dot menu (⋮) → Additional CSS</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is the block theme replacement for the classic Customizer’s Additional CSS panel. A free-form CSS editor for site-wide custom styles.</p>\n\n\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Free-form CSS handles any valid CSS.</li>\n\n\n\n<li>Stored in the database as part of Global Styles (not in theme files), so it’s theme-specific but survives code deployments.</li>\n\n\n\n<li>Preview changes before saving.</li>\n\n\n\n<li>Revision history (last 25 versions).</li>\n\n\n\n<li>Higher specificity than theme styles.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Not scoped to blocks — loads globally.</li>\n\n\n\n<li>No syntax highlighting or code formatting.</li>\n\n\n\n<li>Intended as a last resort for styles that can’t be achieved through theme.json or the visual Styles interface.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"7-per-block-additional-css\">7. Per-Block Additional CSS </h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Site owners with CSS knowledge<br /><strong>Where:</strong> Appearance → Editor → Styles → Blocks → select a block → scroll to Advanced → Additional CSS</p>\n\n\n\n<p class=\"wp-block-paragraph\">Target CSS to a specific block type site-wide. WordPress auto-generates the selector — you just write the CSS properties.</p>\n\n\n\n<figure class=\"wp-block-video wp-block-embed is-type-video is-provider-videopress\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>CSS</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* Example: added to Styles → Blocks → Quote → Additional CSS */\nfont-style: italic;\nborder-left: 4px solid currentColor;\npadding-left: 1.5em;</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593; font-style: italic;\">/*</span><span style=\"color: #9893A5; font-style: italic;\"> Example: added to Styles → Blocks → Quote → Additional CSS </span><span style=\"color: #797593; font-style: italic;\">*/</span></span>\n<span class=\"line\"><span style=\"color: #56949F;\">font-style</span><span style=\"color: #575279;\">: italic;</span></span>\n<span class=\"line\"><span style=\"color: #56949F;\">border-left</span><span style=\"color: #575279;\">: 4px solid currentColor;</span></span>\n<span class=\"line\"><span style=\"color: #56949F;\">padding-left</span><span style=\"color: #575279;\">: 1.5em;</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>&</code> selector works here for nested elements and pseudo-selectors.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Scoped to a specific block type — only loads when that block is present on a page.</li>\n\n\n\n<li>No need to know CSS selectors — WordPress handles them.</li>\n\n\n\n<li>User-level styles (highest priority in the cascade).</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Media queries may not work reliably (as of 2025). Use CSS functions like <code>clamp()</code>, <code>min()</code>, and <code>max()</code> for responsive behavior, or put responsive styles in theme-level CSS.</li>\n\n\n\n<li>Small text area with no code formatting.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"8-additional-css-class-es-on-individual-block-instances\">8. Additional CSS Class(es) on individual block instances</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Content editors with CSS knowledge<br /><strong>Where:</strong> Select any block in the editor → Settings sidebar → Advanced → Additional CSS Class(es)</p>\n\n\n\n<p class=\"wp-block-paragraph\">Add custom class names to a specific block instance. The CSS itself must be defined elsewhere (style.css, block stylesheets, Additional CSS, etc.). As a user the global Additional CSS is probably the most practical place. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Precision targeting of individual block instances rather than all blocks of a type.</li>\n\n\n\n<li>Perfect for one-off styling: a highlighted paragraph, a special call to action, etc.</li>\n\n\n\n<li>Multiple classes can be added, separated by spaces.</li>\n\n\n\n<li>Works with any CSS source — just define the class styles somewhere.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Only adds class names — you still need to write the CSS elsewhere.</li>\n\n\n\n<li>Per-instance, which means it doesn’t scale well for repeated patterns (use block style variations for those).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"9-global-style-variations-theme-level-style-presets\">9. Global Style Variations (Theme-Level Style Presets)</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Theme developers<br /><strong>Where:</strong> JSON files in the theme’s <code>/styles</code> directory (at the top level, not in a <code>/blocks</code> subfolder)</p>\n\n\n\n<p class=\"wp-block-paragraph\">Provide entire alternative site-wide style schemes. Each variation is a JSON partial that can override settings and styles from the main theme.json. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Since WordPress 6.6, style variations are further classified into three subtypes based on their content. </p>\n\n\n\n<p class=\"wp-block-paragraph\">A variation file that defines only <code>settings.color</code> or <code>styles.color</code> is automatically recognized as a <strong>color variation</strong>, appearing under <strong>Styles → Colors → Palette. </strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">One that defines only <code>settings.typography</code> or <code>styles.typography</code> becomes a <strong>typography variation</strong>, appearing under <strong>Styles → Typography → Presets. </strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Files that touch other properties remain full <strong>theme style variations</strong>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Color and typography variations can be mixed and matched with each other and with theme variations. </p>\n\n\n\n<p class=\"wp-block-paragraph\">To keep the <code>/styles</code> folder organized, it’s recommended to use subfolders (e.g., <code>/styles/color</code>, <code>/styles/typography</code>, <code>/styles/global</code>). </p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// /styles/dark-mode.json\n{\n \"$schema\": \"https://schemas.wp.org/trunk/theme.json\",\n \"version\": 3,\n \"title\": \"Dark Mode\",\n \"settings\": {\n \"color\": {\n \"palette\": [\n { \"slug\": \"base\", \"color\": \"#1a1a2e\", \"name\": \"Base\" },\n { \"slug\": \"contrast\", \"color\": \"#e0e0e0\", \"name\": \"Contrast\" }\n ]\n }\n },\n \"styles\": {\n \"color\": {\n \"background\": \"#1a1a2e\",\n \"text\": \"#e0e0e0\"\n }\n }\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593; font-style: italic;\">//</span><span style=\"color: #9893A5; font-style: italic;\"> /styles/dark-mode.json</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">$schema</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"https://schemas.wp.org/trunk/theme.json"</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">version</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">3</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">title</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"Dark Mode"</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">settings</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">palette</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">[</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"base"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#1a1a2e"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"Base"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"contrast"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#e0e0e0"</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"Contrast"</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">]</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">styles</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">background</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#1a1a2e"</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">"</span><span style=\"color: #56949F;\">text</span><span style=\"color: #797593;\">"</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">"#e0e0e0"</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Users can switch between entire style schemes (light/dark, color themes, typographic variations) from the Styles panel.</li>\n\n\n\n<li>Makes one theme feel like many — more versatile without requiring separate themes.</li>\n\n\n\n<li>Fully declarative (no PHP).</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Only affects settings and styles — not templates or patterns.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Documentation</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/themes/global-settings-and-styles/style-variations/\">Style Variations</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2024/07/mixing-and-matching-styles-colors-and-typography-in-wordpress-6-6/\">Mixing and matching styles, colors, and typography in WordPress 6.6</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"10-block-style-variations-json-php-and-javascript\">10. Block Style Variations (JSON, PHP, and JavaScript)</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Theme developers, plugin developers<br /><strong>Where:</strong> JSON files in <code>/styles</code>, PHP via <code>register_block_style()</code>, or JavaScript via <code>wp.blocks.registerBlockStyle()</code></p>\n\n\n\n<p class=\"wp-block-paragraph\">Block style variations give content creators pre-made styling options in the Styles panel — like “Rounded” or “Outline” on core blocks. You can register them via JSON files in <code>/styles</code> (WordPress 6.6+, no PHP needed), PHP with <code>register_block_style()</code>, or JavaScript. The JSON-based methods integrate with Global Styles so users can customize them in the Site Editor; <code>inline_style</code>, <code>style_handle</code>, and JavaScript methods do not.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For a thorough walkthrough of all six registration methods — with code examples, a companion theme and plugin on GitHub, and a comparison table showing which methods support Global Styles — see the comprehensive guide <strong><a href=\"https://wordpress.com/blog/2025/05/07/custom-block-styles/\">Mastering Custom Block Styles in WordPress: 6 Methods for Theme and Plugin Developers</a>.</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"11-section-styles\">11. Section Styles </h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Theme developers<br /><strong>Where:</strong> JSON files in <code>/styles</code> directory, targeting mostly group or column blocks. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Section styles are more of a convention than a separate feature. They are essentially Block Style Variations. The difference is naming the variation slug: <code>style-1</code>, <code>style-2</code>, etc. so that they can be reused across themes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Since WordPress 6.6, block style variations can style nested inner blocks and elements, enabling “section styling” — where a Group block’s style variation changes the appearance of all blocks within it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Twenty Twenty Five theme showcases this convention quite nicely. </p>\n\n\n\n <figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n <div class=\"jetpack-videopress-player__wrapper\"> </div>\n \n \n </figure>\n \n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Apply coordinated styles to entire sections (background, text color, button colors, link colors) with a single click.</li>\n\n\n\n<li>Users select the section style in the block’s Styles panel.</li>\n\n\n\n<li>Powerful for creating consistent design sections (hero areas, dark sections, testimonials).</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Easy to overwhelm users with too many section style options — restraint is needed.</li>\n\n\n\n<li>Requires careful design token architecture (using base/contrast/primary/secondary color naming).</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Documentation</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/06/24/section-styles/\">Section Styles</a> (WordPress 6.6)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"12-block-stylesheets-via-wp-enqueue-block-style\">12. Block Stylesheets via <code>wp_enqueue_block_style()</code></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Theme developers<br /><strong>Where:</strong> Separate <code>.css</code> files in your theme (e.g., <code>/assets/blocks/core-image.css</code>), registered in <code>functions.php</code></p>\n\n\n\n<p class=\"wp-block-paragraph\">This is the recommended approach when you have more CSS than what’s comfortable in theme.json’s <code>css</code> property.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* /assets/blocks/core-image.css */\n.wp-block-image img {\n padding: 1rem;\n background: linear-gradient(-60deg, #ff5858, #f09819);\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593; font-style: italic;\">/*</span><span style=\"color: #9893A5; font-style: italic;\"> /assets/blocks/core-image.css </span><span style=\"color: #797593; font-style: italic;\">*/</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">.wp-block-image img </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">padding</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">1</span><span style=\"color: #B4637A;\">rem;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">background:</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">linear-gradient(</span><span style=\"color: #D7827E;\">-60</span><span style=\"color: #B4637A;\">deg</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">#ff5858,</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">#f09819);</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// functions.php\nadd_action( \'init\', function() {\n wp_enqueue_block_style( \'core/image\', array(\n \'handle\' => \'my-theme-image-styles\',\n \'src\' => get_theme_file_uri( \'assets/blocks/core-image.css\' ),\n \'path\' => get_theme_file_path( \'assets/blocks/core-image.css\' ),\n ) );\n});</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593; font-style: italic;\">//</span><span style=\"color: #9893A5; font-style: italic;\"> functions.php</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">add_action( \'init\', function() </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">wp_enqueue_block_style(</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">\'core/image\',</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">array(</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">\'handle\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">=></span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">\'my-theme-image-styles\',</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">\'src\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">=></span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">get_theme_file_uri(</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">\'assets/blocks/core-image.css\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">),</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">\'path\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">=></span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">get_theme_file_path(</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">\'assets/blocks/core-image.css\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">),</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">)</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">);</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span><span style=\"color: #575279;\">);</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Performance:</strong> CSS only loads when the block is actually present on the page. WordPress inlines it in the <code><head></code> section</li>\n\n\n\n<li>Full CSS syntax with syntax highlighting, multi-line formatting, and preprocessor support (Sass/SCSS).</li>\n\n\n\n<li>Clean code organization — one file per block.</li>\n\n\n\n<li>Works for any CSS, including media queries, animations, complex selectors, and pseudo-elements.</li>\n\n\n\n<li>Applies in both the editor and front end.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Requires PHP registration in functions.php.</li>\n\n\n\n<li>These styles aren’t exposed in the Global Styles UI for user editing.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Documentation</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/themes/features/block-stylesheets/\">Block Stylesheets</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2022/12/leveraging-theme-json-and-per-block-styles-for-more-performant-themes/\">Leveraging theme.json and per-block styles for more performant themes</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"13-enqueuing-stylesheets-via-wp-enqueue-style-in-php\">13. Enqueuing Stylesheets via <code>wp_enqueue_style()</code> in PHP</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Theme and plugin developers<br /><strong>Where:</strong> <code>functions.php</code> using the <code>wp_enqueue_scripts</code> (front end) and <code>enqueue_block_editor_assets</code> (editor) hooks</p>\n\n\n\n<p class=\"wp-block-paragraph\">The traditional WordPress approach still works and is useful for loading third-party CSS libraries, fonts, or complex stylesheets. </p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>PHP</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">add_action( \'wp_enqueue_scripts\', function() {\n wp_enqueue_style(\n \'my-theme-custom\',\n get_theme_file_uri( \'assets/css/custom.css\' ),\n array(),\n \'1.0.0\'\n );\n});\n\n// For editor-only styles:\nadd_action( \'enqueue_block_editor_assets\', function() {\n wp_enqueue_style(\n \'my-theme-editor\',\n get_theme_file_uri( \'assets/css/editor.css\' ),\n array(),\n \'1.0.0\'\n );\n});</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #D7827E;\">add_action</span><span style=\"color: #797593;\">(</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'wp_enqueue_scripts\'</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #286983;\">function</span><span style=\"color: #797593;\">()</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">wp_enqueue_style</span><span style=\"color: #797593;\">(</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'my-theme-custom\'</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">get_theme_file_uri</span><span style=\"color: #797593;\">(</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'assets/css/custom.css\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">),</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A; font-style: italic;\">array</span><span style=\"color: #797593;\">(),</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'1.0.0\'</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">);</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">});</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"color: #797593; font-style: italic;\">//</span><span style=\"color: #9893A5; font-style: italic;\"> For editor-only styles:</span></span>\n<span class=\"line\"><span style=\"color: #D7827E;\">add_action</span><span style=\"color: #797593;\">(</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'enqueue_block_editor_assets\'</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #286983;\">function</span><span style=\"color: #797593;\">()</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">wp_enqueue_style</span><span style=\"color: #797593;\">(</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'my-theme-editor\'</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">get_theme_file_uri</span><span style=\"color: #797593;\">(</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'assets/css/editor.css\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">),</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A; font-style: italic;\">array</span><span style=\"color: #797593;\">(),</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'1.0.0\'</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">);</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">});</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Full control over loading conditions (you can conditionally enqueue based on page, template, user role, etc.).</li>\n\n\n\n<li>Familiar to all WordPress developers.</li>\n\n\n\n<li>Can load external stylesheets, Google Fonts, icon libraries, etc.</li>\n\n\n\n<li>Supports dependencies, versioning, and media attributes.</li>\n\n\n\n<li>Can target editor-only or front-end-only.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Loads on every page (unless you add conditional logic).</li>\n\n\n\n<li>No integration with the Global Styles UI.</li>\n\n\n\n<li>Doesn’t benefit from the block stylesheet system’s per-block inlining.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Documentation</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/block-editor/how-to-guides/enqueueing-assets-in-the-editor/#editor-scripts-and-styles\">Enqueueing assets in the Editor</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/including-assets/#editor-stylesheets\" rel=\"noreferrer noopener\" target=\"_blank\">Editor Stylesheets</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/reference/hooks/wp_enqueue_scripts/\">do_action( ‘wp_enqueue_scripts’ )</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/reference/functions/wp_enqueue_style/\">wp_enqueue_style( string $handle, string $src, string[] $deps = array(), string|bool|null $ver = false, string $media )</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"what-s-the-difference-between-wp-enqueue-style-and-add-editor-style\">What’s the difference between wp_enqueue_style and add_editor_style?</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>wp_enqueue_style()</code> is the general-purpose function for loading stylesheets — you choose where it loads by picking your hook (<code>wp_enqueue_scripts</code> for the frontend, <code>enqueue_block_editor_assets</code> for the editor). When you use it on the editor hook, the stylesheet loads into the entire editor page, including the UI chrome (sidebar, toolbar, etc.).</p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>add_editor_style()</code> is specifically designed for visual parity between the editor and the frontend. WordPress takes the stylesheet you pass it and automatically scopes every selector to <code>.editor-styles-wrapper</code>, so your styles only affect the content canvas and don’t bleed into the editor UI. In block themes it’s typically called from an <code>after_setup_theme</code> hook — this is how themes get their <code>style.css</code> to apply inside the editor.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The practical upshot: if you want your theme’s frontend styles to look the same in the editor, use <code>add_editor_style()</code>. If you need to style the editor UI itself (like a custom sidebar panel) or need fine-grained control over loading conditions, dependencies, and versioning, use <code>wp_enqueue_style()</code> on the appropriate hook.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"14-the-theme-s-style-css\">14. The Theme’s <code>style.css</code></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Who:</strong> Theme developers<br /><strong>Where:</strong> <code>style.css</code> in the theme root</p>\n\n\n\n<p class=\"wp-block-paragraph\">The traditional main stylesheet still works in block themes, but its role has changed significantly. It now primarily holds theme metadata (name, version, description) and is loaded globally. </p>\n\n\n\n<p class=\"wp-block-paragraph\">In block themes it’s typically called from an <code>after_setup_theme</code> hook — this is how themes get their <code>style.css</code> to apply inside the editor.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>PHP</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">add_action( \'after_setup_theme\', \'theme_slug_setup\' );\n\nfunction theme_slug_setup() {\n add_editor_style( get_stylesheet_uri() );\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #D7827E;\">add_action</span><span style=\"color: #797593;\">(</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'after_setup_theme\'</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'theme_slug_setup\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">);</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"color: #286983;\">function</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">theme_slug_setup</span><span style=\"color: #797593;\">()</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">add_editor_style</span><span style=\"color: #797593;\">(</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">get_stylesheet_uri</span><span style=\"color: #797593;\">()</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">);</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advantages:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Familiar workflow for developers with classic theme experience.</li>\n\n\n\n<li>Good for truly global CSS that should always be available (e.g., custom utility classes, print styles, CSS resets beyond what theme.json handles).</li>\n\n\n\n<li>Full CSS syntax, syntax highlighting, and preprocessor support.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Limitations:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Needs to be enqueued like any other stylesheet file (see #13) </li>\n\n\n\n<li>Loads on every page, even if the styles aren’t needed — no per-block performance optimization.</li>\n\n\n\n<li>Not integrated with the Global Styles UI.</li>\n\n\n\n<li>Not the recommended approach for block-specific styling; use block stylesheets instead (#12)</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Documentation</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/main-stylesheet/\">Main Stylesheet (style.css)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"summary-table\">Summary Table</h2>\n\n\n\n<figure class=\"wp-block-table alignwide is-style-stripes\" style=\"font-size: 0px;\"><table><thead><tr><th>#</th><th>Method</th><th>Who</th><th>Scope</th><th>Loads When</th><th>Editable by Users</th></tr></thead><tbody><tr><td>1</td><td>theme.json structured properties</td><td>Developer</td><td>Global / block / element</td><td>Always (inlined)</td><td>Yes, via Global Styles UI</td></tr><tr><td>2</td><td>theme.json <code>css</code> property</td><td>Developer</td><td>Global or per-block</td><td>Always (inlined)</td><td>Yes, per-block CSS is visible in Styles</td></tr><tr><td>3</td><td>Custom CSS properties (<code>settings.custom</code>)</td><td>Developer</td><td>Global (variables)</td><td>Always</td><td>No (indirectly via tokens)</td></tr><tr><td>4</td><td>Child theme.json</td><td>Developer</td><td>Inherits parent</td><td>Same as parent</td><td>Same as parent</td></tr><tr><td>5</td><td>Global Styles UI (visual)</td><td>User</td><td>Global / block / element</td><td>Always (inlined)</td><td>It <em>is</em> the user editing</td></tr><tr><td>6</td><td>Additional CSS (site-wide)</td><td>User</td><td>Global</td><td>Every page</td><td>Yes</td></tr><tr><td>7</td><td>Per-block Additional CSS</td><td>User</td><td>Per-block type</td><td>When block present</td><td>Yes</td></tr><tr><td>8</td><td>Additional CSS Class(es)</td><td>User</td><td>Single block instance</td><td>When that block is present</td><td>N/A (class only)</td></tr><tr><td>9</td><td>Global style variations</td><td>Developer</td><td>Whole site preset</td><td>When active</td><td>Users switch presets</td></tr><tr><td>10</td><td>Block style variations (JSON, PHP, JS)</td><td>Developer</td><td>Per-block variation</td><td>Only when block + variation is used</td><td>JSON/<code>style_data</code> methods: yes; <code>inline_style</code>/JS: no</td></tr><tr><td>11</td><td>Section styles</td><td>Developer</td><td>container blocks </td><td>When block + variation is used</td><td>Yes, via Styles panel</td></tr><tr><td>12<br /> </td><td>Block stylesheets (<code>wp_enqueue_block_style</code>)</td><td>Developer</td><td>Per-block</td><td>Only when block is present</td><td>No</td></tr><tr><td>13</td><td><code>wp_enqueue_style()</code></td><td>Developer</td><td>Configurable</td><td>Configurable</td><td>No</td></tr><tr><td>14</td><td><code>style.css</code></td><td>Developer</td><td>Global</td><td>Every page</td><td>No</td></tr></tbody></table></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"decision-guide\">Decision Guide</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Start here:</strong> Use <strong>theme.json structured properties</strong> (#1) for everything they support. This gives you the best integration with the Global Styles system and lets users customize your styles.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Need CSS that theme.json properties can’t express?</strong> Use the <strong>theme.json <code>css</code> property</strong> (#2) for small additions or <strong>block stylesheets</strong> (#12) for anything substantial.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Want to offer style choices to content editors?</strong> Create <strong>block style variations</strong> (#10) so they appear in the Styles panel.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Site owner making tweaks?</strong> Use the <strong>Global Styles UI</strong> (#5) first, then fall back to <strong>Additional CSS</strong> (#7 or #7) for anything the visual interface can’t handle.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Need to target one specific block instance?</strong> Use <strong>Additional CSS Class(es)</strong> (#8) and define the class in your preferred CSS source.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Building a child theme?</strong> Override the parent via <strong>child theme.json</strong> (#4) and add block stylesheets as needed.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Need to sync user edits with theme files</strong>? Use the <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>How to sync user editor to theme files and maintain version control?</strong> Here is a tutorial: <a href=\"https://developer.wordpress.org/news/2026/01/streamlining-block-theme-development-with-wordpress-playground-and-github/\">Streamlining block theme development with WordPress Playground and GitHub</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>Huge Thank you to Justin Tadlock for reviewing the post to make sure it’s all technically accurate. </em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Feb 2026 18:01:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Open Channels FM: Empathy\";s:7:\"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:34:\"https://openchannels.fm/?p=1497274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://openchannels.fm/empathy/\";s: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:73:\"For some of us it comes naturally. For others, it may need to be learned.\";s: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 Feb 2026 09:55:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Enablement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2026/02/enablement/\";s: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:474:\"<p class=\"wp-block-paragraph\">This year at <a href=\"https://automattic.com/\">Automattic</a> has been intense. We kicked it off with two weeks of in-person AI enablement training, <a href=\"https://automattic.com/2026/02/25/ai-enablement-wordpress/\">and there’s a great post about it now</a>. I’ve been so impressed and inspired by my colleagues leaning in to learn and grow together in the most consequential time in software development in the past 40 years.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Feb 2026 02:00:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 7.0 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6527:\"<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 2 is now ready for testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should evaluate Beta 2 on a test server and site. You can test WordPress 7.0 Beta 2 in any of the following ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.0-beta2.zip\">Beta 2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br /><code>wp core update --version=7.0-beta2</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn\">WordPress Playground instance</a> to test the software directly in your browser. No setup required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.0 is <strong>April 9, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/02/12/wordpress-7-0-release-party-schedule/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Make sure to check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/7-0\">7.0-related posts</a> in the coming weeks for more information. Thank you to everyone who contributes by testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Catch up on what’s new in WordPress 7.0</strong>: Read the <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-1/\">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Your help testing WordPress 7.0 Beta 2 is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">guide on what to test in WordPress 7.0</a> will walk you through testing features in WordPress 7.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>. Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 2 updates and highlights</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Beta 2 contains more than 70 updates and fixes across the Editor and Core since the Beta 1 release. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Each beta cycle focuses on bug fixes; and more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 1 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=2026-02-20&until=2026-02-26\">GitHub commits for 7.0</a> since February 20, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F20%2F2026..02%2F26%2F2026&milestone=7.0&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets for 7.0</a> since February 20, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Beta 2 also contains a new feature</strong>!</p>\n\n\n\n<p class=\"wp-block-paragraph\">AI provider management is more intuitive in 7.0 Beta 2 with a new Connectors UI dashboard page. WordPress users can now manage external AI connections in a central place in wp-admin, under Settings > Connectors. The new UI enables users to add, delete, and update external connections. It is powered by an extensible, route-based architecture that allows plugins and themes to hook into the page and expand its functionality. The new Connectors page builds on PHP-based script and menu infrastructure, and adds route components powered by <code>@wordpress/components</code> and <code>@wordpress/admin-ui</code>. A new <code>connections-wp-admin-init</code> hook and registration APIs allow plugins to integrate cleanly. This makes managing external connections easier while giving developers a clearer path to extend the experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 2 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>New, and fresh as dew</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Crafted and refined for you:</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Beta 2 breaks through.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a class=\"mention\" href=\"https://profiles.wordpress.org/4thhubbard/\"><span class=\"mentions-prefix\">@</span>4thhubbard</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/annezazu/\"><span class=\"mentions-prefix\">@</span>annezazu</a></em>, <em><a class=\"mention\" href=\"https://profiles.wordpress.org/audrasjb/\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/mukesh27/\"><span class=\"mentions-prefix\">@</span>mukesh27</a>, and <a class=\"mention\" href=\"https://profiles.wordpress.org/chaion07/\"><span class=\"mentions-prefix\">@</span>chaion07</a></em> <em>for collaboration, proofreading and review.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Feb 2026 16:32:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Amy Kamala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Open Channels FM: Open Source vs SaaS: The Freedom Debate\";s:7:\"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:34:\"https://openchannels.fm/?p=1650282\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/open-source-vs-saas-the-freedom-debate/\";s: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:126:\"In this clip, hosts Dave and Robert discuss the balance between personal convenience and the ideals of open source technology.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Feb 2026 14:50:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Great Writing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151313\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2026/02/great-writing/\";s: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:1961:\"<p class=\"wp-block-paragraph\">Especially in an age where generating words is cheap, when you come across truly great writing, it really stands out. I want to pull two quotes from The Economist’columnist Charlemagne’s article <a href=\"https://www.economist.com/europe/2026/02/25/luxury-goods-are-europes-global-tax-on-vanity\">Luxury goods are Europe’s global tax on vanity</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Flogging luxury goods is one of the few fields of business in which Europe excels (if one excludes the crafting of regulation). In an ironic twist, an egalitarian continent with an ever-declining share of global GDP hosts an industry that thrives on inequality and bombastic money-making. For how many seasons more can this alchemy of aspiration endure?</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">I mean, gosh, look at every word there. How they flow. The density of concepts and metaphors. Here’s another delicious excerpt.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Luxury houses sell the idea of scarcity, with hordes of publicists explaining that the years-long wait for a Birkin handbag is due to the lack of sufficient artisans to craft these pinnacles of refinement. This is a fairy tale stitched in fine silk. The luxury-goods industry has roughly tripled in size since 2000; its €358bn in annual sales—half a Walmart or Amazon, give or take—betrays how thoroughly mainstream supposed exclusivity has become. Fifty years ago, Louis Vuitton had but two outlets, both in France. These days it has two stores in Ningbo, China’s 34th-biggest city. Exclusive, <em>moi</em>?</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">I guess this post also serves as an endorsement of why it’s worth subscribing to publications like The Economist. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Feb 2026 07:04:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"WPTavern: #206 – Jonathan Desrosiers on WordPress Sustainability, Community Engagement, and Release Strategies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=202772\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://wptavern.com/podcast/206-jonathan-desrosiers-on-wordpress-sustainability-community-engagement-and-release-strategies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:57656:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case WordPress sustainability, community engagement and release strategies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have Jonathan Desrosiers. Jonathan has been involved with WordPress for almost two decades, both as a user and a contributor. He’s a principal software engineer at Bluehost, where his role sees him sponsored to work on WordPress through the Five for the Future program. Over the years, he’s become a Core committer, and has spent many hours thinking about how to enhance the contributor experience, and make it easier for people to get involved in the project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In this episode we discuss how WordPress releases might become more impactful by synchronizing them with flagship community events like WordCamps and State of the Word. A recent experiment of combining a major release with a live event spark some excitement, and Jonathan shares insights on the logistics behind such synchronized moments, the challenges posed by international holidays, and regional scheduling, and the broader vision for connecting releases with community gatherings.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also get into the challenging landscape of the WordPress community, how it’s recovering from the effects of COVID, the struggle to rebuild local Meetups, and efforts like mentorship and educational initiatives to bring in new contributors, particularly from younger generations.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jonathan reflects on the importance of making release moments engaging and fun, akin to the anticipation of a new TV series or software launch, and the role of AI and open source in empowering a new wave of builders.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in how release cycles, community events, and contributor onboarding are involved in WordPress, or what the future might hold for the platform and its community, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Jonathan Desrosiers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Jonathan Desrosiers. Hello.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:06] <strong>Jonathan Desrosiers:</strong> Hi, how are you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:07] <strong>Nathan Wrigley:</strong> Yeah, good. Jonathan’s joining me again. Most recently, I think we were at WordCamp somewhere. I can’t exactly remember where, but I was chatting with him and Joe Dolson if memory serves. And a very different conversation to be had today because Jonathan has been mulling over how we can make releases impactful, and also how we can bind those to community events, particularly flagship WordPress events like WordCamps, things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Before we begin that conversation, Jonathan, I wonder, it’s a bit of a banal question, but people like to have the context of who you are. So would you mind just, very quick potted bio. Just tell us who you are and what you do in the WordPress space.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:44] <strong>Jonathan Desrosiers:</strong> Sure. So my name is Jonathan Desrosiers. I am a principal software engineer at Bluehost and I am sponsored there, the majority of my time is sponsored to contribute back to the WordPress project through the Five for the Future program. And so I’ve been there, probably since 2018, I think. And I’ve been a Core committer for almost eight years now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’ve been involved as an accredited contributor for 13 years now. And so I’ve been involved with WordPress for over a decade in many ways, contributing, but also as a user for almost, geez, almost two decades now I think. And so, I just had that realisation, it’s been a really long time. It’s been almost 20 years that I’ve been at least using WordPress in some way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But week to week I do a lot of thinking about contributor experience, how we can automate things, or how we can make our processes more clear so that more people can participate. And just generally making sure that everybody has what they need to be successful. And whether that’s mentorship, or they have blockers they need, certain people to come together and discuss, and get a consensus or understanding, you know, how the sausage is made in some way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:56] <strong>Nathan Wrigley:</strong> I think it’s fair to say that you are very much connected to the WordPress project. I think it’s the fulcrum of your working life, and you are working at a very high level as well. So Core committer, things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, in the recent past, it was probably, I want to say December in the year 2025, we had a kind of strange event happened. Not strange in the sense of weird, but strange in the sense of different, unusual. A release of WordPress came out and it coincided with an actual event. Now, in this case, it was State of the Word. So there was a bunch of people, and I believe they were gathered in New York. I could be wrong about that, but I think it was in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:33] <strong>Jonathan Desrosiers:</strong> It was in San Francisco.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:35] <strong>Nathan Wrigley:</strong> San Francisco. Okay, there we go. Thank you for the correction. It was in San Francisco and the idea was that the release of WordPress would go out and it would be bound to this event. And there was this almost, how can we describe it? It was almost like television, basically. It was being filmed and streamed live all over the place. And there was this feeling of a big red button. There was a lot of people gathered around and they all sort of leaned in and pushed a big red button, and the release of WordPress came out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, I don’t know if the button actually did anything or if it was really sort of smoke and mirrors. I like the idea that the button actually did signal the release, but I don’t know if that’s the case. But the point was, there was a little bit of theater put into it. There was this idea that, okay, we’ve got this live event which lots of people will be watching. We’ve got a release which we need to do, which lots of people will be looking forward to. Why don’t we sort of combine the two things?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so it was a bit of PR really. And it also felt a bit like sort of marketing, and I’m going to use gimmick in the real sense of the word. So not like gimmick as in something pointless, but gimmick as in something different, unique. Something to draw your attention and grab you in. And I think the idea has been proposed that in the year 2026, the flagship events, the flagship WordCamps, so I’ll list them in order in which they’re happening.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we’ve got WordCamp Asia, and then we’ve WordCamp Europe, and then we’ve got WordCamp US. The three releases of WordPress during 2026 will happen in tandem with those events. Now, why? Why would we want to do this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:12] <strong>Jonathan Desrosiers:</strong> Yeah, so I don’t think it was intentional, but the schedule just happened to coincide. You know, we were working on 6.9 and we realised, oh, the release date is the same as State of the Word. And so, I can’t remember who originally had the idea, but it was mentioned that it would be really neat to just be able to publish it live at the event and celebrate that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I guess the main reason behind it is just that, the more I’m involved in open source, the more I realise that the code and the license and all those things are important, but the most important thing underneath any open source project is the community that’s involved with it. And what better way to celebrate our achievements and our accomplishments when we get together in different ways.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so, typically that’s in Slack or social media, right? We celebrate a release and we share the posts and say what we’re excited about. But we also get together at different events and we do the same thing, right? We talk about what we’re excited about, what we’re working on, what’s coming, or what we think should change in certain ways. Why not just do that at the same time and create even a more ultimate celebration, right? Another community moment where people have another opportunity to feel involved in something greater than them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:25] <strong>Nathan Wrigley:</strong> Do you have any notion that this is going to be carried forward? I mean, I know that there was obviously a bit of serendipity in how it happened. The coincidence of timing and things like that. But do you have every confidence that this will happen, that Asia will get a release, Europe will get a release, and the US will get a release. In the year 2026, do you think that’s going to actually occur?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:46] <strong>Jonathan Desrosiers:</strong> We will see. So as the proposed schedule is for this calendar year, right? There’s three releases. Unfortunately, it’s tough because the people planning WordCamps don’t plan around our software’s release cadence, right? They plan around budget, regional holidays, travel factors, weather, cost of venues and availability.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so, you know, it’s not reasonable for the Core team and the people working on releases to say you have to have an event in a certain month, right? And so this year, some people may not have noticed, but WordCamp Asia is in April this year, which it’s been in February so far in the previous editions. And WordCamp Europe is in June, which it’s traditionally usually in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so that’s not a big enough gap to have another major release. And so the proposed schedule is saying, let’s release during WordCamp Asia, let’s release during WordCamp US, and then we’ll release again at the end of the year around State of the Word. We don’t have a date for State of the Word yet, but it’s around where we think it might be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And likewise, creating a schedule for releases is incredibly hard because if we don’t release in the first week of April, for example, then I believe the whole month of April has major religious holidays scattered throughout it in different areas of the world. And if we released in March, that was way too soon because we started the alpha phase of 7.0, that starts when the previous release is branched, like it’s separated from the primary branch in the code base, and that happened in like November.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But there’s US Thanksgiving, there’s Hanukkah, there’s Christmas, there’s New Year’s, right? A lot of people in the community take the majority of December off, and so that’s like a washed month, right? And so we would’ve had essentially four weeks until the feature complete point of the release. So that was too soon. And so it’s just as hard to plan the release schedule in a way that doesn’t negatively impact everybody as best as possible as it is to plan these major events.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I can’t say that it will be a guarantee going forward. We’re trying it out this year to see how it goes and what we can learn from it. We felt that the State of the Word was successful and it was exciting. It was unique in its own ways. And so we want to try, continue trying this this year and see how it goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:06] <strong>Nathan Wrigley:</strong> Gosh, the piece that you just said there about the religious holidays and what have you, that really opens up a really interesting discussion. Because it is quite likely, I imagine, that the listenership to this podcast probably never gave that any thought, that this kind of international calendar, be it a religious calendar or maybe just a vacation calendar in certain parts of the globe would really impact when the release can happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because there are people who are committing to the project, and they tend to be in certain jurisdictions. And so if there are people who are on, I don’t know, a week long holiday, nationally, in a specific jurisdiction, and they typically are a large part of the team that are committing in various different respects, that’s important, but probably something that many people would not have thought about.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, in terms of these releases then, is the idea, well, I’ll backpedal a little bit. It occurred to me that quite a lot of the people who may be involved in releases are the very kind of people who would find themselves also at some of these flagship events. Now, obviously it’s not going to be 100%, maybe it’s 25% of the people who are release leads and part of the teams that are committing here, there, and everywhere.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I was worried that there’d be people on airplanes, people trying to land and orientate themselves in the country that they’ve landed in in the same period of time when they would’ve been heads down, in their office, in their study, figuring out the bits that might be broken with the upcoming release. Is that a thing? Is that part of the jigsaw puzzle of this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:32] <strong>Jonathan Desrosiers:</strong> It definitely is, yeah. With any release, there’s no time of the day where everyone on the planet is available to work on something, right? And so another part of this is that, in a way it forces us to have a major release in different geographic areas so that everywhere on the globe there’s a WordPress release that they may be able to participate in, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so, likewise with travel, right? So when we assemble a release squad, we have to think, okay, it’s based in, for example, this one was planned to be released at WordCamp Asia in India. So we want to make sure we have a mix of people that are in different areas of the world. And not just so that there’s always people around to respond to things throughout the entire cycle, but we also want to have people that are present and not present at the event that are participating. And maybe the wifi is completely unusable or maybe something happens, right? So it’s good to have people that are there and not.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that was part of the announcement too, is that we tried to underscore the point that it would be great if everybody could go to WordCamp Asia, but traveling is not a requirement to participate in the release at all. And that’s a good thing, because it’s good to have people in multiple areas, multiple time zones.</p>\n\n\n\n<p class=\"wp-block-paragraph\">With WordCamp Asia, once contributor day ends, it’s the beginning of the US daytime, right? And so those contributors can sign off and there’s people around to help carry that torch and continue on if there’s any follow-up issues or anything that needs to be investigated.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so, yeah, that’s also a consideration is how, I guess we can call it global coverage, right? Like, how can we ensure we have global coverage so that there are people with the right skill sets, and right availability, and right knowledge, to be able to take on certain tasks or responsibilities or perform investigations, whatever may need to be done as part of that release process.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:26] <strong>Nathan Wrigley:</strong> I, like you, am really in the weeds of the WordPress project. I obsess about it in a way that’s probably not all that healthy. I’m very well aware of when the next release is coming up. I’m usually fairly aware of what is going to be in that release. But I imagine most people using WordPress, it’s probably a bit of a surprise. You know, they open up WordPress one day and either it has updated. If it’s a point release, probably it’s a more manual thing, if it’s a major release, I should say, but if it’s a more minor release, maybe things have updated in the background during the course of the night and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I’m thinking of TV series now. So when a successful TV series has a new season, there’s all this fanfare and buildup and you know it’s coming. You see the commercials, you see the adverts. And the moment that TV series comes around, you are excited, you’re ready to go. And I remember back in the day, this is going back a long time, when Firefox would make a release, they sort of did this thing like, I don’t know, every 18 months or something like that. Not like now where it’s every couple of hours it seems, that browsers update themselves.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But when it went to, I don’t know, 3.6 or something like that, there was this big fanfare, this big moment. Everybody took stock and what have you. And are you trying to encourage a bit of that? Are you trying to create a bit of razzmatazz and drama and intrigue and awareness and all of that around the release, and make it feel like an important thing, which with the best will in the world, it kind of has not been more recently? Most people, it just updates. There’s no fanfare whatsoever. But we can leverage it to make it important, significant, fun, interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:04] <strong>Jonathan Desrosiers:</strong> Yes and no, right? Like, we want to celebrate the community and the work we’re doing now. I actually would love it if we could get to a point where we’re releasing every, I don’t know, every week or every month even, right? Not have to wait every three or four months. There’s some value in having that penultimate moment, right? Of, we’ve worked for three months on this. But there’s also aspects of the world where we expect things faster and more instant and waiting for the patch that you submit in January to be released in April is not really, like maybe you lose interest in contributing in that time, right? So there’s many different things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Some things that you mentioned really resonated with me as far as awareness of what’s coming or like what’s been done. In a way, the fact that users are not so aware of what’s being added or what their site has updated to, it’s a sign of the success of auto updates and how seamless those are.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because for a little while I’ve been considering, when you update WordPress manually, you’re redirected into the about page in the dashboard, right? And every release, there’s a new about page that’s designed, it works hand in hand with, we call them the micro sites, which is like a wordpress.org’s landing page that showcases the release. And it just explains all the features that have been added.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But you only see that if you either go to the about page manually or you manually click update when you’re in the dashboard. And a site might have many administrators that only the person that actually updates will see it. And so I’ve been thinking about ways that we can make users more aware that their site is updated. Or maybe that’s not the important part, but maybe it’s just the important part to make them aware of the new features that are available to them, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Maybe we put some type of a widget on the dashboard where we link off to a Learn WordPress page that teaches you about how to use the Notes feature that got added. The other thing too is you mentioned about the TV shows advertise when they’re coming up, right? Maybe we need to do a better job of advertising what’s coming up and encouraging people to opt in early and test.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And in a way a more rapid release cycle leads to that because many of the browsers have different feature flags and they build features out in different branches, and you can actually opt into testing a specific feature and that would get turned on, but maybe not all the other things that they’re working on until it’s ready.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so maybe we need different ways for people to get involved testing, or trying things out earlier to understand what’s coming, but also to give us valuable feedback, how it works on their site, what breaks, what it doesn’t interact with. All of that is very valuable feedback, and we should always be striving to get more testers and more awareness around what’s coming because it creates new feedback loops that are valuable for different reasons.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:58] <strong>Nathan Wrigley:</strong> Yeah, it’s kind of interesting, and what I’m about to say, I am sure that a significant proportion of the listeners to this podcast will say, no, Nathan, we don’t want this. But here’s a proposal then. Here’s an idea. And again, I’m going to hark back to the TV series.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The TV series, typically when they’ve started advertising between other television programs, that TV series has been made, the footage has been shot, the graphics have been done. It’s basically ready to roll. And then they parcel all that up and then they release little snippets of what’s coming so that you can prepare yourself and get excited.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I kind of wondered if something like that in the dashboard, akin to the about us page, but in the run up to the release. So all the graphics have been made. We know basically what’s going to drop in this release. Now it may get tweaked here and there at the edges, but we know what’s coming. I’ve always thought that would be a really nice idea.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I would love to see that. And I realise a proportion of people would think, no, we really don’t want that. But I think that’s a perfect opportunity to get people drawn into, oh, this is coming. Collaborative editing, that’s about to happen is it? Gosh, that’s really interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then this call to action could be dropped in, but we need some testing around the edges of it. We’ve got the bare bones of it, but we need some more eyeballs on it and what have you. So that proactive demonstration of what’s going to happen rather than the reactive, your site has been updated, here’s what there is, which is already there. This is more of a here’s what’s coming, get excited, get involved, yada yada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:29] <strong>Jonathan Desrosiers:</strong> In some ways the feature branch model that I described lends to that, right? Because then it’s not, here comes this feature and then, oh, actually we left it out of this release, right? It’s its own thing that’s being worked on. And then when it’s released, it’s released, and it’s here. But it doesn’t make it any less, any worse off than other things that are shipping in the release, right? Because it’s its own thing, and it’s its own, it has its own criteria to be ready, in a state that we’re comfortable with shipping it and supporting it forever because of backwards compatibility.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so yeah, I think that what you’re describing is essentially what I was describing, a little bit more detail. And there’s of course a lot of nuance there around how often do we do that? We have a lot of parts of the release process that need to be automated before we can even consider that. The different parts of the block editor are, many of it is managed as packages, NPM packages. And so a lot of those are so interconnected, it’s a little difficult to release just one feature because they’re all being updated at the same time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so like there’s some architectural things to think about around that. Like, how do we compartmentalize things better to be able to do that? Make sure we don’t accidentally include something that’s not ready but when we intended to include a certain feature. There’s a lot to unpack there and I don’t know that we’ll ever get there just because of the sheer size of the project and how, backwards compatibility, how long we’ve been around.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think that training users that auto updates are important to have enabled that are quality, you know, not shipping things that break people’s sites as much as possible, even though it’s unavoidable because of how flexible WordPress is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">After 6.9 came out, I was looking into some of the data because I had this gut feeling that 6.9 was being updated to, slower than other releases. And so for a little while I was looking at that. And after about a month, I was like, okay, this is just a hunch. Let me go and actually look at the data around this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so what I noticed was actually the opposite. When I looked at, I created 5% thresholds for the percentage of total WordPress sites. And when I looked at the data, I realised that for the last 10 releases, let’s see here. So every major version of the last six to eight releases has passed 35% of all WordPress sites in two days or less. And also every one of these columns as far as percentages is increasing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so WordPress 6.9 reached the 50% threshold of all WordPress sites in 10 days, and that’s four days faster than 6.8, which was the next fastest. And currently we’re approaching 65% threshold of all WordPress sites. And only six other releases have done that so far. All of them are the most recent ones, except for 4.9, which we all know had a waiting period for Gutenberg. And the only release the past 70% was 6.8.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I’m interested to see how this trend continues because it’s showing an acceleration of adoption for each new major version of WordPress. They’re getting installed faster, by more people. It’s a sign that we’re shipping stable software. People are more confident. People are opting into auto updates for major versions. And in general, it’s just a quality sign that we’re doing something right here. And so how can we lean into that more?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:52] <strong>Nathan Wrigley:</strong> Okay, let’s pivot a little bit. Let’s sort of bind community, we did touch on this a minute ago, but let’s spend a little bit of time binding the community to these kind of things because right at the start you mentioned that really the community is the underpinnings of your interest in the WordPress space. The code is obviously tremendously important, but without the community there is no code basically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so we’ve got these events. We’re trying to create interest around the WordCamps and the releases at the same time. But just looking back over the last period of time, let’s go for year, two years, something like that. I don’t know what your spidey sense is telling you, but my spidey sense is telling me that that community portion, it’s sort of slowly but surely, it feels like it’s withering away slightly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m not really picking up on like this angry mob of people who are stamping their feet and shouting, I don’t want anything to do with the WordPress community and then disappearing. I mean maybe there’s a few of those, probably, somewhere. But I don’t get a sense of that. I just get this sense of sort of, somebody’s pulled the plug out of a bathtub and it’s slowly sort of draining away.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Attendance down at WordCamps. Meetups struggling to sort of get the numbers that they had several years ago. And so it would feel like at the moment, you would have to be watching the news fairly closely, especially right now. So at the beginning of February, 2026 is when we’re recording this. There does seem to be a push from the senior leadership to make WordPress Meetups and things like that, a much more central part.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then there’s this whole broad spectrum of educational initiatives as well going on. So we’ve got WP Campus Connect, we’ve got the Credits Program and a whole smorgasbord of other things which is happening.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there’s no question there, really, what I’m just trying to do is give you the opportunity to bind the two things, the WordPress community and the software, and really just talk about whether you’ve noticed the same thing as me, where there’s this slow, withering of the community. And maybe this is a part of just sort of getting it all back together, making events like this a bit more fun and interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:02] <strong>Jonathan Desrosiers:</strong> Yeah. I think there’s a few things there to call out. The first observation I’ve had over the last year is there’s a palpable excitement to build with WordPress again. I’m noticing there’s a renewed enthusiasm. People, they want to move on from certain things, and they want to get back to building experiences and tools and things on the WordPress platform.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But there’s also, I think we’re dealing with some, in some ways, a long tail COVID effect, right? There was obviously, you know, a lack of in-person events for a while, and during that time a lot of the people who were keeping Meetups alive and WordCamps alive, they moved on, or burnt out, and chose not to return after. And so there was a break in that pipeline of, usually there’s a lead doing that and there’s other people learning under them, and then they move up and take over. And that was totally disrupted and I think that we’re still trying to rebuild that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think that it manifests differently in different areas too. So for example, the APAC WordCamp community is very strong and they have lots of WordCamps. But in the United States, there was one WordCamp that wasn’t WordCamp US last year, I think, Montclair. And I lead the Boston WordPress Meetup and so finding speakers is difficult. Getting people to come out is difficult as well. And I think those are partially just larger societal shifts where it’s harder to get people to come out to certain things. And we just have different preferences as far as how we consume information or learn.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I’m still not sure why the difference in the geographical areas, and I think it may have to do more with, APAC is a more emerging market when it comes to WordPress, right? Like their community, especially in certain areas has been growing and is much newer than it is in the US. And so I think that they’re growing their communities for the first time in many ways, right? But in the US it’s the second or third or fourth time that we’re growing those communities or revitalising those communities. And the form that that needs to take, I think is a little different. And I’m not clear on what the holdup is there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I do know that a big factor of that is to get new people involved with WordPress and interested in WordPress, and that’s why some of the priorities that Mary Hubbard published, and one of them in particular is education and awareness and all of those different things that work together in the form of the WP Credits program, mentorship programs. There’s been the contributor mentorship programs that happen every few quarters in WordPress over the last few years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And we’ve seen some really great contributors who were mentored in that program, and then the next time the program happened, they mentored, and then they became a team lead, and then they served on release squads. And so we’ve seen some really great contributed journeys through those paths.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:53] <strong>Nathan Wrigley:</strong> I’ll just sort of run through with you the kind of things that I’ve noticed in my part of the world. So I think COVID is an enormous part of it. It upended so many ordinary things in life. So, as an example, you know, people obviously, they ceased going out, and then that pattern of not going out became habituated. People didn’t go out because that’s not what you do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And in the UK we have this institution called the pub, which I’m sure you’ve heard of. And it used to be that prior to COVID, the pub was the real centerpiece of many communities. You know, towns, suburbs, what have you. Everybody would coalesce around the pub and that was very important. Since the pandemic, a lot of those institutions, they don’t really function in that way anymore. You know, there isn’t the throughput, there isn’t the footfall and so they go out of business.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the same, I presume is true in the WordPress space. You know, we’re trying to encourage people to get up, leave their home, spend money on transportation. Obviously there’s the time cost, the sunk cost of time and what have you as well. It’s difficult, but it makes me more sanguine that it’s not just like, it’s not just a WordPress thing, you know, it’s the whole of society.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But like you said, I get the feeling that the WordPress community has begun to address it. And the way it’s being addressed is through these educational initiatives. Trying to get a throughput of younger talent. So get them at the school age, get them at the university age, and then hopefully they will have an interest. They’ll get a flavor of what it means to be involved in these Meetups and things like that and hopefully take those on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s a laudable goal. I hope that it has the capacity to transfer. You know, so in a decade’s time we can look back and say, look what happened. This young blood emerged. I think it’s yet to be seen. I think certainly in the area, the locale where I am, the United Kingdom, we don’t see evidence of that yet. Maybe in the US that would also mirror.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But from everything that I’ve learned and the people that I’ve talked to for this podcast and events in Asia and places like that, that seems to be a really different picture. There seems to be a real thirst for solutions like WordPress. Because there’s a direct kind of career path there. You know, you can pick up a free piece of open source software, crack open a laptop and get going and start to sell your services far and wide. And so again, there’s no question there, just observations that I hope these initiatives bear fruit. But it’ll be interesting to see. Only time will tell.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:16] <strong>Jonathan Desrosiers:</strong> I think at the root of what we’re dealing with is that people are motivated by what they see as valuable, right? If they’re not going out to events, so they’re not engaging with the community, they don’t recognise or feel that it’s valuable to them in some way. And so we’re having to reprove why communities are valuable, why open source is valuable, why you should care.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the other aspect of it is, you know, overall project sustainability. We can’t just keep getting older. We need to have a balance of new, younger people that get involved as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so one way to lean into getting younger is obviously, like you said, to approach people at schooling age, right? Or university, and teach them about open source. Show them how to contribute, how to be a part of a community, and why it’s valuable. But we have to be really careful because we need to be prepared to, I’ve written in the past that we need to be prepared to activate these contributors, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it’s one thing to make them aware of this, but it’s another thing to make sure they’re properly supported and we give them pathways to grow. We give them clear criteria to be successful, clear projects to work on, so they understand what they’re doing and what they’re trying to accomplish.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think that this is one thing that is also a benefit of having the releases coincide with these major events because new people are getting together already, so why not use that opportunity?</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the goals that every table lead and every organiser of a Contributor Day has is to ensure as many contributors see, realise their work over the finish line. And so on the Core team that’s a patch that someone tests gets committed, or a patch someone writes gets committed to WordPress, right? How can we make that more valuable, where it’s not just ending when they leave Contributor Day?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I’ve been thinking about all the different logistics and helping to coordinate with the WordCamp Asia team and the 7.0 release team to make sure we’re prepared for that final day. And one of the things I’ve been thinking about is the release process itself. One of the best, lowest friction ways to get involved with WordPress in the actual release process. And you don’t need any experience contributing to really take part in it. And that’s when we get to a point where we say, okay, here’s the zip file of what we think we’re going to ship, go test it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so people will take it, and they install it on their server and they say which version of PHP they’re using, and how they installed it and what they did and, you know, it worked. And the majority of that though is just looking for problems. And when problems don’t come up, we just don’t do anything with all the information that people are dropping, right? And there might be 50 people at a major release. We call them parties, but at the release parties that are dropping information. And again, if there’s no red flags, that information just largely goes away.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But, how can we rethink that and make that effort more meaningful, and also create a pathway for them to continue contributing in some way past that moment? And having everybody in person is a great way to have pilot programs for different approaches, because there can be someone that briefs a set of contributors on what we’re going to try this time, here’s what we want to do, give us feedback on how you felt it went. Everybody that’s involved in the squad and doing the release can say, oh yeah, that actually was really helpful and better than what we do before.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And these newer individuals that are learning also have fresh perspective. And so having them participate in these, I guess I’ll call them experiments of such, but just these processes and things that we are considering, it helps get that fresh opinion and perspective on why things are working and why things aren’t and helps us just improve.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:04] <strong>Nathan Wrigley:</strong> I’ve got three children and they’re all of a certain age now, they’re certainly no longer small. You know, they’re basically adults. And it’s really fascinating looking at the kind of things that engage them. I think they’ve just grown up in a different era. The diet of the kind of things that excite them is very different to the kind of things that excited somebody of my generation, just because, you know, they’ve had the whole world in their pocket ever since they were born.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And having that dialogue with the next generation, and trying to figure out what it is that they want and that they desire. And even things like open source. So when, I was already an adult before the internet began to be put into everybody’s homes, and people started to own personal computers and things like that. And so I was ready to receive that message of open source right at the start. And it became really obvious to me, oh, that’s a really clever way of making software.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But now of course we’ve got this landscape of closed platforms. Everything’s free at the point of use, but everything’s not free in any way, shape, or form. You can think of the siloed platforms that I’m talking about. My children have been raised with those and so just even making the argument about open source is hard enough.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think what I’m really advocating for is, obviously we’ve got to shepherd these people in, but at the same time, I think we have to be willing to let go of a lot of the things that we think the project is. We think the Meetup should contain. We think the WordCamp should maintain. Because at the end of the day, we’re competing for eyeballs and if we don’t make it, I’m going to use the word exciting, if we don’t make it exciting, they’re just not going to show up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I feel that’s a piece of the next five, six years, trying to figure out what excites these people. Because unless we do excite them, I fear the Meetups are going to be empty and there’ll be a certain throughput from the WordPress initiatives, Campus Connect and what have you. But we need to make these things exciting, interesting, innovative, fun. But I don’t have an answer to that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:59] <strong>Jonathan Desrosiers:</strong> Yeah, you touched on something interesting that I’ve been thinking about quite a bit. I gave a talk last year about how to implement AI into open source communities while maintaining what makes them great in the first place, which is the human element, right? The community aspects of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I’ve been thinking a lot about just AI and how it’s affecting us. And there’s a few things that I’m really excited about with AI and those are empowerment and learning. And so you can have an AI model that digests massive amounts of information and summarises it in the specific way that you learn best, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And likewise, I’m noticing that people feel more empowered to try things themselves because they have more of an ability to distill a lot of information down into something that’s digestible, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I feel that the tension between those two areas of closed and open is growing. Because when I was growing up, computers were just starting to be less than the size of a car, right? People were starting to have them in their house. But they were still at a point where, the computer went bad, you took it apart and fixed it. You didn’t trade it in for a new one, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I feel like my generation, there was a level of, we had the tools, but we had to go out and build the things we needed ourselves in some ways, and experiment. And then there’s been the generations between that and now where they pretty much had everything that they needed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But AI is changing what we need, or what we want, and what ways we want it. And so now there’s a new found need to build again in some ways. And in some ways it’s kind of a circle, right? Because it’s, the AI is making it easier to build, but it’s also making you more aware you have to build. It’s kind of like building against itself in certain ways.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I’m finding that there’s more of a willingness to do things on your own, try to tackle something you would typically need to hire a professional to do in the past. You know in many ways we need to lean into that because then that gets people excited. Oh, WordPress, I could use WordPress to build this, or I could use just the WordPress for just the database part of it and the REST API and have some type of application on it because it scales well and it caches or whatever it may be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I feel like people are starting to scoff at the walled gardens a little bit more, and I’m seeing that there’s a resurgence in things like RSS. I’m seeing new RSS readers are popping up. People are leaning towards the Fediverse. People are blogging more, having their own website instead of just their business on Facebook, right? Because that can get taken away.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We saw with Twitter how they just chose to close their platform. And embeds no longer work in WordPress because they shut down oEmbeds. And I feel like it changes every month, but there’s times where you have to log in to see a post, or you can’t see a post, or you can see one post and then you can’t see any more that’s shared externally. Yeah, so it gives you more control.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:02] <strong>Nathan Wrigley:</strong> Yeah, I think that’s really interesting. And I also noticed that swing. Obviously, I don’t have any broader data. I can only point to the things in my life, the little intuitions that I’m gaining. But I see the same thing. I see an interest in AI, so we’ll just put that to one side for a moment. But in terms of the closed platforms, I do see that the people that I know who are significantly younger than me, they have intuitions around that, and they’ve kind of figured out for themselves that this is not great. It seems to be a vehicle to serve me ads, and I wonder what the incentive is for the stuff that I’m seeing, and maybe it’s kind of pushing me off in one direction politically and all of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And yeah, this resurgence of RSS, of the blog. I know it’s hard to talk about, but it’s almost like we’re doing some sort of archaeology in the internet space. We’ve gone back to something older. We kind of dug up the relics from the past and we found that they’re still usable. They’re still there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’ll be so interesting. But I think if it was just the RSS and it was just the open nature of things, I think that’s going to be a hard sell. But throw AI into the mix, this capacity for somebody with very little relationship with writing code who can get something credible out. Now, it may not be robust, it may have security problems here and there. The accessibility may be something that needs to be addressed and what have you. But who can argue with the excitement of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You know, you tell a computer to make a colourful website that’s got rainbows and pictures of cats, and sure enough, two minutes later you have a website with rainbows and pictures of cats. And that wasn’t possible until just a couple of years ago. And so I think we’ve got the tools. I think there’s things that we can deploy. AI seems to be the primary one at the moment. Let’s hope that that continues to be sustainable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But that’s interesting. That gives me some hope. And the way that you’ve encapsulated it, open source combined with things like AI. Trying to get Meetups back. Trying to combine it with educational initiatives. Trying to combine it with WordCamps and releases.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:52] <strong>Jonathan Desrosiers:</strong> You mentioned something that’s important there in that it’s very easy for someone to get something built that they need specifically, right? And I think that’s where we’re at right now where AI is, like I said, is empowering, but more on a personal level. Once you need to scale those things, that’s when it gets difficult.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it’s a rollercoaster of, oh my God, there’s going to be no software. And then, oh, look at all this crappy software that AI built. We are always going to have a job. And then it’s like up and down all throughout time as new tools get released. And it definitely matches what I’m seeing is like the personal empowerment level, they could take that and run with it and build this really massive thing, or they could just build something that they just want, that does specifically what they want, that they haven’t found out there that it accomplishes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think that another aspect of that is I’m noticing that a lot of people that you may not have thought would try things in the physical world on their own are more likely to do so as well. So maybe changing their faucet, or doing a landscaping project or something. I feel like we’ve had YouTube tutorials, right, has been a big thing for maybe a decade, right? But I feel like AI has unlocked a new level of empowerment where people feel more confident to try things because of the knowledge that’s available to them in different ways.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:43:09] <strong>Nathan Wrigley:</strong> The year 2026 is going to be punctuated by WordCamps. It’s going to be punctuated by WordPress releases. Hopefully we will start to see the needle move on educational initiatives, and maybe some younger people joining in with the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That has been a fascinating chat, Jonathan. I really appreciate that, getting your insight into what I think we both hope is going to happen in the WordPress project. That it will still be relevant in 10 years time, and that there’ll be children who are now, not old enough to be using computers, in a decade, they’ll be coming on podcasts like this, and hosting podcasts like this, and being involved in the community that we love so very much.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Where can we find you, Jonathan? If people want to talk to you and have a bit of a natter, where’s the best place to locate you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:43:48] <strong>Jonathan Desrosiers:</strong> My website is just jonathandesrosiers.com. I’m desrosej pretty much everywhere on the internet. I try to keep it consistent and easy. And you can also, of course, find me in the wordpress.org Slack.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:44:01] <strong>Nathan Wrigley:</strong> I will link to all of those in the show notes. So if you go to the wptavern.com website, search for the episode with Jonathan Desrosiers, you’ll be able to find all of the links probably at the bottom underneath the transcript and the preamble. Go and have a look down there and hopefully we’ll be speaking soon. I’ll probably see you in Mumbai in a few weeks time. Take care, Jonathan.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:44:21] <strong>Jonathan Desrosiers:</strong> Thank you. Look forward to it, and hopefully I see your listeners there as well.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jonathan has been involved with WordPress for almost two decades, both as a user and a contributor. He’s a principal software engineer at Bluehost, where his role sees him sponsored to work on WordPress through the Five for the Future program. Over the years, he’s become a Core committer, and has spent many hours thinking about how to enhance the contributor experience and make it easier for people to get involved in the project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In this episode we discuss how WordPress releases might be made more impactful by synchronizing them with flagship community events like WordCamps and State of the Word. A recent experiment of combining a major release with a live event sparked some excitement, and Jonathan shares insights on the logistics behind such synchronized moments, the challenges posed by international holidays and regional scheduling, and the broader vision for connecting releases with community gatherings.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also get into the changing landscape of the WordPress community, how it’s recovering from the effects of COVID, the struggle to rebuild local Meetups, and efforts (like mentorship and educational initiatives) to bring in new contributors, particularly from younger generations. Jonathan reflects on the importance of making release moments engaging and fun, akin to the anticipation of a new TV series or software launch, and the role of AI and open source in empowering a new wave of builders.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in how release cycles, community events, and contributor onboarding are evolving in WordPress, or what the future might hold for the platform and its community, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://jonathandesrosiers.com\">Jonathan’s website</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan on WordPress.org</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://x.com/desrosj\">Jonathan on X</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.bluehost.com\">Bluehost</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.com/blog/2025/12/04/state-of-the-word-2025-recap/\">State of the Word 2025 recap</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://events.wordpress.org/campusconnect/\">WP Campus Connect</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Mary Hubbard on the importance of education – <a href=\"https://make.wordpress.org/project/2026/01/23/big-picture-goals-for-2026/\">Big Picture Goals for 2026</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://en.wikipedia.org/wiki/Fediverse\">Fediverse</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Feb 2026 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Open Channels FM: AI Sidekick Features for WooCommerce Merchants\";s:7:\"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:34:\"https://openchannels.fm/?p=1650257\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/ai-sidekick-features-for-woocommerce-merchants/\";s: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:235:\"Katie Keith asks about an AI assistant for WooCommerce like Shopify\'s Sidekick. James LePage confirms upcoming features will simplify custom AI integration, enabling easier plugin installations and enhanced merchant management 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Feb 2026 12:32:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"HeroPress: Finding autonomy through WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=8405\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"https://heropress.com/essays/finding-autonomy-through-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=finding-autonomy-through-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18380:\"<img alt=\"Pull quote: WordPress helped me evolve from a designer and developer into a more complete professional. WordPress mi je pomogao da se od dizajnera i developera razvijem u cjelovitijeg profesionalca.\" class=\"attachment-large size-large wp-post-image\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/3026/02/022426.webp\" width=\"1024\" /><p><a href=\"https://heropress.com/feed/#hrvatski\" id=\"#hrvatski\">Ovaj esej dostupan je i na hrvatskom jeziku.</a></p>\n\n\n\n<p><a href=\"https://heropress.com/feed/#deutsch\">Dieses Essay ist auch auf Deutsch verfügbar.</a></p>\n\n\n\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/3026/02/english.mp3\"></audio><figcaption class=\"wp-element-caption\">Here is English audio of Edo’s essay, read in his own voice.</figcaption></figure>\n\n\n\n<p>I started working with WordPress in 2020. I joined a digital agency and was at the start of my professional career. I had freshly completed a developer bootcamp where we learned about web development concepts and the basics of JS, HTML and CSS. I was initially hired as a frontend developer, but soon expanded my role to UX design and WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-overcoming-prejudice\"><strong>Overcoming prejudice</strong></h2>\n\n\n\n<p>Initially, I was hesitant about working with WordPress. In some developer circles, it was looked down upon. I thought someone might think less of me for using such a basic tool instead of doing the real thing, since coding was considered the “proper” way to build things.</p>\n\n\n\n<p>After some initial resistance, I managed to let go of my prejudice and started enjoying it. The process involved designing the website in Figma and then implementing it via WordPress. Although I like to write code, I always thought of myself as more of a visual person than a coder, so this felt quite satisfactory.</p>\n\n\n\n<p>In the Agency we worked mostly with Elementor, and even though there were some trade-offs when using it, I still remember how glad the benefits made me feel. I could implement scroll animations and various custom effects just by adjusting a couple of settings. It was great!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-shift-in-perspective\"><strong>Shift in perspective</strong></h2>\n\n\n\n<p>As time progressed and I became more fluent in WordPress, I stopped thinking only from a design and frontend perspective and started seeing the bigger picture. Besides getting familiar with SEO, I began to understand the relationship between design decisions, business goals, and real-world constraints.</p>\n\n\n\n<p>I also realized that I no longer had to wait for someone else to finish the project. Design didn’t end at handoff, and implementation didn’t end at developing the frontend. I could take a project from an initial idea to a finished, high-quality website all on my own. WordPress made that possible without requiring me to become a backend specialist.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-delivering-complete-value\"><strong>Delivering complete value</strong></h2>\n\n\n\n<p>These insights changed my role more than any job title ever could and encouraged me to start freelancing. I took part in bigger, team-oriented WordPress projects, but I also worked on smaller ones where I was responsible for the whole process, from the initial “get-to-know-you” interview with the client to the final approval. I came to understand how design decisions influenced performance, how content structure shaped SEO, and how visual complexity affected load times and maintenance. </p>\n\n\n\n<p>As I gained more experience, the scope of my work expanded. I was no longer just a designer or developer. Over time, I started to understand the business side of projects as well. It became clearer how a website fits into a broader strategy, how it supports client goals, and how decisions influence long term value. WordPress allowed me to develop a more strategic mindset. It helped me move from purely operational work toward strategic thinking. That broader business perspective became just as important to me as the technical execution itself.</p>\n\n\n\n<p>The feeling of being able to provide a complete product to the client and own the entire process felt exciting because it satisfied my need for autonomy.</p>\n\n\n\n<p>First time I truly felt responsible for the entire outcome was while developing a full hotel website from start to finish. Publishing the site felt different. Since working in a team is a collaborative activity, there is always sharing of responsibility, giving each other support and feedback. This is why this felt different. It was only me. It was not a contribution. It was owning the project from start to finish. Seeing the site live, functional, and in real use made this shift clear. It felt exciting to be able to deliver the full outcome.</p>\n\n\n\n<p>Even if WordPress is not suitable for every use case and even if there are certain trade-offs, for someone like me, who wanted to feel autonomy and experience delivering a product from the initial idea to completion, WordPress was the right tool. It didn’t just teach me how to build a website or implement SEO. It taught me how to deliver real value to a client.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\"><strong>Conclusion</strong></h2>\n\n\n\n<p>If I had to summarize what WordPress changed in my life, it would be that it helped me become more autonomous. It allowed me to take responsibility for entire projects and deliver complete value to clients, from idea to finished product. </p>\n\n\n\n<p>It also exposed me to a much larger number of real-world projects, clients, and challenges. That volume of experience shaped my growth more than any single tool or role. More projects meant more conversations, more constraints and more responsibility. </p>\n\n\n\n<p>In that sense, WordPress wasn’t just a tool for me. It helped me evolve from a designer and developer into a more complete professional. Someone able to understand problems, deliver outcomes, and think beyond individual tasks.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h1 class=\"wp-block-heading\" id=\"hrvatski\"><strong>Pronalaženje autonomije kroz WordPress</strong></h1>\n\n\n\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/3026/02/croatian.mp3\"></audio><figcaption class=\"wp-element-caption\">Ovdje je hrvatska audioverzija Edovog eseja, pročitana njegovim vlastitim glasom.<br /></figcaption></figure>\n\n\n\n<p>S WordPressom sam počeo raditi 2020. godine, na samom početku svoje profesionalne karijere. Pridružio sam se digitalnoj agenciji nakon što sam završio developerski bootcamp na kojem smo prošli osnove web razvoja te rad s JS-om, HTML-om i CSS-om. Isprva su me zaposlili kao frontend developera, ali se moja uloga ubrzo proširila na UX dizajn i WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-suocavanje-s-predrasudama\"><strong>Suočavanje s predrasudama</strong></h2>\n\n\n\n<p>U početku sam bio skeptičan prema WordPressu. U nekim developerskim krugovima na njega se gledalo s visoka. Imao sam dojam da će netko pomisliti kako radim s lakšim alatom, umjesto da radim stvari “kako treba”, kroz čisti kod.</p>\n\n\n\n<p>Nakon početnog otpora, ta se percepcija promijenila. Počeo sam uživati u procesu. Prvo dizajn u Figmi, zatim implementacija kroz WordPress. Iako volim pisati kod, uvijek sam sebe doživljavao više kao vizualni tip nego kao klasičnog programera. Ovakav način rada mi je prirodno odgovarao.</p>\n\n\n\n<p>U agenciji smo najčešće koristili Elementor. Imao je svoja ograničenja, ali prednosti su mi bile važnije. Mogućnost da relativno brzo implementiram animacije na scroll, razne interakcije i custom efekte, bez kompleksnog kodiranja, bila mi je konkretna vrijednost.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-promjena-perspektive\"><strong>Promjena perspektive</strong></h2>\n\n\n\n<p>Kako sam postajao sigurniji u WordPressu, prestao sam razmišljati isključivo iz dizajnerske ili frontend perspektive. Počeo sam sagledavati širu sliku. Postalo mi je jasnije kako su dizajnerske odluke povezane s poslovnim ciljevima i potencijalnim ograničenjima koje svaki projekt nosi sa sobom.</p>\n\n\n\n<p>Također sam shvatio da više ne moram čekati druge da završe svoj dio posla. Dizajn nije završavao primopredajom, a implementacija nije stajala na frontendu. Mogao sam projekt iznijeti od početne ideje do potpuno gotove web stranice, bez da budem stručnjak za backend. WordPress mi je to omogućio.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-isporuka-cjelovite-vrijednosti\"><strong>Isporuka cjelovite vrijednosti</strong></h2>\n\n\n\n<p>Ta promjena utjecala je na moju ulogu više nego bilo koja titula. Potaknula me da se krenem baviti freelancingom. Radio sam na većim timskim WordPress projektima, ali i na manjima gdje sam samostalno vodio cijeli proces. Od prvog razgovora s klijentom do finalnog odobrenja. Počeo sam razumijevati kako dizajnerske odluke utječu na performanse, kako struktura sadržaja oblikuje SEO i kako vizualna kompleksnost utječe na brzinu učitavanja i održavanje.</p>\n\n\n\n<p>Međutim, kako sam postajao iskusniji, širio se i opseg mog rada. Više nisam bio samo dizajner ili developer. S vremenom sam počeo razumijevati i poslovnu stranu projekata. Postalo mi je jasnije kako se web stranica uklapa u širu strategiju, kako podržava ciljeve klijenta i kako odluke utječu na dugoročnu vrijednost. WordPress mi je pomogao razviti strateški način razmišljanja. Pomaknuo sam se od operativnog izvršavanja zadataka prema razumijevanju šireg konteksta i donošenju odluka. Ta šira, poslovna perspektiva postala mi je jednako važna kao i sama tehnička izvedba.</p>\n\n\n\n<p>Prvi put sam stvarno osjetio punu odgovornost kada sam samostalno razvio kompletnu web stranicu za jedan hotel, od početka do lansiranja web-a u produkciju. Osjećaj kada je stranica napokon otišla online bio je drugačiji. U timu uvijek postoji dijeljenje odgovornosti, podrška i zajedničke revizije. Ovdje je sve bilo na meni. Nije to bila samo kontribucija, nego vlasništvo nad cijelim procesom. Vidjeti tu stranicu online, za mene je jasno označilo tu promjenu.</p>\n\n\n\n<p>Iako WordPress nije rješenje za svaki projekt i ima svoja ograničenja, meni je omogućio upravo ono što mi je tada bilo važno: autonomiju i mogućnost da isporučim cjelovit proizvod, od ideje do realizacije. Nije me samo naučio kako izraditi web stranicu ili optimizirati SEO, nego kako klijentu isporučiti stvarnu vrijednost.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-zakljucak\"><strong>Zaključak</strong></h2>\n\n\n\n<p>Ako moram istaknuti jednu stvar koju je WordPress promijenio u mom profesionalnom razvoju, rekao bih da mi je omogućio veću autonomiju. Dao mi je prostor da preuzmem odgovornost za cijeli projekt i isporučim potpunu vrijednost, od inicijalne ideje do finalnog proizvoda.</p>\n\n\n\n<p>Uz to, otvorio mi je pristup većem broju stvarnih projekata, klijenata i izazova. Količina iskustva koju sam tako stekao oblikovala je moj rast više nego bilo koja pojedinačna uloga ili alat. Više projekata značilo je više različitih razgovora, ograničenja, odgovornosti i drugačijih prosudbi.</p>\n\n\n\n<p>U tom smislu, WordPress nije bio samo alat. Bio je to način rada koji mi je omogućio da izađem iz okvira dizajnera i developera te razvijem sposobnost razumijevanja problema, preuzimanja odgovornosti i razmišljanja šire od pojedinačnog zadatka.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h1 class=\"wp-block-heading\" id=\"deutsch\"><strong>Autonomie durch WordPress finden</strong></h1>\n\n\n\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/3026/02/german.mp3\"></audio><figcaption class=\"wp-element-caption\">Hier ist die deutsche Audioaufnahme des Essays von Edo, gelesen mit seiner eigenen Stimme.</figcaption></figure>\n\n\n\n<p>Ich habe 2020 angefangen, mit WordPress zu arbeiten. Zu dieser Zeit stand ich am Anfang meiner beruflichen Karriere und trat einer Digitalagentur bei. Kurz zuvor hatte ich ein Developer-Bootcamp abgeschlossen, in dem wir Web-Grundlagen sowie die Basics von JS, HTML und CSS gelernt hatten. Ursprünglich wurde ich als Frontend Developer eingestellt, aber meine Rolle erweiterte sich schnell in Richtung UX Design und WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-vorurteile-uberwinden\"><strong>Vorurteile überwinden</strong></h2>\n\n\n\n<p>Zu Beginn war ich unsicher, ob ich mit WordPress arbeiten wollte. In Teilen der Entwickler-Community wurde es nicht besonders ernst genommen. Ich hatte das Gefühl, man würde mich weniger ernst nehmen, wenn ich mit einem „einfachen“ Tool arbeite, statt alles klassisch zu programmieren, da Coding als der „richtige“ Weg galt.</p>\n\n\n\n<p>Anfangs habe ich mich dagegen gesträubt, mit WordPress zu arbeiten, aber mit der Zeit begann ich, die Arbeit damit zu genießen. Der Prozess bestand darin, Websites in Figma zu gestalten und anschließend mit WordPress umzusetzen. Obwohl ich gerne Code geschrieben habe, sah ich mich immer eher als visuellen Typ. Diese Arbeitsweise lag mir daher besonders.</p>\n\n\n\n<p>In der Agentur haben wir hauptsächlich mit Elementor gearbeitet. Natürlich gab es Nachteile, aber für mich überwogen die Vorteile. Scroll-Animationen und individuelle Effekte ließen sich durch wenige Einstellungen umsetzen. Das fand ich sehr überzeugend.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-perspektivwechsel\"><strong>Perspektivwechsel</strong></h2>\n\n\n\n<p>Mit wachsender Erfahrung änderte sich mein Blickwinkel. Ich dachte nicht mehr nur aus Design- oder Frontend-Sicht, sondern begann, Zusammenhänge zu erkennen. Neben SEO verstand ich zunehmend, wie Designentscheidungen mit Geschäftszielen und realen Rahmenbedingungen verbunden sind.</p>\n\n\n\n<p>Mir wurde auch klar, dass ich nicht mehr auf andere warten musste, um das Projekt zu Ende zu bringen. Design endete nicht mit der Übergabe, und die Umsetzung nicht beim Frontend. Ich konnte ein Projekt von der ersten Idee bis zur fertigen Website eigenständig führen, ohne Backend-Spezialist zu sein. WordPress machte das möglich.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-ganzheitlichen-mehrwert-liefern\"><strong>Ganzheitlichen Mehrwert liefern</strong></h2>\n\n\n\n<p>Diese Entwicklung beeinflusste meine Rolle stärker als jede offizielle Bezeichnung. Sie war auch der Impuls, als Freelancer zu starten. Ich war an größeren Teamprojekten beteiligt, übernahm aber auch kleinere Projekte, bei denen ich für den gesamten Prozess verantwortlich war – vom ersten Kennenlerngespräch bis zur finalen Freigabe.</p>\n\n\n\n<p>Ich verstand, wie Designentscheidungen die Performance beeinflussten, wie Inhaltsstrukturen sich auf SEO auswirkten und wie visuelle Komplexität Ladezeiten und Wartbarkeit beeinflusste.</p>\n\n\n\n<p>Mit wachsender Erfahrung erweiterte sich auch mein Aufgabenbereich. Ich war nicht mehr nur Designer oder Developer. Ich begann, die geschäftliche Seite von Projekten zu verstehen: wie sich eine Website in eine übergeordnete Strategie einfügt, wie sie Unternehmensziele unterstützt und wie Entscheidungen langfristigen Wert beeinflussen. WordPress hat mir geholfen, strategischer zu denken und mich von rein operativer Arbeit zu lösen. Diese geschäftliche Perspektive wurde für mich genauso wichtig wie die technische Umsetzung.</p>\n\n\n\n<p>Ein vollständiges Produkt liefern und den gesamten Prozess selbst tragen zu können, war für mich besonders wichtig, weil es meinem Bedürfnis nach Autonomie entsprach.</p>\n\n\n\n<p>Der Moment, in dem ich erstmals die komplette Website eines Hotels eigenständig von Anfang bis Ende entwickelte, markierte einen Wendepunkt. Die Veröffentlichung fühlte sich anders an. Ich arbeite gern im Team, da man dort Feedback erhält. Doch hier trug ich die volle Verantwortung. Es war kein Beitrag zu einem Projekt, sondern die vollständige Verantwortung für das Ergebnis. Die Website live zu sehen, machte diesen Schritt für mich sehr deutlich.</p>\n\n\n\n<p>Auch wenn WordPress nicht für jeden Anwendungsfall ideal ist und gewisse Kompromisse mit sich bringt, war es für mich das richtige Werkzeug. Ich habe dadurch nicht nur gelernt, wie man Websites baut oder SEO umsetzt, sondern auch, wie ich echten Mehrwert für Kunden schaffen kann.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-fazit\"><strong>Fazit</strong></h2>\n\n\n\n<p>Wenn ich zusammenfassen müsste, was WordPress in meiner beruflichen Entwicklung verändert hat, dann ist es vor allem die gewonnene Autonomie. Es gab mir die Möglichkeit, Projekte von der ersten Idee bis zum fertigen Produkt eigenständig umzusetzen und echten Mehrwert zu schaffen.</p>\n\n\n\n<p>Zudem arbeitete ich an einer größeren Zahl realer Projekte mit unterschiedlichen Kunden und Anforderungen. Diese Erfahrung war für meine Entwicklung wichtiger als jedes einzelne Tool oder jede Positionsbezeichnung. Mehr Projekte bedeuteten mehr Gespräche, mehr Rahmenbedingungen und mehr Entscheidungen.</p>\n\n\n\n<p>In diesem Sinne war WordPress für mich nicht nur ein Werkzeug. Es half mir, über die Rolle des Designers und Developers hinauszuwachsen, Probleme zu verstehen, Ergebnisse zu liefern und über einzelne Aufgaben hinauszudenken.</p>\n\n\n\n<div class=\"wp-block-group has-background is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-fc43baa9 wp-block-group-is-layout-flex\" id=\"desktop\">\n<h2 class=\"kt-adv-heading8405_30ba8f-7b wp-block-kadence-advancedheading\" id=\"work-environment\">Edo’s Work Environment</h2>\n\n\n\n<p>We asked Edo for a view into his development life and this is what he sent!</p>\n\n\n <div class=\"hotspots-image-container\">\n <img alt=\"Edo’s Desk\" class=\"hotspots-image skip-lazy\" height=\"1536\" src=\"https://heropress.com/wp-content/uploads/2026/02/edo-work-area.webp\" width=\"2048\" />\n </div>\n\n\n\n\n<p class=\"has--font-size\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div>\n<p>The post <a href=\"https://heropress.com/essays/finding-autonomy-through-wordpress/\">Finding autonomy through WordPress</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Feb 2026 07:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Edo Begagić\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Open Channels FM: How Instant Access to Information Has Changed Patience and Learning\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=115203\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://openchannels.fm/how-instant-access-to-information-has-changed-patience-and-learning/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:188:\"A reflection on the internet\'s impact on patience and learning. It highlights how instant answers have reshaped our experiences, often sacrificing depth for speed in knowledge acquisition.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Feb 2026 13:01:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Open Channels FM: Start With Content, Even If the Plan Is Messy\";s:7:\"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:34:\"https://openchannels.fm/?p=1492852\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://openchannels.fm/start-with-content-even-if-the-plan-is-messy/\";s: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:90:\"The worst thing you can do is wait until everything is perfect before publishing anything.\";s: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, 23 Feb 2026 09:44:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: Claude &amp; Sonos\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=151297\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2026/02/claude-sonos/\";s: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:1795:\"<p class=\"wp-block-paragraph\">Tonight was one of my most surreal Claude Code Sundays. To make a long story short, I pointed Claude Code at my <a href=\"https://www.sonos.com/\">Sonos</a> setup in Houston: “All 29 Sonos speakers were running on WiFi with SonosNet completely disabled. They had accumulated ~89 million dropped packets across the system. That packet loss is why groups kept falling apart – Sonos grouping requires tight sync between speakers, and the WiFi was too congested to deliver it.”</p>\n\n\n\n<p class=\"wp-block-paragraph\">We had a wild rollercoaster where at one point it bricked several of my devices (green LED), got mixed up on some groupings being a home theater, and sent me all around the house plugging things in to ethernet or not. At one point, I was certain I’d have to redo everything from scratch. Then we came back and everything worked, I asked, “What song should we play to celebrate this accomplishment?”</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Ha – has to be “The Chain” by Fleetwood Mac. Seems fitting given we just spent the evening fixing one. Want me to queue it up on the Gym/Office?</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">It then failed horribly at trying to play that song, then, because it thought the speakers were re-meshing, it tried to play it on outdoor speakers, which would have surprised my neighbors at midnight. I ended up picking the song manually, and I must say it’s quite nice. I see why it’s easy to fall in love with these things, because the variable positive reinforcement slot machine cowboy hacking is honestly more fun than if it had just gotten it right on the first try.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Feb 2026 07:58:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Gutenberg Times: Interactivity API, WordPress 7.0 Beta and Telex updates — Weekend Edition 358\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=44400\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://gutenbergtimes.com/interactivity-api-wordpress-7-0-beta-and-telex-updates-weekend-edition-358/\";s: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:18691:\"<p class=\"wp-block-paragraph\">Greetings from snow-covered Munich — or at least it was when we left Friday for Salzburg, Austria, with a one-hour delay after our locomotive engineer got caught in the city’s snow-induced chaos. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Have a fabulous weekend! </p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This week, <a href=\"https://wordpress.org/news/2026/02/wordpress-7-0-beta-1/\"><strong>WordPress 7.0 Beta 1</strong></a> is ready for your testing on a staging or local site, please, not your live site. You can jump in via the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin,</a> a direct zip download, WP-CLI, or instantly through <a href=\"https://playground.wordpress.net/?php=8.3&wp=beta&networking=no&language=&multisite=no&random=r8nny4q18x\">WordPress Playground</a> in your browser. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The most important feature coming to WordPress 7.0 is real-time collaboration, when more than one person can edit a post or page. Even for a single-person blogger this might be helpful when the proofreading buddy and the photographer can also be involved in editing different parts of a post. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The final release is scheduled for April 9, 2026. Bugs go to the Alpha/Beta support forums or Trac — your testing genuinely shapes what ships. The release post also has an overview of the other features coming to WordPress 7.0, there are quite a lot. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v22.6.0-rc.1\">Gutenberg 22.6 RC1</a> </strong>is also available for testing. Once released it introduces a new Icon block, lightbox support for the Gallery block (a personal favorite of mine), and renames the Verse block to Poetry. Next to improvements to the Navigation overlay and block visibility controls, it also features a new approach to revisions with visual change tracking and block awareness. The final release is planned for February 25, 2026.</p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-127-wordpress-7-0-beta/\">Gutenberg Changelog #127 – WordPress 7.0 Beta and Gutenberg 22.6</a> with special guest <strong>Jessica Lyschik</strong>, senior developer at Greyd</p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Jessica Lyschik and Birgit Pauli-Haack recording Gutenberg changelog episode number 127\" class=\"wp-image-44548\" height=\"184\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/02/Screenshot-2026-02-27-at-12.47.56.png?resize=652%2C184&ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Content for AI is a hot topic for news sites, especially since they rely on those ad views and sponsored posts, and AI is pulling snippets from their content. It’s a tough situation, and many sites are working hard to keep AI bots from crawling their pages. But here’s the thing: AI really loves quality, long-form content. If your site serves up unique, quality stuff for humans, then it’s also going to catch the attention of AI systems looking to help users with their questions. </p>\n\n\n\n<p class=\"wp-block-paragraph\">If your site fits the bill, <strong>Maddy Osman</strong> has put together <a href=\"https://wordpress.com/blog/2026/02/16/ai-search-engine-optimization-wordpress/\"><strong>9 Steps to Prepare Your WordPress Site for AI Search Engines</strong></a> as a practical guide for the era of ChatGPT and Google’s AI Mode. The good news: WordPress already has most of what AI systems need. You’ll learn to write answer-first content, use structured blocks, add schema markup, and manage your <code>robots.txt</code> — small, actionable tweaks that help your site surface in both traditional and AI-generated search results.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jamie Marsland</strong> built a plugin for block theme to manage beautiful sticky header variations. He demos it in the video <strong><a href=\"https://www.youtube.com/watch?v=VcLu9sRg1U4\">This Sticky Header Trick Makes WordPress Sites Look Incredible!</a></strong> If you are interested in the free plugin you get it on the <a href=\"https://www.pootlepress.com/sticky/\">website</a>.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n<div class=\"ng-block-4d96537bcb11bf26 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-9edc8df9f060b001 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">“Keeping up with Gutenberg—Index – Index 2025”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-eb280c208dfc272a wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Carolina Nymark</strong> published two companion lessons on her Full Site Editing resource site. The <strong><a href=\"https://fullsiteediting.com/lessons/block-bindings-api/\">Block Bindings API guide</a> </strong>walks you through connecting dynamic data—post meta, custom sources, and more—to core blocks like paragraphs, images, and buttons, potentially saving you from building custom blocks altogether. In her <a href=\"https://fullsiteediting.com/lessons/block-hooks-api/\"><strong>Block Hooks API lesson</strong></a>, she shows you how plugins can automatically insert blocks into templates and patterns using PHP filters, with practical examples including WooCommerce and context-aware placement.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">In the latest article on the WordPress Developer, I show you exactly <a href=\"https://developer.wordpress.org/news/2026/02/how-to-add-custom-entries-to-the-editor-preview-dropdown/\"><strong>How to add custom entries to the editor Preview dropdown</strong></a>. Using the <code>PluginPreviewMenuItem</code> component from <code>@wordpress/editor</code>, you can extend the Preview menu with your own options — the tutorial walks you through building a “Social Card Preview” to show how to add an entry and serve up a modal for content. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Paulo Carvajal</strong> dives deep into <a href=\"https://wp-block-editor.com/building-dynamic-lists-and-collections-with-data-wp-each/\"><strong>Building Dynamic Lists and Collections with data-wp-each</strong></a> on WP Block Editor. The <code>data-wp-each</code> directive from the Interactivity API lets you build reactive lists — product catalogues, task lists, feeds — that update automatically when state changes, no manual DOM manipulation needed. You’ll learn how to coordinate PHP server-side rendering with JavaScript-derived state and implement advanced patterns like filtering, sorting, and pagination following WordPress best practices.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher</strong> gave a talk at <em>WordCamp Sofia</em> titled <strong><a href=\"https://wordpress.tv/2026/02/14/from-static-to-dynamic-mastering-the-interactivity-api/\">From Static to Dynamic: Mastering the Interactivity APIn the Interactivity API</a>.</strong> With the arrival of the <strong>I</strong>nteractivity API, WordPress offers a native, declarative way to add client-side behavior to blocks using directives like <code>data-wp-on–click</code>, <code>data-wp-bind</code>, and <code>data-wp-context</code>. Developers can define reactive behavior, state management, and side effects—all while staying in the WordPress stack. The talk’s recording just appeared on WordPressTV. It’s a well-rounded introduction to the Interactivity API with real-life examples.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"ai-and-wordpress\">AI and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Semiha Kocer</strong> shares the latest <strong><a href=\"https://wordpress.com/blog/2026/02/19/february-telex-updates/\">Telex updates</a> </strong>from WordPress.com’s AI-powered block creation tool, launched last August. The two headline features are </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>upload reference images</strong> — a Figma mockup, a screenshot, or even a napkin sketch — alongside your prompt to guide complex layouts.</li>\n\n\n\n<li><strong>download your block</strong>, edit it in your favorite code editor, and bring it back into Telex seamlessly.</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">This week, <strong>Jonathan Bossenger</strong> explored the <strong><a href=\"https://www.youtube.com/watch?v=dCS6WExmCYQ\">WordPress Studio MCP</a> </strong>server, which connects WordPress Studio with AI tools via MCP. He set up MCP in VS Code and then used an AI agent to generate a custom block theme for a small coffee shop selling beans and accessories.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ray Morey</strong> reported on WordPress.com’s launches of a <a href=\"https://www.therepository.email/wordpress-com-launches-built-in-ai-assistant-that-works-in-editor-media-library-and-notes\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>Built-In AI Assistant That Works in Editor, Media Library, and Notes</strong></a>. She notes that in the block editor, users can make plain-language requests — adjust layouts, swap color palettes, rewrite copy — and see changes render in real time. Notes users can tag “@ai” for fact-checks or edits, and the media library gets image generation and editing too. Morey adds that the feature, powered by <em>Google’s Nano Banana</em> models, is available on Business and Commerce plans.</p>\n\n\n<div class=\"ng-block-ef864b172af51608 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-19c6b4a8c0a98944 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-76ef2365c890b368 wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-9fc2a70df5a9a218 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-eab7370e77cb4744 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-c736be2b3b681270 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 Feb 2026 12:52:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 13 Mar 2026 12:57:49 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Fri, 13 Mar 2026 12:45:21 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}s:5:\"build\";i:1760643936;s:21:\"cache_expiration_time\";i:1773449880;s:23:\"__cache_expiration_time\";i:1773449880;}','off');
INSERT INTO `wp_options` VALUES (1710,'_transient_timeout_dash_v2_01e18dead815ce736e3b9cccfbd773a5','1773449880','off');
INSERT INTO `wp_options` VALUES (1711,'_transient_dash_v2_01e18dead815ce736e3b9cccfbd773a5','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://br.wordpress.org/2026/03/12/wordpress-7-0-beta-5/\'>WordPress 7.0 Beta 5</a></li><li><a class=\'rsswidget\' href=\'https://br.wordpress.org/2026/03/11/wordpress-6-9-4-atualizacao-de-seguranca/\'>WordPress 6.9.4 – Atualização de segurança</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2026/03/hdb630/\'>Matt: New Headphones</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2026/03/selling-your-company/\'>Matt: Selling Your Company</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2026/03/tumblr-unblocked/\'>Matt: Tumblr Unblocked</a></li></ul></div>','off');
INSERT INTO `wp_options` VALUES (1712,'_site_transient_timeout_theme_roots','1773408752','off');
INSERT INTO `wp_options` VALUES (1713,'_site_transient_theme_roots','a:5:{s:18:\"mr-oculos-template\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','off');
INSERT INTO `wp_options` VALUES (1714,'_site_transient_timeout_wp_remote_block_patterns_1c55b12e612fc94fa521c95ec260fcaf','1773410562','off');
INSERT INTO `wp_options` VALUES (1715,'_site_transient_wp_remote_block_patterns_1c55b12e612fc94fa521c95ec260fcaf','a:51:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:623804;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2291:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-bbbc119a wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-8eb0bdf3 is-layout-flow wp-container-core-group-is-layout-bf4059b8 wp-block-group-is-layout-flow\">\n<p class=\"wp-container-content-aeb25491 wp-block-paragraph\" style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let ‘em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Comprar agora</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-layout-flow wp-container-core-group-is-layout-a806e4b5 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-right has-black-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>‘EM<br>Roll</p>\n\n\n\n<p class=\"has-text-align-right has-white-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:0:\"\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3731:\"<!-- wp:cover {\"customOverlayColor\":\"#e68b14\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"320px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"330px\"},\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.4\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"}}} -->\n<p style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"36px\",\"right\":\"36px\"}},\"border\":{\"radius\":\"0px\",\"top\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"right\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"bottom\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"left\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"}}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Comprar agora</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>\'EM<br>Roll</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:623810;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1781:\"\n<div class=\"wp-block-cover alignfull wp-duotone-rgb4448102-ffb23d-1\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-a806e4b5 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center has-text-color wp-block-paragraph\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n\n\n\n<p class=\"has-text-align-center has-text-color wp-block-paragraph\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n\n\n\n<div style=\"height:48px\" 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-36078703 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Comprar agora</a></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:0:\"\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2824:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\",\"id\":334,\"dimRatio\":90,\"customOverlayColor\":\"#2c3066\",\"minHeight\":50,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(44, 48, 102)\",\"#ffb23d\"]}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ffb23d\",\"text\":\"#2c3066\"},\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"20px\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Comprar agora</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:623818;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:942:\"\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-73e98c27 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:43:\"gallery, images, colunas, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:0:\"\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:622161;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3287:\"\n<div class=\"wp-block-group alignfull has-background is-layout-constrained wp-container-core-group-is-layout-6cf33c04 wp-block-group-is-layout-constrained\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-b572c875 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-b4f291b5 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left wp-block-paragraph\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">busca</p>\n\n\n<form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\" ><label class=\"wp-block-search__label screen-reader-text\" for=\"wp-block-search__input-2\" >Search</label><div class=\"wp-block-search__inside-wrapper\" style=\"width: 100%\"><input class=\"wp-block-search__input\" id=\"wp-block-search__input-2\" placeholder=\"\" value=\"\" type=\"search\" name=\"s\" required style=\"border-width: 1px\"/><button aria-label=\"Search\" class=\"wp-block-search__button has-icon wp-element-button\" type=\"submit\" style=\"border-width: 1px\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n <path d=\"M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z\"></path>\n </svg></button></div></form></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-8f3b73a3 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bd946717 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left wp-block-paragraph\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">social</p>\n\n\n\n<div class=\"wp-block-group has-small-font-size is-vertical is-content-justification-left is-layout-flex wp-container-core-group-is-layout-53054535 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\"><a href=\"#\">Facebook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Instagram</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Twitter</a></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1></div>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3253:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}},\"color\":{\"background\":\"#00000008\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|60\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">busca</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":[]},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:622165;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3111:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-ea752118 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-vertical is-layout-flex wp-container-core-group-is-layout-79ad9e6d wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1>\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size wp-block-paragraph\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-layout-flex wp-container-core-group-is-layout-735f15fc wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bd946717 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left wp-block-paragraph\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation is-content-justification-left is-nowrap is-layout-flex wp-container-core-navigation-is-layout-4d6072d6 wp-block-navigation-is-layout-flex\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bd946717 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left wp-block-paragraph\">social</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-core-group-is-layout-53054535 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\"><a href=\"#\">Facebook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Instagram</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|50\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:623257;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1484:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What’s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Saiba mais</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:0:\"\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Saiba mais</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:623261;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:10:\"cabeçalho\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We’re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:514958;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Intro area with heading and image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1726:\"\n<div class=\"wp-block-group alignfull is-content-justification-center is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0\">\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-layout-flow wp-block-group-is-layout-flow\">\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-core-columns-is-layout-f40d6e23 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-content-justification-left is-layout-constrained wp-container-core-column-is-layout-b7e24cf4 wp-block-column-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:40%\">\n<p class=\"wp-block-paragraph\">Exploring life’s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://pd.w.org/2023/07/44364b18862589f06.53436652.jpg\" alt=\"\" style=\"aspect-ratio:16/9;object-fit:cover\" /></figure>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:4:\"hero\";s:16:\"wpop_description\";s:93:\"Two columns of text, left with a heading and right with a paragraph, with a wide image below.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.5\";s:25:\"wpop_contains_block_types\";s:111:\"core/button,core/buttons,core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"about\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2422:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Contents\"},\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"450px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:40%\"><!-- wp:paragraph -->\n<p>Exploring life\'s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"aspectRatio\":\"16/9\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2023/07/44364b18862589f06.53436652.jpg\" alt=\"\" style=\"aspect-ratio:16/9;object-fit:cover\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:309935;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Centered image with two-tone background color\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1330:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-layout-constrained wp-container-core-group-is-layout-50c52e0b wp-block-group-is-layout-constrained\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default wp-duotone-000000-ffffff-3\"><img decoding=\"async\" src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:18:\"Gradient, Two-Tone\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:57:\"core/cover,core/group,core/heading,core/image,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2134:\"<!-- wp:cover {\"minHeight\":66,\"minHeightUnit\":\"vh\",\"customGradient\":\"linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"600px\",\"wideSize\":\"1200px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"#ffffff\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"50px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"32px\",\"lineHeight\":\"1\"},\"spacing\":{\"padding\":{\"left\":\"32px\"}}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:309925;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:43:\"Fullwidth Dark Banner with Heading Top Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1103:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-9dc1a525 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family wp-block-paragraph\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:16:\"Jazz, Fulllwidth\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1697:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\",\"id\":333,\"dimRatio\":90,\"customOverlayColor\":\"#141414\",\"focalPoint\":{\"x\":0.5,\"y\":0},\"minHeight\":50,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top left\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"fontStyle\":\"italic\",\"fontWeight\":\"900\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\",\"textTransform\":\"none\"},\"color\":{\"text\":\"#d8a557\"}},\"fontFamily\":\"source-serif-pro\"} -->\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:309230;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:44:\"Fullwidth cover with repeating gradient text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1826:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-36345d-abaaaa-4\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-e59d9123 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:48:\"Fullwidth, Background Image, Gradient, Uppercase\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3135:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\",\"id\":334,\"dimRatio\":60,\"customOverlayColor\":\"#c2b7a4\",\"focalPoint\":{\"x\":0.5,\"y\":0.05},\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#36345d\",\"#abaaaa\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#c8c4d3\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#ac94b2\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#71689c\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#444178\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:309224;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2286:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-bbbc119a wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-8eb0bdf3 is-layout-flow wp-container-core-group-is-layout-bf4059b8 wp-block-group-is-layout-flow\">\n<p class=\"wp-container-content-aeb25491 wp-block-paragraph\" style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let ‘em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-layout-flow wp-container-core-group-is-layout-a806e4b5 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-right has-black-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>‘EM<br>Roll</p>\n\n\n\n<p class=\"has-text-align-right has-white-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3726:\"<!-- wp:cover {\"customOverlayColor\":\"#e68b14\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"320px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"330px\"},\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.4\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"}}} -->\n<p style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"36px\",\"right\":\"36px\"}},\"border\":{\"radius\":\"0px\",\"top\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"right\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"bottom\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"left\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"}}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>\'EM<br>Roll</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:309236;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:60:\"Fullwidth headline with links and gradient offset background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2127:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-385e35e4 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-layout-flow wp-container-core-group-is-layout-a806e4b5 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color wp-elements-45f800048fc9de7cd05017eb73b2d5ab wp-block-paragraph\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-9dbf05af is-layout-flow wp-container-core-group-is-layout-bf4059b8 wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-9d49bf4d wp-block-group-is-layout-flex\">\n<p class=\"has-white-color has-text-color has-link-color wp-elements-fcaed05d2b63cfab14801929208209cc wp-block-paragraph\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n\n\n\n<p class=\"has-white-color has-text-color has-link-color wp-elements-9052d836cb5172aae9b2f2bc27ee61c0 wp-block-paragraph\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">→</span> </p>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:41:\"Offset, Gradient, Jazz, Headline, Feature\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3195:\"<!-- wp:cover {\"customGradient\":\"linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"5vw\",\"bottom\":\"48px\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"172px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.7\",\"letterSpacing\":\"-10px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"400px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"260px\"} -->\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:308937;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Heading, Paragraph, Button with Two Images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2701:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-layout-flex wp-container-core-group-is-layout-7171c4da wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group alignwide wp-container-content-ceb7f5b3 is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-5bff1107 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-contrast-color has-text-color wp-block-paragraph\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-950bf021 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-eeafa4e7 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-0733e5d0 is-layout-flow wp-block-group-is-layout-flow\">\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-0733e5d0 wp-duotone-rgb000-rgb21788120-5\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-0733e5d0 wp-duotone-rgb000-rgb21788120-6\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4102:\"<!-- wp:cover {\"customOverlayColor\":\"#eb4c77\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"6vw\",\"right\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"none\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"0.9\"}},\"textColor\":\"contrast\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"8vw\"} -->\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:308949;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1776:\"\n<div class=\"wp-block-cover alignfull wp-duotone-rgb4448102-ffb23d-7\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-a806e4b5 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center has-text-color wp-block-paragraph\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n\n\n\n<p class=\"has-text-align-center has-text-color wp-block-paragraph\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n\n\n\n<div style=\"height:48px\" 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-36078703 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2819:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\",\"id\":334,\"dimRatio\":90,\"customOverlayColor\":\"#2c3066\",\"minHeight\":50,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(44, 48, 102)\",\"#ffb23d\"]}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ffb23d\",\"text\":\"#2c3066\"},\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"20px\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:308924;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Offset bold paragraph text with varying opacity\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1734:\"\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-662885f9 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-text-color wp-block-paragraph\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n\n\n\n<p class=\"has-text-align-left has-text-color wp-block-paragraph\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature’s best…</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-text-color wp-block-paragraph\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3052:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"700px\",\"contentSize\":\"700px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"120px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffff61\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffff73\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffffad\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature\'s best…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffffd1\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"162px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#fffffff5\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:308916;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Offset text with a brutalist design vibe\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1512:\"\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-6d71ef12 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-black-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n\n\n\n<p class=\"has-text-align-right has-black-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n\n\n\n<p class=\"has-text-align-center has-text-color wp-block-paragraph\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2631:\"<!-- wp:cover {\"customOverlayColor\":\"#ffb43c\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"1200px\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"200\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.9\"},\"color\":{\"text\":\"#a65a00\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:308901;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Fullscreen image with right content area\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2154:\"\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-flex wp-container-core-group-is-layout-b1a298a6 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large wp-container-content-0733e5d0\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n\n\n\n<div class=\"wp-block-group alignwide wp-container-content-9cfa9a5a is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-5bff1107 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color wp-block-paragraph\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-950bf021 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3261:\"<!-- wp:cover {\"customOverlayColor\":\"#376a23\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"80px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"lineHeight\":\"1.0\"}},\"textColor\":\"black\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:308871;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Cover Image with Bold Heading and Button, Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1620:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-094850-f9644e-9\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-72694e06 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-950bf021 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline is-style-outline--8\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2443:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#094850\",\"#f9644e\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"75%\",\"justifyContent\":\"left\",\"wideSize\":\"75%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:308868;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Image with Bold Heading and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1630:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-rgb4247103-rgb21419442-11\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-08424862 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-core-buttons-is-layout-d9d2fa6c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline is-style-outline--10\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2449:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(42, 47, 103)\",\"rgb(214, 194, 42)\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:303828;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:942:\"\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-73e98c27 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:43:\"gallery, images, columns, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:277265;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth posts with uppercase titles\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:498:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:30:\"star, posts, loop, blog, index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and start accents.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:182:\"core/group,core/paragraph,core/post-date,core/post-template,core/post-terms,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3502:\"<!-- wp:query {\"queryId\":31,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:post-template {\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"1px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"16px\",\"bottom\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>✴︎</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"M j, Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-terms {\"term\":\"category\",\"prefix\":\"✴︎ \",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"bottom\":\"var:preset|spacing|70\",\"right\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.1\",\"textTransform\":\"uppercase\",\"fontSize\":\"5.2rem\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"right\":\"16px\",\"left\":\"16px\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<!-- wp:query-pagination-previous {\"label\":\"Previous\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:query-pagination-next {\"label\":\"Next\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:277127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Fullwidth posts titles with dates\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:637:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:31:\"Posts, Query, Loop, Blog, Index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and numeral dates.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:151:\"core/group,core/post-date,core/post-template,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3583:\"<!-- wp:query {\"queryId\":1,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:post-template {\"align\":\"full\",\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"4px\"}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"m.j\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /-->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"4.6rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\"}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<!-- wp:query-pagination-previous {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n\n<!-- wp:query-pagination-next {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4761:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color wp-elements-a5c55c350363e1349d710a58148fd7b6 is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-8c9d081f wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size is-style-default wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Logo do site\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-8500967d37da86b97bb53ecc0a52ca72 wp-block-site-title has-text-color has-white-color has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1></div>\n\n\n<nav class=\"has-text-color has-white-color is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 2\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container\" id=\"modal-12\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-12-content\">\n <ul class=\"wp-block-navigation__container has-text-color has-white-color is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n\n\n\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2554:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":50,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":50,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"white\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"textColor\":\"white\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"33vw\"} -->\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3937:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-602186720dd7d9bef283ca8cacce4883 is-layout-constrained wp-container-core-group-is-layout-9f34fe8c wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Logo do site\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-141496dd038caa4dcf40174bef55cbbe wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1></div>\n\n\n\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 3\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container\" id=\"modal-13\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-13-content\">\n <ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1497:\"<!-- wp:group {\"metadata\":{\"categories\":[\"header\",\"wireframe\"],\"patternName\":\"core/simple-header-with-dark-background\",\"name\":\"Simple header with dark background\"},\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3613:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-9f34fe8c wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-b411fb28 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-elements-74d9c587c704a765f018836daab4c876 wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1>\n\n<p class=\"wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 4\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container\" id=\"modal-14\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-14-content\">\n <ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:966:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4217:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-7479bd1e590756c4aa927894dbdbef4e is-layout-constrained wp-container-core-group-is-layout-9f34fe8c wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-b56d9725 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Logo do site\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bfed54d0 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-elements-d6577b4021234b9631cf15d9d1fea330 wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1>\n\n<p class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n<nav class=\"has-small-font-size is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 5\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container\" id=\"modal-15\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-15-content\">\n <ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-right wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1389:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:36:\"Fullwidth site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3344:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-e0434f7bbe3c9d87e2f1562e19b734da is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-50016974 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1>\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 6\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open always-shown\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container hidden-by-default\" id=\"modal-16\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-16-content\">\n <ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:794:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title /-->\n\n<!-- wp:navigation {\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Fullwidth header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4745:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-1d00eaaa wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-b56d9725 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Logo do site\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bfed54d0 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-elements-f7ec64f471b5bfcc0be230aa4daa838e wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1></div>\n</div>\n\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 7\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container\" id=\"modal-17\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-17-content\">\n <ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2566:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":0,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":40,\"minHeightUnit\":\"vw\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3745:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-9f34fe8c wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-b56d9725 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Logo do site\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-74d9c587c704a765f018836daab4c876 wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 8\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container\" id=\"modal-18\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-18-content\">\n <ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1021:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3683:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-da0445ef wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-3448b7a1 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Logo do site\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-7b215d308770124d58b518591412dff8 wp-block-site-title has-text-color has-contrast-color has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1>\n\n<nav class=\"is-responsive items-justified-center wp-block-navigation is-content-justification-center is-layout-flex wp-container-core-navigation-is-layout-517857a4 wp-block-navigation-is-layout-flex\" aria-label=\" 9\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container\" id=\"modal-19\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-19-content\">\n <ul class=\"wp-block-navigation__container is-responsive items-justified-center wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:926:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3451:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-4b5a1e7a31f9f44eaeb3ab45e5ae60f1 is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-50016974 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1>\n\n<nav class=\"has-large-font-size is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 10\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container\" id=\"modal-20\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-20-content\">\n <ul class=\"wp-block-navigation__container has-large-font-size is-responsive items-justified-right wp-block-navigation has-large-font-size\"><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:811:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title {\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4268:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-bd7dfa5a wp-block-group-is-layout-flex\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-4dc8b8ac wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center wp-block-paragraph\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-core-social-links-is-layout-0ed9dbc8 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:82:\"Centered footer with the sentence \"Proudly powered by WordPress\" and social links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1495:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"30vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3290:\"\n<div class=\"wp-block-group alignfull has-background is-layout-constrained wp-container-core-group-is-layout-6cf33c04 wp-block-group-is-layout-constrained\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-b572c875 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-b4f291b5 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left wp-block-paragraph\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n\n\n<form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\" ><label class=\"wp-block-search__label screen-reader-text\" for=\"wp-block-search__input-21\" >Search</label><div class=\"wp-block-search__inside-wrapper\" style=\"width: 100%\"><input class=\"wp-block-search__input\" id=\"wp-block-search__input-21\" placeholder=\"\" value=\"\" type=\"search\" name=\"s\" required style=\"border-width: 1px\"/><button aria-label=\"Search\" class=\"wp-block-search__button has-icon wp-element-button\" type=\"submit\" style=\"border-width: 1px\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n <path d=\"M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z\"></path>\n </svg></button></div></form></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-8f3b73a3 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bd946717 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left wp-block-paragraph\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n\n\n\n<div class=\"wp-block-group has-small-font-size is-vertical is-content-justification-left is-layout-flex wp-container-core-group-is-layout-53054535 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\"><a href=\"#\">Facebook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Instagram</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Twitter</a></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1></div>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3254:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}},\"color\":{\"background\":\"#00000008\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|60\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":[]},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:913:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-container-core-group-is-layout-889d818a wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1></div>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1095:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3634:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-container-core-group-is-layout-889d818a wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"has-small-font-size is-responsive items-justified-left wp-block-navigation is-content-justification-left is-layout-flex wp-container-core-navigation-is-layout-e1d7bd4a wp-block-navigation-is-layout-flex\" aria-label=\" 11\" \n data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Abrir menu\" class=\"wp-block-navigation__responsive-container-open\" \n data-wp-on--click=\"actions.openMenuOnClick\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n ><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container\" id=\"modal-22\" \n data-wp-class--has-modal-open=\"state.isMenuOpen\"\n data-wp-class--is-menu-open=\"state.isMenuOpen\"\n data-wp-watch=\"callbacks.initMenu\"\n data-wp-on--keydown=\"actions.handleMenuKeydown\"\n data-wp-on--focusout=\"actions.handleMenuFocusout\"\n tabindex=\"-1\"\n >\n <div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n <div class=\"wp-block-navigation__responsive-dialog\" \n data-wp-bind--aria-modal=\"state.ariaModal\"\n data-wp-bind--aria-label=\"state.ariaLabel\"\n data-wp-bind--role=\"state.roleAttribute\"\n >\n <button aria-label=\"Fechar menu\" class=\"wp-block-navigation__responsive-container-close\" \n data-wp-on--click=\"actions.closeMenuOnClick\"\n ><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n <div class=\"wp-block-navigation__responsive-container-content\" \n data-wp-watch=\"callbacks.focusFirstElement\"\n id=\"modal-22-content\">\n <ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-left wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n \n </div>\n </div>\n </div>\n </div></nav></div>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1174:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Fullwidth footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3235:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8d0170a0199cafe7fbcba6c0b4dac464 is-vertical is-content-justification-stretch is-layout-flex wp-container-core-group-is-layout-8f544b26 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-columns alignwide has-small-font-size is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center wp-block-paragraph\">Location</p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center wp-block-paragraph\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-center is-vertical no-wrap wp-block-navigation is-content-justification-center is-nowrap is-layout-flex wp-container-core-navigation-is-layout-f78a169d wp-block-navigation-is-layout-flex\" aria-label=\" 12\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-center is-vertical no-wrap wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center wp-block-paragraph\">Follow us</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-36971928 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\"><a href=\"#\">Facebook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Instagram</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-core-group-is-layout-5bbf7c30 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:78:\"core/column,core/columns,core/group,core/navigation,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3225:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"40vh\"}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:columns {\"align\":\"wide\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-columns alignwide has-small-font-size\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Location</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Follow us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4177:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-bd7dfa5a wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><div style=\"margin-bottom:6px;\" class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Logo do site\"></span></div>\n\n\n<p class=\"has-text-align-center has-medium-font-size wp-block-paragraph\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-core-social-links-is-layout-0b9dcabe wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-facebook wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/paragraph,core/site-logo,core/social-link,core/social-links\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1532:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"40vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:site-logo {\"align\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"6px\"}}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"12px\",\"left\":\"12px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"wordpress\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullwidth footer with navigation, credit, and social\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4685:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignfull has-small-font-size is-content-justification-space-between is-nowrap is-layout-flex wp-container-core-group-is-layout-477afd24 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size wp-container-content-b0223bd5\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1>\n\n\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-7c09a6da wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only wp-container-content-b0223bd5 is-content-justification-right is-nowrap is-layout-flex wp-container-core-social-links-is-layout-31c4c88e wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:87:\"Footer with site title on the left, credit in the middle and social links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:76:\"core/group,core/paragraph,core/site-title,core/social-link,core/social-links\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1869:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"nowrap\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group alignfull has-small-font-size\"><!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"12px\"}},\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3128:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-ea752118 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-vertical is-layout-flex wp-container-core-group-is-layout-79ad9e6d wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1>\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size wp-block-paragraph\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-layout-flex wp-container-core-group-is-layout-735f15fc wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bd946717 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left wp-block-paragraph\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation is-content-justification-left is-nowrap is-layout-flex wp-container-core-navigation-is-layout-4d6072d6 wp-block-navigation-is-layout-flex\" aria-label=\" 13\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\" href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bd946717 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left wp-block-paragraph\">Social</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-core-group-is-layout-53054535 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\"><a href=\"#\">Facebook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Instagram</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|50\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1358:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3680:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-f19201c6 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-493f451d wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-886db315 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. <em>Art</em> is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-90cda669 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man’s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:4:{i:0;s:7:\"columns\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";i:3;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. <em>Art</em> is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2353:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size wp-block-paragraph\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size wp-block-paragraph\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1484:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What’s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:44;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:765:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris (American, 1901-1942)</p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris (American, 1901-1942)</p>\n<!-- /wp:paragraph --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:45;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:630:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size wp-block-paragraph\"><a href=\"#\">See case study <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">↗</span></a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:46;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1596:\"\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline is-style-outline--23\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:47;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1388:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:48;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We’re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:49;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1600:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband’s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:50;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:571:\"\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped wp-block-gallery-24 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n</figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:23:\"core/gallery,core/image\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:704:\"<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}}','off');
INSERT INTO `wp_options` VALUES (1716,'_site_transient_timeout_wp_remote_block_patterns_1716f7f4e2226b972c6561954e0708bb','1773410563','off');
INSERT INTO `wp_options` VALUES (1717,'_site_transient_wp_remote_block_patterns_1716f7f4e2226b972c6561954e0708bb','a:16:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:623227;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3936:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-2966e5ee wp-block-columns-is-layout-flex\" style=\"margin-bottom:0\">\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-2ae1b943d87d6b5cbc827b8e7de5c343 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size wp-block-paragraph\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for one adult</li>\n\n\n\n<li>One free ticket per special exhibition</li>\n\n\n\n<li>Two single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-b4e85cb052dc87deda0d58c85b30f87b is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Família</strong></h2>\n\n\n\n<p class=\"has-normal-font-size wp-block-paragraph\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Four free tickets per special exhibition</li>\n\n\n\n<li>Four single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-4a86cd4fa1de9230a73a90c7ad305893 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size wp-block-paragraph\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Five free tickets per special exhibition</li>\n\n\n\n<li>Six single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:0:\"\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6127:\"<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"margin-bottom:0\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"single\"} -->\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"style\":{\"color\":{\"background\":\"#000000\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for one adult</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>One free ticket per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Two single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"family\"} -->\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Família</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"patron\"} -->\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Five free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Six single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:623235;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:6:\"Evento\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1769:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group has-link-color wp-elements-71b4a847bbd96313422a1303e9ba41f3 is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-0860918d5b16b9e1778b1966b333b980 wp-block-paragraph\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">→</span></a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:0:\"\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:623261;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:10:\"cabeçalho\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We’re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"pt_BR\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6664:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Padrões</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" 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-36078703 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-core-social-links-is-layout-dd89b5f3 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color:#000000;background-color:#ffffff;\" class=\"wp-social-link wp-social-link-instagram has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color:#000000;background-color:#ffffff;\" class=\"wp-social-link wp-social-link-bandcamp has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color:#000000;background-color:#ffffff;\" class=\"wp-social-link wp-social-link-twitter has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color:#000000;background-color:#ffffff;\" class=\"wp-social-link wp-social-link-twitch has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1010:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"buttons\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3934:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-2966e5ee wp-block-columns-is-layout-flex\" style=\"margin-bottom:0\">\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-2ae1b943d87d6b5cbc827b8e7de5c343 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size wp-block-paragraph\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for one adult</li>\n\n\n\n<li>One free ticket per special exhibition</li>\n\n\n\n<li>Two single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-c860b6260b3b3b7bae640a65db9c9aec is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size wp-block-paragraph\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Four free tickets per special exhibition</li>\n\n\n\n<li>Four single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-4a86cd4fa1de9230a73a90c7ad305893 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size wp-block-paragraph\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Five free tickets per special exhibition</li>\n\n\n\n<li>Six single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6125:\"<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"margin-bottom:0\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"single\"} -->\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"style\":{\"color\":{\"background\":\"#000000\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for one adult</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>One free ticket per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Two single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"family\"} -->\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"patron\"} -->\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Five free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Six single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2385:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p class=\"wp-block-paragraph\" style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size wp-block-paragraph\">– Terry a O’Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p class=\"wp-block-paragraph\" style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size wp-block-paragraph\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"images\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1769:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group has-link-color wp-elements-71b4a847bbd96313422a1303e9ba41f3 is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-0860918d5b16b9e1778b1966b333b980 wp-block-paragraph\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">→</span></a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1952:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px;aspect-ratio:unset;\"><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img loading=\"lazy\" decoding=\"async\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"auto, (max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size wp-block-paragraph\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"images\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Offset images with descriptions\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3150:\"\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-core-columns-is-layout-6cb89fa2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-231d8afb is-vertical is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-bd8ca46f wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<figure class=\"wp-block-image size-large wp-container-content-0733e5d0\"><img loading=\"lazy\" decoding=\"async\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"auto, (max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-dc6934dc wp-block-group-is-layout-flex\">\n<p class=\"has-medium-font-size wp-block-paragraph\"><strong>White Irises</strong></p>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\">Ogawa Kazumasa</p>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-231d8afb is-vertical is-layout-flex wp-container-core-group-is-layout-522a621f wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-dc6934dc wp-block-group-is-layout-flex\">\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\"><strong>Cherry Blossom</strong></p>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\">Ogawa Kazumasa</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img loading=\"lazy\" decoding=\"async\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"auto, (max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:58:\"Two offset columns with images and titles within each one.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:73:\"core/column,core/columns,core/group,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2930:\"<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1783:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1773:\"\n<figure class=\"wp-block-image alignwide size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1642:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3680:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-f19201c6 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-493f451d wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-886db315 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. <em>Art</em> is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-90cda669 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man’s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:4:{i:0;s:7:\"columns\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";i:3;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. <em>Art</em> is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:630:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size wp-block-paragraph\"><a href=\"#\">See case study <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">↗</span></a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1388:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We’re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":10:{s:14:\"_crdt_document\";s:0:\"\";s:31:\"jetpack_post_was_ever_published\";b:0;s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','off');
INSERT INTO `wp_options` VALUES (1722,'_site_transient_timeout_wp_theme_files_patterns-f971cec552fa600924a7664faf8494ec','1773410330','off');
INSERT INTO `wp_options` VALUES (1723,'_site_transient_wp_theme_files_patterns-f971cec552fa600924a7664faf8494ec','a:2:{s:7:\"version\";s:5:\"1.0.0\";s:8:\"patterns\";a:0:{}}','off');
INSERT INTO `wp_options` VALUES (1724,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/pt_BR/wordpress-6.9.4.zip\";s:6:\"locale\";s:5:\"pt_BR\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/pt_BR/wordpress-6.9.4.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.9.4\";s:7:\"version\";s:5:\"6.9.4\";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:1773408680;s:15:\"version_checked\";s:5:\"6.9.4\";s:12:\"translations\";a:0:{}}','off');
INSERT INTO `wp_options` VALUES (1725,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1773408681;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"6.7.1\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.6.7.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:67:\"https://ps.w.org/advanced-custom-fields/assets/icon.svg?rev=3207824\";s:3:\"svg\";s:67:\"https://ps.w.org/advanced-custom-fields/assets/icon.svg?rev=3207824\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=3374528\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=3374528\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:5:\"7.102\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.102.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=3427096\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=3427096\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"ninja-forms/ninja-forms.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/ninja-forms\";s:4:\"slug\";s:11:\"ninja-forms\";s:6:\"plugin\";s:27:\"ninja-forms/ninja-forms.php\";s:11:\"new_version\";s:6:\"3.14.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ninja-forms/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/ninja-forms.3.14.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-256x256.png?rev=1649747\";s:2:\"1x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-128x128.png?rev=1649747\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/ninja-forms/assets/banner-1544x500.png?rev=2069024\";s:2:\"1x\";s:66:\"https://ps.w.org/ninja-forms/assets/banner-772x250.png?rev=2069024\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";}s:35:\"protect-uploads/protect-uploads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:35:\"protect-uploads/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.6.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.6.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.9.5\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.9.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650\";s:3:\"svg\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:39:\"wp-file-manager/file_folder_manager.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-file-manager\";s:4:\"slug\";s:15:\"wp-file-manager\";s:6:\"plugin\";s:39:\"wp-file-manager/file_folder_manager.php\";s:11:\"new_version\";s:5:\"8.0.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-file-manager/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-file-manager.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=2491299\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=2491299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}}s:7:\"checked\";a:8:{s:30:\"advanced-custom-fields/acf.php\";s:5:\"6.7.1\";s:19:\"akismet/akismet.php\";s:3:\"5.6\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:5:\"7.102\";s:9:\"hello.php\";s:5:\"1.7.2\";s:27:\"ninja-forms/ninja-forms.php\";s:6:\"3.14.1\";s:35:\"protect-uploads/protect-uploads.php\";s:5:\"0.6.0\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.9.5\";s:39:\"wp-file-manager/file_folder_manager.php\";s:5:\"8.0.2\";}}','off');
INSERT INTO `wp_options` VALUES (1726,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1773408682;s:7:\"checked\";a:5:{s:18:\"mr-oculos-template\";s:5:\"1.0.0\";s:16:\"twentytwentyfive\";s:3:\"1.4\";s:16:\"twentytwentyfour\";s:3:\"1.4\";s:17:\"twentytwentythree\";s:3:\"1.6\";s:15:\"twentytwentytwo\";s:3:\"2.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:4:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.4.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.4.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.2.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5546 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');
INSERT INTO `wp_postmeta` VALUES (2,3,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (3,5,'_wp_attached_file','2026/01/logo-mr-oculos-NOVO-laranja.png');
INSERT INTO `wp_postmeta` VALUES (4,5,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:144;s:6:\"height\";i:23;s:4:\"file\";s:39:\"2026/01/logo-mr-oculos-NOVO-laranja.png\";s:8:\"filesize\";i:5088;s:5:\"sizes\";a:0:{}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (8,7,'_menu_item_type','post_type');
INSERT INTO `wp_postmeta` VALUES (9,7,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (10,7,'_menu_item_object_id','2');
INSERT INTO `wp_postmeta` VALUES (11,7,'_menu_item_object','page');
INSERT INTO `wp_postmeta` VALUES (12,7,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (13,7,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (14,7,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (15,7,'_menu_item_url','');
INSERT INTO `wp_postmeta` VALUES (17,8,'_menu_item_type','custom');
INSERT INTO `wp_postmeta` VALUES (18,8,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (19,8,'_menu_item_object_id','8');
INSERT INTO `wp_postmeta` VALUES (20,8,'_menu_item_object','custom');
INSERT INTO `wp_postmeta` VALUES (21,8,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (22,8,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (23,8,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (24,8,'_menu_item_url','#');
INSERT INTO `wp_postmeta` VALUES (26,9,'_menu_item_type','custom');
INSERT INTO `wp_postmeta` VALUES (27,9,'_menu_item_menu_item_parent','8');
INSERT INTO `wp_postmeta` VALUES (28,9,'_menu_item_object_id','9');
INSERT INTO `wp_postmeta` VALUES (29,9,'_menu_item_object','custom');
INSERT INTO `wp_postmeta` VALUES (30,9,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (31,9,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (32,9,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (33,9,'_menu_item_url','#');
INSERT INTO `wp_postmeta` VALUES (35,10,'_menu_item_type','custom');
INSERT INTO `wp_postmeta` VALUES (36,10,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (37,10,'_menu_item_object_id','10');
INSERT INTO `wp_postmeta` VALUES (38,10,'_menu_item_object','custom');
INSERT INTO `wp_postmeta` VALUES (39,10,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (40,10,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (41,10,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (42,10,'_menu_item_url','#');
INSERT INTO `wp_postmeta` VALUES (53,12,'_menu_item_type','post_type');
INSERT INTO `wp_postmeta` VALUES (54,12,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (55,12,'_menu_item_object_id','2');
INSERT INTO `wp_postmeta` VALUES (56,12,'_menu_item_object','page');
INSERT INTO `wp_postmeta` VALUES (57,12,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (58,12,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (59,12,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (60,12,'_menu_item_url','');
INSERT INTO `wp_postmeta` VALUES (63,14,'_edit_lock','1773410152:1');
INSERT INTO `wp_postmeta` VALUES (64,14,'_wp_page_template','index.php');
INSERT INTO `wp_postmeta` VALUES (65,14,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (66,16,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (67,16,'_edit_lock','1773406805:1');
INSERT INTO `wp_postmeta` VALUES (68,21,'_wp_attached_file','2026/01/banner_main.png');
INSERT INTO `wp_postmeta` VALUES (69,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:727;s:4:\"file\";s:23:\"2026/01/banner_main.png\";s:8:\"filesize\";i:288424;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"banner_main-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36757;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"banner_main-1024x582.png\";s:5:\"width\";i:1024;s:6:\"height\";i:582;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309317;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"banner_main-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17956;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"banner_main-768x436.png\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183863;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (71,14,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (73,22,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (75,14,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (76,14,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (77,14,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (78,14,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (79,14,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (80,14,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (81,14,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (82,14,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (83,22,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (84,22,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (85,22,'secao_banner_principal_banner_principal_2','');
INSERT INTO `wp_postmeta` VALUES (86,22,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (87,22,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (88,22,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (89,22,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (90,22,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (93,36,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (95,14,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (96,14,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (97,14,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (98,14,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (99,14,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (100,14,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (101,14,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (102,14,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (103,14,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (104,14,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (105,14,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (106,14,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (107,14,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (108,14,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (109,14,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (110,14,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (111,14,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (112,14,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (113,14,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (114,14,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (115,14,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (116,14,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (117,14,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (118,14,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (119,14,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (120,14,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (121,36,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (122,36,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (123,36,'secao_banner_principal_banner_principal_2','');
INSERT INTO `wp_postmeta` VALUES (124,36,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (125,36,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (126,36,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (127,36,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (128,36,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (129,36,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"21\";}');
INSERT INTO `wp_postmeta` VALUES (130,36,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (131,36,'secao_de_beneficios_titulo_beneficio_1','');
INSERT INTO `wp_postmeta` VALUES (132,36,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (133,36,'secao_de_beneficios_texto_beneficio_1','');
INSERT INTO `wp_postmeta` VALUES (134,36,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (135,36,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (136,36,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (137,36,'secao_de_beneficios_titulo_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (138,36,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (139,36,'secao_de_beneficios_texto_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (140,36,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (141,36,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (142,36,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (143,36,'secao_de_beneficios_titulo_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (144,36,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (145,36,'secao_de_beneficios_texto_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (146,36,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (147,36,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (148,36,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (149,36,'secao_de_beneficios_titulo_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (150,36,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (151,36,'secao_de_beneficios_texto_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (152,36,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (153,36,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (154,36,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (155,37,'_wp_attached_file','2026/01/icon-cart.png');
INSERT INTO `wp_postmeta` VALUES (156,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:21:\"2026/01/icon-cart.png\";s:8:\"filesize\";i:501;s:5:\"sizes\";a:0:{}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (161,39,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (163,39,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (164,39,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (165,39,'secao_banner_principal_banner_principal_2','');
INSERT INTO `wp_postmeta` VALUES (166,39,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (167,39,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (168,39,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (169,39,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (170,39,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (171,39,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (172,39,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (173,39,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (174,39,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (175,39,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (176,39,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (177,39,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (178,39,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (179,39,'secao_de_beneficios_titulo_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (180,39,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (181,39,'secao_de_beneficios_texto_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (182,39,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (183,39,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (184,39,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (185,39,'secao_de_beneficios_titulo_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (186,39,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (187,39,'secao_de_beneficios_texto_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (188,39,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (189,39,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (190,39,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (191,39,'secao_de_beneficios_titulo_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (192,39,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (193,39,'secao_de_beneficios_texto_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (194,39,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (195,39,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (196,39,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (197,14,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (198,14,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (199,14,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (200,14,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (201,14,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (202,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (203,14,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (204,14,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (205,14,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (206,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (207,14,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (208,14,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (209,14,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (210,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (211,14,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (212,14,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (213,14,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (214,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (215,14,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (216,14,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (217,14,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (218,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (219,14,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (220,14,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (221,14,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (222,14,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (223,14,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (224,14,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (225,39,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (226,39,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (227,39,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (228,39,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (229,39,'secao_categorias_banner_de_navegacao_banner_navegacao_full','');
INSERT INTO `wp_postmeta` VALUES (230,39,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (231,39,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (232,39,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (233,39,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','');
INSERT INTO `wp_postmeta` VALUES (234,39,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (235,39,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','');
INSERT INTO `wp_postmeta` VALUES (236,39,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (237,39,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','');
INSERT INTO `wp_postmeta` VALUES (238,39,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (239,39,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','');
INSERT INTO `wp_postmeta` VALUES (240,39,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (241,39,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','');
INSERT INTO `wp_postmeta` VALUES (242,39,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (243,39,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','');
INSERT INTO `wp_postmeta` VALUES (244,39,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (245,39,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','');
INSERT INTO `wp_postmeta` VALUES (246,39,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (247,39,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','');
INSERT INTO `wp_postmeta` VALUES (248,39,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (249,39,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (250,39,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (251,39,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (252,39,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (253,55,'_wp_attached_file','2026/01/Armacoes.png');
INSERT INTO `wp_postmeta` VALUES (254,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2416;s:6:\"height\";i:272;s:4:\"file\";s:20:\"2026/01/Armacoes.png\";s:8:\"filesize\";i:116139;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Armacoes-300x34.png\";s:5:\"width\";i:300;s:6:\"height\";i:34;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5367;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Armacoes-1024x115.png\";s:5:\"width\";i:1024;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35970;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Armacoes-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Armacoes-768x86.png\";s:5:\"width\";i:768;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21745;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"Armacoes-1536x173.png\";s:5:\"width\";i:1536;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73241;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"Armacoes-2048x231.png\";s:5:\"width\";i:2048;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122688;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (257,56,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (259,56,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (260,56,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (261,56,'secao_banner_principal_banner_principal_2','');
INSERT INTO `wp_postmeta` VALUES (262,56,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (263,56,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (264,56,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (265,56,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (266,56,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (267,56,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (268,56,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (269,56,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (270,56,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (271,56,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (272,56,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (273,56,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (274,56,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (275,56,'secao_de_beneficios_titulo_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (276,56,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (277,56,'secao_de_beneficios_texto_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (278,56,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (279,56,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (280,56,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (281,56,'secao_de_beneficios_titulo_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (282,56,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (283,56,'secao_de_beneficios_texto_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (284,56,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (285,56,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (286,56,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (287,56,'secao_de_beneficios_titulo_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (288,56,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (289,56,'secao_de_beneficios_texto_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (290,56,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (291,56,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (292,56,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (293,56,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (294,56,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (295,56,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (296,56,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (297,56,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (298,56,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (299,56,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (300,56,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (301,56,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','');
INSERT INTO `wp_postmeta` VALUES (302,56,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (303,56,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','');
INSERT INTO `wp_postmeta` VALUES (304,56,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (305,56,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','');
INSERT INTO `wp_postmeta` VALUES (306,56,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (307,56,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','');
INSERT INTO `wp_postmeta` VALUES (308,56,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (309,56,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','');
INSERT INTO `wp_postmeta` VALUES (310,56,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (311,56,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','');
INSERT INTO `wp_postmeta` VALUES (312,56,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (313,56,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','');
INSERT INTO `wp_postmeta` VALUES (314,56,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (315,56,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','');
INSERT INTO `wp_postmeta` VALUES (316,56,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (317,56,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (318,56,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (319,56,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (320,56,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (323,58,'_wp_attached_file','2026/01/Oculos-Masculino.png');
INSERT INTO `wp_postmeta` VALUES (324,58,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:272;s:4:\"file\";s:28:\"2026/01/Oculos-Masculino.png\";s:8:\"filesize\";i:76532;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Oculos-Masculino-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11154;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Oculos-Masculino-1024x232.png\";s:5:\"width\";i:1024;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85203;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Oculos-Masculino-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7094;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Oculos-Masculino-768x174.png\";s:5:\"width\";i:768;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51279;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (325,59,'_wp_attached_file','2026/01/Oculos-Femininos.png');
INSERT INTO `wp_postmeta` VALUES (326,59,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:272;s:4:\"file\";s:28:\"2026/01/Oculos-Femininos.png\";s:8:\"filesize\";i:92431;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Oculos-Femininos-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12337;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Oculos-Femininos-1024x232.png\";s:5:\"width\";i:1024;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98393;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Oculos-Femininos-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7028;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Oculos-Femininos-768x174.png\";s:5:\"width\";i:768;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57824;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (327,60,'_wp_attached_file','2026/01/Oculos-de-sol.png');
INSERT INTO `wp_postmeta` VALUES (328,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:272;s:4:\"file\";s:25:\"2026/01/Oculos-de-sol.png\";s:8:\"filesize\";i:73452;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Oculos-de-sol-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10794;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Oculos-de-sol-1024x232.png\";s:5:\"width\";i:1024;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203346;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Oculos-de-sol-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6948;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Oculos-de-sol-768x174.png\";s:5:\"width\";i:768;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52002;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (329,61,'_wp_attached_file','2026/01/Oculos-Especiais.png');
INSERT INTO `wp_postmeta` VALUES (330,61,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:272;s:4:\"file\";s:28:\"2026/01/Oculos-Especiais.png\";s:8:\"filesize\";i:94920;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Oculos-Especiais-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13315;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Oculos-Especiais-1024x232.png\";s:5:\"width\";i:1024;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Oculos-Especiais-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6098;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Oculos-Especiais-768x174.png\";s:5:\"width\";i:768;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161283;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (333,62,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (335,62,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (336,62,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (337,62,'secao_banner_principal_banner_principal_2','');
INSERT INTO `wp_postmeta` VALUES (338,62,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (339,62,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (340,62,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (341,62,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (342,62,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (343,62,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (344,62,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (345,62,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (346,62,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (347,62,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (348,62,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (349,62,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (350,62,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (351,62,'secao_de_beneficios_titulo_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (352,62,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (353,62,'secao_de_beneficios_texto_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (354,62,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (355,62,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (356,62,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (357,62,'secao_de_beneficios_titulo_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (358,62,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (359,62,'secao_de_beneficios_texto_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (360,62,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (361,62,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (362,62,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (363,62,'secao_de_beneficios_titulo_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (364,62,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (365,62,'secao_de_beneficios_texto_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (366,62,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (367,62,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (368,62,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (369,62,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (370,62,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (371,62,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (372,62,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (373,62,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (374,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (375,62,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (376,62,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (377,62,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (378,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (379,62,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (380,62,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (381,62,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (382,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (383,62,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (384,62,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (385,62,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (386,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (387,62,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (388,62,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (389,62,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (390,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (391,62,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (392,62,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (393,62,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (394,62,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (395,62,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (396,62,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (397,71,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (398,71,'_edit_lock','1769374326:1');
INSERT INTO `wp_postmeta` VALUES (399,72,'_wp_attached_file','2026/01/marca_kodak.png');
INSERT INTO `wp_postmeta` VALUES (400,72,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:284;s:6:\"height\";i:151;s:4:\"file\";s:23:\"2026/01/marca_kodak.png\";s:8:\"filesize\";i:8449;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"marca_kodak-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7163;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (401,71,'_thumbnail_id','72');
INSERT INTO `wp_postmeta` VALUES (402,73,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (403,73,'_edit_lock','1769374344:1');
INSERT INTO `wp_postmeta` VALUES (404,74,'_wp_attached_file','2026/01/marca_opti.png');
INSERT INTO `wp_postmeta` VALUES (405,74,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:284;s:6:\"height\";i:151;s:4:\"file\";s:22:\"2026/01/marca_opti.png\";s:8:\"filesize\";i:10596;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"marca_opti-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7226;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (406,73,'_thumbnail_id','74');
INSERT INTO `wp_postmeta` VALUES (407,75,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (408,75,'_edit_lock','1769374360:1');
INSERT INTO `wp_postmeta` VALUES (409,76,'_wp_attached_file','2026/01/marca_hoya.png');
INSERT INTO `wp_postmeta` VALUES (410,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:284;s:6:\"height\";i:151;s:4:\"file\";s:22:\"2026/01/marca_hoya.png\";s:8:\"filesize\";i:11034;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"marca_hoya-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8197;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (411,75,'_thumbnail_id','76');
INSERT INTO `wp_postmeta` VALUES (412,77,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (413,77,'_edit_lock','1769374379:1');
INSERT INTO `wp_postmeta` VALUES (414,78,'_wp_attached_file','2026/01/marca_varilux.png');
INSERT INTO `wp_postmeta` VALUES (415,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:284;s:6:\"height\";i:151;s:4:\"file\";s:25:\"2026/01/marca_varilux.png\";s:8:\"filesize\";i:6801;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"marca_varilux-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3843;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (416,77,'_thumbnail_id','78');
INSERT INTO `wp_postmeta` VALUES (417,14,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (418,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (419,14,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (420,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (421,14,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (422,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (423,14,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (424,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (425,14,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (426,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (427,14,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (428,14,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (429,14,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (430,14,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (431,14,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (432,14,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (433,62,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (434,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (435,62,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (436,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (437,62,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (438,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (439,62,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (440,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (441,62,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (442,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (443,62,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (444,62,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (445,62,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (446,62,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (447,62,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (448,62,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (449,80,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (450,80,'_edit_lock','1769982922:1');
INSERT INTO `wp_postmeta` VALUES (451,89,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (452,89,'_edit_lock','1769995618:1');
INSERT INTO `wp_postmeta` VALUES (453,90,'_wp_attached_file','2026/01/image-14.png');
INSERT INTO `wp_postmeta` VALUES (454,90,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:254;s:6:\"height\";i:254;s:4:\"file\";s:20:\"2026/01/image-14.png\";s:8:\"filesize\";i:8159;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"image-14-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4319;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (455,89,'_thumbnail_id','90');
INSERT INTO `wp_postmeta` VALUES (456,89,'preco_do_produto','99,90');
INSERT INTO `wp_postmeta` VALUES (457,89,'_preco_do_produto','field_6976ad9d6b45e');
INSERT INTO `wp_postmeta` VALUES (458,89,'preco_promocional_do_produto','');
INSERT INTO `wp_postmeta` VALUES (459,89,'_preco_promocional_do_produto','field_6976add36b45f');
INSERT INTO `wp_postmeta` VALUES (460,89,'tag_do_produtos','novidade');
INSERT INTO `wp_postmeta` VALUES (461,89,'_tag_do_produtos','field_6976ae7e6b460');
INSERT INTO `wp_postmeta` VALUES (462,89,'mais_vendidos','0');
INSERT INTO `wp_postmeta` VALUES (463,89,'_mais_vendidos','field_6976aeca6b461');
INSERT INTO `wp_postmeta` VALUES (464,89,'mais_desejados','1');
INSERT INTO `wp_postmeta` VALUES (465,89,'_mais_desejados','field_6976af326b462');
INSERT INTO `wp_postmeta` VALUES (466,91,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (467,91,'_edit_lock','1770606352:1');
INSERT INTO `wp_postmeta` VALUES (468,91,'_thumbnail_id','90');
INSERT INTO `wp_postmeta` VALUES (469,91,'preco_do_produto','600,00');
INSERT INTO `wp_postmeta` VALUES (470,91,'_preco_do_produto','field_6976ad9d6b45e');
INSERT INTO `wp_postmeta` VALUES (471,91,'preco_promocional_do_produto','499,99');
INSERT INTO `wp_postmeta` VALUES (472,91,'_preco_promocional_do_produto','field_6976add36b45f');
INSERT INTO `wp_postmeta` VALUES (473,91,'tag_do_produtos','desconto');
INSERT INTO `wp_postmeta` VALUES (474,91,'_tag_do_produtos','field_6976ae7e6b460');
INSERT INTO `wp_postmeta` VALUES (475,91,'mais_vendidos','1');
INSERT INTO `wp_postmeta` VALUES (476,91,'_mais_vendidos','field_6976aeca6b461');
INSERT INTO `wp_postmeta` VALUES (477,91,'mais_desejados','1');
INSERT INTO `wp_postmeta` VALUES (478,91,'_mais_desejados','field_6976af326b462');
INSERT INTO `wp_postmeta` VALUES (479,14,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (480,14,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (481,14,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (482,14,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (483,14,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (484,14,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (485,14,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (486,14,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (487,62,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (488,62,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (489,62,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (490,62,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (491,62,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (492,62,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (493,62,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (494,62,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (495,14,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (496,14,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (497,14,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (498,14,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (499,14,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (500,14,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (501,14,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (502,14,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (503,14,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (504,14,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (505,14,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (506,14,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (507,14,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (508,14,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (509,14,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (510,14,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (511,14,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (512,14,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (513,14,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (514,14,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (515,14,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (516,14,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (517,14,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (518,14,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (519,14,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (520,14,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (521,62,'secao_mosaico_de_banner_banner_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (522,62,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (523,62,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (524,62,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (525,62,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (526,62,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (527,62,'secao_mosaico_de_banner_banner_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (528,62,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (529,62,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (530,62,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (531,62,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (532,62,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (533,62,'secao_mosaico_de_banner_banner_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (534,62,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (535,62,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (536,62,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (537,62,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (538,62,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (539,62,'secao_mosaico_de_banner_banner_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (540,62,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (541,62,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (542,62,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (543,62,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (544,62,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (545,62,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (546,62,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (549,111,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (551,14,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (552,14,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (553,14,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (554,14,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (555,14,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (556,14,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (557,111,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (558,111,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (559,111,'secao_banner_principal_banner_principal_2','');
INSERT INTO `wp_postmeta` VALUES (560,111,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (561,111,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (562,111,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (563,111,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (564,111,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (565,111,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (566,111,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (567,111,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (568,111,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (569,111,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (570,111,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (571,111,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (572,111,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (573,111,'secao_de_beneficios_titulo_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (574,111,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (575,111,'secao_de_beneficios_texto_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (576,111,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (577,111,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (578,111,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (579,111,'secao_de_beneficios_titulo_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (580,111,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (581,111,'secao_de_beneficios_texto_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (582,111,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (583,111,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (584,111,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (585,111,'secao_de_beneficios_titulo_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (586,111,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (587,111,'secao_de_beneficios_texto_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (588,111,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (589,111,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (590,111,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (591,111,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (592,111,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (593,111,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (594,111,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (595,111,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (596,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (597,111,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (598,111,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (599,111,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (600,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (601,111,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (602,111,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (603,111,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (604,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (605,111,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (606,111,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (607,111,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (608,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (609,111,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (610,111,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (611,111,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (612,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (613,111,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (614,111,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (615,111,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (616,111,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (617,111,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (618,111,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (619,111,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (620,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (621,111,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (622,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (623,111,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (624,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (625,111,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (626,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (627,111,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (628,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (629,111,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (630,111,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (631,111,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (632,111,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (633,111,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (634,111,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (635,111,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (636,111,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (637,111,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (638,111,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (639,111,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (640,111,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (641,111,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (642,111,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (643,111,'secao_mosaico_de_banner_banner_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (644,111,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (645,111,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (646,111,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (647,111,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (648,111,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (649,111,'secao_mosaico_de_banner_banner_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (650,111,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (651,111,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (652,111,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (653,111,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (654,111,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (655,111,'secao_mosaico_de_banner_banner_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (656,111,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (657,111,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (658,111,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (659,111,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (660,111,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (661,111,'secao_mosaico_de_banner_banner_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (662,111,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (663,111,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (664,111,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (665,111,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (666,111,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (667,111,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (668,111,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (669,111,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (670,111,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (671,111,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (672,111,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (673,111,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (674,111,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (677,115,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (679,14,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (680,14,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (681,14,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (682,14,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (683,14,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (684,14,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (685,115,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (686,115,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (687,115,'secao_banner_principal_banner_principal_2','');
INSERT INTO `wp_postmeta` VALUES (688,115,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (689,115,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (690,115,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (691,115,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (692,115,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (693,115,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (694,115,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (695,115,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (696,115,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (697,115,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (698,115,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (699,115,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (700,115,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (701,115,'secao_de_beneficios_titulo_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (702,115,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (703,115,'secao_de_beneficios_texto_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (704,115,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (705,115,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (706,115,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (707,115,'secao_de_beneficios_titulo_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (708,115,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (709,115,'secao_de_beneficios_texto_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (710,115,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (711,115,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (712,115,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (713,115,'secao_de_beneficios_titulo_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (714,115,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (715,115,'secao_de_beneficios_texto_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (716,115,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (717,115,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (718,115,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (719,115,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (720,115,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (721,115,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (722,115,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (723,115,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (724,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (725,115,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (726,115,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (727,115,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (728,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (729,115,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (730,115,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (731,115,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (732,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (733,115,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (734,115,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (735,115,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (736,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (737,115,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (738,115,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (739,115,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (740,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (741,115,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (742,115,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (743,115,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (744,115,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (745,115,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (746,115,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (747,115,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (748,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (749,115,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (750,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (751,115,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (752,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (753,115,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (754,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (755,115,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (756,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (757,115,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (758,115,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (759,115,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (760,115,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (761,115,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (762,115,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (763,115,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (764,115,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (765,115,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (766,115,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (767,115,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (768,115,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (769,115,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (770,115,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (771,115,'secao_mosaico_de_banner_banner_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (772,115,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (773,115,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (774,115,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (775,115,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (776,115,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (777,115,'secao_mosaico_de_banner_banner_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (778,115,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (779,115,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (780,115,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (781,115,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (782,115,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (783,115,'secao_mosaico_de_banner_banner_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (784,115,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (785,115,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (786,115,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (787,115,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (788,115,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (789,115,'secao_mosaico_de_banner_banner_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (790,115,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (791,115,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (792,115,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (793,115,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (794,115,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (795,115,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (796,115,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (797,115,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (798,115,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (799,115,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (800,115,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (801,115,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (802,115,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (803,115,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (804,115,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (805,115,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (806,115,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (807,115,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (808,115,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (811,130,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (813,14,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (814,14,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (815,14,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (816,14,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (817,14,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (818,14,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (819,14,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (820,14,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (821,14,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (822,14,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (823,14,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (824,14,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (825,14,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (826,14,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (827,14,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (828,14,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (829,14,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (830,14,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (831,14,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (832,14,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (833,14,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (834,14,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (835,14,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (836,14,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (837,14,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (838,14,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (839,14,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (840,14,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (841,130,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (842,130,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (843,130,'secao_banner_principal_banner_principal_2','');
INSERT INTO `wp_postmeta` VALUES (844,130,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (845,130,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (846,130,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (847,130,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (848,130,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (849,130,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (850,130,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (851,130,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (852,130,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (853,130,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (854,130,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (855,130,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (856,130,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (857,130,'secao_de_beneficios_titulo_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (858,130,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (859,130,'secao_de_beneficios_texto_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (860,130,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (861,130,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (862,130,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (863,130,'secao_de_beneficios_titulo_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (864,130,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (865,130,'secao_de_beneficios_texto_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (866,130,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (867,130,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (868,130,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (869,130,'secao_de_beneficios_titulo_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (870,130,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (871,130,'secao_de_beneficios_texto_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (872,130,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (873,130,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (874,130,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (875,130,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (876,130,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (877,130,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (878,130,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (879,130,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (880,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (881,130,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (882,130,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (883,130,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (884,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (885,130,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (886,130,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (887,130,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (888,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (889,130,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (890,130,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (891,130,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (892,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (893,130,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (894,130,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (895,130,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (896,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (897,130,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (898,130,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (899,130,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (900,130,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (901,130,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (902,130,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (903,130,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (904,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (905,130,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (906,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (907,130,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (908,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (909,130,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (910,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (911,130,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (912,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (913,130,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (914,130,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (915,130,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (916,130,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (917,130,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (918,130,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (919,130,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (920,130,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (921,130,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (922,130,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (923,130,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (924,130,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (925,130,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (926,130,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (927,130,'secao_mosaico_de_banner_banner_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (928,130,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (929,130,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (930,130,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (931,130,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (932,130,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (933,130,'secao_mosaico_de_banner_banner_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (934,130,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (935,130,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (936,130,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (937,130,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (938,130,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (939,130,'secao_mosaico_de_banner_banner_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (940,130,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (941,130,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (942,130,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (943,130,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (944,130,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (945,130,'secao_mosaico_de_banner_banner_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (946,130,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (947,130,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (948,130,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (949,130,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (950,130,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (951,130,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (952,130,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (953,130,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (954,130,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (955,130,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (956,130,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (957,130,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (958,130,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (959,130,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (960,130,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (961,130,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (962,130,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (963,130,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (964,130,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (965,130,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (966,130,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (967,130,'secao_nossos_servicos_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (968,130,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (969,130,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (970,130,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (971,130,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (972,130,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (973,130,'secao_nossos_servicos_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (974,130,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (975,130,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (976,130,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (977,130,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (978,130,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (979,130,'secao_nossos_servicos_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (980,130,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (981,130,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (982,130,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (983,130,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (984,130,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (985,130,'secao_nossos_servicos_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (986,130,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (987,130,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (988,130,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (989,130,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (990,130,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (991,130,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (992,130,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (993,14,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (994,14,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (995,14,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (996,14,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (997,14,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (998,14,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (999,130,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (1000,130,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (1001,130,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (1002,130,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (1003,130,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (1004,130,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (1005,137,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (1006,137,'_edit_lock','1769645877:1');
INSERT INTO `wp_postmeta` VALUES (1007,142,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (1008,142,'_edit_lock','1769645855:1');
INSERT INTO `wp_postmeta` VALUES (1009,143,'_wp_attached_file','2026/01/image-139.png');
INSERT INTO `wp_postmeta` VALUES (1010,143,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:456;s:4:\"file\";s:21:\"2026/01/image-139.png\";s:8:\"filesize\";i:494548;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"image-139-300x118.png\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49972;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"image-139-1024x403.png\";s:5:\"width\";i:1024;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:361240;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"image-139-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29060;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"image-139-768x302.png\";s:5:\"width\";i:768;s:6:\"height\";i:302;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230679;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1011,142,'_thumbnail_id','143');
INSERT INTO `wp_postmeta` VALUES (1012,142,'telefone_da_loja','(11) 3986-4140');
INSERT INTO `wp_postmeta` VALUES (1013,142,'_telefone_da_loja','field_697a9b2eb6ed9');
INSERT INTO `wp_postmeta` VALUES (1014,142,'whatsapp_da_loja','(11) 91848-2986');
INSERT INTO `wp_postmeta` VALUES (1015,142,'_whatsapp_da_loja','field_697a9b53b6eda');
INSERT INTO `wp_postmeta` VALUES (1016,142,'endereco_da_loja','Avenida Parada Pinto, 62 – Vila Nova Cachoeirinha');
INSERT INTO `wp_postmeta` VALUES (1017,142,'_endereco_da_loja','field_697a9b60b6edb');
INSERT INTO `wp_postmeta` VALUES (1018,142,'como_chegar_na_loja','https://www.google.com/maps/place/Mister+%C3%93culos+%7C+Vila+Nova+Cachoeirinha/@-23.473234,-46.667018,17z/data=!3m1!4b1!4m6!3m5!1s0x94cef7633705c3bb:0x1a605804eab457dd!8m2!3d-23.473234!4d-46.667018!16s%2Fg%2F1ptzyk1d2?entry=ttu&g_ep=EgoyMDI2MDEyNi4wIKXMDSoASAFQAw%3D%3D');
INSERT INTO `wp_postmeta` VALUES (1019,142,'_como_chegar_na_loja','field_697a9b75b6edc');
INSERT INTO `wp_postmeta` VALUES (1020,14,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (1021,14,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (1022,14,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (1023,14,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (1024,14,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (1025,14,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (1026,130,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (1027,130,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (1028,130,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (1029,130,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (1030,130,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (1031,130,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (1032,14,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (1033,14,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (1034,14,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1035,14,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (1036,14,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (1037,14,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (1038,130,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (1039,130,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (1040,130,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1041,130,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (1042,130,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (1043,130,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (1044,91,'linha_mais_procurada','1');
INSERT INTO `wp_postmeta` VALUES (1045,91,'_linha_mais_procurada','field_697aa7cddca66');
INSERT INTO `wp_postmeta` VALUES (1046,91,'url_do_video','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (1047,91,'_url_do_video','field_697aa7e6730d0');
INSERT INTO `wp_postmeta` VALUES (1048,91,'imagem_da_linha_mais_procurada','151');
INSERT INTO `wp_postmeta` VALUES (1049,91,'_imagem_da_linha_mais_procurada','field_697aa7fe730d1');
INSERT INTO `wp_postmeta` VALUES (1050,151,'_wp_attached_file','2026/01/4876e503ee3e5143c40f64dba9bdb6fff9ba85fe.jpg');
INSERT INTO `wp_postmeta` VALUES (1051,151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1272;s:6:\"height\";i:1272;s:4:\"file\";s:52:\"2026/01/4876e503ee3e5143c40f64dba9bdb6fff9ba85fe.jpg\";s:8:\"filesize\";i:72924;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"4876e503ee3e5143c40f64dba9bdb6fff9ba85fe-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10300;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"4876e503ee3e5143c40f64dba9bdb6fff9ba85fe-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69204;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"4876e503ee3e5143c40f64dba9bdb6fff9ba85fe-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3629;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"4876e503ee3e5143c40f64dba9bdb6fff9ba85fe-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44409;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1052,91,'queridos','1');
INSERT INTO `wp_postmeta` VALUES (1053,91,'_queridos','field_697abdb74f63b');
INSERT INTO `wp_postmeta` VALUES (1056,156,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (1058,14,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (1059,14,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (1060,14,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1061,14,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (1062,14,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (1063,14,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (1064,156,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (1065,156,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (1066,156,'secao_banner_principal_banner_principal_2','');
INSERT INTO `wp_postmeta` VALUES (1067,156,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (1068,156,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (1069,156,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (1070,156,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (1071,156,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (1072,156,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (1073,156,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (1074,156,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (1075,156,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (1076,156,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (1077,156,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (1078,156,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (1079,156,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (1080,156,'secao_de_beneficios_titulo_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (1081,156,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (1082,156,'secao_de_beneficios_texto_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (1083,156,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (1084,156,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (1085,156,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (1086,156,'secao_de_beneficios_titulo_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (1087,156,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (1088,156,'secao_de_beneficios_texto_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (1089,156,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (1090,156,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (1091,156,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (1092,156,'secao_de_beneficios_titulo_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (1093,156,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (1094,156,'secao_de_beneficios_texto_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (1095,156,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (1096,156,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (1097,156,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (1098,156,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (1099,156,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (1100,156,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (1101,156,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (1102,156,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (1103,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (1104,156,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (1105,156,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (1106,156,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (1107,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (1108,156,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (1109,156,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (1110,156,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (1111,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (1112,156,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (1113,156,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (1114,156,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (1115,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (1116,156,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (1117,156,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (1118,156,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (1119,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (1120,156,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (1121,156,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (1122,156,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (1123,156,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (1124,156,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (1125,156,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (1126,156,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (1127,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (1128,156,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (1129,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (1130,156,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (1131,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1132,156,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (1133,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (1134,156,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (1135,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (1136,156,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (1137,156,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (1138,156,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (1139,156,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (1140,156,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (1141,156,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (1142,156,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (1143,156,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1144,156,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (1145,156,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (1146,156,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1147,156,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (1148,156,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (1149,156,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (1150,156,'secao_mosaico_de_banner_banner_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (1151,156,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (1152,156,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1153,156,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (1154,156,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (1155,156,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (1156,156,'secao_mosaico_de_banner_banner_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (1157,156,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (1158,156,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1159,156,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (1160,156,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (1161,156,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (1162,156,'secao_mosaico_de_banner_banner_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (1163,156,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (1164,156,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1165,156,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (1166,156,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (1167,156,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (1168,156,'secao_mosaico_de_banner_banner_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (1169,156,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (1170,156,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1171,156,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (1172,156,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (1173,156,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (1174,156,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (1175,156,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (1176,156,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (1177,156,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (1178,156,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1179,156,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (1180,156,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (1181,156,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (1182,156,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (1183,156,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (1184,156,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (1185,156,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (1186,156,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (1187,156,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (1188,156,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (1189,156,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (1190,156,'secao_nossos_servicos_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (1191,156,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (1192,156,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1193,156,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (1194,156,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (1195,156,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (1196,156,'secao_nossos_servicos_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (1197,156,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (1198,156,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1199,156,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (1200,156,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (1201,156,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (1202,156,'secao_nossos_servicos_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (1203,156,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (1204,156,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1205,156,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (1206,156,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (1207,156,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (1208,156,'secao_nossos_servicos_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (1209,156,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (1210,156,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1211,156,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (1212,156,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (1213,156,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (1214,156,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (1215,156,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (1216,156,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (1217,156,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (1218,156,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (1219,156,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (1220,156,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (1221,156,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (1222,156,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (1223,156,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (1224,156,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (1225,156,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (1226,156,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (1227,156,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (1228,156,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (1229,156,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (1230,156,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1231,156,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (1232,156,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (1233,156,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (1234,156,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (1235,156,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (1236,156,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1237,156,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (1238,156,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (1239,156,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (1240,157,'_wp_attached_file','2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (1241,157,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:30589278;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:17;s:16:\"length_formatted\";s:4:\"0:17\";s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1611132738;}');
INSERT INTO `wp_postmeta` VALUES (1246,159,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (1248,159,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (1249,159,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (1250,159,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (1251,159,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (1252,159,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (1253,159,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (1254,159,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (1255,159,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (1256,159,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (1257,159,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (1258,159,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (1259,159,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (1260,159,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (1261,159,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (1262,159,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (1263,159,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (1264,159,'secao_de_beneficios_titulo_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (1265,159,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (1266,159,'secao_de_beneficios_texto_beneficio_2','');
INSERT INTO `wp_postmeta` VALUES (1267,159,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (1268,159,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (1269,159,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (1270,159,'secao_de_beneficios_titulo_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (1271,159,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (1272,159,'secao_de_beneficios_texto_beneficio_3','');
INSERT INTO `wp_postmeta` VALUES (1273,159,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (1274,159,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (1275,159,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (1276,159,'secao_de_beneficios_titulo_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (1277,159,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (1278,159,'secao_de_beneficios_texto_beneficio_4','');
INSERT INTO `wp_postmeta` VALUES (1279,159,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (1280,159,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (1281,159,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (1282,159,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (1283,159,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (1284,159,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (1285,159,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (1286,159,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (1287,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (1288,159,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (1289,159,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (1290,159,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (1291,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (1292,159,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (1293,159,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (1294,159,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (1295,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (1296,159,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (1297,159,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (1298,159,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (1299,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (1300,159,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (1301,159,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (1302,159,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (1303,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (1304,159,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (1305,159,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (1306,159,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (1307,159,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (1308,159,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (1309,159,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (1310,159,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (1311,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (1312,159,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (1313,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (1314,159,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (1315,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1316,159,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (1317,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (1318,159,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (1319,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (1320,159,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (1321,159,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (1322,159,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (1323,159,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (1324,159,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (1325,159,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (1326,159,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (1327,159,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1328,159,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (1329,159,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (1330,159,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1331,159,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (1332,159,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (1333,159,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (1334,159,'secao_mosaico_de_banner_banner_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (1335,159,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (1336,159,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1337,159,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (1338,159,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (1339,159,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (1340,159,'secao_mosaico_de_banner_banner_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (1341,159,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (1342,159,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1343,159,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (1344,159,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (1345,159,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (1346,159,'secao_mosaico_de_banner_banner_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (1347,159,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (1348,159,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1349,159,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (1350,159,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (1351,159,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (1352,159,'secao_mosaico_de_banner_banner_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (1353,159,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (1354,159,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1355,159,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (1356,159,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (1357,159,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (1358,159,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (1359,159,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (1360,159,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (1361,159,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (1362,159,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1363,159,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (1364,159,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (1365,159,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (1366,159,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (1367,159,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (1368,159,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (1369,159,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (1370,159,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (1371,159,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (1372,159,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (1373,159,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (1374,159,'secao_nossos_servicos_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (1375,159,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (1376,159,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1377,159,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (1378,159,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (1379,159,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (1380,159,'secao_nossos_servicos_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (1381,159,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (1382,159,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1383,159,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (1384,159,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (1385,159,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (1386,159,'secao_nossos_servicos_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (1387,159,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (1388,159,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1389,159,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (1390,159,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (1391,159,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (1392,159,'secao_nossos_servicos_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (1393,159,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (1394,159,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1395,159,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (1396,159,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (1397,159,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (1398,159,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (1399,159,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (1400,159,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (1401,159,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (1402,159,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (1403,159,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (1404,159,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (1405,159,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (1406,159,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (1407,159,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (1408,159,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (1409,159,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (1410,159,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (1411,159,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (1412,159,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (1413,159,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (1414,159,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1415,159,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (1416,159,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (1417,159,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (1418,159,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (1419,159,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (1420,159,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1421,159,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (1422,159,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (1423,159,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (1424,160,'_wp_attached_file','2026/01/Frame.png');
INSERT INTO `wp_postmeta` VALUES (1425,160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:31;s:6:\"height\";i:31;s:4:\"file\";s:17:\"2026/01/Frame.png\";s:8:\"filesize\";i:562;s:5:\"sizes\";a:0:{}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1428,162,'_wp_attached_file','2026/01/Frame-1.png');
INSERT INTO `wp_postmeta` VALUES (1429,162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:31;s:6:\"height\";i:31;s:4:\"file\";s:19:\"2026/01/Frame-1.png\";s:8:\"filesize\";i:620;s:5:\"sizes\";a:0:{}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1430,163,'_wp_attached_file','2026/01/Frame-2.png');
INSERT INTO `wp_postmeta` VALUES (1431,163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:19:\"2026/01/Frame-2.png\";s:8:\"filesize\";i:528;s:5:\"sizes\";a:0:{}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1434,164,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (1436,164,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (1437,164,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (1438,164,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (1439,164,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (1440,164,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (1441,164,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (1442,164,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (1443,164,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (1444,164,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (1445,164,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (1446,164,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (1447,164,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (1448,164,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (1449,164,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (1450,164,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (1451,164,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (1452,164,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (1453,164,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (1454,164,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (1455,164,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (1456,164,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (1457,164,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (1458,164,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (1459,164,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (1460,164,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (1461,164,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (1462,164,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (1463,164,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (1464,164,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (1465,164,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (1466,164,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (1467,164,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (1468,164,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (1469,164,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (1470,164,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (1471,164,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (1472,164,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (1473,164,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (1474,164,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (1475,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (1476,164,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (1477,164,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (1478,164,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (1479,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (1480,164,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (1481,164,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (1482,164,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (1483,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (1484,164,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (1485,164,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (1486,164,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (1487,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (1488,164,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (1489,164,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (1490,164,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (1491,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (1492,164,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (1493,164,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (1494,164,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (1495,164,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (1496,164,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (1497,164,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (1498,164,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (1499,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (1500,164,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (1501,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (1502,164,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (1503,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1504,164,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (1505,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (1506,164,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (1507,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (1508,164,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (1509,164,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (1510,164,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (1511,164,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (1512,164,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (1513,164,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (1514,164,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (1515,164,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1516,164,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (1517,164,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (1518,164,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1519,164,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (1520,164,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (1521,164,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (1522,164,'secao_mosaico_de_banner_banner_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (1523,164,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (1524,164,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1525,164,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (1526,164,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (1527,164,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (1528,164,'secao_mosaico_de_banner_banner_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (1529,164,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (1530,164,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1531,164,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (1532,164,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (1533,164,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (1534,164,'secao_mosaico_de_banner_banner_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (1535,164,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (1536,164,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1537,164,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (1538,164,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (1539,164,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (1540,164,'secao_mosaico_de_banner_banner_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (1541,164,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (1542,164,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1543,164,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (1544,164,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (1545,164,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (1546,164,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (1547,164,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (1548,164,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (1549,164,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (1550,164,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1551,164,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (1552,164,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (1553,164,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (1554,164,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (1555,164,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (1556,164,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (1557,164,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (1558,164,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (1559,164,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (1560,164,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (1561,164,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (1562,164,'secao_nossos_servicos_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (1563,164,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (1564,164,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1565,164,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (1566,164,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (1567,164,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (1568,164,'secao_nossos_servicos_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (1569,164,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (1570,164,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1571,164,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (1572,164,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (1573,164,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (1574,164,'secao_nossos_servicos_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (1575,164,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (1576,164,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1577,164,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (1578,164,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (1579,164,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (1580,164,'secao_nossos_servicos_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (1581,164,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (1582,164,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1583,164,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (1584,164,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (1585,164,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (1586,164,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (1587,164,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (1588,164,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (1589,164,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (1590,164,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (1591,164,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (1592,164,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (1593,164,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (1594,164,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (1595,164,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (1596,164,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (1597,164,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (1598,164,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (1599,164,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (1600,164,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (1601,164,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (1602,164,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1603,164,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (1604,164,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (1605,164,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (1606,164,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (1607,164,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (1608,164,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1609,164,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (1610,164,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (1611,164,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (1616,167,'_wp_attached_file','2026/02/Group-5140-1.png');
INSERT INTO `wp_postmeta` VALUES (1617,167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:722;s:4:\"file\";s:24:\"2026/02/Group-5140-1.png\";s:8:\"filesize\";i:178697;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Group-5140-1-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20212;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Group-5140-1-1024x579.png\";s:5:\"width\";i:1024;s:6:\"height\";i:579;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179526;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Group-5140-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11163;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Group-5140-1-768x435.png\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103132;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1618,168,'_wp_attached_file','2026/02/Group-5325.png');
INSERT INTO `wp_postmeta` VALUES (1619,168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:632;s:4:\"file\";s:22:\"2026/02/Group-5325.png\";s:8:\"filesize\";i:218721;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Group-5325-300x149.png\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21363;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Group-5325-1024x507.png\";s:5:\"width\";i:1024;s:6:\"height\";i:507;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182074;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Group-5325-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12795;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Group-5325-768x380.png\";s:5:\"width\";i:768;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105891;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1620,169,'_wp_attached_file','2026/02/Group-5140.png');
INSERT INTO `wp_postmeta` VALUES (1621,169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1299;s:6:\"height\";i:670;s:4:\"file\";s:22:\"2026/02/Group-5140.png\";s:8:\"filesize\";i:188602;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Group-5140-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20506;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Group-5140-1024x528.png\";s:5:\"width\";i:1024;s:6:\"height\";i:528;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170031;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Group-5140-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9965;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Group-5140-768x396.png\";s:5:\"width\";i:768;s:6:\"height\";i:396;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99352;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1622,170,'_wp_attached_file','2026/02/Group-5141.png');
INSERT INTO `wp_postmeta` VALUES (1623,170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:662;s:4:\"file\";s:22:\"2026/02/Group-5141.png\";s:8:\"filesize\";i:196596;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Group-5141-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23036;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Group-5141-1024x531.png\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:494279;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Group-5141-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13366;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Group-5141-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117164;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1626,171,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (1628,171,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (1629,171,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (1630,171,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (1631,171,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (1632,171,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (1633,171,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (1634,171,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (1635,171,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (1636,171,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (1637,171,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (1638,171,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (1639,171,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (1640,171,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (1641,171,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (1642,171,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (1643,171,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (1644,171,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (1645,171,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (1646,171,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (1647,171,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (1648,171,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (1649,171,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (1650,171,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (1651,171,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (1652,171,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (1653,171,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (1654,171,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (1655,171,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (1656,171,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (1657,171,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (1658,171,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (1659,171,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (1660,171,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (1661,171,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (1662,171,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (1663,171,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (1664,171,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (1665,171,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (1666,171,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (1667,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (1668,171,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (1669,171,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (1670,171,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (1671,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (1672,171,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (1673,171,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (1674,171,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (1675,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (1676,171,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (1677,171,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (1678,171,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (1679,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (1680,171,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (1681,171,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (1682,171,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (1683,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (1684,171,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (1685,171,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (1686,171,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (1687,171,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (1688,171,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (1689,171,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (1690,171,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (1691,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (1692,171,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (1693,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (1694,171,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (1695,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1696,171,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (1697,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (1698,171,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (1699,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (1700,171,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (1701,171,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (1702,171,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (1703,171,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (1704,171,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (1705,171,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (1706,171,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (1707,171,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1708,171,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (1709,171,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (1710,171,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1711,171,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (1712,171,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (1713,171,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (1714,171,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (1715,171,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (1716,171,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1717,171,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (1718,171,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (1719,171,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (1720,171,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (1721,171,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (1722,171,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1723,171,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (1724,171,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (1725,171,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (1726,171,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (1727,171,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (1728,171,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1729,171,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (1730,171,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (1731,171,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (1732,171,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (1733,171,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (1734,171,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1735,171,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (1736,171,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (1737,171,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (1738,171,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (1739,171,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (1740,171,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (1741,171,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (1742,171,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1743,171,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (1744,171,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (1745,171,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (1746,171,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (1747,171,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (1748,171,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (1749,171,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (1750,171,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (1751,171,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (1752,171,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (1753,171,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (1754,171,'secao_nossos_servicos_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (1755,171,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (1756,171,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1757,171,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (1758,171,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (1759,171,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (1760,171,'secao_nossos_servicos_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (1761,171,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (1762,171,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1763,171,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (1764,171,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (1765,171,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (1766,171,'secao_nossos_servicos_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (1767,171,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (1768,171,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1769,171,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (1770,171,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (1771,171,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (1772,171,'secao_nossos_servicos_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (1773,171,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (1774,171,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1775,171,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (1776,171,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (1777,171,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (1778,171,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (1779,171,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (1780,171,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (1781,171,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (1782,171,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (1783,171,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (1784,171,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (1785,171,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (1786,171,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (1787,171,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (1788,171,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (1789,171,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (1790,171,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (1791,171,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (1792,171,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (1793,171,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (1794,171,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1795,171,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (1796,171,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (1797,171,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (1798,171,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (1799,171,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (1800,171,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1801,171,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (1802,171,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (1803,171,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (1804,172,'_wp_attached_file','2026/02/Frame-1000008466.png');
INSERT INTO `wp_postmeta` VALUES (1805,172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:286;s:6:\"height\";i:429;s:4:\"file\";s:28:\"2026/02/Frame-1000008466.png\";s:8:\"filesize\";i:46113;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Frame-1000008466-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24080;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Frame-1000008466-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11248;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1806,173,'_wp_attached_file','2026/02/Frame-1000008467.png');
INSERT INTO `wp_postmeta` VALUES (1807,173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:858;s:4:\"file\";s:28:\"2026/02/Frame-1000008467.png\";s:8:\"filesize\";i:111671;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Frame-1000008467-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36650;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Frame-1000008467-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17146;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1808,174,'_wp_attached_file','2026/02/Frame-1000008468.png');
INSERT INTO `wp_postmeta` VALUES (1809,174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:858;s:4:\"file\";s:28:\"2026/02/Frame-1000008468.png\";s:8:\"filesize\";i:132965;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Frame-1000008468-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38831;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Frame-1000008468-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18244;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1810,175,'_wp_attached_file','2026/02/Frame-1000008469.png');
INSERT INTO `wp_postmeta` VALUES (1811,175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:572;s:6:\"height\";i:858;s:4:\"file\";s:28:\"2026/02/Frame-1000008469.png\";s:8:\"filesize\";i:247566;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Frame-1000008469-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Frame-1000008469-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9796;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (1814,176,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (1816,176,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (1817,176,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (1818,176,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (1819,176,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (1820,176,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (1821,176,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (1822,176,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (1823,176,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (1824,176,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (1825,176,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (1826,176,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (1827,176,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (1828,176,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (1829,176,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (1830,176,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (1831,176,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (1832,176,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (1833,176,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (1834,176,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (1835,176,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (1836,176,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (1837,176,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (1838,176,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (1839,176,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (1840,176,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (1841,176,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (1842,176,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (1843,176,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (1844,176,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (1845,176,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (1846,176,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (1847,176,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (1848,176,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (1849,176,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (1850,176,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (1851,176,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (1852,176,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (1853,176,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (1854,176,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (1855,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (1856,176,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (1857,176,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (1858,176,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (1859,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (1860,176,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (1861,176,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (1862,176,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (1863,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (1864,176,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (1865,176,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (1866,176,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (1867,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (1868,176,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (1869,176,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (1870,176,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (1871,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (1872,176,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (1873,176,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (1874,176,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (1875,176,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (1876,176,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (1877,176,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (1878,176,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (1879,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (1880,176,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (1881,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (1882,176,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (1883,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1884,176,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (1885,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (1886,176,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (1887,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (1888,176,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (1889,176,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (1890,176,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (1891,176,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (1892,176,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (1893,176,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (1894,176,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (1895,176,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (1896,176,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (1897,176,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (1898,176,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1899,176,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (1900,176,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (1901,176,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (1902,176,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (1903,176,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (1904,176,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1905,176,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (1906,176,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (1907,176,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (1908,176,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (1909,176,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (1910,176,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1911,176,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (1912,176,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (1913,176,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (1914,176,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (1915,176,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (1916,176,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1917,176,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (1918,176,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (1919,176,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (1920,176,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (1921,176,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (1922,176,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1923,176,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (1924,176,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (1925,176,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (1926,176,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (1927,176,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (1928,176,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (1929,176,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (1930,176,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1931,176,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (1932,176,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (1933,176,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (1934,176,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (1935,176,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (1936,176,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (1937,176,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (1938,176,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (1939,176,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (1940,176,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (1941,176,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (1942,176,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (1943,176,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (1944,176,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (1945,176,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (1946,176,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (1947,176,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (1948,176,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (1949,176,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (1950,176,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (1951,176,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (1952,176,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (1953,176,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (1954,176,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (1955,176,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (1956,176,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (1957,176,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (1958,176,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (1959,176,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (1960,176,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (1961,176,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (1962,176,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (1963,176,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (1964,176,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (1965,176,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (1966,176,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (1967,176,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (1968,176,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (1969,176,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (1970,176,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (1971,176,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (1972,176,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (1973,176,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (1974,176,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (1975,176,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (1976,176,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (1977,176,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (1978,176,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (1979,176,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (1980,176,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (1981,176,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (1982,176,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1983,176,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (1984,176,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (1985,176,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (1986,176,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (1987,176,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (1988,176,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (1989,176,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (1990,176,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (1991,176,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (1992,89,'linha_mais_procurada','1');
INSERT INTO `wp_postmeta` VALUES (1993,89,'_linha_mais_procurada','field_697aa7cddca66');
INSERT INTO `wp_postmeta` VALUES (1994,89,'queridos','1');
INSERT INTO `wp_postmeta` VALUES (1995,89,'_queridos','field_697abdb74f63b');
INSERT INTO `wp_postmeta` VALUES (1996,89,'url_do_video','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (1997,89,'_url_do_video','field_697aa7e6730d0');
INSERT INTO `wp_postmeta` VALUES (1998,89,'imagem_da_linha_mais_procurada','151');
INSERT INTO `wp_postmeta` VALUES (1999,89,'_imagem_da_linha_mais_procurada','field_697aa7fe730d1');
INSERT INTO `wp_postmeta` VALUES (2000,177,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (2001,177,'_edit_lock','1769966982:1');
INSERT INTO `wp_postmeta` VALUES (2002,177,'_thumbnail_id','143');
INSERT INTO `wp_postmeta` VALUES (2003,177,'telefone_da_loja','(11) 3986-4140');
INSERT INTO `wp_postmeta` VALUES (2004,177,'_telefone_da_loja','field_697a9b2eb6ed9');
INSERT INTO `wp_postmeta` VALUES (2005,177,'whatsapp_da_loja','(11) 91848-2986');
INSERT INTO `wp_postmeta` VALUES (2006,177,'_whatsapp_da_loja','field_697a9b53b6eda');
INSERT INTO `wp_postmeta` VALUES (2007,177,'endereco_da_loja','Avenida Parada Pinto, 62 – Vila Nova Cachoeirinha');
INSERT INTO `wp_postmeta` VALUES (2008,177,'_endereco_da_loja','field_697a9b60b6edb');
INSERT INTO `wp_postmeta` VALUES (2009,177,'como_chegar_na_loja','');
INSERT INTO `wp_postmeta` VALUES (2010,177,'_como_chegar_na_loja','field_697a9b75b6edc');
INSERT INTO `wp_postmeta` VALUES (2011,178,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (2012,178,'_edit_lock','1773332296:1');
INSERT INTO `wp_postmeta` VALUES (2013,181,'_wp_attached_file','2026/02/Group-5233.png');
INSERT INTO `wp_postmeta` VALUES (2014,181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:686;s:4:\"file\";s:22:\"2026/02/Group-5233.png\";s:8:\"filesize\";i:258771;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Group-5233-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7410;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Group-5233-1024x274.png\";s:5:\"width\";i:1024;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63126;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Group-5233-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3363;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Group-5233-768x206.png\";s:5:\"width\";i:768;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39426;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"Group-5233-1536x412.png\";s:5:\"width\";i:1536;s:6:\"height\";i:412;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134550;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"Group-5233-2048x549.png\";s:5:\"width\";i:2048;s:6:\"height\";i:549;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226015;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2015,189,'_wp_attached_file','2026/02/Frame-1000007457.png');
INSERT INTO `wp_postmeta` VALUES (2016,189,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:375;s:6:\"height\";i:799;s:4:\"file\";s:28:\"2026/02/Frame-1000007457.png\";s:8:\"filesize\";i:285720;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Frame-1000007457-141x300.png\";s:5:\"width\";i:141;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42620;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Frame-1000007457-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27358;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2019,190,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (2021,14,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (2022,14,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (2023,14,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (2024,14,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (2025,14,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (2026,14,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (2027,190,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (2028,190,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (2029,190,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (2030,190,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (2031,190,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (2032,190,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (2033,190,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (2034,190,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (2035,190,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (2036,190,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (2037,190,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (2038,190,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (2039,190,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (2040,190,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (2041,190,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (2042,190,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (2043,190,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (2044,190,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (2045,190,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (2046,190,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (2047,190,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (2048,190,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (2049,190,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (2050,190,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (2051,190,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (2052,190,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (2053,190,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (2054,190,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (2055,190,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (2056,190,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (2057,190,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (2058,190,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (2059,190,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (2060,190,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (2061,190,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (2062,190,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (2063,190,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (2064,190,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (2065,190,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (2066,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (2067,190,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (2068,190,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (2069,190,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (2070,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (2071,190,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (2072,190,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (2073,190,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (2074,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (2075,190,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (2076,190,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (2077,190,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (2078,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (2079,190,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (2080,190,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (2081,190,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (2082,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (2083,190,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (2084,190,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (2085,190,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (2086,190,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (2087,190,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (2088,190,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (2089,190,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','');
INSERT INTO `wp_postmeta` VALUES (2090,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (2091,190,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','');
INSERT INTO `wp_postmeta` VALUES (2092,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (2093,190,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (2094,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2095,190,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','');
INSERT INTO `wp_postmeta` VALUES (2096,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (2097,190,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','');
INSERT INTO `wp_postmeta` VALUES (2098,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (2099,190,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (2100,190,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (2101,190,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (2102,190,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (2103,190,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (2104,190,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (2105,190,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','');
INSERT INTO `wp_postmeta` VALUES (2106,190,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2107,190,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (2108,190,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (2109,190,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2110,190,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (2111,190,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (2112,190,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (2113,190,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (2114,190,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (2115,190,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (2116,190,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (2117,190,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (2118,190,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (2119,190,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (2120,190,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (2121,190,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2122,190,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (2123,190,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (2124,190,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (2125,190,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (2126,190,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (2127,190,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (2128,190,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (2129,190,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (2130,190,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (2131,190,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (2132,190,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (2133,190,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (2134,190,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (2135,190,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (2136,190,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (2137,190,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (2138,190,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (2139,190,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (2140,190,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (2141,190,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2142,190,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (2143,190,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (2144,190,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (2145,190,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (2146,190,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (2147,190,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (2148,190,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (2149,190,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (2150,190,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (2151,190,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (2152,190,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (2153,190,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (2154,190,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (2155,190,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (2156,190,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (2157,190,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (2158,190,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (2159,190,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (2160,190,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (2161,190,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2162,190,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (2163,190,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (2164,190,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (2165,190,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (2166,190,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (2167,190,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (2168,190,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (2169,190,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (2170,190,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (2171,190,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (2172,190,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (2173,190,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (2174,190,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (2175,190,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (2176,190,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (2177,190,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (2178,190,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (2179,190,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (2180,190,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (2181,190,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (2182,190,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (2183,190,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (2184,190,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (2185,190,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (2186,190,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (2187,190,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (2188,190,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (2189,190,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (2190,190,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (2191,190,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (2192,190,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (2193,190,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2194,190,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (2195,190,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (2196,190,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (2197,190,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (2198,190,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (2199,190,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2200,190,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (2201,190,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (2202,190,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (2203,190,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (2204,190,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (2205,190,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (2206,190,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (2207,190,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (2208,190,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (2209,191,'_wp_attached_file','2026/02/armacoes.png');
INSERT INTO `wp_postmeta` VALUES (2210,191,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:355;s:6:\"height\";i:136;s:4:\"file\";s:20:\"2026/02/armacoes.png\";s:8:\"filesize\";i:66486;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"armacoes-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40137;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"armacoes-150x136.png\";s:5:\"width\";i:150;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24061;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2211,192,'_wp_attached_file','2026/02/Oculos
Masculino.png');
INSERT INTO `wp_postmeta` VALUES (2212,192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:173;s:6:\"height\";i:136;s:4:\"file\";s:30:\"2026/02/Oculos
Masculino.png\";s:8:\"filesize\";i:39360;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Oculos
Masculino-150x136.png\";s:5:\"width\";i:150;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34306;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2213,193,'_wp_attached_file','2026/02/Oculos-
Femininos.png');
INSERT INTO `wp_postmeta` VALUES (2214,193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:174;s:6:\"height\";i:136;s:4:\"file\";s:31:\"2026/02/Oculos-
Femininos.png\";s:8:\"filesize\";i:42402;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Oculos-
Femininos-150x136.png\";s:5:\"width\";i:150;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36615;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2215,194,'_wp_attached_file','2026/02/Oculos-de-Sol.png');
INSERT INTO `wp_postmeta` VALUES (2216,194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:173;s:6:\"height\";i:136;s:4:\"file\";s:25:\"2026/02/Oculos-de-Sol.png\";s:8:\"filesize\";i:48740;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Oculos-de-Sol-150x136.png\";s:5:\"width\";i:150;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42638;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2219,196,'_wp_attached_file','2026/02/Oculos-
Especiais.png');
INSERT INTO `wp_postmeta` VALUES (2220,196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:173;s:6:\"height\";i:136;s:4:\"file\";s:31:\"2026/02/Oculos-
Especiais.png\";s:8:\"filesize\";i:42321;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Oculos-
Especiais-150x136.png\";s:5:\"width\";i:150;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36377;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2223,197,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (2225,197,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (2226,197,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (2227,197,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (2228,197,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (2229,197,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (2230,197,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (2231,197,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (2232,197,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (2233,197,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (2234,197,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (2235,197,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (2236,197,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (2237,197,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (2238,197,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (2239,197,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (2240,197,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (2241,197,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (2242,197,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (2243,197,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (2244,197,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (2245,197,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (2246,197,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (2247,197,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (2248,197,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (2249,197,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (2250,197,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (2251,197,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (2252,197,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (2253,197,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (2254,197,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (2255,197,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (2256,197,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (2257,197,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (2258,197,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (2259,197,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (2260,197,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (2261,197,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (2262,197,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (2263,197,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (2264,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (2265,197,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (2266,197,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (2267,197,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (2268,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (2269,197,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (2270,197,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (2271,197,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (2272,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (2273,197,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (2274,197,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (2275,197,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (2276,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (2277,197,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (2278,197,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (2279,197,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (2280,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (2281,197,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (2282,197,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (2283,197,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (2284,197,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (2285,197,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (2286,197,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (2287,197,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (2288,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (2289,197,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (2290,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (2291,197,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (2292,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2293,197,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (2294,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (2295,197,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (2296,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (2297,197,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (2298,197,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (2299,197,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (2300,197,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (2301,197,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (2302,197,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (2303,197,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (2304,197,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2305,197,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (2306,197,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (2307,197,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2308,197,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (2309,197,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (2310,197,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (2311,197,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (2312,197,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (2313,197,'secao_mosaico_de_banner_banner_mosaico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (2314,197,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (2315,197,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (2316,197,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (2317,197,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (2318,197,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (2319,197,'secao_mosaico_de_banner_banner_mosaico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2320,197,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (2321,197,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (2322,197,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (2323,197,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (2324,197,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (2325,197,'secao_mosaico_de_banner_banner_mosaico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (2326,197,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (2327,197,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (2328,197,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (2329,197,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (2330,197,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (2331,197,'secao_mosaico_de_banner_banner_mosaico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (2332,197,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (2333,197,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (2334,197,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (2335,197,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (2336,197,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (2337,197,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (2338,197,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (2339,197,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2340,197,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (2341,197,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (2342,197,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (2343,197,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (2344,197,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (2345,197,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (2346,197,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (2347,197,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (2348,197,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (2349,197,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (2350,197,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (2351,197,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (2352,197,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (2353,197,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (2354,197,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (2355,197,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (2356,197,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (2357,197,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (2358,197,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (2359,197,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2360,197,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (2361,197,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (2362,197,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (2363,197,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (2364,197,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (2365,197,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (2366,197,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (2367,197,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (2368,197,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (2369,197,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (2370,197,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (2371,197,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (2372,197,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (2373,197,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (2374,197,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (2375,197,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (2376,197,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (2377,197,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (2378,197,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (2379,197,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (2380,197,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (2381,197,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (2382,197,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (2383,197,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (2384,197,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (2385,197,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (2386,197,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (2387,197,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (2388,197,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (2389,197,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (2390,197,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (2391,197,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2392,197,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (2393,197,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (2394,197,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (2395,197,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (2396,197,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (2397,197,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2398,197,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (2399,197,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (2400,197,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (2401,197,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (2402,197,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (2403,197,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (2404,197,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (2405,197,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (2406,197,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (2407,198,'_wp_attached_file','2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (2408,198,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:11167092;s:8:\"filesize\";i:30884525;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:22;s:16:\"length_formatted\";s:4:\"0:22\";s:5:\"width\";i:2160;s:6:\"height\";i:4096;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:1609282763;}');
INSERT INTO `wp_postmeta` VALUES (2409,91,'url_do_video_mob','http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (2410,91,'_url_do_video_mob','field_697fcbbe651d1');
INSERT INTO `wp_postmeta` VALUES (2411,89,'url_do_video_mob','http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (2412,89,'_url_do_video_mob','field_697fcbbe651d1');
INSERT INTO `wp_postmeta` VALUES (2413,200,'_wp_attached_file','2026/02/Group-5328.png');
INSERT INTO `wp_postmeta` VALUES (2414,200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:375;s:6:\"height\";i:316;s:4:\"file\";s:22:\"2026/02/Group-5328.png\";s:8:\"filesize\";i:82038;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Group-5328-300x253.png\";s:5:\"width\";i:300;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53264;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Group-5328-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19482;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2415,202,'_menu_item_type','taxonomy');
INSERT INTO `wp_postmeta` VALUES (2416,202,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (2417,202,'_menu_item_object_id','4');
INSERT INTO `wp_postmeta` VALUES (2418,202,'_menu_item_object','tipo_oculos');
INSERT INTO `wp_postmeta` VALUES (2419,202,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (2420,202,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (2421,202,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (2422,202,'_menu_item_url','');
INSERT INTO `wp_postmeta` VALUES (2424,202,'_wp_old_date','2026-02-04');
INSERT INTO `wp_postmeta` VALUES (2425,203,'_wp_attached_file','2026/02/Group-5140-2.png');
INSERT INTO `wp_postmeta` VALUES (2426,203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:394;s:4:\"file\";s:24:\"2026/02/Group-5140-2.png\";s:8:\"filesize\";i:72481;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Group-5140-2-300x158.png\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21019;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Group-5140-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11021;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2429,205,'_wp_attached_file','2026/02/Frame-1000008441.png');
INSERT INTO `wp_postmeta` VALUES (2430,205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:372;s:4:\"file\";s:28:\"2026/02/Frame-1000008441.png\";s:8:\"filesize\";i:83080;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Frame-1000008441-300x149.png\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21404;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Frame-1000008441-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10387;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2431,206,'_wp_attached_file','2026/02/Frame-1000008442.png');
INSERT INTO `wp_postmeta` VALUES (2432,206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:376;s:4:\"file\";s:28:\"2026/02/Frame-1000008442.png\";s:8:\"filesize\";i:73231;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Frame-1000008442-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22559;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Frame-1000008442-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12949;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2433,207,'_wp_attached_file','2026/02/Frame-1000008443.png');
INSERT INTO `wp_postmeta` VALUES (2434,207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:355;s:4:\"file\";s:28:\"2026/02/Frame-1000008443.png\";s:8:\"filesize\";i:67380;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Frame-1000008443-300x142.png\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Frame-1000008443-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12764;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2437,208,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (2439,208,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (2440,208,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (2441,208,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (2442,208,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (2443,208,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (2444,208,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (2445,208,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (2446,208,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (2447,208,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (2448,208,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (2449,208,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (2450,208,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (2451,208,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (2452,208,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (2453,208,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (2454,208,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (2455,208,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (2456,208,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (2457,208,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (2458,208,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (2459,208,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (2460,208,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (2461,208,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (2462,208,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (2463,208,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (2464,208,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (2465,208,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (2466,208,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (2467,208,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (2468,208,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (2469,208,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (2470,208,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (2471,208,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (2472,208,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (2473,208,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (2474,208,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (2475,208,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (2476,208,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (2477,208,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (2478,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (2479,208,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (2480,208,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (2481,208,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (2482,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (2483,208,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (2484,208,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (2485,208,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (2486,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (2487,208,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (2488,208,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (2489,208,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (2490,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (2491,208,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (2492,208,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (2493,208,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (2494,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (2495,208,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (2496,208,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (2497,208,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (2498,208,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (2499,208,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (2500,208,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (2501,208,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (2502,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (2503,208,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (2504,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (2505,208,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (2506,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2507,208,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (2508,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (2509,208,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (2510,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (2511,208,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (2512,208,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (2513,208,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (2514,208,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (2515,208,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (2516,208,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (2517,208,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (2518,208,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2519,208,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (2520,208,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (2521,208,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2522,208,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (2523,208,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (2524,208,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (2525,208,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (2526,208,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (2527,208,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (2528,208,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (2529,208,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (2530,208,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (2531,208,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (2532,208,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (2533,208,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (2534,208,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (2535,208,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (2536,208,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (2537,208,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (2538,208,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (2539,208,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (2540,208,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (2541,208,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (2542,208,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (2543,208,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (2544,208,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (2545,208,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (2546,208,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (2547,208,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (2548,208,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (2549,208,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (2550,208,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (2551,208,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (2552,208,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (2553,208,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2554,208,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (2555,208,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (2556,208,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (2557,208,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (2558,208,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (2559,208,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (2560,208,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (2561,208,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (2562,208,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (2563,208,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (2564,208,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (2565,208,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (2566,208,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (2567,208,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (2568,208,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (2569,208,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (2570,208,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (2571,208,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (2572,208,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (2573,208,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2574,208,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (2575,208,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (2576,208,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (2577,208,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (2578,208,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (2579,208,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (2580,208,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (2581,208,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (2582,208,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (2583,208,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (2584,208,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (2585,208,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (2586,208,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (2587,208,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (2588,208,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (2589,208,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (2590,208,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (2591,208,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (2592,208,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (2593,208,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (2594,208,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (2595,208,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (2596,208,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (2597,208,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (2598,208,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (2599,208,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (2600,208,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (2601,208,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (2602,208,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (2603,208,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (2604,208,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (2605,208,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2606,208,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (2607,208,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (2608,208,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (2609,208,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (2610,208,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (2611,208,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2612,208,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (2613,208,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (2614,208,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (2615,208,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (2616,208,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (2617,208,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (2618,208,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (2619,208,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (2620,208,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (2621,14,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (2622,14,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (2623,14,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (2624,14,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (2625,14,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (2626,14,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (2627,14,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2628,14,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (2629,14,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (2630,14,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (2631,14,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (2632,14,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (2633,208,'secao_banner_principal_video_pricinpal_desk_1','');
INSERT INTO `wp_postmeta` VALUES (2634,208,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (2635,208,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (2636,208,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (2637,208,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (2638,208,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (2639,208,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2640,208,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (2641,208,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (2642,208,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (2643,208,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (2644,208,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (2647,215,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (2649,215,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (2650,215,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (2651,215,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (2652,215,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (2653,215,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (2654,215,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (2655,215,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (2656,215,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (2657,215,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (2658,215,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (2659,215,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (2660,215,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (2661,215,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (2662,215,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (2663,215,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (2664,215,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (2665,215,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (2666,215,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (2667,215,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (2668,215,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (2669,215,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (2670,215,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (2671,215,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (2672,215,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (2673,215,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (2674,215,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (2675,215,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (2676,215,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (2677,215,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (2678,215,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (2679,215,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (2680,215,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (2681,215,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (2682,215,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (2683,215,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (2684,215,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (2685,215,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (2686,215,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (2687,215,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (2688,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (2689,215,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (2690,215,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (2691,215,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (2692,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (2693,215,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (2694,215,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (2695,215,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (2696,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (2697,215,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (2698,215,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (2699,215,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (2700,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (2701,215,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (2702,215,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (2703,215,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (2704,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (2705,215,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (2706,215,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (2707,215,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (2708,215,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (2709,215,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (2710,215,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (2711,215,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (2712,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (2713,215,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (2714,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (2715,215,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (2716,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2717,215,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (2718,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (2719,215,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (2720,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (2721,215,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (2722,215,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (2723,215,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (2724,215,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (2725,215,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (2726,215,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (2727,215,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (2728,215,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2729,215,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (2730,215,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (2731,215,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2732,215,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (2733,215,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (2734,215,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (2735,215,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (2736,215,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (2737,215,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (2738,215,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (2739,215,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (2740,215,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (2741,215,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (2742,215,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (2743,215,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (2744,215,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (2745,215,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (2746,215,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (2747,215,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (2748,215,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (2749,215,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (2750,215,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (2751,215,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (2752,215,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (2753,215,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (2754,215,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (2755,215,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (2756,215,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (2757,215,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (2758,215,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (2759,215,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (2760,215,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (2761,215,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (2762,215,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (2763,215,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2764,215,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (2765,215,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (2766,215,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (2767,215,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (2768,215,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (2769,215,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (2770,215,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (2771,215,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (2772,215,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (2773,215,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (2774,215,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (2775,215,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (2776,215,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (2777,215,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (2778,215,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (2779,215,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (2780,215,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (2781,215,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (2782,215,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (2783,215,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2784,215,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (2785,215,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (2786,215,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (2787,215,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (2788,215,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (2789,215,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (2790,215,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (2791,215,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (2792,215,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (2793,215,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (2794,215,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (2795,215,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (2796,215,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (2797,215,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (2798,215,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (2799,215,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (2800,215,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (2801,215,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (2802,215,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (2803,215,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (2804,215,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (2805,215,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (2806,215,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (2807,215,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (2808,215,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (2809,215,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (2810,215,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (2811,215,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (2812,215,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (2813,215,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (2814,215,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (2815,215,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2816,215,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (2817,215,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (2818,215,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (2819,215,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (2820,215,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (2821,215,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2822,215,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (2823,215,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (2824,215,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (2825,215,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (2826,215,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (2827,215,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (2828,215,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (2829,215,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (2830,215,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (2831,215,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (2832,215,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (2833,215,'secao_banner_principal_video_principal_mob_1','http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (2834,215,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (2835,215,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (2836,215,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (2837,215,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2838,215,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (2839,215,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (2840,215,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (2841,215,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (2842,215,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (2843,216,'_wp_attached_file','2026/02/logo-mr-oculos-NOVO-laranja.png');
INSERT INTO `wp_postmeta` VALUES (2844,216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:288;s:6:\"height\";i:45;s:4:\"file\";s:39:\"2026/02/logo-mr-oculos-NOVO-laranja.png\";s:8:\"filesize\";i:11737;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"logo-mr-oculos-NOVO-laranja-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5261;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2845,217,'_wp_attached_file','2026/02/cropped-logo-mr-oculos-NOVO-laranja.png');
INSERT INTO `wp_postmeta` VALUES (2846,217,'_wp_attachment_context','custom-logo');
INSERT INTO `wp_postmeta` VALUES (2847,217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:288;s:6:\"height\";i:45;s:4:\"file\";s:47:\"2026/02/cropped-logo-mr-oculos-NOVO-laranja.png\";s:8:\"filesize\";i:11901;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"cropped-logo-mr-oculos-NOVO-laranja-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5261;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2852,220,'_wp_attached_file','2026/02/capa-linkedin.png');
INSERT INTO `wp_postmeta` VALUES (2853,220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1584;s:6:\"height\";i:396;s:4:\"file\";s:25:\"2026/02/capa-linkedin.png\";s:8:\"filesize\";i:747051;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"capa-linkedin-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37357;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"capa-linkedin-1024x256.png\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:317670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"capa-linkedin-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37134;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"capa-linkedin-768x192.png\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:195668;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"capa-linkedin-1536x384.png\";s:5:\"width\";i:1536;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:610764;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (2858,222,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (2860,222,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (2861,222,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (2862,222,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (2863,222,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (2864,222,'secao_banner_principal_banner_principal_3','220');
INSERT INTO `wp_postmeta` VALUES (2865,222,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (2866,222,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (2867,222,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (2868,222,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (2869,222,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (2870,222,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (2871,222,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (2872,222,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (2873,222,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (2874,222,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (2875,222,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (2876,222,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (2877,222,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (2878,222,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (2879,222,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (2880,222,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (2881,222,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (2882,222,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (2883,222,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (2884,222,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (2885,222,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (2886,222,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (2887,222,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (2888,222,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (2889,222,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (2890,222,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (2891,222,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (2892,222,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (2893,222,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (2894,222,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (2895,222,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (2896,222,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (2897,222,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (2898,222,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (2899,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (2900,222,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (2901,222,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (2902,222,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (2903,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (2904,222,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (2905,222,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (2906,222,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (2907,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (2908,222,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (2909,222,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (2910,222,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (2911,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (2912,222,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (2913,222,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (2914,222,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (2915,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (2916,222,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (2917,222,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (2918,222,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (2919,222,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (2920,222,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (2921,222,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (2922,222,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (2923,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (2924,222,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (2925,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (2926,222,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (2927,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2928,222,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (2929,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (2930,222,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (2931,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (2932,222,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (2933,222,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (2934,222,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (2935,222,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (2936,222,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (2937,222,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (2938,222,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (2939,222,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (2940,222,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (2941,222,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (2942,222,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2943,222,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (2944,222,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (2945,222,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (2946,222,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (2947,222,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (2948,222,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (2949,222,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (2950,222,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (2951,222,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (2952,222,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (2953,222,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (2954,222,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (2955,222,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (2956,222,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (2957,222,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (2958,222,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (2959,222,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (2960,222,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (2961,222,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (2962,222,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (2963,222,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (2964,222,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (2965,222,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (2966,222,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (2967,222,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (2968,222,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (2969,222,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (2970,222,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (2971,222,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (2972,222,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (2973,222,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (2974,222,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (2975,222,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (2976,222,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (2977,222,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (2978,222,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (2979,222,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (2980,222,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (2981,222,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (2982,222,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (2983,222,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (2984,222,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (2985,222,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (2986,222,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (2987,222,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (2988,222,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (2989,222,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (2990,222,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (2991,222,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (2992,222,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (2993,222,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (2994,222,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (2995,222,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (2996,222,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (2997,222,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (2998,222,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (2999,222,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (3000,222,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3001,222,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (3002,222,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (3003,222,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (3004,222,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (3005,222,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (3006,222,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (3007,222,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (3008,222,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (3009,222,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (3010,222,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (3011,222,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (3012,222,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (3013,222,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (3014,222,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (3015,222,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (3016,222,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (3017,222,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (3018,222,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (3019,222,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (3020,222,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (3021,222,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (3022,222,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (3023,222,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (3024,222,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (3025,222,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (3026,222,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3027,222,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (3028,222,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (3029,222,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (3030,222,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (3031,222,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (3032,222,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3033,222,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (3034,222,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (3035,222,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (3036,222,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (3037,222,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (3038,222,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (3039,222,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (3040,222,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (3041,222,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (3042,222,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3043,222,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (3044,222,'secao_banner_principal_video_principal_mob_1','http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3045,222,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (3046,222,'secao_banner_principal_video_pricinpal_desk_2','http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3047,222,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (3048,222,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (3049,222,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (3050,222,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (3051,222,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (3052,222,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3053,222,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (3056,223,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (3058,223,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (3059,223,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (3060,223,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (3061,223,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (3062,223,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (3063,223,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (3064,223,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (3065,223,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (3066,223,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (3067,223,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (3068,223,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (3069,223,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (3070,223,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (3071,223,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (3072,223,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (3073,223,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (3074,223,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (3075,223,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (3076,223,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (3077,223,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (3078,223,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (3079,223,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (3080,223,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (3081,223,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (3082,223,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (3083,223,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (3084,223,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (3085,223,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (3086,223,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (3087,223,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (3088,223,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (3089,223,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (3090,223,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (3091,223,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (3092,223,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (3093,223,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (3094,223,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (3095,223,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (3096,223,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (3097,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (3098,223,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (3099,223,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (3100,223,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (3101,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (3102,223,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (3103,223,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (3104,223,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (3105,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (3106,223,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (3107,223,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (3108,223,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (3109,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (3110,223,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (3111,223,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (3112,223,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (3113,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (3114,223,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (3115,223,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (3116,223,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (3117,223,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (3118,223,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (3119,223,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (3120,223,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (3121,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (3122,223,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (3123,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (3124,223,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (3125,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (3126,223,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (3127,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (3128,223,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (3129,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (3130,223,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (3131,223,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (3132,223,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (3133,223,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (3134,223,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (3135,223,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (3136,223,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (3137,223,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (3138,223,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (3139,223,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (3140,223,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3141,223,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (3142,223,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (3143,223,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (3144,223,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (3145,223,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (3146,223,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (3147,223,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (3148,223,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (3149,223,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (3150,223,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (3151,223,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (3152,223,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (3153,223,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (3154,223,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (3155,223,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (3156,223,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (3157,223,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (3158,223,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (3159,223,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (3160,223,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (3161,223,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (3162,223,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (3163,223,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (3164,223,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (3165,223,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (3166,223,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (3167,223,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (3168,223,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (3169,223,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (3170,223,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (3171,223,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (3172,223,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3173,223,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (3174,223,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (3175,223,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (3176,223,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (3177,223,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (3178,223,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (3179,223,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (3180,223,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (3181,223,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (3182,223,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (3183,223,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (3184,223,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (3185,223,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (3186,223,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (3187,223,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (3188,223,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (3189,223,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (3190,223,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (3191,223,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (3192,223,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (3193,223,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (3194,223,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (3195,223,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (3196,223,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (3197,223,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (3198,223,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3199,223,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (3200,223,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (3201,223,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (3202,223,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (3203,223,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (3204,223,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (3205,223,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (3206,223,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (3207,223,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (3208,223,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (3209,223,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (3210,223,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (3211,223,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (3212,223,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (3213,223,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (3214,223,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (3215,223,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (3216,223,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (3217,223,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (3218,223,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (3219,223,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (3220,223,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (3221,223,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (3222,223,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (3223,223,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (3224,223,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3225,223,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (3226,223,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (3227,223,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (3228,223,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (3229,223,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (3230,223,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3231,223,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (3232,223,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (3233,223,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (3234,223,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (3235,223,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (3236,223,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (3237,223,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (3238,223,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (3239,223,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (3240,223,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3241,223,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (3242,223,'secao_banner_principal_video_principal_mob_1','http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3243,223,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (3244,223,'secao_banner_principal_video_pricinpal_desk_2','http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3245,223,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (3246,223,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (3247,223,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (3248,223,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (3249,223,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (3250,223,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3251,223,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (3256,225,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (3258,225,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (3259,225,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (3260,225,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (3261,225,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (3262,225,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (3263,225,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (3264,225,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (3265,225,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (3266,225,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (3267,225,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (3268,225,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (3269,225,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (3270,225,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (3271,225,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (3272,225,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (3273,225,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (3274,225,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (3275,225,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (3276,225,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (3277,225,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (3278,225,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (3279,225,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (3280,225,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (3281,225,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (3282,225,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (3283,225,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (3284,225,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (3285,225,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (3286,225,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (3287,225,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (3288,225,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (3289,225,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (3290,225,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (3291,225,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (3292,225,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (3293,225,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (3294,225,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (3295,225,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (3296,225,'secao_categorias_banner_de_navegacao_banner_navegacao_full','');
INSERT INTO `wp_postmeta` VALUES (3297,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (3298,225,'secao_categorias_banner_de_navegacao_link_banner_full','#');
INSERT INTO `wp_postmeta` VALUES (3299,225,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (3300,225,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (3301,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (3302,225,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (3303,225,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (3304,225,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (3305,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (3306,225,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (3307,225,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (3308,225,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (3309,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (3310,225,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (3311,225,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (3312,225,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (3313,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (3314,225,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (3315,225,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (3316,225,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (3317,225,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (3318,225,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (3319,225,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (3320,225,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (3321,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (3322,225,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (3323,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (3324,225,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (3325,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (3326,225,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (3327,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (3328,225,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (3329,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (3330,225,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (3331,225,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (3332,225,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (3333,225,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (3334,225,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (3335,225,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (3336,225,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (3337,225,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (3338,225,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (3339,225,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (3340,225,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3341,225,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (3342,225,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (3343,225,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (3344,225,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (3345,225,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (3346,225,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (3347,225,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (3348,225,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (3349,225,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (3350,225,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (3351,225,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (3352,225,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (3353,225,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (3354,225,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (3355,225,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (3356,225,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (3357,225,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (3358,225,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (3359,225,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (3360,225,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (3361,225,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (3362,225,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (3363,225,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (3364,225,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (3365,225,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (3366,225,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (3367,225,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (3368,225,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (3369,225,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (3370,225,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (3371,225,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (3372,225,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3373,225,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (3374,225,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (3375,225,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (3376,225,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (3377,225,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (3378,225,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (3379,225,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (3380,225,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (3381,225,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (3382,225,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (3383,225,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (3384,225,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (3385,225,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (3386,225,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (3387,225,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (3388,225,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (3389,225,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (3390,225,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (3391,225,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (3392,225,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (3393,225,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (3394,225,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (3395,225,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (3396,225,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (3397,225,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (3398,225,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3399,225,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (3400,225,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (3401,225,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (3402,225,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (3403,225,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (3404,225,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (3405,225,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (3406,225,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (3407,225,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (3408,225,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (3409,225,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (3410,225,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (3411,225,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (3412,225,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (3413,225,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (3414,225,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (3415,225,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (3416,225,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (3417,225,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (3418,225,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (3419,225,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (3420,225,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (3421,225,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (3422,225,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (3423,225,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (3424,225,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3425,225,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (3426,225,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (3427,225,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (3428,225,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (3429,225,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (3430,225,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3431,225,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (3432,225,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (3433,225,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (3434,225,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (3435,225,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (3436,225,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (3437,225,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (3438,225,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (3439,225,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (3440,225,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3441,225,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (3442,225,'secao_banner_principal_video_principal_mob_1','http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3443,225,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (3444,225,'secao_banner_principal_video_pricinpal_desk_2','http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3445,225,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (3446,225,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (3447,225,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (3448,225,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (3449,225,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (3450,225,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3451,225,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (3454,227,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (3455,227,'_edit_lock','1770747058:1');
INSERT INTO `wp_postmeta` VALUES (3456,227,'_thumbnail_id','72');
INSERT INTO `wp_postmeta` VALUES (3457,228,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (3458,228,'_edit_lock','1770748194:1');
INSERT INTO `wp_postmeta` VALUES (3461,229,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (3463,229,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (3464,229,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (3465,229,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (3466,229,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (3467,229,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (3468,229,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (3469,229,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (3470,229,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (3471,229,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (3472,229,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (3473,229,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (3474,229,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (3475,229,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (3476,229,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (3477,229,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (3478,229,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (3479,229,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (3480,229,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (3481,229,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (3482,229,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (3483,229,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (3484,229,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (3485,229,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (3486,229,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (3487,229,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (3488,229,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (3489,229,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (3490,229,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (3491,229,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (3492,229,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (3493,229,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (3494,229,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (3495,229,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (3496,229,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (3497,229,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (3498,229,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (3499,229,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (3500,229,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (3501,229,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (3502,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (3503,229,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (3504,229,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (3505,229,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (3506,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (3507,229,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (3508,229,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (3509,229,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (3510,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (3511,229,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (3512,229,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (3513,229,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (3514,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (3515,229,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (3516,229,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (3517,229,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (3518,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (3519,229,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (3520,229,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (3521,229,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (3522,229,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (3523,229,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (3524,229,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (3525,229,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (3526,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (3527,229,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (3528,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (3529,229,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (3530,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (3531,229,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (3532,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (3533,229,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (3534,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (3535,229,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (3536,229,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (3537,229,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (3538,229,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (3539,229,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (3540,229,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (3541,229,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (3542,229,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (3543,229,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (3544,229,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (3545,229,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3546,229,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (3547,229,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (3548,229,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (3549,229,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (3550,229,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (3551,229,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (3552,229,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (3553,229,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (3554,229,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (3555,229,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (3556,229,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (3557,229,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (3558,229,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (3559,229,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (3560,229,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (3561,229,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (3562,229,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (3563,229,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (3564,229,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (3565,229,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (3566,229,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (3567,229,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (3568,229,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (3569,229,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (3570,229,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (3571,229,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (3572,229,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (3573,229,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (3574,229,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (3575,229,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (3576,229,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (3577,229,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3578,229,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (3579,229,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (3580,229,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (3581,229,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (3582,229,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (3583,229,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (3584,229,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (3585,229,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (3586,229,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (3587,229,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (3588,229,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (3589,229,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (3590,229,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (3591,229,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (3592,229,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (3593,229,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (3594,229,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (3595,229,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (3596,229,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (3597,229,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (3598,229,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (3599,229,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (3600,229,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (3601,229,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (3602,229,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (3603,229,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3604,229,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (3605,229,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (3606,229,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (3607,229,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (3608,229,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (3609,229,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (3610,229,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (3611,229,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (3612,229,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (3613,229,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (3614,229,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (3615,229,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (3616,229,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (3617,229,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (3618,229,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (3619,229,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (3620,229,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (3621,229,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (3622,229,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (3623,229,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (3624,229,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (3625,229,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (3626,229,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (3627,229,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (3628,229,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (3629,229,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3630,229,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (3631,229,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (3632,229,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (3633,229,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (3634,229,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (3635,229,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3636,229,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (3637,229,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (3638,229,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (3639,229,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (3640,229,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (3641,229,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (3642,229,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (3643,229,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (3644,229,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (3645,229,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3646,229,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (3647,229,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (3648,229,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (3649,229,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (3650,229,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (3651,229,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (3652,229,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (3653,229,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (3654,229,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (3655,229,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3656,229,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (3657,228,'preco_do_produto','399,90');
INSERT INTO `wp_postmeta` VALUES (3658,228,'_preco_do_produto','field_6976ad9d6b45e');
INSERT INTO `wp_postmeta` VALUES (3659,228,'preco_promocional_do_produto','');
INSERT INTO `wp_postmeta` VALUES (3660,228,'_preco_promocional_do_produto','field_6976add36b45f');
INSERT INTO `wp_postmeta` VALUES (3661,228,'tag_do_produtos','');
INSERT INTO `wp_postmeta` VALUES (3662,228,'_tag_do_produtos','field_6976ae7e6b460');
INSERT INTO `wp_postmeta` VALUES (3663,228,'mais_vendidos','1');
INSERT INTO `wp_postmeta` VALUES (3664,228,'_mais_vendidos','field_6976aeca6b461');
INSERT INTO `wp_postmeta` VALUES (3665,228,'mais_desejados','1');
INSERT INTO `wp_postmeta` VALUES (3666,228,'_mais_desejados','field_6976af326b462');
INSERT INTO `wp_postmeta` VALUES (3667,228,'linha_mais_procurada','1');
INSERT INTO `wp_postmeta` VALUES (3668,228,'_linha_mais_procurada','field_697aa7cddca66');
INSERT INTO `wp_postmeta` VALUES (3669,228,'queridos','0');
INSERT INTO `wp_postmeta` VALUES (3670,228,'_queridos','field_697abdb74f63b');
INSERT INTO `wp_postmeta` VALUES (3671,228,'url_do_video','');
INSERT INTO `wp_postmeta` VALUES (3672,228,'_url_do_video','field_697aa7e6730d0');
INSERT INTO `wp_postmeta` VALUES (3673,228,'url_do_video_mob','');
INSERT INTO `wp_postmeta` VALUES (3674,228,'_url_do_video_mob','field_697fcbbe651d1');
INSERT INTO `wp_postmeta` VALUES (3675,228,'imagem_da_linha_mais_procurada','151');
INSERT INTO `wp_postmeta` VALUES (3676,228,'_imagem_da_linha_mais_procurada','field_697aa7fe730d1');
INSERT INTO `wp_postmeta` VALUES (3677,228,'_thumbnail_id','90');
INSERT INTO `wp_postmeta` VALUES (3678,142,'_wp_trash_meta_status','publish');
INSERT INTO `wp_postmeta` VALUES (3679,142,'_wp_trash_meta_time','1770748415');
INSERT INTO `wp_postmeta` VALUES (3680,142,'_wp_desired_post_slug','mister-oculos-zona-norte');
INSERT INTO `wp_postmeta` VALUES (3681,7,'_wp_old_date','2026-01-24');
INSERT INTO `wp_postmeta` VALUES (3682,8,'_wp_old_date','2026-01-24');
INSERT INTO `wp_postmeta` VALUES (3683,9,'_wp_old_date','2026-01-24');
INSERT INTO `wp_postmeta` VALUES (3684,10,'_wp_old_date','2026-01-24');
INSERT INTO `wp_postmeta` VALUES (3686,231,'_menu_item_type','taxonomy');
INSERT INTO `wp_postmeta` VALUES (3687,231,'_menu_item_menu_item_parent','10');
INSERT INTO `wp_postmeta` VALUES (3688,231,'_menu_item_object_id','4');
INSERT INTO `wp_postmeta` VALUES (3689,231,'_menu_item_object','tipo_oculos');
INSERT INTO `wp_postmeta` VALUES (3690,231,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (3691,231,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (3692,231,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (3693,231,'_menu_item_url','');
INSERT INTO `wp_postmeta` VALUES (3695,232,'_menu_item_type','taxonomy');
INSERT INTO `wp_postmeta` VALUES (3696,232,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (3697,232,'_menu_item_object_id','10');
INSERT INTO `wp_postmeta` VALUES (3698,232,'_menu_item_object','tipo_oculos');
INSERT INTO `wp_postmeta` VALUES (3699,232,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (3700,232,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (3701,232,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (3702,232,'_menu_item_url','');
INSERT INTO `wp_postmeta` VALUES (3704,202,'_wp_old_date','2026-02-08');
INSERT INTO `wp_postmeta` VALUES (3705,233,'_menu_item_type','post_type');
INSERT INTO `wp_postmeta` VALUES (3706,233,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (3707,233,'_menu_item_object_id','14');
INSERT INTO `wp_postmeta` VALUES (3708,233,'_menu_item_object','page');
INSERT INTO `wp_postmeta` VALUES (3709,233,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (3710,233,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (3711,233,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (3712,233,'_menu_item_url','');
INSERT INTO `wp_postmeta` VALUES (3714,12,'_wp_old_date','2026-01-24');
INSERT INTO `wp_postmeta` VALUES (3717,240,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (3719,14,'catalogo','tesando o código');
INSERT INTO `wp_postmeta` VALUES (3720,14,'_catalogo','field_69b2f15a6a07c');
INSERT INTO `wp_postmeta` VALUES (3721,240,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (3722,240,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (3723,240,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (3724,240,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (3725,240,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (3726,240,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (3727,240,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (3728,240,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (3729,240,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (3730,240,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (3731,240,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (3732,240,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (3733,240,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (3734,240,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (3735,240,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (3736,240,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (3737,240,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (3738,240,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (3739,240,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (3740,240,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (3741,240,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (3742,240,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (3743,240,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (3744,240,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (3745,240,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (3746,240,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (3747,240,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (3748,240,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (3749,240,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (3750,240,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (3751,240,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (3752,240,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (3753,240,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (3754,240,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (3755,240,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (3756,240,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (3757,240,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (3758,240,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (3759,240,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (3760,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (3761,240,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (3762,240,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (3763,240,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (3764,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (3765,240,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (3766,240,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (3767,240,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (3768,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (3769,240,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (3770,240,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (3771,240,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (3772,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (3773,240,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (3774,240,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (3775,240,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (3776,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (3777,240,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (3778,240,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (3779,240,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (3780,240,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (3781,240,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (3782,240,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (3783,240,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (3784,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (3785,240,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (3786,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (3787,240,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (3788,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (3789,240,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (3790,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (3791,240,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (3792,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (3793,240,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (3794,240,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (3795,240,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (3796,240,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (3797,240,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (3798,240,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (3799,240,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (3800,240,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (3801,240,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (3802,240,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (3803,240,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3804,240,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (3805,240,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (3806,240,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (3807,240,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (3808,240,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (3809,240,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (3810,240,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (3811,240,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (3812,240,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (3813,240,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (3814,240,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (3815,240,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (3816,240,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (3817,240,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (3818,240,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (3819,240,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (3820,240,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (3821,240,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (3822,240,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (3823,240,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (3824,240,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (3825,240,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (3826,240,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (3827,240,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (3828,240,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (3829,240,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (3830,240,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (3831,240,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (3832,240,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (3833,240,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (3834,240,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (3835,240,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3836,240,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (3837,240,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (3838,240,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (3839,240,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (3840,240,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (3841,240,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (3842,240,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (3843,240,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (3844,240,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (3845,240,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (3846,240,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (3847,240,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (3848,240,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (3849,240,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (3850,240,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (3851,240,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (3852,240,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (3853,240,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (3854,240,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (3855,240,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (3856,240,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (3857,240,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (3858,240,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (3859,240,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (3860,240,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (3861,240,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3862,240,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (3863,240,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (3864,240,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (3865,240,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (3866,240,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (3867,240,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (3868,240,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (3869,240,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (3870,240,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (3871,240,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (3872,240,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (3873,240,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (3874,240,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (3875,240,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (3876,240,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (3877,240,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (3878,240,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (3879,240,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (3880,240,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (3881,240,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (3882,240,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (3883,240,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (3884,240,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (3885,240,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (3886,240,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (3887,240,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3888,240,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (3889,240,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (3890,240,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (3891,240,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (3892,240,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (3893,240,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (3894,240,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (3895,240,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (3896,240,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (3897,240,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (3898,240,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (3899,240,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (3900,240,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (3901,240,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (3902,240,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (3903,240,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (3904,240,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (3905,240,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (3906,240,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (3907,240,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (3908,240,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (3909,240,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (3910,240,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (3911,240,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (3912,240,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (3913,240,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (3914,240,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (3915,240,'catalogo','tesando o código');
INSERT INTO `wp_postmeta` VALUES (3916,240,'_catalogo','field_69b2f15a6a07c');
INSERT INTO `wp_postmeta` VALUES (3919,246,'_wp_attached_file','2026/03/cacharel.png');
INSERT INTO `wp_postmeta` VALUES (3920,246,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:20:\"2026/03/cacharel.png\";s:8:\"filesize\";i:11669;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"cacharel-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3233;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"cacharel-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2326;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3921,267,'_wp_attached_file','2026/03/New-balance-1.png');
INSERT INTO `wp_postmeta` VALUES (3922,267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:25:\"2026/03/New-balance-1.png\";s:8:\"filesize\";i:19938;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"New-balance-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"New-balance-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11727;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3923,268,'_wp_attached_file','2026/03/Morena-Rosa-Catalogo-Receituario-1.png');
INSERT INTO `wp_postmeta` VALUES (3924,268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:46:\"2026/03/Morena-Rosa-Catalogo-Receituario-1.png\";s:8:\"filesize\";i:253119;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Morena-Rosa-Catalogo-Receituario-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61214;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Morena-Rosa-Catalogo-Receituario-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42304;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3925,269,'_wp_attached_file','2026/03/Morena-Rosa-Catalogo-Solar-1.png');
INSERT INTO `wp_postmeta` VALUES (3926,269,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:40:\"2026/03/Morena-Rosa-Catalogo-Solar-1.png\";s:8:\"filesize\";i:228294;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Morena-Rosa-Catalogo-Solar-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55397;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Morena-Rosa-Catalogo-Solar-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35641;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3929,271,'_wp_attached_file','2026/03/Morena-Rosa-Catalogo-Solar-1-1.png');
INSERT INTO `wp_postmeta` VALUES (3930,271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:42:\"2026/03/Morena-Rosa-Catalogo-Solar-1-1.png\";s:8:\"filesize\";i:228294;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Morena-Rosa-Catalogo-Solar-1-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55397;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Morena-Rosa-Catalogo-Solar-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35641;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3931,272,'_wp_attached_file','2026/03/Maria-Valentina-Catalogo-Solar-1.png');
INSERT INTO `wp_postmeta` VALUES (3932,272,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:44:\"2026/03/Maria-Valentina-Catalogo-Solar-1.png\";s:8:\"filesize\";i:203010;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Maria-Valentina-Catalogo-Solar-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Maria-Valentina-Catalogo-Solar-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33730;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3933,273,'_wp_attached_file','2026/03/Preenchimento-generativo-2-1.png');
INSERT INTO `wp_postmeta` VALUES (3934,273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:40:\"2026/03/Preenchimento-generativo-2-1.png\";s:8:\"filesize\";i:176512;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Preenchimento-generativo-2-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Preenchimento-generativo-2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30250;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3935,274,'_wp_attached_file','2026/03/Sestini-Catalogo-Solar-1.png');
INSERT INTO `wp_postmeta` VALUES (3936,274,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:36:\"2026/03/Sestini-Catalogo-Solar-1.png\";s:8:\"filesize\";i:132812;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Sestini-Catalogo-Solar-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36373;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Sestini-Catalogo-Solar-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25431;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3937,275,'_wp_attached_file','2026/03/Dudalina-Catalogo-Receituario-copiar-1.png');
INSERT INTO `wp_postmeta` VALUES (3938,275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:50:\"2026/03/Dudalina-Catalogo-Receituario-copiar-1.png\";s:8:\"filesize\";i:129381;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Dudalina-Catalogo-Receituario-copiar-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25830;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Dudalina-Catalogo-Receituario-copiar-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18826;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3939,276,'_wp_attached_file','2026/03/Dudalina-Catalogo-Receituario-1.png');
INSERT INTO `wp_postmeta` VALUES (3940,276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:43:\"2026/03/Dudalina-Catalogo-Receituario-1.png\";s:8:\"filesize\";i:180838;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Dudalina-Catalogo-Receituario-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34782;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Dudalina-Catalogo-Receituario-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25438;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (3943,277,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (3945,14,'secao_catalogos_titulo_catalogos','Catálogos');
INSERT INTO `wp_postmeta` VALUES (3946,14,'_secao_catalogos_titulo_catalogos','field_69b2f3f81f38a');
INSERT INTO `wp_postmeta` VALUES (3947,14,'secao_catalogos_subtitulo_catalogos','Conheça os óculos das principais marcas');
INSERT INTO `wp_postmeta` VALUES (3948,14,'_secao_catalogos_subtitulo_catalogos','field_69b2f4121f38b');
INSERT INTO `wp_postmeta` VALUES (3949,14,'secao_catalogos_catalogos_banner_catalogo_1','246');
INSERT INTO `wp_postmeta` VALUES (3950,14,'_secao_catalogos_catalogos_banner_catalogo_1','field_69b2f5cdbc30f');
INSERT INTO `wp_postmeta` VALUES (3951,14,'secao_catalogos_catalogos_link_catalogo_1','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=0b2e4d81-5ea3-4b1d-a5d6-bdbec8b28d08');
INSERT INTO `wp_postmeta` VALUES (3952,14,'_secao_catalogos_catalogos_link_catalogo_1','field_69b2f717bc319');
INSERT INTO `wp_postmeta` VALUES (3953,14,'secao_catalogos_catalogos_banner_catalogo_2','267');
INSERT INTO `wp_postmeta` VALUES (3954,14,'_secao_catalogos_catalogos_banner_catalogo_2','field_69b2f611bc310');
INSERT INTO `wp_postmeta` VALUES (3955,14,'secao_catalogos_catalogos_link_catalogo_2','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=34ecf332-f61b-4713-92df-4e9b89ff3345');
INSERT INTO `wp_postmeta` VALUES (3956,14,'_secao_catalogos_catalogos_link_catalogo_2','field_69b2f775bc31a');
INSERT INTO `wp_postmeta` VALUES (3957,14,'secao_catalogos_catalogos_banner_catalogo_3','268');
INSERT INTO `wp_postmeta` VALUES (3958,14,'_secao_catalogos_catalogos_banner_catalogo_3','field_69b2f61bbc311');
INSERT INTO `wp_postmeta` VALUES (3959,14,'secao_catalogos_catalogos_link_catalogo_3','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=3bd535b3-8a3b-47eb-a57c-9041fc929ff5');
INSERT INTO `wp_postmeta` VALUES (3960,14,'_secao_catalogos_catalogos_link_catalogo_3','field_69b2f783bc31b');
INSERT INTO `wp_postmeta` VALUES (3961,14,'secao_catalogos_catalogos_banner_catalogo_4','269');
INSERT INTO `wp_postmeta` VALUES (3962,14,'_secao_catalogos_catalogos_banner_catalogo_4','field_69b2f658bc312');
INSERT INTO `wp_postmeta` VALUES (3963,14,'secao_catalogos_catalogos_link_catalogo_4','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=1cfc1d75-0362-4048-81ad-f37c54d3c5f4');
INSERT INTO `wp_postmeta` VALUES (3964,14,'_secao_catalogos_catalogos_link_catalogo_4','field_69b2f7adbc31c');
INSERT INTO `wp_postmeta` VALUES (3965,14,'secao_catalogos_catalogos_banner_catalogo_5','272');
INSERT INTO `wp_postmeta` VALUES (3966,14,'_secao_catalogos_catalogos_banner_catalogo_5','field_69b2f6a2bc313');
INSERT INTO `wp_postmeta` VALUES (3967,14,'secao_catalogos_catalogos_link_catalogo_5','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=b16a9692-e849-4a25-9241-c6f3c54b3edf');
INSERT INTO `wp_postmeta` VALUES (3968,14,'_secao_catalogos_catalogos_link_catalogo_5','field_69b2f7b9bc31d');
INSERT INTO `wp_postmeta` VALUES (3969,14,'secao_catalogos_catalogos_banner_catalogo_6','280');
INSERT INTO `wp_postmeta` VALUES (3970,14,'_secao_catalogos_catalogos_banner_catalogo_6','field_69b2f6b1bc314');
INSERT INTO `wp_postmeta` VALUES (3971,14,'secao_catalogos_catalogos_link_catalogo_6','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=49806ff4-f8bd-46cb-b44e-7c98c6ab0770');
INSERT INTO `wp_postmeta` VALUES (3972,14,'_secao_catalogos_catalogos_link_catalogo_6','field_69b2f7c9bc31e');
INSERT INTO `wp_postmeta` VALUES (3973,14,'secao_catalogos_catalogos_banner_catalogo_7','273');
INSERT INTO `wp_postmeta` VALUES (3974,14,'_secao_catalogos_catalogos_banner_catalogo_7','field_69b2f6bfbc315');
INSERT INTO `wp_postmeta` VALUES (3975,14,'secao_catalogos_catalogos_link_catalogo_7','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=226203bb-2cdd-4acf-9a63-0687bb3014d5');
INSERT INTO `wp_postmeta` VALUES (3976,14,'_secao_catalogos_catalogos_link_catalogo_7','field_69b2f7d8bc31f');
INSERT INTO `wp_postmeta` VALUES (3977,14,'secao_catalogos_catalogos_banner_catalogo_8','274');
INSERT INTO `wp_postmeta` VALUES (3978,14,'_secao_catalogos_catalogos_banner_catalogo_8','field_69b2f6cbbc316');
INSERT INTO `wp_postmeta` VALUES (3979,14,'secao_catalogos_catalogos_link_catalogo_8','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=40613178-4f5a-44a0-9297-37589dbcdff0');
INSERT INTO `wp_postmeta` VALUES (3980,14,'_secao_catalogos_catalogos_link_catalogo_8','field_69b2f7e4bc320');
INSERT INTO `wp_postmeta` VALUES (3981,14,'secao_catalogos_catalogos_banner_catalogo_9','275');
INSERT INTO `wp_postmeta` VALUES (3982,14,'_secao_catalogos_catalogos_banner_catalogo_9','field_69b2f6d5bc317');
INSERT INTO `wp_postmeta` VALUES (3983,14,'secao_catalogos_catalogos_link_catalogo_9','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=78a5b4ee-c6a8-417f-b92c-3cd886fe7cca');
INSERT INTO `wp_postmeta` VALUES (3984,14,'_secao_catalogos_catalogos_link_catalogo_9','field_69b40a41aadd7');
INSERT INTO `wp_postmeta` VALUES (3985,14,'secao_catalogos_catalogos_banner_catalogo_10','276');
INSERT INTO `wp_postmeta` VALUES (3986,14,'_secao_catalogos_catalogos_banner_catalogo_10','field_69b2f702bc318');
INSERT INTO `wp_postmeta` VALUES (3987,14,'secao_catalogos_catalogos_link_catalogo_10','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=99619f71-2800-4e7e-92ba-c76d3f2416ac');
INSERT INTO `wp_postmeta` VALUES (3988,14,'_secao_catalogos_catalogos_link_catalogo_10','field_69b2f800bc322');
INSERT INTO `wp_postmeta` VALUES (3989,14,'secao_catalogos_catalogos','');
INSERT INTO `wp_postmeta` VALUES (3990,14,'_secao_catalogos_catalogos','field_69b2f42f1f38c');
INSERT INTO `wp_postmeta` VALUES (3991,14,'secao_catalogos','');
INSERT INTO `wp_postmeta` VALUES (3992,14,'_secao_catalogos','field_69b2f2901f389');
INSERT INTO `wp_postmeta` VALUES (3993,277,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (3994,277,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (3995,277,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (3996,277,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (3997,277,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (3998,277,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (3999,277,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (4000,277,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (4001,277,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (4002,277,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (4003,277,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (4004,277,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (4005,277,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (4006,277,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (4007,277,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (4008,277,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (4009,277,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (4010,277,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (4011,277,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (4012,277,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (4013,277,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (4014,277,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (4015,277,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (4016,277,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (4017,277,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (4018,277,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (4019,277,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (4020,277,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (4021,277,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (4022,277,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (4023,277,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (4024,277,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (4025,277,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (4026,277,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (4027,277,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (4028,277,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (4029,277,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (4030,277,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (4031,277,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (4032,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (4033,277,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (4034,277,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (4035,277,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (4036,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (4037,277,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (4038,277,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (4039,277,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (4040,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (4041,277,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (4042,277,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (4043,277,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (4044,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (4045,277,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (4046,277,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (4047,277,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (4048,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (4049,277,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (4050,277,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (4051,277,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (4052,277,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (4053,277,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (4054,277,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (4055,277,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (4056,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (4057,277,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (4058,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (4059,277,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (4060,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (4061,277,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (4062,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (4063,277,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (4064,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (4065,277,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (4066,277,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (4067,277,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (4068,277,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (4069,277,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (4070,277,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (4071,277,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (4072,277,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (4073,277,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (4074,277,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (4075,277,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4076,277,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (4077,277,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (4078,277,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (4079,277,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (4080,277,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (4081,277,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (4082,277,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (4083,277,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (4084,277,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (4085,277,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (4086,277,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (4087,277,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (4088,277,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (4089,277,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (4090,277,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (4091,277,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (4092,277,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (4093,277,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (4094,277,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (4095,277,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (4096,277,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (4097,277,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (4098,277,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (4099,277,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (4100,277,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (4101,277,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (4102,277,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (4103,277,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (4104,277,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (4105,277,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (4106,277,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (4107,277,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4108,277,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (4109,277,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (4110,277,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (4111,277,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (4112,277,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (4113,277,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (4114,277,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (4115,277,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (4116,277,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (4117,277,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (4118,277,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (4119,277,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (4120,277,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (4121,277,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (4122,277,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (4123,277,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (4124,277,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (4125,277,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (4126,277,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (4127,277,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (4128,277,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (4129,277,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (4130,277,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (4131,277,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (4132,277,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (4133,277,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (4134,277,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (4135,277,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (4136,277,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (4137,277,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (4138,277,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (4139,277,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (4140,277,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (4141,277,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (4142,277,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (4143,277,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (4144,277,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (4145,277,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (4146,277,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (4147,277,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (4148,277,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (4149,277,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (4150,277,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (4151,277,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (4152,277,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (4153,277,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (4154,277,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (4155,277,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (4156,277,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (4157,277,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (4158,277,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (4159,277,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4160,277,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (4161,277,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (4162,277,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (4163,277,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (4164,277,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (4165,277,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4166,277,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (4167,277,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (4168,277,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (4169,277,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (4170,277,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (4171,277,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (4172,277,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (4173,277,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (4174,277,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (4175,277,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (4176,277,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (4177,277,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (4178,277,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (4179,277,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (4180,277,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (4181,277,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (4182,277,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (4183,277,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (4184,277,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (4185,277,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (4186,277,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (4187,277,'catalogo','tesando o código');
INSERT INTO `wp_postmeta` VALUES (4188,277,'_catalogo','field_69b2f15a6a07c');
INSERT INTO `wp_postmeta` VALUES (4189,277,'secao_catalogos_titulo_catalogos','catálogos');
INSERT INTO `wp_postmeta` VALUES (4190,277,'_secao_catalogos_titulo_catalogos','field_69b2f3f81f38a');
INSERT INTO `wp_postmeta` VALUES (4191,277,'secao_catalogos_subtitulo_catalogos','Conheça os óculos das principais marcas');
INSERT INTO `wp_postmeta` VALUES (4192,277,'_secao_catalogos_subtitulo_catalogos','field_69b2f4121f38b');
INSERT INTO `wp_postmeta` VALUES (4193,277,'secao_catalogos_catalogos_banner_catalogo_1','246');
INSERT INTO `wp_postmeta` VALUES (4194,277,'_secao_catalogos_catalogos_banner_catalogo_1','field_69b2f5cdbc30f');
INSERT INTO `wp_postmeta` VALUES (4195,277,'secao_catalogos_catalogos_link_catalogo_1','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCBTS4Lo14dS6XWvb7Iso0IAVXDQq35Zr-ijhvzWGxkv1M');
INSERT INTO `wp_postmeta` VALUES (4196,277,'_secao_catalogos_catalogos_link_catalogo_1','field_69b2f717bc319');
INSERT INTO `wp_postmeta` VALUES (4197,277,'secao_catalogos_catalogos_banner_catalogo_2','267');
INSERT INTO `wp_postmeta` VALUES (4198,277,'_secao_catalogos_catalogos_banner_catalogo_2','field_69b2f611bc310');
INSERT INTO `wp_postmeta` VALUES (4199,277,'secao_catalogos_catalogos_link_catalogo_2','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQAy8-w0G_YTR5LfTpuJ_zNFAcRUYLy-WCJdZ36i8xXcDU4');
INSERT INTO `wp_postmeta` VALUES (4200,277,'_secao_catalogos_catalogos_link_catalogo_2','field_69b2f775bc31a');
INSERT INTO `wp_postmeta` VALUES (4201,277,'secao_catalogos_catalogos_banner_catalogo_3','268');
INSERT INTO `wp_postmeta` VALUES (4202,277,'_secao_catalogos_catalogos_banner_catalogo_3','field_69b2f61bbc311');
INSERT INTO `wp_postmeta` VALUES (4203,277,'secao_catalogos_catalogos_link_catalogo_3','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCzNdU7O4rrR6V8kEH8kp_1AZv6_aocmidHuhNV2UzJ4ec');
INSERT INTO `wp_postmeta` VALUES (4204,277,'_secao_catalogos_catalogos_link_catalogo_3','field_69b2f783bc31b');
INSERT INTO `wp_postmeta` VALUES (4205,277,'secao_catalogos_catalogos_banner_catalogo_4','269');
INSERT INTO `wp_postmeta` VALUES (4206,277,'_secao_catalogos_catalogos_banner_catalogo_4','field_69b2f658bc312');
INSERT INTO `wp_postmeta` VALUES (4207,277,'secao_catalogos_catalogos_link_catalogo_4','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB1HfwcYgNIQIGt83xU08X0AUz_t_82IT-Xc9S_4esxzqk');
INSERT INTO `wp_postmeta` VALUES (4208,277,'_secao_catalogos_catalogos_link_catalogo_4','field_69b2f7adbc31c');
INSERT INTO `wp_postmeta` VALUES (4209,277,'secao_catalogos_catalogos_banner_catalogo_5','272');
INSERT INTO `wp_postmeta` VALUES (4210,277,'_secao_catalogos_catalogos_banner_catalogo_5','field_69b2f6a2bc313');
INSERT INTO `wp_postmeta` VALUES (4211,277,'secao_catalogos_catalogos_link_catalogo_5','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCSlmqxSeglSpJBxvPFSz7fAfBXeYIvL8Vd1UWTKRZs-YA');
INSERT INTO `wp_postmeta` VALUES (4212,277,'_secao_catalogos_catalogos_link_catalogo_5','field_69b2f7b9bc31d');
INSERT INTO `wp_postmeta` VALUES (4213,277,'secao_catalogos_catalogos_banner_catalogo_6','270');
INSERT INTO `wp_postmeta` VALUES (4214,277,'_secao_catalogos_catalogos_banner_catalogo_6','field_69b2f6b1bc314');
INSERT INTO `wp_postmeta` VALUES (4215,277,'secao_catalogos_catalogos_link_catalogo_6','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQD0b4BJvfjLRrROfJjGqwdwAfh34WsHzcBWqLAMcjP6Nx8');
INSERT INTO `wp_postmeta` VALUES (4216,277,'_secao_catalogos_catalogos_link_catalogo_6','field_69b2f7c9bc31e');
INSERT INTO `wp_postmeta` VALUES (4217,277,'secao_catalogos_catalogos_banner_catalogo_7','273');
INSERT INTO `wp_postmeta` VALUES (4218,277,'_secao_catalogos_catalogos_banner_catalogo_7','field_69b2f6bfbc315');
INSERT INTO `wp_postmeta` VALUES (4219,277,'secao_catalogos_catalogos_link_catalogo_7','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQC7A2Ii3SzPSppjBoe7MBTVARaxhOEyUnUf7IeoJi27C9U');
INSERT INTO `wp_postmeta` VALUES (4220,277,'_secao_catalogos_catalogos_link_catalogo_7','field_69b2f7d8bc31f');
INSERT INTO `wp_postmeta` VALUES (4221,277,'secao_catalogos_catalogos_banner_catalogo_8','274');
INSERT INTO `wp_postmeta` VALUES (4222,277,'_secao_catalogos_catalogos_banner_catalogo_8','field_69b2f6cbbc316');
INSERT INTO `wp_postmeta` VALUES (4223,277,'secao_catalogos_catalogos_link_catalogo_8','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB4MWFAWk-gRJKXN1idvN_wASKNW3GcrAMbjchk3c1tGKs');
INSERT INTO `wp_postmeta` VALUES (4224,277,'_secao_catalogos_catalogos_link_catalogo_8','field_69b2f7e4bc320');
INSERT INTO `wp_postmeta` VALUES (4225,277,'secao_catalogos_catalogos_banner_catalogo_9','275');
INSERT INTO `wp_postmeta` VALUES (4226,277,'_secao_catalogos_catalogos_banner_catalogo_9','field_69b2f6d5bc317');
INSERT INTO `wp_postmeta` VALUES (4227,277,'secao_catalogos_catalogos_link_catalogo_9','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQDutKV4qMZ_QbksPNiG_nzKAexF7wqVaezReUKXAzotexQ');
INSERT INTO `wp_postmeta` VALUES (4228,277,'_secao_catalogos_catalogos_link_catalogo_9','field_69b2f7f0bc321');
INSERT INTO `wp_postmeta` VALUES (4229,277,'secao_catalogos_catalogos_banner_catalogo_10','276');
INSERT INTO `wp_postmeta` VALUES (4230,277,'_secao_catalogos_catalogos_banner_catalogo_10','field_69b2f702bc318');
INSERT INTO `wp_postmeta` VALUES (4231,277,'secao_catalogos_catalogos_link_catalogo_10','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQBxn2GZACh-TpK6x20_JBasAVPj6HQfNybkdBp1YbHhrLA');
INSERT INTO `wp_postmeta` VALUES (4232,277,'_secao_catalogos_catalogos_link_catalogo_10','field_69b2f800bc322');
INSERT INTO `wp_postmeta` VALUES (4233,277,'secao_catalogos_catalogos','');
INSERT INTO `wp_postmeta` VALUES (4234,277,'_secao_catalogos_catalogos','field_69b2f42f1f38c');
INSERT INTO `wp_postmeta` VALUES (4235,277,'secao_catalogos','');
INSERT INTO `wp_postmeta` VALUES (4236,277,'_secao_catalogos','field_69b2f2901f389');
INSERT INTO `wp_postmeta` VALUES (4239,278,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (4241,278,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (4242,278,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (4243,278,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (4244,278,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (4245,278,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (4246,278,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (4247,278,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (4248,278,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (4249,278,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (4250,278,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (4251,278,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (4252,278,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (4253,278,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (4254,278,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (4255,278,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (4256,278,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (4257,278,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (4258,278,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (4259,278,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (4260,278,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (4261,278,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (4262,278,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (4263,278,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (4264,278,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (4265,278,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (4266,278,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (4267,278,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (4268,278,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (4269,278,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (4270,278,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (4271,278,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (4272,278,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (4273,278,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (4274,278,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (4275,278,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (4276,278,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (4277,278,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (4278,278,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (4279,278,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (4280,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (4281,278,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (4282,278,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (4283,278,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (4284,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (4285,278,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (4286,278,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (4287,278,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (4288,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (4289,278,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (4290,278,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (4291,278,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (4292,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (4293,278,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (4294,278,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (4295,278,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (4296,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (4297,278,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (4298,278,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (4299,278,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (4300,278,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (4301,278,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (4302,278,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (4303,278,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (4304,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (4305,278,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (4306,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (4307,278,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (4308,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (4309,278,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (4310,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (4311,278,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (4312,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (4313,278,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (4314,278,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (4315,278,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (4316,278,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (4317,278,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (4318,278,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (4319,278,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (4320,278,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (4321,278,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (4322,278,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (4323,278,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4324,278,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (4325,278,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (4326,278,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (4327,278,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (4328,278,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (4329,278,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (4330,278,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (4331,278,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (4332,278,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (4333,278,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (4334,278,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (4335,278,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (4336,278,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (4337,278,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (4338,278,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (4339,278,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (4340,278,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (4341,278,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (4342,278,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (4343,278,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (4344,278,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (4345,278,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (4346,278,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (4347,278,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (4348,278,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (4349,278,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (4350,278,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (4351,278,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (4352,278,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (4353,278,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (4354,278,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (4355,278,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4356,278,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (4357,278,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (4358,278,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (4359,278,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (4360,278,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (4361,278,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (4362,278,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (4363,278,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (4364,278,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (4365,278,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (4366,278,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (4367,278,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (4368,278,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (4369,278,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (4370,278,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (4371,278,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (4372,278,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (4373,278,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (4374,278,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (4375,278,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (4376,278,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (4377,278,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (4378,278,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (4379,278,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (4380,278,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (4381,278,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (4382,278,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (4383,278,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (4384,278,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (4385,278,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (4386,278,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (4387,278,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (4388,278,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (4389,278,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (4390,278,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (4391,278,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (4392,278,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (4393,278,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (4394,278,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (4395,278,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (4396,278,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (4397,278,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (4398,278,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (4399,278,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (4400,278,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (4401,278,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (4402,278,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (4403,278,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (4404,278,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (4405,278,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (4406,278,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (4407,278,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4408,278,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (4409,278,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (4410,278,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (4411,278,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (4412,278,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (4413,278,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4414,278,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (4415,278,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (4416,278,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (4417,278,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (4418,278,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (4419,278,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (4420,278,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (4421,278,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (4422,278,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (4423,278,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (4424,278,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (4425,278,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (4426,278,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (4427,278,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (4428,278,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (4429,278,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (4430,278,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (4431,278,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (4432,278,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (4433,278,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (4434,278,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (4435,278,'catalogo','tesando o código');
INSERT INTO `wp_postmeta` VALUES (4436,278,'_catalogo','field_69b2f15a6a07c');
INSERT INTO `wp_postmeta` VALUES (4437,278,'secao_catalogos_titulo_catalogos','Catálogos');
INSERT INTO `wp_postmeta` VALUES (4438,278,'_secao_catalogos_titulo_catalogos','field_69b2f3f81f38a');
INSERT INTO `wp_postmeta` VALUES (4439,278,'secao_catalogos_subtitulo_catalogos','Conheça os óculos das principais marcas');
INSERT INTO `wp_postmeta` VALUES (4440,278,'_secao_catalogos_subtitulo_catalogos','field_69b2f4121f38b');
INSERT INTO `wp_postmeta` VALUES (4441,278,'secao_catalogos_catalogos_banner_catalogo_1','246');
INSERT INTO `wp_postmeta` VALUES (4442,278,'_secao_catalogos_catalogos_banner_catalogo_1','field_69b2f5cdbc30f');
INSERT INTO `wp_postmeta` VALUES (4443,278,'secao_catalogos_catalogos_link_catalogo_1','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCBTS4Lo14dS6XWvb7Iso0IAVXDQq35Zr-ijhvzWGxkv1M');
INSERT INTO `wp_postmeta` VALUES (4444,278,'_secao_catalogos_catalogos_link_catalogo_1','field_69b2f717bc319');
INSERT INTO `wp_postmeta` VALUES (4445,278,'secao_catalogos_catalogos_banner_catalogo_2','267');
INSERT INTO `wp_postmeta` VALUES (4446,278,'_secao_catalogos_catalogos_banner_catalogo_2','field_69b2f611bc310');
INSERT INTO `wp_postmeta` VALUES (4447,278,'secao_catalogos_catalogos_link_catalogo_2','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQAy8-w0G_YTR5LfTpuJ_zNFAcRUYLy-WCJdZ36i8xXcDU4');
INSERT INTO `wp_postmeta` VALUES (4448,278,'_secao_catalogos_catalogos_link_catalogo_2','field_69b2f775bc31a');
INSERT INTO `wp_postmeta` VALUES (4449,278,'secao_catalogos_catalogos_banner_catalogo_3','268');
INSERT INTO `wp_postmeta` VALUES (4450,278,'_secao_catalogos_catalogos_banner_catalogo_3','field_69b2f61bbc311');
INSERT INTO `wp_postmeta` VALUES (4451,278,'secao_catalogos_catalogos_link_catalogo_3','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCzNdU7O4rrR6V8kEH8kp_1AZv6_aocmidHuhNV2UzJ4ec');
INSERT INTO `wp_postmeta` VALUES (4452,278,'_secao_catalogos_catalogos_link_catalogo_3','field_69b2f783bc31b');
INSERT INTO `wp_postmeta` VALUES (4453,278,'secao_catalogos_catalogos_banner_catalogo_4','269');
INSERT INTO `wp_postmeta` VALUES (4454,278,'_secao_catalogos_catalogos_banner_catalogo_4','field_69b2f658bc312');
INSERT INTO `wp_postmeta` VALUES (4455,278,'secao_catalogos_catalogos_link_catalogo_4','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB1HfwcYgNIQIGt83xU08X0AUz_t_82IT-Xc9S_4esxzqk');
INSERT INTO `wp_postmeta` VALUES (4456,278,'_secao_catalogos_catalogos_link_catalogo_4','field_69b2f7adbc31c');
INSERT INTO `wp_postmeta` VALUES (4457,278,'secao_catalogos_catalogos_banner_catalogo_5','272');
INSERT INTO `wp_postmeta` VALUES (4458,278,'_secao_catalogos_catalogos_banner_catalogo_5','field_69b2f6a2bc313');
INSERT INTO `wp_postmeta` VALUES (4459,278,'secao_catalogos_catalogos_link_catalogo_5','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCSlmqxSeglSpJBxvPFSz7fAfBXeYIvL8Vd1UWTKRZs-YA');
INSERT INTO `wp_postmeta` VALUES (4460,278,'_secao_catalogos_catalogos_link_catalogo_5','field_69b2f7b9bc31d');
INSERT INTO `wp_postmeta` VALUES (4461,278,'secao_catalogos_catalogos_banner_catalogo_6','270');
INSERT INTO `wp_postmeta` VALUES (4462,278,'_secao_catalogos_catalogos_banner_catalogo_6','field_69b2f6b1bc314');
INSERT INTO `wp_postmeta` VALUES (4463,278,'secao_catalogos_catalogos_link_catalogo_6','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQD0b4BJvfjLRrROfJjGqwdwAfh34WsHzcBWqLAMcjP6Nx8');
INSERT INTO `wp_postmeta` VALUES (4464,278,'_secao_catalogos_catalogos_link_catalogo_6','field_69b2f7c9bc31e');
INSERT INTO `wp_postmeta` VALUES (4465,278,'secao_catalogos_catalogos_banner_catalogo_7','273');
INSERT INTO `wp_postmeta` VALUES (4466,278,'_secao_catalogos_catalogos_banner_catalogo_7','field_69b2f6bfbc315');
INSERT INTO `wp_postmeta` VALUES (4467,278,'secao_catalogos_catalogos_link_catalogo_7','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQC7A2Ii3SzPSppjBoe7MBTVARaxhOEyUnUf7IeoJi27C9U');
INSERT INTO `wp_postmeta` VALUES (4468,278,'_secao_catalogos_catalogos_link_catalogo_7','field_69b2f7d8bc31f');
INSERT INTO `wp_postmeta` VALUES (4469,278,'secao_catalogos_catalogos_banner_catalogo_8','274');
INSERT INTO `wp_postmeta` VALUES (4470,278,'_secao_catalogos_catalogos_banner_catalogo_8','field_69b2f6cbbc316');
INSERT INTO `wp_postmeta` VALUES (4471,278,'secao_catalogos_catalogos_link_catalogo_8','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB4MWFAWk-gRJKXN1idvN_wASKNW3GcrAMbjchk3c1tGKs');
INSERT INTO `wp_postmeta` VALUES (4472,278,'_secao_catalogos_catalogos_link_catalogo_8','field_69b2f7e4bc320');
INSERT INTO `wp_postmeta` VALUES (4473,278,'secao_catalogos_catalogos_banner_catalogo_9','275');
INSERT INTO `wp_postmeta` VALUES (4474,278,'_secao_catalogos_catalogos_banner_catalogo_9','field_69b2f6d5bc317');
INSERT INTO `wp_postmeta` VALUES (4475,278,'secao_catalogos_catalogos_link_catalogo_9','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQDutKV4qMZ_QbksPNiG_nzKAexF7wqVaezReUKXAzotexQ');
INSERT INTO `wp_postmeta` VALUES (4476,278,'_secao_catalogos_catalogos_link_catalogo_9','field_69b2f7f0bc321');
INSERT INTO `wp_postmeta` VALUES (4477,278,'secao_catalogos_catalogos_banner_catalogo_10','276');
INSERT INTO `wp_postmeta` VALUES (4478,278,'_secao_catalogos_catalogos_banner_catalogo_10','field_69b2f702bc318');
INSERT INTO `wp_postmeta` VALUES (4479,278,'secao_catalogos_catalogos_link_catalogo_10','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQBxn2GZACh-TpK6x20_JBasAVPj6HQfNybkdBp1YbHhrLA');
INSERT INTO `wp_postmeta` VALUES (4480,278,'_secao_catalogos_catalogos_link_catalogo_10','field_69b2f800bc322');
INSERT INTO `wp_postmeta` VALUES (4481,278,'secao_catalogos_catalogos','');
INSERT INTO `wp_postmeta` VALUES (4482,278,'_secao_catalogos_catalogos','field_69b2f42f1f38c');
INSERT INTO `wp_postmeta` VALUES (4483,278,'secao_catalogos','');
INSERT INTO `wp_postmeta` VALUES (4484,278,'_secao_catalogos','field_69b2f2901f389');
INSERT INTO `wp_postmeta` VALUES (4487,279,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (4489,279,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (4490,279,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (4491,279,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (4492,279,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (4493,279,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (4494,279,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (4495,279,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (4496,279,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (4497,279,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (4498,279,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (4499,279,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (4500,279,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (4501,279,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (4502,279,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (4503,279,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (4504,279,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (4505,279,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (4506,279,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (4507,279,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (4508,279,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (4509,279,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (4510,279,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (4511,279,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (4512,279,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (4513,279,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (4514,279,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (4515,279,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (4516,279,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (4517,279,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (4518,279,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (4519,279,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (4520,279,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (4521,279,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (4522,279,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (4523,279,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (4524,279,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (4525,279,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (4526,279,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (4527,279,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (4528,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (4529,279,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (4530,279,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (4531,279,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (4532,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (4533,279,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (4534,279,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (4535,279,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (4536,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (4537,279,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (4538,279,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (4539,279,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (4540,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (4541,279,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (4542,279,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (4543,279,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (4544,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (4545,279,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (4546,279,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (4547,279,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (4548,279,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (4549,279,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (4550,279,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (4551,279,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (4552,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (4553,279,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (4554,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (4555,279,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (4556,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (4557,279,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (4558,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (4559,279,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (4560,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (4561,279,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (4562,279,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (4563,279,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (4564,279,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (4565,279,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (4566,279,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (4567,279,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (4568,279,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (4569,279,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (4570,279,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (4571,279,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4572,279,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (4573,279,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (4574,279,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (4575,279,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (4576,279,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (4577,279,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (4578,279,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (4579,279,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (4580,279,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (4581,279,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (4582,279,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (4583,279,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (4584,279,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (4585,279,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (4586,279,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (4587,279,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (4588,279,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (4589,279,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (4590,279,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (4591,279,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (4592,279,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (4593,279,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (4594,279,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (4595,279,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (4596,279,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (4597,279,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (4598,279,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (4599,279,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (4600,279,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (4601,279,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (4602,279,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (4603,279,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4604,279,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (4605,279,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (4606,279,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (4607,279,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (4608,279,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (4609,279,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (4610,279,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (4611,279,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (4612,279,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (4613,279,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (4614,279,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (4615,279,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (4616,279,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (4617,279,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (4618,279,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (4619,279,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (4620,279,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (4621,279,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (4622,279,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (4623,279,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (4624,279,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (4625,279,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (4626,279,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (4627,279,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (4628,279,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (4629,279,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (4630,279,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (4631,279,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (4632,279,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (4633,279,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (4634,279,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (4635,279,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (4636,279,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (4637,279,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (4638,279,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (4639,279,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (4640,279,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (4641,279,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (4642,279,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (4643,279,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (4644,279,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (4645,279,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (4646,279,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (4647,279,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (4648,279,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (4649,279,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (4650,279,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (4651,279,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (4652,279,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (4653,279,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (4654,279,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (4655,279,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4656,279,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (4657,279,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (4658,279,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (4659,279,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (4660,279,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (4661,279,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4662,279,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (4663,279,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (4664,279,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (4665,279,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (4666,279,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (4667,279,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (4668,279,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (4669,279,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (4670,279,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (4671,279,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (4672,279,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (4673,279,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (4674,279,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (4675,279,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (4676,279,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (4677,279,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (4678,279,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (4679,279,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (4680,279,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (4681,279,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (4682,279,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (4683,279,'catalogo','tesando o código');
INSERT INTO `wp_postmeta` VALUES (4684,279,'_catalogo','field_69b2f15a6a07c');
INSERT INTO `wp_postmeta` VALUES (4685,279,'secao_catalogos_titulo_catalogos','Catálogos');
INSERT INTO `wp_postmeta` VALUES (4686,279,'_secao_catalogos_titulo_catalogos','field_69b2f3f81f38a');
INSERT INTO `wp_postmeta` VALUES (4687,279,'secao_catalogos_subtitulo_catalogos','Conheça os óculos das principais marcas');
INSERT INTO `wp_postmeta` VALUES (4688,279,'_secao_catalogos_subtitulo_catalogos','field_69b2f4121f38b');
INSERT INTO `wp_postmeta` VALUES (4689,279,'secao_catalogos_catalogos_banner_catalogo_1','246');
INSERT INTO `wp_postmeta` VALUES (4690,279,'_secao_catalogos_catalogos_banner_catalogo_1','field_69b2f5cdbc30f');
INSERT INTO `wp_postmeta` VALUES (4691,279,'secao_catalogos_catalogos_link_catalogo_1','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCBTS4Lo14dS6XWvb7Iso0IAVXDQq35Zr-ijhvzWGxkv1M');
INSERT INTO `wp_postmeta` VALUES (4692,279,'_secao_catalogos_catalogos_link_catalogo_1','field_69b2f717bc319');
INSERT INTO `wp_postmeta` VALUES (4693,279,'secao_catalogos_catalogos_banner_catalogo_2','267');
INSERT INTO `wp_postmeta` VALUES (4694,279,'_secao_catalogos_catalogos_banner_catalogo_2','field_69b2f611bc310');
INSERT INTO `wp_postmeta` VALUES (4695,279,'secao_catalogos_catalogos_link_catalogo_2','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQAy8-w0G_YTR5LfTpuJ_zNFAcRUYLy-WCJdZ36i8xXcDU4');
INSERT INTO `wp_postmeta` VALUES (4696,279,'_secao_catalogos_catalogos_link_catalogo_2','field_69b2f775bc31a');
INSERT INTO `wp_postmeta` VALUES (4697,279,'secao_catalogos_catalogos_banner_catalogo_3','268');
INSERT INTO `wp_postmeta` VALUES (4698,279,'_secao_catalogos_catalogos_banner_catalogo_3','field_69b2f61bbc311');
INSERT INTO `wp_postmeta` VALUES (4699,279,'secao_catalogos_catalogos_link_catalogo_3','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCzNdU7O4rrR6V8kEH8kp_1AZv6_aocmidHuhNV2UzJ4ec');
INSERT INTO `wp_postmeta` VALUES (4700,279,'_secao_catalogos_catalogos_link_catalogo_3','field_69b2f783bc31b');
INSERT INTO `wp_postmeta` VALUES (4701,279,'secao_catalogos_catalogos_banner_catalogo_4','269');
INSERT INTO `wp_postmeta` VALUES (4702,279,'_secao_catalogos_catalogos_banner_catalogo_4','field_69b2f658bc312');
INSERT INTO `wp_postmeta` VALUES (4703,279,'secao_catalogos_catalogos_link_catalogo_4','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB1HfwcYgNIQIGt83xU08X0AUz_t_82IT-Xc9S_4esxzqk');
INSERT INTO `wp_postmeta` VALUES (4704,279,'_secao_catalogos_catalogos_link_catalogo_4','field_69b2f7adbc31c');
INSERT INTO `wp_postmeta` VALUES (4705,279,'secao_catalogos_catalogos_banner_catalogo_5','272');
INSERT INTO `wp_postmeta` VALUES (4706,279,'_secao_catalogos_catalogos_banner_catalogo_5','field_69b2f6a2bc313');
INSERT INTO `wp_postmeta` VALUES (4707,279,'secao_catalogos_catalogos_link_catalogo_5','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCSlmqxSeglSpJBxvPFSz7fAfBXeYIvL8Vd1UWTKRZs-YA');
INSERT INTO `wp_postmeta` VALUES (4708,279,'_secao_catalogos_catalogos_link_catalogo_5','field_69b2f7b9bc31d');
INSERT INTO `wp_postmeta` VALUES (4709,279,'secao_catalogos_catalogos_banner_catalogo_6','272');
INSERT INTO `wp_postmeta` VALUES (4710,279,'_secao_catalogos_catalogos_banner_catalogo_6','field_69b2f6b1bc314');
INSERT INTO `wp_postmeta` VALUES (4711,279,'secao_catalogos_catalogos_link_catalogo_6','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQD0b4BJvfjLRrROfJjGqwdwAfh34WsHzcBWqLAMcjP6Nx8');
INSERT INTO `wp_postmeta` VALUES (4712,279,'_secao_catalogos_catalogos_link_catalogo_6','field_69b2f7c9bc31e');
INSERT INTO `wp_postmeta` VALUES (4713,279,'secao_catalogos_catalogos_banner_catalogo_7','273');
INSERT INTO `wp_postmeta` VALUES (4714,279,'_secao_catalogos_catalogos_banner_catalogo_7','field_69b2f6bfbc315');
INSERT INTO `wp_postmeta` VALUES (4715,279,'secao_catalogos_catalogos_link_catalogo_7','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQC7A2Ii3SzPSppjBoe7MBTVARaxhOEyUnUf7IeoJi27C9U');
INSERT INTO `wp_postmeta` VALUES (4716,279,'_secao_catalogos_catalogos_link_catalogo_7','field_69b2f7d8bc31f');
INSERT INTO `wp_postmeta` VALUES (4717,279,'secao_catalogos_catalogos_banner_catalogo_8','274');
INSERT INTO `wp_postmeta` VALUES (4718,279,'_secao_catalogos_catalogos_banner_catalogo_8','field_69b2f6cbbc316');
INSERT INTO `wp_postmeta` VALUES (4719,279,'secao_catalogos_catalogos_link_catalogo_8','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB4MWFAWk-gRJKXN1idvN_wASKNW3GcrAMbjchk3c1tGKs');
INSERT INTO `wp_postmeta` VALUES (4720,279,'_secao_catalogos_catalogos_link_catalogo_8','field_69b2f7e4bc320');
INSERT INTO `wp_postmeta` VALUES (4721,279,'secao_catalogos_catalogos_banner_catalogo_9','275');
INSERT INTO `wp_postmeta` VALUES (4722,279,'_secao_catalogos_catalogos_banner_catalogo_9','field_69b2f6d5bc317');
INSERT INTO `wp_postmeta` VALUES (4723,279,'secao_catalogos_catalogos_link_catalogo_9','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQDutKV4qMZ_QbksPNiG_nzKAexF7wqVaezReUKXAzotexQ');
INSERT INTO `wp_postmeta` VALUES (4724,279,'_secao_catalogos_catalogos_link_catalogo_9','field_69b2f7f0bc321');
INSERT INTO `wp_postmeta` VALUES (4725,279,'secao_catalogos_catalogos_banner_catalogo_10','276');
INSERT INTO `wp_postmeta` VALUES (4726,279,'_secao_catalogos_catalogos_banner_catalogo_10','field_69b2f702bc318');
INSERT INTO `wp_postmeta` VALUES (4727,279,'secao_catalogos_catalogos_link_catalogo_10','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQBxn2GZACh-TpK6x20_JBasAVPj6HQfNybkdBp1YbHhrLA');
INSERT INTO `wp_postmeta` VALUES (4728,279,'_secao_catalogos_catalogos_link_catalogo_10','field_69b2f800bc322');
INSERT INTO `wp_postmeta` VALUES (4729,279,'secao_catalogos_catalogos','');
INSERT INTO `wp_postmeta` VALUES (4730,279,'_secao_catalogos_catalogos','field_69b2f42f1f38c');
INSERT INTO `wp_postmeta` VALUES (4731,279,'secao_catalogos','');
INSERT INTO `wp_postmeta` VALUES (4732,279,'_secao_catalogos','field_69b2f2901f389');
INSERT INTO `wp_postmeta` VALUES (4733,280,'_wp_attached_file','2026/03/Maria-Valentina-Catalogo-Receituario-1.png');
INSERT INTO `wp_postmeta` VALUES (4734,280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:230;s:4:\"file\";s:50:\"2026/03/Maria-Valentina-Catalogo-Receituario-1.png\";s:8:\"filesize\";i:205348;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Maria-Valentina-Catalogo-Receituario-1-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50298;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Maria-Valentina-Catalogo-Receituario-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33284;}}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:{}}}');
INSERT INTO `wp_postmeta` VALUES (4737,281,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (4739,281,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (4740,281,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (4741,281,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (4742,281,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (4743,281,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (4744,281,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (4745,281,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (4746,281,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (4747,281,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (4748,281,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (4749,281,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (4750,281,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (4751,281,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (4752,281,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (4753,281,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (4754,281,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (4755,281,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (4756,281,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (4757,281,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (4758,281,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (4759,281,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (4760,281,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (4761,281,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (4762,281,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (4763,281,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (4764,281,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (4765,281,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (4766,281,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (4767,281,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (4768,281,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (4769,281,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (4770,281,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (4771,281,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (4772,281,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (4773,281,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (4774,281,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (4775,281,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (4776,281,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (4777,281,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (4778,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (4779,281,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (4780,281,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (4781,281,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (4782,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (4783,281,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (4784,281,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (4785,281,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (4786,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (4787,281,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (4788,281,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (4789,281,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (4790,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (4791,281,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (4792,281,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (4793,281,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (4794,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (4795,281,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (4796,281,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (4797,281,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (4798,281,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (4799,281,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (4800,281,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (4801,281,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (4802,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (4803,281,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (4804,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (4805,281,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (4806,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (4807,281,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (4808,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (4809,281,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (4810,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (4811,281,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (4812,281,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (4813,281,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (4814,281,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (4815,281,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (4816,281,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (4817,281,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (4818,281,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (4819,281,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (4820,281,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (4821,281,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4822,281,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (4823,281,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (4824,281,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (4825,281,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (4826,281,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (4827,281,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (4828,281,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (4829,281,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (4830,281,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (4831,281,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (4832,281,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (4833,281,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (4834,281,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (4835,281,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (4836,281,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (4837,281,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (4838,281,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (4839,281,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (4840,281,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (4841,281,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (4842,281,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (4843,281,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (4844,281,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (4845,281,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (4846,281,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (4847,281,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (4848,281,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (4849,281,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (4850,281,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (4851,281,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (4852,281,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (4853,281,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4854,281,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (4855,281,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (4856,281,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (4857,281,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (4858,281,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (4859,281,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (4860,281,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (4861,281,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (4862,281,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (4863,281,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (4864,281,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (4865,281,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (4866,281,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (4867,281,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (4868,281,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (4869,281,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (4870,281,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (4871,281,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (4872,281,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (4873,281,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (4874,281,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (4875,281,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (4876,281,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (4877,281,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (4878,281,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (4879,281,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (4880,281,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (4881,281,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (4882,281,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (4883,281,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (4884,281,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (4885,281,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (4886,281,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (4887,281,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (4888,281,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (4889,281,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (4890,281,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (4891,281,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (4892,281,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (4893,281,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (4894,281,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (4895,281,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (4896,281,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (4897,281,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (4898,281,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (4899,281,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (4900,281,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (4901,281,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (4902,281,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (4903,281,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (4904,281,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (4905,281,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4906,281,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (4907,281,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (4908,281,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (4909,281,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (4910,281,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (4911,281,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (4912,281,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (4913,281,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (4914,281,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (4915,281,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (4916,281,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (4917,281,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (4918,281,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (4919,281,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (4920,281,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (4921,281,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (4922,281,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (4923,281,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (4924,281,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (4925,281,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (4926,281,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (4927,281,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (4928,281,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (4929,281,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (4930,281,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (4931,281,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (4932,281,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (4933,281,'catalogo','tesando o código');
INSERT INTO `wp_postmeta` VALUES (4934,281,'_catalogo','field_69b2f15a6a07c');
INSERT INTO `wp_postmeta` VALUES (4935,281,'secao_catalogos_titulo_catalogos','Catálogos');
INSERT INTO `wp_postmeta` VALUES (4936,281,'_secao_catalogos_titulo_catalogos','field_69b2f3f81f38a');
INSERT INTO `wp_postmeta` VALUES (4937,281,'secao_catalogos_subtitulo_catalogos','Conheça os óculos das principais marcas');
INSERT INTO `wp_postmeta` VALUES (4938,281,'_secao_catalogos_subtitulo_catalogos','field_69b2f4121f38b');
INSERT INTO `wp_postmeta` VALUES (4939,281,'secao_catalogos_catalogos_banner_catalogo_1','246');
INSERT INTO `wp_postmeta` VALUES (4940,281,'_secao_catalogos_catalogos_banner_catalogo_1','field_69b2f5cdbc30f');
INSERT INTO `wp_postmeta` VALUES (4941,281,'secao_catalogos_catalogos_link_catalogo_1','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCBTS4Lo14dS6XWvb7Iso0IAVXDQq35Zr-ijhvzWGxkv1M');
INSERT INTO `wp_postmeta` VALUES (4942,281,'_secao_catalogos_catalogos_link_catalogo_1','field_69b2f717bc319');
INSERT INTO `wp_postmeta` VALUES (4943,281,'secao_catalogos_catalogos_banner_catalogo_2','267');
INSERT INTO `wp_postmeta` VALUES (4944,281,'_secao_catalogos_catalogos_banner_catalogo_2','field_69b2f611bc310');
INSERT INTO `wp_postmeta` VALUES (4945,281,'secao_catalogos_catalogos_link_catalogo_2','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQAy8-w0G_YTR5LfTpuJ_zNFAcRUYLy-WCJdZ36i8xXcDU4');
INSERT INTO `wp_postmeta` VALUES (4946,281,'_secao_catalogos_catalogos_link_catalogo_2','field_69b2f775bc31a');
INSERT INTO `wp_postmeta` VALUES (4947,281,'secao_catalogos_catalogos_banner_catalogo_3','268');
INSERT INTO `wp_postmeta` VALUES (4948,281,'_secao_catalogos_catalogos_banner_catalogo_3','field_69b2f61bbc311');
INSERT INTO `wp_postmeta` VALUES (4949,281,'secao_catalogos_catalogos_link_catalogo_3','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCzNdU7O4rrR6V8kEH8kp_1AZv6_aocmidHuhNV2UzJ4ec');
INSERT INTO `wp_postmeta` VALUES (4950,281,'_secao_catalogos_catalogos_link_catalogo_3','field_69b2f783bc31b');
INSERT INTO `wp_postmeta` VALUES (4951,281,'secao_catalogos_catalogos_banner_catalogo_4','269');
INSERT INTO `wp_postmeta` VALUES (4952,281,'_secao_catalogos_catalogos_banner_catalogo_4','field_69b2f658bc312');
INSERT INTO `wp_postmeta` VALUES (4953,281,'secao_catalogos_catalogos_link_catalogo_4','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB1HfwcYgNIQIGt83xU08X0AUz_t_82IT-Xc9S_4esxzqk');
INSERT INTO `wp_postmeta` VALUES (4954,281,'_secao_catalogos_catalogos_link_catalogo_4','field_69b2f7adbc31c');
INSERT INTO `wp_postmeta` VALUES (4955,281,'secao_catalogos_catalogos_banner_catalogo_5','272');
INSERT INTO `wp_postmeta` VALUES (4956,281,'_secao_catalogos_catalogos_banner_catalogo_5','field_69b2f6a2bc313');
INSERT INTO `wp_postmeta` VALUES (4957,281,'secao_catalogos_catalogos_link_catalogo_5','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCSlmqxSeglSpJBxvPFSz7fAfBXeYIvL8Vd1UWTKRZs-YA');
INSERT INTO `wp_postmeta` VALUES (4958,281,'_secao_catalogos_catalogos_link_catalogo_5','field_69b2f7b9bc31d');
INSERT INTO `wp_postmeta` VALUES (4959,281,'secao_catalogos_catalogos_banner_catalogo_6','280');
INSERT INTO `wp_postmeta` VALUES (4960,281,'_secao_catalogos_catalogos_banner_catalogo_6','field_69b2f6b1bc314');
INSERT INTO `wp_postmeta` VALUES (4961,281,'secao_catalogos_catalogos_link_catalogo_6','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQD0b4BJvfjLRrROfJjGqwdwAfh34WsHzcBWqLAMcjP6Nx8');
INSERT INTO `wp_postmeta` VALUES (4962,281,'_secao_catalogos_catalogos_link_catalogo_6','field_69b2f7c9bc31e');
INSERT INTO `wp_postmeta` VALUES (4963,281,'secao_catalogos_catalogos_banner_catalogo_7','273');
INSERT INTO `wp_postmeta` VALUES (4964,281,'_secao_catalogos_catalogos_banner_catalogo_7','field_69b2f6bfbc315');
INSERT INTO `wp_postmeta` VALUES (4965,281,'secao_catalogos_catalogos_link_catalogo_7','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQC7A2Ii3SzPSppjBoe7MBTVARaxhOEyUnUf7IeoJi27C9U');
INSERT INTO `wp_postmeta` VALUES (4966,281,'_secao_catalogos_catalogos_link_catalogo_7','field_69b2f7d8bc31f');
INSERT INTO `wp_postmeta` VALUES (4967,281,'secao_catalogos_catalogos_banner_catalogo_8','274');
INSERT INTO `wp_postmeta` VALUES (4968,281,'_secao_catalogos_catalogos_banner_catalogo_8','field_69b2f6cbbc316');
INSERT INTO `wp_postmeta` VALUES (4969,281,'secao_catalogos_catalogos_link_catalogo_8','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB4MWFAWk-gRJKXN1idvN_wASKNW3GcrAMbjchk3c1tGKs');
INSERT INTO `wp_postmeta` VALUES (4970,281,'_secao_catalogos_catalogos_link_catalogo_8','field_69b2f7e4bc320');
INSERT INTO `wp_postmeta` VALUES (4971,281,'secao_catalogos_catalogos_banner_catalogo_9','275');
INSERT INTO `wp_postmeta` VALUES (4972,281,'_secao_catalogos_catalogos_banner_catalogo_9','field_69b2f6d5bc317');
INSERT INTO `wp_postmeta` VALUES (4973,281,'secao_catalogos_catalogos_link_catalogo_9','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQDutKV4qMZ_QbksPNiG_nzKAexF7wqVaezReUKXAzotexQ');
INSERT INTO `wp_postmeta` VALUES (4974,281,'_secao_catalogos_catalogos_link_catalogo_9','field_69b2f7f0bc321');
INSERT INTO `wp_postmeta` VALUES (4975,281,'secao_catalogos_catalogos_banner_catalogo_10','276');
INSERT INTO `wp_postmeta` VALUES (4976,281,'_secao_catalogos_catalogos_banner_catalogo_10','field_69b2f702bc318');
INSERT INTO `wp_postmeta` VALUES (4977,281,'secao_catalogos_catalogos_link_catalogo_10','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQBxn2GZACh-TpK6x20_JBasAVPj6HQfNybkdBp1YbHhrLA');
INSERT INTO `wp_postmeta` VALUES (4978,281,'_secao_catalogos_catalogos_link_catalogo_10','field_69b2f800bc322');
INSERT INTO `wp_postmeta` VALUES (4979,281,'secao_catalogos_catalogos','');
INSERT INTO `wp_postmeta` VALUES (4980,281,'_secao_catalogos_catalogos','field_69b2f42f1f38c');
INSERT INTO `wp_postmeta` VALUES (4981,281,'secao_catalogos','');
INSERT INTO `wp_postmeta` VALUES (4982,281,'_secao_catalogos','field_69b2f2901f389');
INSERT INTO `wp_postmeta` VALUES (4983,282,'_edit_lock','1773410151:1');
INSERT INTO `wp_postmeta` VALUES (4984,282,'_wp_page_template','visualizar-pdf.php');
INSERT INTO `wp_postmeta` VALUES (4985,282,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (4990,296,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (4992,14,'secao_catalogos_catalogos_titulo_catalogo_1','Cacharel Paris');
INSERT INTO `wp_postmeta` VALUES (4993,14,'_secao_catalogos_catalogos_titulo_catalogo_1','field_69b409efaadcf');
INSERT INTO `wp_postmeta` VALUES (4994,14,'secao_catalogos_catalogos_titulo_catalogo_2','New Balance');
INSERT INTO `wp_postmeta` VALUES (4995,14,'_secao_catalogos_catalogos_titulo_catalogo_2','field_69b40a15aadd0');
INSERT INTO `wp_postmeta` VALUES (4996,14,'secao_catalogos_catalogos_titulo_catalogo_3','Catálogo Receituário - Morena Rosa');
INSERT INTO `wp_postmeta` VALUES (4997,14,'_secao_catalogos_catalogos_titulo_catalogo_3','field_69b40a1caadd1');
INSERT INTO `wp_postmeta` VALUES (4998,14,'secao_catalogos_catalogos_titulo_catalogo_4','Catálogo Solar - Morena Rosa');
INSERT INTO `wp_postmeta` VALUES (4999,14,'_secao_catalogos_catalogos_titulo_catalogo_4','field_69b40a25aadd2');
INSERT INTO `wp_postmeta` VALUES (5000,14,'secao_catalogos_catalogos_titulo_catalogo_5','Catálogo Solar - Maria Valentina');
INSERT INTO `wp_postmeta` VALUES (5001,14,'_secao_catalogos_catalogos_titulo_catalogo_5','field_69b40a2baadd3');
INSERT INTO `wp_postmeta` VALUES (5002,14,'secao_catalogos_catalogos_titulo_catalogo_6','Catálogo Receituário - Maria Valentina');
INSERT INTO `wp_postmeta` VALUES (5003,14,'_secao_catalogos_catalogos_titulo_catalogo_6','field_69b40a31aadd4');
INSERT INTO `wp_postmeta` VALUES (5004,14,'secao_catalogos_catalogos_titulo_catalogo_7','Catálogo Receituário - Sestini');
INSERT INTO `wp_postmeta` VALUES (5005,14,'_secao_catalogos_catalogos_titulo_catalogo_7','field_69b40a37aadd5');
INSERT INTO `wp_postmeta` VALUES (5006,14,'secao_catalogos_catalogos_titulo_catalogo_8','Catálogo Solar - Maria Valentina');
INSERT INTO `wp_postmeta` VALUES (5007,14,'_secao_catalogos_catalogos_titulo_catalogo_8','field_69b40a3caadd6');
INSERT INTO `wp_postmeta` VALUES (5008,14,'secao_catalogos_catalogos_titulo_catalogo_9','Catálogo Solar - Dudalina');
INSERT INTO `wp_postmeta` VALUES (5009,14,'_secao_catalogos_catalogos_titulo_catalogo_9','field_69b40a63aadd8');
INSERT INTO `wp_postmeta` VALUES (5010,14,'secao_catalogos_catalogos_titulo_catalogo_10','Catálogo Receituário - Dudalina');
INSERT INTO `wp_postmeta` VALUES (5011,14,'_secao_catalogos_catalogos_titulo_catalogo_10','field_69b40a6aaadd9');
INSERT INTO `wp_postmeta` VALUES (5012,296,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (5013,296,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (5014,296,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (5015,296,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (5016,296,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (5017,296,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (5018,296,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (5019,296,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (5020,296,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (5021,296,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (5022,296,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (5023,296,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (5024,296,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (5025,296,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (5026,296,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (5027,296,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (5028,296,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (5029,296,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (5030,296,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (5031,296,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (5032,296,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (5033,296,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (5034,296,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (5035,296,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (5036,296,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (5037,296,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (5038,296,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (5039,296,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (5040,296,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (5041,296,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (5042,296,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (5043,296,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (5044,296,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (5045,296,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (5046,296,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (5047,296,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (5048,296,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (5049,296,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (5050,296,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (5051,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (5052,296,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (5053,296,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (5054,296,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (5055,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (5056,296,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (5057,296,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (5058,296,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (5059,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (5060,296,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (5061,296,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (5062,296,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (5063,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (5064,296,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (5065,296,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (5066,296,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (5067,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (5068,296,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (5069,296,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (5070,296,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (5071,296,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (5072,296,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (5073,296,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (5074,296,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (5075,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (5076,296,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (5077,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (5078,296,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (5079,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (5080,296,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (5081,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (5082,296,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (5083,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (5084,296,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (5085,296,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (5086,296,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (5087,296,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (5088,296,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (5089,296,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (5090,296,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (5091,296,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (5092,296,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (5093,296,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (5094,296,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (5095,296,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (5096,296,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (5097,296,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (5098,296,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (5099,296,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (5100,296,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (5101,296,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (5102,296,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (5103,296,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (5104,296,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (5105,296,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (5106,296,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (5107,296,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (5108,296,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (5109,296,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (5110,296,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (5111,296,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (5112,296,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (5113,296,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (5114,296,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (5115,296,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (5116,296,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (5117,296,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (5118,296,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (5119,296,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (5120,296,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (5121,296,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (5122,296,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (5123,296,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (5124,296,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (5125,296,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (5126,296,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (5127,296,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (5128,296,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (5129,296,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (5130,296,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (5131,296,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (5132,296,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (5133,296,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (5134,296,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (5135,296,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (5136,296,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (5137,296,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (5138,296,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (5139,296,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (5140,296,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (5141,296,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (5142,296,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (5143,296,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (5144,296,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (5145,296,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (5146,296,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (5147,296,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (5148,296,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (5149,296,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (5150,296,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (5151,296,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (5152,296,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (5153,296,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (5154,296,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (5155,296,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (5156,296,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (5157,296,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (5158,296,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (5159,296,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (5160,296,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (5161,296,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (5162,296,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (5163,296,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (5164,296,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (5165,296,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (5166,296,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (5167,296,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (5168,296,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (5169,296,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (5170,296,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (5171,296,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (5172,296,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (5173,296,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (5174,296,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (5175,296,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (5176,296,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (5177,296,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (5178,296,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (5179,296,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (5180,296,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (5181,296,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (5182,296,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (5183,296,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (5184,296,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (5185,296,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (5186,296,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (5187,296,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (5188,296,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (5189,296,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (5190,296,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (5191,296,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (5192,296,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (5193,296,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (5194,296,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (5195,296,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (5196,296,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (5197,296,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (5198,296,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (5199,296,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (5200,296,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (5201,296,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (5202,296,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (5203,296,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (5204,296,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (5205,296,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (5206,296,'catalogo','tesando o código');
INSERT INTO `wp_postmeta` VALUES (5207,296,'_catalogo','field_69b2f15a6a07c');
INSERT INTO `wp_postmeta` VALUES (5208,296,'secao_catalogos_titulo_catalogos','Catálogos');
INSERT INTO `wp_postmeta` VALUES (5209,296,'_secao_catalogos_titulo_catalogos','field_69b2f3f81f38a');
INSERT INTO `wp_postmeta` VALUES (5210,296,'secao_catalogos_subtitulo_catalogos','Conheça os óculos das principais marcas');
INSERT INTO `wp_postmeta` VALUES (5211,296,'_secao_catalogos_subtitulo_catalogos','field_69b2f4121f38b');
INSERT INTO `wp_postmeta` VALUES (5212,296,'secao_catalogos_catalogos_banner_catalogo_1','246');
INSERT INTO `wp_postmeta` VALUES (5213,296,'_secao_catalogos_catalogos_banner_catalogo_1','field_69b2f5cdbc30f');
INSERT INTO `wp_postmeta` VALUES (5214,296,'secao_catalogos_catalogos_link_catalogo_1','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCBTS4Lo14dS6XWvb7Iso0IAVXDQq35Zr-ijhvzWGxkv1M');
INSERT INTO `wp_postmeta` VALUES (5215,296,'_secao_catalogos_catalogos_link_catalogo_1','field_69b2f717bc319');
INSERT INTO `wp_postmeta` VALUES (5216,296,'secao_catalogos_catalogos_banner_catalogo_2','267');
INSERT INTO `wp_postmeta` VALUES (5217,296,'_secao_catalogos_catalogos_banner_catalogo_2','field_69b2f611bc310');
INSERT INTO `wp_postmeta` VALUES (5218,296,'secao_catalogos_catalogos_link_catalogo_2','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQAy8-w0G_YTR5LfTpuJ_zNFAcRUYLy-WCJdZ36i8xXcDU4');
INSERT INTO `wp_postmeta` VALUES (5219,296,'_secao_catalogos_catalogos_link_catalogo_2','field_69b2f775bc31a');
INSERT INTO `wp_postmeta` VALUES (5220,296,'secao_catalogos_catalogos_banner_catalogo_3','268');
INSERT INTO `wp_postmeta` VALUES (5221,296,'_secao_catalogos_catalogos_banner_catalogo_3','field_69b2f61bbc311');
INSERT INTO `wp_postmeta` VALUES (5222,296,'secao_catalogos_catalogos_link_catalogo_3','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCzNdU7O4rrR6V8kEH8kp_1AZv6_aocmidHuhNV2UzJ4ec');
INSERT INTO `wp_postmeta` VALUES (5223,296,'_secao_catalogos_catalogos_link_catalogo_3','field_69b2f783bc31b');
INSERT INTO `wp_postmeta` VALUES (5224,296,'secao_catalogos_catalogos_banner_catalogo_4','269');
INSERT INTO `wp_postmeta` VALUES (5225,296,'_secao_catalogos_catalogos_banner_catalogo_4','field_69b2f658bc312');
INSERT INTO `wp_postmeta` VALUES (5226,296,'secao_catalogos_catalogos_link_catalogo_4','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB1HfwcYgNIQIGt83xU08X0AUz_t_82IT-Xc9S_4esxzqk');
INSERT INTO `wp_postmeta` VALUES (5227,296,'_secao_catalogos_catalogos_link_catalogo_4','field_69b2f7adbc31c');
INSERT INTO `wp_postmeta` VALUES (5228,296,'secao_catalogos_catalogos_banner_catalogo_5','272');
INSERT INTO `wp_postmeta` VALUES (5229,296,'_secao_catalogos_catalogos_banner_catalogo_5','field_69b2f6a2bc313');
INSERT INTO `wp_postmeta` VALUES (5230,296,'secao_catalogos_catalogos_link_catalogo_5','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQCSlmqxSeglSpJBxvPFSz7fAfBXeYIvL8Vd1UWTKRZs-YA');
INSERT INTO `wp_postmeta` VALUES (5231,296,'_secao_catalogos_catalogos_link_catalogo_5','field_69b2f7b9bc31d');
INSERT INTO `wp_postmeta` VALUES (5232,296,'secao_catalogos_catalogos_banner_catalogo_6','280');
INSERT INTO `wp_postmeta` VALUES (5233,296,'_secao_catalogos_catalogos_banner_catalogo_6','field_69b2f6b1bc314');
INSERT INTO `wp_postmeta` VALUES (5234,296,'secao_catalogos_catalogos_link_catalogo_6','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQD0b4BJvfjLRrROfJjGqwdwAfh34WsHzcBWqLAMcjP6Nx8');
INSERT INTO `wp_postmeta` VALUES (5235,296,'_secao_catalogos_catalogos_link_catalogo_6','field_69b2f7c9bc31e');
INSERT INTO `wp_postmeta` VALUES (5236,296,'secao_catalogos_catalogos_banner_catalogo_7','273');
INSERT INTO `wp_postmeta` VALUES (5237,296,'_secao_catalogos_catalogos_banner_catalogo_7','field_69b2f6bfbc315');
INSERT INTO `wp_postmeta` VALUES (5238,296,'secao_catalogos_catalogos_link_catalogo_7','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQC7A2Ii3SzPSppjBoe7MBTVARaxhOEyUnUf7IeoJi27C9U');
INSERT INTO `wp_postmeta` VALUES (5239,296,'_secao_catalogos_catalogos_link_catalogo_7','field_69b2f7d8bc31f');
INSERT INTO `wp_postmeta` VALUES (5240,296,'secao_catalogos_catalogos_banner_catalogo_8','274');
INSERT INTO `wp_postmeta` VALUES (5241,296,'_secao_catalogos_catalogos_banner_catalogo_8','field_69b2f6cbbc316');
INSERT INTO `wp_postmeta` VALUES (5242,296,'secao_catalogos_catalogos_link_catalogo_8','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQB4MWFAWk-gRJKXN1idvN_wASKNW3GcrAMbjchk3c1tGKs');
INSERT INTO `wp_postmeta` VALUES (5243,296,'_secao_catalogos_catalogos_link_catalogo_8','field_69b2f7e4bc320');
INSERT INTO `wp_postmeta` VALUES (5244,296,'secao_catalogos_catalogos_banner_catalogo_9','275');
INSERT INTO `wp_postmeta` VALUES (5245,296,'_secao_catalogos_catalogos_banner_catalogo_9','field_69b2f6d5bc317');
INSERT INTO `wp_postmeta` VALUES (5246,296,'secao_catalogos_catalogos_link_catalogo_9','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQDutKV4qMZ_QbksPNiG_nzKAexF7wqVaezReUKXAzotexQ');
INSERT INTO `wp_postmeta` VALUES (5247,296,'_secao_catalogos_catalogos_link_catalogo_9','field_69b40a41aadd7');
INSERT INTO `wp_postmeta` VALUES (5248,296,'secao_catalogos_catalogos_banner_catalogo_10','276');
INSERT INTO `wp_postmeta` VALUES (5249,296,'_secao_catalogos_catalogos_banner_catalogo_10','field_69b2f702bc318');
INSERT INTO `wp_postmeta` VALUES (5250,296,'secao_catalogos_catalogos_link_catalogo_10','https://clinicafarescsp-my.sharepoint.com/:b:/g/personal/vinicius_gasiunas_clinicafares_com_br/IQBxn2GZACh-TpK6x20_JBasAVPj6HQfNybkdBp1YbHhrLA');
INSERT INTO `wp_postmeta` VALUES (5251,296,'_secao_catalogos_catalogos_link_catalogo_10','field_69b2f800bc322');
INSERT INTO `wp_postmeta` VALUES (5252,296,'secao_catalogos_catalogos','');
INSERT INTO `wp_postmeta` VALUES (5253,296,'_secao_catalogos_catalogos','field_69b2f42f1f38c');
INSERT INTO `wp_postmeta` VALUES (5254,296,'secao_catalogos','');
INSERT INTO `wp_postmeta` VALUES (5255,296,'_secao_catalogos','field_69b2f2901f389');
INSERT INTO `wp_postmeta` VALUES (5256,296,'secao_catalogos_catalogos_titulo_catalogo_1','Cacharel Paris');
INSERT INTO `wp_postmeta` VALUES (5257,296,'_secao_catalogos_catalogos_titulo_catalogo_1','field_69b409efaadcf');
INSERT INTO `wp_postmeta` VALUES (5258,296,'secao_catalogos_catalogos_titulo_catalogo_2','New Balance');
INSERT INTO `wp_postmeta` VALUES (5259,296,'_secao_catalogos_catalogos_titulo_catalogo_2','field_69b40a15aadd0');
INSERT INTO `wp_postmeta` VALUES (5260,296,'secao_catalogos_catalogos_titulo_catalogo_3','Catálogo Receituário - Morena Rosa');
INSERT INTO `wp_postmeta` VALUES (5261,296,'_secao_catalogos_catalogos_titulo_catalogo_3','field_69b40a1caadd1');
INSERT INTO `wp_postmeta` VALUES (5262,296,'secao_catalogos_catalogos_titulo_catalogo_4','Catálogo Solar - Morena Rosa');
INSERT INTO `wp_postmeta` VALUES (5263,296,'_secao_catalogos_catalogos_titulo_catalogo_4','field_69b40a25aadd2');
INSERT INTO `wp_postmeta` VALUES (5264,296,'secao_catalogos_catalogos_titulo_catalogo_5','Catálogo Solar - Maria Valentina');
INSERT INTO `wp_postmeta` VALUES (5265,296,'_secao_catalogos_catalogos_titulo_catalogo_5','field_69b40a2baadd3');
INSERT INTO `wp_postmeta` VALUES (5266,296,'secao_catalogos_catalogos_titulo_catalogo_6','Catálogo Receituário - Maria Valentina');
INSERT INTO `wp_postmeta` VALUES (5267,296,'_secao_catalogos_catalogos_titulo_catalogo_6','field_69b40a31aadd4');
INSERT INTO `wp_postmeta` VALUES (5268,296,'secao_catalogos_catalogos_titulo_catalogo_7','Catálogo Receituário - Sestini');
INSERT INTO `wp_postmeta` VALUES (5269,296,'_secao_catalogos_catalogos_titulo_catalogo_7','field_69b40a37aadd5');
INSERT INTO `wp_postmeta` VALUES (5270,296,'secao_catalogos_catalogos_titulo_catalogo_8','Catálogo Solar - Maria Valentina');
INSERT INTO `wp_postmeta` VALUES (5271,296,'_secao_catalogos_catalogos_titulo_catalogo_8','field_69b40a3caadd6');
INSERT INTO `wp_postmeta` VALUES (5272,296,'secao_catalogos_catalogos_titulo_catalogo_9','Catálogo Solar -Dudalina');
INSERT INTO `wp_postmeta` VALUES (5273,296,'_secao_catalogos_catalogos_titulo_catalogo_9','field_69b40a63aadd8');
INSERT INTO `wp_postmeta` VALUES (5274,296,'secao_catalogos_catalogos_titulo_catalogo_10','Catálogo Receituário - Dudalina');
INSERT INTO `wp_postmeta` VALUES (5275,296,'_secao_catalogos_catalogos_titulo_catalogo_10','field_69b40a6aaadd9');
INSERT INTO `wp_postmeta` VALUES (5280,298,'footnotes','');
INSERT INTO `wp_postmeta` VALUES (5282,298,'secao_banner_principal_banner_principal_1','21');
INSERT INTO `wp_postmeta` VALUES (5283,298,'_secao_banner_principal_banner_principal_1','field_69762e4d02174');
INSERT INTO `wp_postmeta` VALUES (5284,298,'secao_banner_principal_banner_principal_2','21');
INSERT INTO `wp_postmeta` VALUES (5285,298,'_secao_banner_principal_banner_principal_2','field_69762e8202175');
INSERT INTO `wp_postmeta` VALUES (5286,298,'secao_banner_principal_banner_principal_3','');
INSERT INTO `wp_postmeta` VALUES (5287,298,'_secao_banner_principal_banner_principal_3','field_69762e8402176');
INSERT INTO `wp_postmeta` VALUES (5288,298,'secao_banner_principal','');
INSERT INTO `wp_postmeta` VALUES (5289,298,'_secao_banner_principal','field_69762e0302173');
INSERT INTO `wp_postmeta` VALUES (5290,298,'secao_de_beneficios_icone_beneficio_1','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:2:\"37\";}');
INSERT INTO `wp_postmeta` VALUES (5291,298,'_secao_de_beneficios_icone_beneficio_1','field_6976313e41ca0');
INSERT INTO `wp_postmeta` VALUES (5292,298,'secao_de_beneficios_titulo_beneficio_1','Retire na Loja');
INSERT INTO `wp_postmeta` VALUES (5293,298,'_secao_de_beneficios_titulo_beneficio_1','field_6976318e04a99');
INSERT INTO `wp_postmeta` VALUES (5294,298,'secao_de_beneficios_texto_beneficio_1','Consulte unidade mais próxima');
INSERT INTO `wp_postmeta` VALUES (5295,298,'_secao_de_beneficios_texto_beneficio_1','field_6976319b04a9a');
INSERT INTO `wp_postmeta` VALUES (5296,298,'secao_de_beneficios_icone_beneficio_2','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"160\";}');
INSERT INTO `wp_postmeta` VALUES (5297,298,'_secao_de_beneficios_icone_beneficio_2','field_697631b504a9b');
INSERT INTO `wp_postmeta` VALUES (5298,298,'secao_de_beneficios_titulo_beneficio_2','Atendimento ao Cliente');
INSERT INTO `wp_postmeta` VALUES (5299,298,'_secao_de_beneficios_titulo_beneficio_2','field_697631bb04a9c');
INSERT INTO `wp_postmeta` VALUES (5300,298,'secao_de_beneficios_texto_beneficio_2','Fácil e prático');
INSERT INTO `wp_postmeta` VALUES (5301,298,'_secao_de_beneficios_texto_beneficio_2','field_697631c004a9d');
INSERT INTO `wp_postmeta` VALUES (5302,298,'secao_de_beneficios_icone_beneficio_3','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"162\";}');
INSERT INTO `wp_postmeta` VALUES (5303,298,'_secao_de_beneficios_icone_beneficio_3','field_697631c304a9e');
INSERT INTO `wp_postmeta` VALUES (5304,298,'secao_de_beneficios_titulo_beneficio_3','Garantia de Itens Originais');
INSERT INTO `wp_postmeta` VALUES (5305,298,'_secao_de_beneficios_titulo_beneficio_3','field_697631c804a9f');
INSERT INTO `wp_postmeta` VALUES (5306,298,'secao_de_beneficios_texto_beneficio_3','Qualidade nos produtos');
INSERT INTO `wp_postmeta` VALUES (5307,298,'_secao_de_beneficios_texto_beneficio_3','field_697631cc04aa0');
INSERT INTO `wp_postmeta` VALUES (5308,298,'secao_de_beneficios_icone_beneficio_4','a:2:{s:4:\"type\";s:13:\"media_library\";s:5:\"value\";s:3:\"163\";}');
INSERT INTO `wp_postmeta` VALUES (5309,298,'_secao_de_beneficios_icone_beneficio_4','field_697631d004aa1');
INSERT INTO `wp_postmeta` VALUES (5310,298,'secao_de_beneficios_titulo_beneficio_4','Checkout 100% Seguro');
INSERT INTO `wp_postmeta` VALUES (5311,298,'_secao_de_beneficios_titulo_beneficio_4','field_697631d404aa2');
INSERT INTO `wp_postmeta` VALUES (5312,298,'secao_de_beneficios_texto_beneficio_4','Vendas seguras');
INSERT INTO `wp_postmeta` VALUES (5313,298,'_secao_de_beneficios_texto_beneficio_4','field_697631d804aa3');
INSERT INTO `wp_postmeta` VALUES (5314,298,'secao_de_beneficios','');
INSERT INTO `wp_postmeta` VALUES (5315,298,'_secao_de_beneficios','field_6976312341c9f');
INSERT INTO `wp_postmeta` VALUES (5316,298,'secao_categorias_titulo_da_secao','categorias');
INSERT INTO `wp_postmeta` VALUES (5317,298,'_secao_categorias_titulo_da_secao','field_697636c1cb4f4');
INSERT INTO `wp_postmeta` VALUES (5318,298,'secao_categorias_texto_da_secao','Navegue pelas principais categorias');
INSERT INTO `wp_postmeta` VALUES (5319,298,'_secao_categorias_texto_da_secao','field_697636d6cb4f5');
INSERT INTO `wp_postmeta` VALUES (5320,298,'secao_categorias_banner_de_navegacao_banner_navegacao_full','55');
INSERT INTO `wp_postmeta` VALUES (5321,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_full','field_697675cecb4f7');
INSERT INTO `wp_postmeta` VALUES (5322,298,'secao_categorias_banner_de_navegacao_link_banner_full','');
INSERT INTO `wp_postmeta` VALUES (5323,298,'_secao_categorias_banner_de_navegacao_link_banner_full','field_697677431db5f');
INSERT INTO `wp_postmeta` VALUES (5324,298,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','58');
INSERT INTO `wp_postmeta` VALUES (5325,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1','field_697675e6cb4f8');
INSERT INTO `wp_postmeta` VALUES (5326,298,'secao_categorias_banner_de_navegacao_link_banner_pequeno_1','#');
INSERT INTO `wp_postmeta` VALUES (5327,298,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_1','field_6976775a1db60');
INSERT INTO `wp_postmeta` VALUES (5328,298,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','59');
INSERT INTO `wp_postmeta` VALUES (5329,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2','field_69767612cb4f9');
INSERT INTO `wp_postmeta` VALUES (5330,298,'secao_categorias_banner_de_navegacao_link_banner_pequeno_2','#');
INSERT INTO `wp_postmeta` VALUES (5331,298,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_2','field_6976776b1db61');
INSERT INTO `wp_postmeta` VALUES (5332,298,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','60');
INSERT INTO `wp_postmeta` VALUES (5333,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3','field_69767615cb4fa');
INSERT INTO `wp_postmeta` VALUES (5334,298,'secao_categorias_banner_de_navegacao_link_banner_pequeno_3','#');
INSERT INTO `wp_postmeta` VALUES (5335,298,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_3','field_6976776e1db62');
INSERT INTO `wp_postmeta` VALUES (5336,298,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','61');
INSERT INTO `wp_postmeta` VALUES (5337,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4','field_69767616cb4fb');
INSERT INTO `wp_postmeta` VALUES (5338,298,'secao_categorias_banner_de_navegacao_link_banner_pequeno_4','#');
INSERT INTO `wp_postmeta` VALUES (5339,298,'_secao_categorias_banner_de_navegacao_link_banner_pequeno_4','field_697677711db63');
INSERT INTO `wp_postmeta` VALUES (5340,298,'secao_categorias_banner_de_navegacao','');
INSERT INTO `wp_postmeta` VALUES (5341,298,'_secao_categorias_banner_de_navegacao','field_697636f2cb4f6');
INSERT INTO `wp_postmeta` VALUES (5342,298,'secao_categorias','');
INSERT INTO `wp_postmeta` VALUES (5343,298,'_secao_categorias','field_697636b0cb4f3');
INSERT INTO `wp_postmeta` VALUES (5344,298,'secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','191');
INSERT INTO `wp_postmeta` VALUES (5345,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_full_mob','field_69767db559135');
INSERT INTO `wp_postmeta` VALUES (5346,298,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','192');
INSERT INTO `wp_postmeta` VALUES (5347,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_1_mob','field_69767dc159136');
INSERT INTO `wp_postmeta` VALUES (5348,298,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','');
INSERT INTO `wp_postmeta` VALUES (5349,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob_','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (5350,298,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','194');
INSERT INTO `wp_postmeta` VALUES (5351,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_3_mob','field_69767dd759138');
INSERT INTO `wp_postmeta` VALUES (5352,298,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','196');
INSERT INTO `wp_postmeta` VALUES (5353,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_4_mob','field_69767de359139');
INSERT INTO `wp_postmeta` VALUES (5354,298,'secao_de_marcas_titulo_de_marcas','marcas que amamos');
INSERT INTO `wp_postmeta` VALUES (5355,298,'_secao_de_marcas_titulo_de_marcas','field_697680033083a');
INSERT INTO `wp_postmeta` VALUES (5356,298,'secao_de_marcas_texto_de_marcas','Encontre a sua favorita');
INSERT INTO `wp_postmeta` VALUES (5357,298,'_secao_de_marcas_texto_de_marcas','field_6976801b3083b');
INSERT INTO `wp_postmeta` VALUES (5358,298,'secao_de_marcas','');
INSERT INTO `wp_postmeta` VALUES (5359,298,'_secao_de_marcas','field_69767fbf30839');
INSERT INTO `wp_postmeta` VALUES (5360,298,'secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','193');
INSERT INTO `wp_postmeta` VALUES (5361,298,'_secao_categorias_banner_de_navegacao_banner_navegacao_pequeno_2_mob','field_69767dca59137');
INSERT INTO `wp_postmeta` VALUES (5362,298,'vitrine_home1_titulo_da_vitrine_1','mais vendidos');
INSERT INTO `wp_postmeta` VALUES (5363,298,'_vitrine_home1_titulo_da_vitrine_1','field_6977ff94f2ba9');
INSERT INTO `wp_postmeta` VALUES (5364,298,'vitrine_home1_texto_da_vitrine_1','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (5365,298,'_vitrine_home1_texto_da_vitrine_1','field_6977ffaef2baa');
INSERT INTO `wp_postmeta` VALUES (5366,298,'vitrine_home1','');
INSERT INTO `wp_postmeta` VALUES (5367,298,'_vitrine_home1','field_6977fe96f2ba8');
INSERT INTO `wp_postmeta` VALUES (5368,298,'secao_mosaico_de_banner_banner_mosaico_1','169');
INSERT INTO `wp_postmeta` VALUES (5369,298,'_secao_mosaico_de_banner_banner_mosaico_1','field_69781c420161f');
INSERT INTO `wp_postmeta` VALUES (5370,298,'secao_mosaico_de_banner_banner_mosaico_mob_1','203');
INSERT INTO `wp_postmeta` VALUES (5371,298,'_secao_mosaico_de_banner_banner_mosaico_mob_1','field_69781c5e01620');
INSERT INTO `wp_postmeta` VALUES (5372,298,'secao_mosaico_de_banner_link_mosaico_1','');
INSERT INTO `wp_postmeta` VALUES (5373,298,'_secao_mosaico_de_banner_link_mosaico_1','field_69781c6c01621');
INSERT INTO `wp_postmeta` VALUES (5374,298,'secao_mosaico_de_banner_banner_mosaico_2','168');
INSERT INTO `wp_postmeta` VALUES (5375,298,'_secao_mosaico_de_banner_banner_mosaico_2','field_69781c8301622');
INSERT INTO `wp_postmeta` VALUES (5376,298,'secao_mosaico_de_banner_banner_mosaico_mob_2','205');
INSERT INTO `wp_postmeta` VALUES (5377,298,'_secao_mosaico_de_banner_banner_mosaico_mob_2','field_69781c8601623');
INSERT INTO `wp_postmeta` VALUES (5378,298,'secao_mosaico_de_banner_link_mosaico_2','');
INSERT INTO `wp_postmeta` VALUES (5379,298,'_secao_mosaico_de_banner_link_mosaico_2','field_69781c9701624');
INSERT INTO `wp_postmeta` VALUES (5380,298,'secao_mosaico_de_banner_banner_mosaico_3','170');
INSERT INTO `wp_postmeta` VALUES (5381,298,'_secao_mosaico_de_banner_banner_mosaico_3','field_69781c9c01625');
INSERT INTO `wp_postmeta` VALUES (5382,298,'secao_mosaico_de_banner_banner_mosaico_mob_3','206');
INSERT INTO `wp_postmeta` VALUES (5383,298,'_secao_mosaico_de_banner_banner_mosaico_mob_3','field_69781c9f01626');
INSERT INTO `wp_postmeta` VALUES (5384,298,'secao_mosaico_de_banner_link_mosaico_3','');
INSERT INTO `wp_postmeta` VALUES (5385,298,'_secao_mosaico_de_banner_link_mosaico_3','field_69781ca201627');
INSERT INTO `wp_postmeta` VALUES (5386,298,'secao_mosaico_de_banner_banner_mosaico_4','167');
INSERT INTO `wp_postmeta` VALUES (5387,298,'_secao_mosaico_de_banner_banner_mosaico_4','field_69781caa01628');
INSERT INTO `wp_postmeta` VALUES (5388,298,'secao_mosaico_de_banner_banner_mosaico_mob_4','207');
INSERT INTO `wp_postmeta` VALUES (5389,298,'_secao_mosaico_de_banner_banner_mosaico_mob_4','field_69781cb501629');
INSERT INTO `wp_postmeta` VALUES (5390,298,'secao_mosaico_de_banner_link_mosaico_4','');
INSERT INTO `wp_postmeta` VALUES (5391,298,'_secao_mosaico_de_banner_link_mosaico_4','field_69781cb90162a');
INSERT INTO `wp_postmeta` VALUES (5392,298,'secao_mosaico_de_banner','');
INSERT INTO `wp_postmeta` VALUES (5393,298,'_secao_mosaico_de_banner','field_69781c060161e');
INSERT INTO `wp_postmeta` VALUES (5394,298,'vitrine_home2_titulo_da_vitrine_2','Óculos de Grau');
INSERT INTO `wp_postmeta` VALUES (5395,298,'_vitrine_home2_titulo_da_vitrine_2','field_697820b20aa04');
INSERT INTO `wp_postmeta` VALUES (5396,298,'vitrine_home2_texto_da_vitrine_2','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (5397,298,'_vitrine_home2_texto_da_vitrine_2','field_697820b20aa05');
INSERT INTO `wp_postmeta` VALUES (5398,298,'vitrine_home2','');
INSERT INTO `wp_postmeta` VALUES (5399,298,'_vitrine_home2','field_697820b20aa03');
INSERT INTO `wp_postmeta` VALUES (5400,298,'vitrine_home3_titulo_da_vitrine_3','Óculos de sol');
INSERT INTO `wp_postmeta` VALUES (5401,298,'_vitrine_home3_titulo_da_vitrine_3','field_6978215a25f48');
INSERT INTO `wp_postmeta` VALUES (5402,298,'vitrine_home3_texto_da_vitrine_3','Conheça os nossos modelos mais amados!');
INSERT INTO `wp_postmeta` VALUES (5403,298,'_vitrine_home3_texto_da_vitrine_3','field_6978216025f49');
INSERT INTO `wp_postmeta` VALUES (5404,298,'vitrine_home3','');
INSERT INTO `wp_postmeta` VALUES (5405,298,'_vitrine_home3','field_6978215325f45');
INSERT INTO `wp_postmeta` VALUES (5406,298,'secao_nossos_servicos_titulo_da_secao_de_servico','nossos serviços');
INSERT INTO `wp_postmeta` VALUES (5407,298,'_secao_nossos_servicos_titulo_da_secao_de_servico','field_6978353ac0c19');
INSERT INTO `wp_postmeta` VALUES (5408,298,'secao_nossos_servicos_banner_de_servico_1','172');
INSERT INTO `wp_postmeta` VALUES (5409,298,'_secao_nossos_servicos_banner_de_servico_1','field_69782ea94c03a');
INSERT INTO `wp_postmeta` VALUES (5410,298,'secao_nossos_servicos_banner_de_servico_mob_1','');
INSERT INTO `wp_postmeta` VALUES (5411,298,'_secao_nossos_servicos_banner_de_servico_mob_1','field_6978309b4c03b');
INSERT INTO `wp_postmeta` VALUES (5412,298,'secao_nossos_servicos_link_do_banner_de_servico_1','');
INSERT INTO `wp_postmeta` VALUES (5413,298,'_secao_nossos_servicos_link_do_banner_de_servico_1','field_697830aa4c03c');
INSERT INTO `wp_postmeta` VALUES (5414,298,'secao_nossos_servicos_banner_de_servico_2','173');
INSERT INTO `wp_postmeta` VALUES (5415,298,'_secao_nossos_servicos_banner_de_servico_2','field_697831014c03d');
INSERT INTO `wp_postmeta` VALUES (5416,298,'secao_nossos_servicos_banner_de_servico_mob_2','');
INSERT INTO `wp_postmeta` VALUES (5417,298,'_secao_nossos_servicos_banner_de_servico_mob_2','field_697831054c03e');
INSERT INTO `wp_postmeta` VALUES (5418,298,'secao_nossos_servicos_link_do_banner_de_servico_2','');
INSERT INTO `wp_postmeta` VALUES (5419,298,'_secao_nossos_servicos_link_do_banner_de_servico_2','field_697831164c03f');
INSERT INTO `wp_postmeta` VALUES (5420,298,'secao_nossos_servicos_banner_de_servico_3','174');
INSERT INTO `wp_postmeta` VALUES (5421,298,'_secao_nossos_servicos_banner_de_servico_3','field_697831214c040');
INSERT INTO `wp_postmeta` VALUES (5422,298,'secao_nossos_servicos_banner_de_servico_mob_3','');
INSERT INTO `wp_postmeta` VALUES (5423,298,'_secao_nossos_servicos_banner_de_servico_mob_3','field_6978312a4c041');
INSERT INTO `wp_postmeta` VALUES (5424,298,'secao_nossos_servicos_link_do_banner_de_servico_3','');
INSERT INTO `wp_postmeta` VALUES (5425,298,'_secao_nossos_servicos_link_do_banner_de_servico_3','field_697831304c042');
INSERT INTO `wp_postmeta` VALUES (5426,298,'secao_nossos_servicos_banner_de_servico_4','175');
INSERT INTO `wp_postmeta` VALUES (5427,298,'_secao_nossos_servicos_banner_de_servico_4','field_6978319e4c043');
INSERT INTO `wp_postmeta` VALUES (5428,298,'secao_nossos_servicos_banner_de_servico_mob_4','');
INSERT INTO `wp_postmeta` VALUES (5429,298,'_secao_nossos_servicos_banner_de_servico_mob_4','field_697831aa4c044');
INSERT INTO `wp_postmeta` VALUES (5430,298,'secao_nossos_servicos_link_do_banner_de_servico_4','');
INSERT INTO `wp_postmeta` VALUES (5431,298,'_secao_nossos_servicos_link_do_banner_de_servico_4','field_697831b44c045');
INSERT INTO `wp_postmeta` VALUES (5432,298,'secao_nossos_servicos','');
INSERT INTO `wp_postmeta` VALUES (5433,298,'_secao_nossos_servicos','field_69782d964c039');
INSERT INTO `wp_postmeta` VALUES (5434,298,'secao_de_depoimentos_titulo_do_depoimentos','Depoimentos');
INSERT INTO `wp_postmeta` VALUES (5435,298,'_secao_de_depoimentos_titulo_do_depoimentos','field_697a94adb9dbb');
INSERT INTO `wp_postmeta` VALUES (5436,298,'secao_de_depoimentos_sub_titulo_de_depoimentos_','O que nossos clientes estão dizendo');
INSERT INTO `wp_postmeta` VALUES (5437,298,'_secao_de_depoimentos_sub_titulo_de_depoimentos_','field_697a94c0b9dbc');
INSERT INTO `wp_postmeta` VALUES (5438,298,'secao_de_depoimentos','');
INSERT INTO `wp_postmeta` VALUES (5439,298,'_secao_de_depoimentos','field_697a9498b9dba');
INSERT INTO `wp_postmeta` VALUES (5440,298,'secao_de_nossas_lojas_titulo_da_nossas_lojas','nossas lojas');
INSERT INTO `wp_postmeta` VALUES (5441,298,'_secao_de_nossas_lojas_titulo_da_nossas_lojas','field_697a9642a0dad');
INSERT INTO `wp_postmeta` VALUES (5442,298,'secao_de_nossas_lojas_texto_da_nossa_lojas','Encontre a loja mais próxima');
INSERT INTO `wp_postmeta` VALUES (5443,298,'_secao_de_nossas_lojas_texto_da_nossa_lojas','field_697a9642a0dae');
INSERT INTO `wp_postmeta` VALUES (5444,298,'secao_de_nossas_lojas','');
INSERT INTO `wp_postmeta` VALUES (5445,298,'_secao_de_nossas_lojas','field_697a9642a0dac');
INSERT INTO `wp_postmeta` VALUES (5446,298,'secao_linhas_mais_procuradas_titulo','linhas mais procurada');
INSERT INTO `wp_postmeta` VALUES (5447,298,'_secao_linhas_mais_procuradas_titulo','field_697ab15ba4c6d');
INSERT INTO `wp_postmeta` VALUES (5448,298,'secao_linhas_mais_procuradas_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (5449,298,'_secao_linhas_mais_procuradas_texto','field_697ab174a4c6e');
INSERT INTO `wp_postmeta` VALUES (5450,298,'secao_linhas_mais_procuradas','');
INSERT INTO `wp_postmeta` VALUES (5451,298,'_secao_linhas_mais_procuradas','field_697ab149a4c6c');
INSERT INTO `wp_postmeta` VALUES (5452,298,'secao_queridos_titulo','Queridinho dos clientes ');
INSERT INTO `wp_postmeta` VALUES (5453,298,'_secao_queridos_titulo','field_697abf33108ab');
INSERT INTO `wp_postmeta` VALUES (5454,298,'secao_queridos_texto','Encontre os modelos mais desejados');
INSERT INTO `wp_postmeta` VALUES (5455,298,'_secao_queridos_texto','field_697abf34108ac');
INSERT INTO `wp_postmeta` VALUES (5456,298,'secao_queridos','');
INSERT INTO `wp_postmeta` VALUES (5457,298,'_secao_queridos','field_697abf33108aa');
INSERT INTO `wp_postmeta` VALUES (5458,298,'secao_banner_principal_banner_principal_mobile_1','189');
INSERT INTO `wp_postmeta` VALUES (5459,298,'_secao_banner_principal_banner_principal_mobile_1','field_697fa6c09b36f');
INSERT INTO `wp_postmeta` VALUES (5460,298,'secao_banner_principal_banner_principal_mobile_2','189');
INSERT INTO `wp_postmeta` VALUES (5461,298,'_secao_banner_principal_banner_principal_mobile_2','field_697fa6d648f0b');
INSERT INTO `wp_postmeta` VALUES (5462,298,'secao_banner_principal_banner_principal_mobile_3','');
INSERT INTO `wp_postmeta` VALUES (5463,298,'_secao_banner_principal_banner_principal_mobile_3','field_697fa6e248f0d');
INSERT INTO `wp_postmeta` VALUES (5464,298,'secao_banner_principal_video_pricinpal_desk_1','http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4');
INSERT INTO `wp_postmeta` VALUES (5465,298,'_secao_banner_principal_video_pricinpal_desk_1','field_69894c5aeed56');
INSERT INTO `wp_postmeta` VALUES (5466,298,'secao_banner_principal_video_principal_mob_1','');
INSERT INTO `wp_postmeta` VALUES (5467,298,'_secao_banner_principal_video_principal_mob_1','field_69894cadeed59');
INSERT INTO `wp_postmeta` VALUES (5468,298,'secao_banner_principal_video_pricinpal_desk_2','');
INSERT INTO `wp_postmeta` VALUES (5469,298,'_secao_banner_principal_video_pricinpal_desk_2','field_69894c8feed57');
INSERT INTO `wp_postmeta` VALUES (5470,298,'secao_banner_principal_video_principal_mob_2','');
INSERT INTO `wp_postmeta` VALUES (5471,298,'_secao_banner_principal_video_principal_mob_2','field_69894cc4eed5a');
INSERT INTO `wp_postmeta` VALUES (5472,298,'secao_banner_principal_video_pricinpal_desk_3','');
INSERT INTO `wp_postmeta` VALUES (5473,298,'_secao_banner_principal_video_pricinpal_desk_3','field_69894c9eeed58');
INSERT INTO `wp_postmeta` VALUES (5474,298,'secao_banner_principal_video_principal_mob_3','');
INSERT INTO `wp_postmeta` VALUES (5475,298,'_secao_banner_principal_video_principal_mob_3','field_69894cc5eed5b');
INSERT INTO `wp_postmeta` VALUES (5476,298,'catalogo','tesando o código');
INSERT INTO `wp_postmeta` VALUES (5477,298,'_catalogo','field_69b2f15a6a07c');
INSERT INTO `wp_postmeta` VALUES (5478,298,'secao_catalogos_titulo_catalogos','Catálogos');
INSERT INTO `wp_postmeta` VALUES (5479,298,'_secao_catalogos_titulo_catalogos','field_69b2f3f81f38a');
INSERT INTO `wp_postmeta` VALUES (5480,298,'secao_catalogos_subtitulo_catalogos','Conheça os óculos das principais marcas');
INSERT INTO `wp_postmeta` VALUES (5481,298,'_secao_catalogos_subtitulo_catalogos','field_69b2f4121f38b');
INSERT INTO `wp_postmeta` VALUES (5482,298,'secao_catalogos_catalogos_banner_catalogo_1','246');
INSERT INTO `wp_postmeta` VALUES (5483,298,'_secao_catalogos_catalogos_banner_catalogo_1','field_69b2f5cdbc30f');
INSERT INTO `wp_postmeta` VALUES (5484,298,'secao_catalogos_catalogos_link_catalogo_1','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=0b2e4d81-5ea3-4b1d-a5d6-bdbec8b28d08');
INSERT INTO `wp_postmeta` VALUES (5485,298,'_secao_catalogos_catalogos_link_catalogo_1','field_69b2f717bc319');
INSERT INTO `wp_postmeta` VALUES (5486,298,'secao_catalogos_catalogos_banner_catalogo_2','267');
INSERT INTO `wp_postmeta` VALUES (5487,298,'_secao_catalogos_catalogos_banner_catalogo_2','field_69b2f611bc310');
INSERT INTO `wp_postmeta` VALUES (5488,298,'secao_catalogos_catalogos_link_catalogo_2','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=34ecf332-f61b-4713-92df-4e9b89ff3345');
INSERT INTO `wp_postmeta` VALUES (5489,298,'_secao_catalogos_catalogos_link_catalogo_2','field_69b2f775bc31a');
INSERT INTO `wp_postmeta` VALUES (5490,298,'secao_catalogos_catalogos_banner_catalogo_3','268');
INSERT INTO `wp_postmeta` VALUES (5491,298,'_secao_catalogos_catalogos_banner_catalogo_3','field_69b2f61bbc311');
INSERT INTO `wp_postmeta` VALUES (5492,298,'secao_catalogos_catalogos_link_catalogo_3','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=3bd535b3-8a3b-47eb-a57c-9041fc929ff5');
INSERT INTO `wp_postmeta` VALUES (5493,298,'_secao_catalogos_catalogos_link_catalogo_3','field_69b2f783bc31b');
INSERT INTO `wp_postmeta` VALUES (5494,298,'secao_catalogos_catalogos_banner_catalogo_4','269');
INSERT INTO `wp_postmeta` VALUES (5495,298,'_secao_catalogos_catalogos_banner_catalogo_4','field_69b2f658bc312');
INSERT INTO `wp_postmeta` VALUES (5496,298,'secao_catalogos_catalogos_link_catalogo_4','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=1cfc1d75-0362-4048-81ad-f37c54d3c5f4');
INSERT INTO `wp_postmeta` VALUES (5497,298,'_secao_catalogos_catalogos_link_catalogo_4','field_69b2f7adbc31c');
INSERT INTO `wp_postmeta` VALUES (5498,298,'secao_catalogos_catalogos_banner_catalogo_5','272');
INSERT INTO `wp_postmeta` VALUES (5499,298,'_secao_catalogos_catalogos_banner_catalogo_5','field_69b2f6a2bc313');
INSERT INTO `wp_postmeta` VALUES (5500,298,'secao_catalogos_catalogos_link_catalogo_5','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=b16a9692-e849-4a25-9241-c6f3c54b3edf');
INSERT INTO `wp_postmeta` VALUES (5501,298,'_secao_catalogos_catalogos_link_catalogo_5','field_69b2f7b9bc31d');
INSERT INTO `wp_postmeta` VALUES (5502,298,'secao_catalogos_catalogos_banner_catalogo_6','280');
INSERT INTO `wp_postmeta` VALUES (5503,298,'_secao_catalogos_catalogos_banner_catalogo_6','field_69b2f6b1bc314');
INSERT INTO `wp_postmeta` VALUES (5504,298,'secao_catalogos_catalogos_link_catalogo_6','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=49806ff4-f8bd-46cb-b44e-7c98c6ab0770');
INSERT INTO `wp_postmeta` VALUES (5505,298,'_secao_catalogos_catalogos_link_catalogo_6','field_69b2f7c9bc31e');
INSERT INTO `wp_postmeta` VALUES (5506,298,'secao_catalogos_catalogos_banner_catalogo_7','273');
INSERT INTO `wp_postmeta` VALUES (5507,298,'_secao_catalogos_catalogos_banner_catalogo_7','field_69b2f6bfbc315');
INSERT INTO `wp_postmeta` VALUES (5508,298,'secao_catalogos_catalogos_link_catalogo_7','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=226203bb-2cdd-4acf-9a63-0687bb3014d5');
INSERT INTO `wp_postmeta` VALUES (5509,298,'_secao_catalogos_catalogos_link_catalogo_7','field_69b2f7d8bc31f');
INSERT INTO `wp_postmeta` VALUES (5510,298,'secao_catalogos_catalogos_banner_catalogo_8','274');
INSERT INTO `wp_postmeta` VALUES (5511,298,'_secao_catalogos_catalogos_banner_catalogo_8','field_69b2f6cbbc316');
INSERT INTO `wp_postmeta` VALUES (5512,298,'secao_catalogos_catalogos_link_catalogo_8','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=40613178-4f5a-44a0-9297-37589dbcdff0');
INSERT INTO `wp_postmeta` VALUES (5513,298,'_secao_catalogos_catalogos_link_catalogo_8','field_69b2f7e4bc320');
INSERT INTO `wp_postmeta` VALUES (5514,298,'secao_catalogos_catalogos_banner_catalogo_9','275');
INSERT INTO `wp_postmeta` VALUES (5515,298,'_secao_catalogos_catalogos_banner_catalogo_9','field_69b2f6d5bc317');
INSERT INTO `wp_postmeta` VALUES (5516,298,'secao_catalogos_catalogos_link_catalogo_9','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=78a5b4ee-c6a8-417f-b92c-3cd886fe7cca');
INSERT INTO `wp_postmeta` VALUES (5517,298,'_secao_catalogos_catalogos_link_catalogo_9','field_69b40a41aadd7');
INSERT INTO `wp_postmeta` VALUES (5518,298,'secao_catalogos_catalogos_banner_catalogo_10','276');
INSERT INTO `wp_postmeta` VALUES (5519,298,'_secao_catalogos_catalogos_banner_catalogo_10','field_69b2f702bc318');
INSERT INTO `wp_postmeta` VALUES (5520,298,'secao_catalogos_catalogos_link_catalogo_10','https://clinicafarescsp-my.sharepoint.com/personal/vinicius_gasiunas_clinicafares_com_br/_layouts/15/embed.aspx?UniqueId=99619f71-2800-4e7e-92ba-c76d3f2416ac');
INSERT INTO `wp_postmeta` VALUES (5521,298,'_secao_catalogos_catalogos_link_catalogo_10','field_69b2f800bc322');
INSERT INTO `wp_postmeta` VALUES (5522,298,'secao_catalogos_catalogos','');
INSERT INTO `wp_postmeta` VALUES (5523,298,'_secao_catalogos_catalogos','field_69b2f42f1f38c');
INSERT INTO `wp_postmeta` VALUES (5524,298,'secao_catalogos','');
INSERT INTO `wp_postmeta` VALUES (5525,298,'_secao_catalogos','field_69b2f2901f389');
INSERT INTO `wp_postmeta` VALUES (5526,298,'secao_catalogos_catalogos_titulo_catalogo_1','Cacharel Paris');
INSERT INTO `wp_postmeta` VALUES (5527,298,'_secao_catalogos_catalogos_titulo_catalogo_1','field_69b409efaadcf');
INSERT INTO `wp_postmeta` VALUES (5528,298,'secao_catalogos_catalogos_titulo_catalogo_2','New Balance');
INSERT INTO `wp_postmeta` VALUES (5529,298,'_secao_catalogos_catalogos_titulo_catalogo_2','field_69b40a15aadd0');
INSERT INTO `wp_postmeta` VALUES (5530,298,'secao_catalogos_catalogos_titulo_catalogo_3','Catálogo Receituário - Morena Rosa');
INSERT INTO `wp_postmeta` VALUES (5531,298,'_secao_catalogos_catalogos_titulo_catalogo_3','field_69b40a1caadd1');
INSERT INTO `wp_postmeta` VALUES (5532,298,'secao_catalogos_catalogos_titulo_catalogo_4','Catálogo Solar - Morena Rosa');
INSERT INTO `wp_postmeta` VALUES (5533,298,'_secao_catalogos_catalogos_titulo_catalogo_4','field_69b40a25aadd2');
INSERT INTO `wp_postmeta` VALUES (5534,298,'secao_catalogos_catalogos_titulo_catalogo_5','Catálogo Solar - Maria Valentina');
INSERT INTO `wp_postmeta` VALUES (5535,298,'_secao_catalogos_catalogos_titulo_catalogo_5','field_69b40a2baadd3');
INSERT INTO `wp_postmeta` VALUES (5536,298,'secao_catalogos_catalogos_titulo_catalogo_6','Catálogo Receituário - Maria Valentina');
INSERT INTO `wp_postmeta` VALUES (5537,298,'_secao_catalogos_catalogos_titulo_catalogo_6','field_69b40a31aadd4');
INSERT INTO `wp_postmeta` VALUES (5538,298,'secao_catalogos_catalogos_titulo_catalogo_7','Catálogo Receituário - Sestini');
INSERT INTO `wp_postmeta` VALUES (5539,298,'_secao_catalogos_catalogos_titulo_catalogo_7','field_69b40a37aadd5');
INSERT INTO `wp_postmeta` VALUES (5540,298,'secao_catalogos_catalogos_titulo_catalogo_8','Catálogo Solar - Maria Valentina');
INSERT INTO `wp_postmeta` VALUES (5541,298,'_secao_catalogos_catalogos_titulo_catalogo_8','field_69b40a3caadd6');
INSERT INTO `wp_postmeta` VALUES (5542,298,'secao_catalogos_catalogos_titulo_catalogo_9','Catálogo Solar - Dudalina');
INSERT INTO `wp_postmeta` VALUES (5543,298,'_secao_catalogos_catalogos_titulo_catalogo_9','field_69b40a63aadd8');
INSERT INTO `wp_postmeta` VALUES (5544,298,'secao_catalogos_catalogos_titulo_catalogo_10','Catálogo Receituário - Dudalina');
INSERT INTO `wp_postmeta` VALUES (5545,298,'_secao_catalogos_catalogos_titulo_catalogo_10','field_69b40a6aaadd9');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int NOT NULL DEFAULT '0',
`post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint 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`),
KEY `type_status_author` (`post_type`,`post_status`,`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=299 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,'2026-01-24 14:17:02','2026-01-24 14:17:02','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2026-01-24 14:17:02','2026-01-24 14:17:02','',0,'http://mroculos.local/?p=1',0,'post','',1);
INSERT INTO `wp_posts` VALUES (2,1,'2026-01-24 14:17:02','2026-01-24 14:17:02','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://mroculos.local/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2026-01-24 14:17:02','2026-01-24 14:17:02','',0,'http://mroculos.local/?page_id=2',0,'page','',0);
INSERT INTO `wp_posts` VALUES (3,1,'2026-01-24 14:17:02','2026-01-24 14:17:02','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://mroculos.local.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n','Privacy Policy','','draft','closed','open','','privacy-policy','','','2026-01-24 14:17:02','2026-01-24 14:17:02','',0,'http://mroculos.local/?page_id=3',0,'page','',0);
INSERT INTO `wp_posts` VALUES (5,1,'2026-01-24 14:54:24','2026-01-24 14:54:24','','logo-mr-oculos-NOVO-laranja','','inherit','open','closed','','logo-mr-oculos-novo-laranja','','','2026-01-24 14:54:24','2026-01-24 14:54:24','',0,'http://mroculos.local/wp-content/uploads/2026/01/logo-mr-oculos-NOVO-laranja.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (7,1,'2026-02-10 18:37:59','2026-01-24 19:13:30','','Exemplo','','publish','closed','closed','','7','','','2026-02-10 18:37:59','2026-02-10 18:37:59','',0,'http://mroculos.local/?p=7',1,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (8,1,'2026-02-10 18:37:59','2026-01-24 19:13:30','','Feminino','','publish','closed','closed','','feminino','','','2026-02-10 18:37:59','2026-02-10 18:37:59','',0,'http://mroculos.local/?p=8',2,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (9,1,'2026-02-10 18:37:59','2026-01-24 19:13:31','','Praia','','publish','closed','closed','','praia','','','2026-02-10 18:37:59','2026-02-10 18:37:59','',0,'http://mroculos.local/?p=9',3,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (10,1,'2026-02-10 18:37:59','2026-01-24 19:38:34','','Masculino','','publish','closed','closed','','masculino','','','2026-02-10 18:37:59','2026-02-10 18:37:59','',0,'http://mroculos.local/?p=10',4,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (12,1,'2026-02-10 18:39:12','2026-01-24 20:13:43',' ','','','publish','closed','closed','','12','','','2026-02-10 18:39:12','2026-02-10 18:39:12','',0,'http://mroculos.local/?p=12',2,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (14,1,'2026-01-25 14:51:04','2026-01-25 14:51:04','','Home','','publish','closed','closed','','home','','','2026-03-13 13:08:26','2026-03-13 13:08:26','',0,'http://mroculos.local/?page_id=14',0,'page','',0);
INSERT INTO `wp_posts` VALUES (15,1,'2026-01-25 14:51:04','2026-01-25 14:51:04','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-25 14:51:04','2026-01-25 14:51:04','',14,'http://mroculos.local/?p=15',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (16,1,'2026-01-25 14:54:20','2026-01-25 14:54:20','a:9:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"index.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;s:13:\"display_title\";s:0:\"\";}','Home page','home-page','publish','closed','closed','','group_69762dff341ba','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',0,'http://mroculos.local/?post_type=acf-field-group&p=16',0,'acf-field-group','',0);
INSERT INTO `wp_posts` VALUES (17,1,'2026-01-25 14:54:20','2026-01-25 14:54:20','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção banner principal','secao_banner_principal','publish','closed','closed','','field_69762e0302173','','','2026-01-25 14:54:30','2026-01-25 14:54:30','',16,'http://mroculos.local/?post_type=acf-field&p=17',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (18,1,'2026-01-25 14:54:20','2026-01-25 14:54:20','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner principal 1','banner_principal_1','publish','closed','closed','','field_69762e4d02174','','','2026-01-25 14:54:20','2026-01-25 14:54:20','',17,'http://mroculos.local/?post_type=acf-field&p=18',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (19,1,'2026-01-25 14:54:20','2026-01-25 14:54:20','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner principal 2','banner_principal_2','publish','closed','closed','','field_69762e8202175','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=19',4,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (20,1,'2026-01-25 14:54:20','2026-01-25 14:54:20','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner principal 3','banner_principal_3','publish','closed','closed','','field_69762e8402176','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=20',8,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (21,1,'2026-01-25 14:59:04','2026-01-25 14:59:04','','banner_main','','inherit','open','closed','','banner_main','','','2026-01-25 14:59:04','2026-01-25 14:59:04','',14,'http://mroculos.local/wp-content/uploads/2026/01/banner_main.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (22,1,'2026-01-25 14:59:14','2026-01-25 14:59:14','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-25 14:59:14','2026-01-25 14:59:14','',14,'http://mroculos.local/?p=22',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (23,1,'2026-01-25 15:05:50','2026-01-25 15:05:50','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção de benefícios','secao_de_beneficios','publish','closed','closed','','field_6976312341c9f','','','2026-01-25 15:05:50','2026-01-25 15:05:50','',16,'http://mroculos.local/?post_type=acf-field&p=23',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (24,1,'2026-01-25 15:05:50','2026-01-25 15:05:50','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:11:\"icon_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"tabs\";a:1:{i:0;s:13:\"media_library\";}s:13:\"return_format\";s:6:\"string\";s:17:\"allow_in_bindings\";i:0;s:7:\"library\";s:3:\"all\";s:13:\"default_value\";a:2:{s:4:\"type\";N;s:5:\"value\";N;}}','Ícone beneficio 1','icone_beneficio_1','publish','closed','closed','','field_6976313e41ca0','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=24',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (25,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título beneficio 1','titulo_beneficio_1','publish','closed','closed','','field_6976318e04a99','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=25',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (26,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto beneficio 1','texto_beneficio_1','publish','closed','closed','','field_6976319b04a9a','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=26',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (27,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:11:\"icon_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"tabs\";a:1:{i:0;s:13:\"media_library\";}s:13:\"return_format\";s:6:\"string\";s:17:\"allow_in_bindings\";i:0;s:7:\"library\";s:3:\"all\";s:13:\"default_value\";a:2:{s:4:\"type\";N;s:5:\"value\";N;}}','Ícone beneficio 2','icone_beneficio_2','publish','closed','closed','','field_697631b504a9b','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=27',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (28,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título beneficio 2','titulo_beneficio_2','publish','closed','closed','','field_697631bb04a9c','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=28',4,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (29,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto beneficio 2','texto_beneficio_2','publish','closed','closed','','field_697631c004a9d','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=29',5,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (30,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:11:\"icon_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"tabs\";a:1:{i:0;s:13:\"media_library\";}s:13:\"return_format\";s:6:\"string\";s:17:\"allow_in_bindings\";i:0;s:7:\"library\";s:3:\"all\";s:13:\"default_value\";a:2:{s:4:\"type\";N;s:5:\"value\";N;}}','Ícone beneficio 3','icone_beneficio_3','publish','closed','closed','','field_697631c304a9e','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=30',6,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (31,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título beneficio 3','titulo_beneficio_3','publish','closed','closed','','field_697631c804a9f','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=31',7,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (32,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto beneficio 3','texto_beneficio_3','publish','closed','closed','','field_697631cc04aa0','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=32',8,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (33,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:11:\"icon_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"tabs\";a:1:{i:0;s:13:\"media_library\";}s:13:\"return_format\";s:6:\"string\";s:17:\"allow_in_bindings\";i:0;s:7:\"library\";s:3:\"all\";s:13:\"default_value\";a:2:{s:4:\"type\";N;s:5:\"value\";N;}}','Ícone beneficio 4','icone_beneficio_4','publish','closed','closed','','field_697631d004aa1','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=33',9,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (34,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título beneficio 4','titulo_beneficio_4','publish','closed','closed','','field_697631d404aa2','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=34',10,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (35,1,'2026-01-25 15:10:22','2026-01-25 15:10:22','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto beneficio 4','texto_beneficio_4','publish','closed','closed','','field_697631d804aa3','','','2026-01-25 15:10:22','2026-01-25 15:10:22','',23,'http://mroculos.local/?post_type=acf-field&p=35',11,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (36,1,'2026-01-25 15:17:21','2026-01-25 15:17:21','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-25 15:17:21','2026-01-25 15:17:21','',14,'http://mroculos.local/?p=36',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (37,1,'2026-01-25 15:18:23','2026-01-25 15:18:23','','icon-cart','','inherit','open','closed','','icon-cart','','','2026-01-25 15:18:23','2026-01-25 15:18:23','',14,'http://mroculos.local/wp-content/uploads/2026/01/icon-cart.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (39,1,'2026-01-25 15:24:43','2026-01-25 15:24:43','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-25 15:24:43','2026-01-25 15:24:43','',14,'http://mroculos.local/?p=39',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (41,1,'2026-01-25 19:59:24','2026-01-25 19:59:24','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção Categorias','secao_categorias','publish','closed','closed','','field_697636b0cb4f3','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=41',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (42,1,'2026-01-25 19:59:24','2026-01-25 19:59:24','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:10:\"categorias\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Titulo da seção','titulo_da_secao','publish','closed','closed','','field_697636c1cb4f4','','','2026-01-25 19:59:24','2026-01-25 19:59:24','',41,'http://mroculos.local/?post_type=acf-field&p=42',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (43,1,'2026-01-25 19:59:24','2026-01-25 19:59:24','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:35:\"Navegue pelas principais categorias\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto da seção','texto_da_secao','publish','closed','closed','','field_697636d6cb4f5','','','2026-01-25 19:59:24','2026-01-25 19:59:24','',41,'http://mroculos.local/?post_type=acf-field&p=43',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (44,1,'2026-01-25 19:59:24','2026-01-25 19:59:24','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Banner de navegação','banner_de_navegacao','publish','closed','closed','','field_697636f2cb4f6','','','2026-01-25 19:59:24','2026-01-25 19:59:24','',41,'http://mroculos.local/?post_type=acf-field&p=44',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (45,1,'2026-01-25 19:59:24','2026-01-25 19:59:24','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação full','banner_navegacao_full','publish','closed','closed','','field_697675cecb4f7','','','2026-01-25 20:05:14','2026-01-25 20:05:14','',44,'http://mroculos.local/?post_type=acf-field&p=45',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (46,1,'2026-01-25 19:59:24','2026-01-25 19:59:24','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação pequeno 1','banner_navegacao_pequeno_1','publish','closed','closed','','field_697675e6cb4f8','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=46',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (47,1,'2026-01-25 19:59:24','2026-01-25 19:59:24','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação pequeno 2','banner_navegacao_pequeno_2','publish','closed','closed','','field_69767612cb4f9','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=47',6,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (48,1,'2026-01-25 19:59:24','2026-01-25 19:59:24','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação pequeno 3','banner_navegacao_pequeno_3','publish','closed','closed','','field_69767615cb4fa','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=48',9,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (49,1,'2026-01-25 19:59:24','2026-01-25 19:59:24','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação pequeno 4','banner_navegacao_pequeno_4','publish','closed','closed','','field_69767616cb4fb','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=49',12,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (50,1,'2026-01-25 20:05:14','2026-01-25 20:05:14','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link banner full','link_banner_full','publish','closed','closed','','field_697677431db5f','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=50',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (51,1,'2026-01-25 20:05:14','2026-01-25 20:05:14','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link banner pequeno 1','link_banner_pequeno_1','publish','closed','closed','','field_6976775a1db60','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=51',5,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (52,1,'2026-01-25 20:05:14','2026-01-25 20:05:14','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link banner pequeno 2','link_banner_pequeno_2','publish','closed','closed','','field_6976776b1db61','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=52',8,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (53,1,'2026-01-25 20:05:14','2026-01-25 20:05:14','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link banner pequeno 3','link_banner_pequeno_3','publish','closed','closed','','field_6976776e1db62','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=53',11,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (54,1,'2026-01-25 20:05:14','2026-01-25 20:05:14','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link banner pequeno 4','link_banner_pequeno_4','publish','closed','closed','','field_697677711db63','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=54',14,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (55,1,'2026-01-25 20:26:37','2026-01-25 20:26:37','','Armações','','inherit','open','closed','','armacoes','','','2026-01-25 20:26:37','2026-01-25 20:26:37','',14,'http://mroculos.local/wp-content/uploads/2026/01/Armacoes.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (56,1,'2026-01-25 20:26:43','2026-01-25 20:26:43','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-25 20:26:43','2026-01-25 20:26:43','',14,'http://mroculos.local/?p=56',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (58,1,'2026-01-25 20:30:14','2026-01-25 20:30:14','','Óculos Masculino','','inherit','open','closed','','oculos-masculino','','','2026-01-25 20:30:14','2026-01-25 20:30:14','',14,'http://mroculos.local/wp-content/uploads/2026/01/Oculos-Masculino.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (59,1,'2026-01-25 20:30:24','2026-01-25 20:30:24','','Oculos Femininos','','inherit','open','closed','','oculos-femininos','','','2026-01-25 20:30:24','2026-01-25 20:30:24','',14,'http://mroculos.local/wp-content/uploads/2026/01/Oculos-Femininos.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (60,1,'2026-01-25 20:30:40','2026-01-25 20:30:40','','Oculos de sol','','inherit','open','closed','','oculos-de-sol','','','2026-01-25 20:30:40','2026-01-25 20:30:40','',14,'http://mroculos.local/wp-content/uploads/2026/01/Oculos-de-sol.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (61,1,'2026-01-25 20:30:52','2026-01-25 20:30:52','','Óculos Especiais','','inherit','open','closed','','oculos-especiais','','','2026-01-25 20:30:52','2026-01-25 20:30:52','',14,'http://mroculos.local/wp-content/uploads/2026/01/Oculos-Especiais.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (62,1,'2026-01-25 20:31:04','2026-01-25 20:31:04','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-25 20:31:04','2026-01-25 20:31:04','',14,'http://mroculos.local/?p=62',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (63,1,'2026-01-25 20:32:44','2026-01-25 20:32:44','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação full mob','banner_navegacao_full_mob','publish','closed','closed','','field_69767db559135','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=63',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (64,1,'2026-01-25 20:32:44','2026-01-25 20:32:44','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação pequeno 1 mob','banner_navegacao_pequeno_1_mob','publish','closed','closed','','field_69767dc159136','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=64',4,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (65,1,'2026-01-25 20:32:44','2026-01-25 20:32:44','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação pequeno 2 mob','banner_navegacao_pequeno_2_mob','publish','closed','closed','','field_69767dca59137','','','2026-01-26 23:52:53','2026-01-26 23:52:53','',44,'http://mroculos.local/?post_type=acf-field&p=65',7,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (66,1,'2026-01-25 20:32:44','2026-01-25 20:32:44','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação pequeno 3 mob','banner_navegacao_pequeno_3_mob','publish','closed','closed','','field_69767dd759138','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=66',10,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (67,1,'2026-01-25 20:32:44','2026-01-25 20:32:44','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner navegação pequeno 4 mob','banner_navegacao_pequeno_4_mob','publish','closed','closed','','field_69767de359139','','','2026-01-25 20:32:44','2026-01-25 20:32:44','',44,'http://mroculos.local/?post_type=acf-field&p=67',13,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (68,1,'2026-01-25 20:42:20','2026-01-25 20:42:20','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção de marcas','secao_de_marcas','publish','closed','closed','','field_69767fbf30839','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=68',4,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (69,1,'2026-01-25 20:42:20','2026-01-25 20:42:20','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:17:\"marcas que amamos\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Titulo de marcas','titulo_de_marcas','publish','closed','closed','','field_697680033083a','','','2026-01-25 20:42:20','2026-01-25 20:42:20','',68,'http://mroculos.local/?post_type=acf-field&p=69',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (70,1,'2026-01-25 20:42:20','2026-01-25 20:42:20','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:23:\"Encontre a sua favorita\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto de marcas','texto_de_marcas','publish','closed','closed','','field_6976801b3083b','','','2026-01-25 20:42:20','2026-01-25 20:42:20','',68,'http://mroculos.local/?post_type=acf-field&p=70',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (71,1,'2026-01-25 20:54:29','2026-01-25 20:54:29','','Kodak','','publish','closed','closed','','kodak','','','2026-01-25 20:54:29','2026-01-25 20:54:29','',0,'http://mroculos.local/?post_type=marca&p=71',0,'marca','',0);
INSERT INTO `wp_posts` VALUES (72,1,'2026-01-25 20:54:26','2026-01-25 20:54:26','','marca_kodak','','inherit','open','closed','','marca_kodak','','','2026-01-25 20:54:26','2026-01-25 20:54:26','',71,'http://mroculos.local/wp-content/uploads/2026/01/marca_kodak.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (73,1,'2026-01-25 20:54:47','2026-01-25 20:54:47','','Opti','','publish','closed','closed','','opti','','','2026-01-25 20:54:47','2026-01-25 20:54:47','',0,'http://mroculos.local/?post_type=marca&p=73',0,'marca','',0);
INSERT INTO `wp_posts` VALUES (74,1,'2026-01-25 20:54:42','2026-01-25 20:54:42','','marca_opti','','inherit','open','closed','','marca_opti','','','2026-01-25 20:54:42','2026-01-25 20:54:42','',73,'http://mroculos.local/wp-content/uploads/2026/01/marca_opti.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (75,1,'2026-01-25 20:55:02','2026-01-25 20:55:02','','Hoya','','publish','closed','closed','','hoya','','','2026-01-25 20:55:02','2026-01-25 20:55:02','',0,'http://mroculos.local/?post_type=marca&p=75',0,'marca','',0);
INSERT INTO `wp_posts` VALUES (76,1,'2026-01-25 20:54:59','2026-01-25 20:54:59','','marca_hoya','','inherit','open','closed','','marca_hoya','','','2026-01-25 20:54:59','2026-01-25 20:54:59','',75,'http://mroculos.local/wp-content/uploads/2026/01/marca_hoya.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (77,1,'2026-01-25 20:55:21','2026-01-25 20:55:21','','varilux','','publish','closed','closed','','varilux','','','2026-01-25 20:55:21','2026-01-25 20:55:21','',0,'http://mroculos.local/?post_type=marca&p=77',0,'marca','',0);
INSERT INTO `wp_posts` VALUES (78,1,'2026-01-25 20:55:17','2026-01-25 20:55:17','','marca_varilux','','inherit','open','closed','','marca_varilux','','','2026-01-25 20:55:17','2026-01-25 20:55:17','',77,'http://mroculos.local/wp-content/uploads/2026/01/marca_varilux.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (80,1,'2026-01-26 00:03:42','2026-01-26 00:03:42','a:9:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"oculos\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;s:13:\"display_title\";s:0:\"\";}','Produtos','produtos','publish','closed','closed','','group_6976ad9c51408','','','2026-02-01 21:55:21','2026-02-01 21:55:21','',0,'http://mroculos.local/?post_type=acf-field-group&p=80',0,'acf-field-group','',0);
INSERT INTO `wp_posts` VALUES (81,1,'2026-01-26 00:03:42','2026-01-26 00:03:42','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Preço do produto','preco_do_produto','publish','closed','closed','','field_6976ad9d6b45e','','','2026-01-26 03:45:31','2026-01-26 03:45:31','',80,'http://mroculos.local/?post_type=acf-field&p=81',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (82,1,'2026-01-26 00:03:42','2026-01-26 00:03:42','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Preço Promocional do produto','preco_promocional_do_produto','publish','closed','closed','','field_6976add36b45f','','','2026-01-26 03:45:31','2026-01-26 03:45:31','',80,'http://mroculos.local/?post_type=acf-field&p=82',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (83,1,'2026-01-26 00:03:42','2026-01-26 00:03:42','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:8:\"novidade\";s:8:\"Novidade\";s:8:\"desconto\";s:8:\"Desconto\";}s:13:\"default_value\";b:0;s:13:\"return_format\";s:5:\"value\";s:8:\"multiple\";i:0;s:10:\"allow_null\";i:1;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";s:14:\"create_options\";i:0;s:12:\"save_options\";i:0;}','Tag do produtos','tag_do_produtos','publish','closed','closed','','field_6976ae7e6b460','','','2026-01-26 00:03:42','2026-01-26 00:03:42','',80,'http://mroculos.local/?post_type=acf-field&p=83',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (84,1,'2026-01-26 00:03:42','2026-01-26 00:03:42','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Mais vendidos','mais_vendidos','publish','closed','closed','','field_6976aeca6b461','','','2026-01-26 00:03:42','2026-01-26 00:03:42','',80,'http://mroculos.local/?post_type=acf-field&p=84',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (85,1,'2026-01-26 00:03:42','2026-01-26 00:03:42','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Mais desejados','mais_desejados','publish','closed','closed','','field_6976af326b462','','','2026-01-26 00:03:42','2026-01-26 00:03:42','',80,'http://mroculos.local/?post_type=acf-field&p=85',4,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (89,1,'2026-01-26 02:35:59','2026-01-26 02:35:59','','River','','publish','closed','closed','','river-the-look','','','2026-02-01 21:56:08','2026-02-01 21:56:08','',0,'http://mroculos.local/?post_type=oculos&p=89',0,'oculos','',0);
INSERT INTO `wp_posts` VALUES (90,1,'2026-01-26 02:35:54','2026-01-26 02:35:54','','image 14','','inherit','open','closed','','image-14','','','2026-01-26 02:35:54','2026-01-26 02:35:54','',89,'http://mroculos.local/wp-content/uploads/2026/01/image-14.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (91,1,'2026-01-26 03:15:30','2026-01-26 03:15:30','','River plus','','publish','closed','closed','','river-plus','','','2026-02-01 21:55:53','2026-02-01 21:55:53','',0,'http://mroculos.local/?post_type=oculos&p=91',0,'oculos','',0);
INSERT INTO `wp_posts` VALUES (92,1,'2026-01-26 23:59:01','2026-01-26 23:59:01','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Vitrine home1','vitrine_home1','publish','closed','closed','','field_6977fe96f2ba8','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=92',5,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (93,1,'2026-01-26 23:59:01','2026-01-26 23:59:01','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:13:\"mais vendidos\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Titulo da vitrine 1','titulo_da_vitrine_1','publish','closed','closed','','field_6977ff94f2ba9','','','2026-01-26 23:59:01','2026-01-26 23:59:01','',92,'http://mroculos.local/?post_type=acf-field&p=93',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (94,1,'2026-01-26 23:59:01','2026-01-26 23:59:01','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:34:\"Encontre os modelos mais desejados\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto da vitrine 1','texto_da_vitrine_1','publish','closed','closed','','field_6977ffaef2baa','','','2026-01-26 23:59:01','2026-01-26 23:59:01','',92,'http://mroculos.local/?post_type=acf-field&p=94',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (95,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:12:{i:0;a:29:{s:2:\"ID\";i:96;s:3:\"key\";s:19:\"field_69781c420161f\";s:5:\"label\";s:16:\"banner mosaico 1\";s:4:\"name\";s:16:\"banner_mosaico_1\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:5:\"image\";s:5:\"value\";N;s:10:\"menu_order\";i:0;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";s:5:\"_name\";s:16:\"banner_mosaico_1\";s:6:\"_valid\";i:1;}i:1;a:29:{s:2:\"ID\";i:97;s:3:\"key\";s:19:\"field_69781c5e01620\";s:5:\"label\";s:20:\"banner mosaico mob 1\";s:4:\"name\";s:20:\"banner_mosaico_mob_1\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:5:\"image\";s:5:\"value\";N;s:10:\"menu_order\";i:1;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";s:5:\"_name\";s:20:\"banner_mosaico_mob_1\";s:6:\"_valid\";i:1;}i:2;a:24:{s:2:\"ID\";i:98;s:3:\"key\";s:19:\"field_69781c6c01621\";s:5:\"label\";s:17:\"Link do mosaico 1\";s:4:\"name\";s:14:\"link_mosaico_1\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:4:\"text\";s:5:\"value\";N;s:10:\"menu_order\";i:2;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:5:\"_name\";s:14:\"link_mosaico_1\";s:6:\"_valid\";i:1;}i:3;a:29:{s:2:\"ID\";i:99;s:3:\"key\";s:19:\"field_69781c8301622\";s:5:\"label\";s:16:\"banner mosaico 2\";s:4:\"name\";s:16:\"banner_mosaico_2\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:5:\"image\";s:5:\"value\";N;s:10:\"menu_order\";i:3;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";s:5:\"_name\";s:16:\"banner_mosaico_2\";s:6:\"_valid\";i:1;}i:4;a:29:{s:2:\"ID\";i:100;s:3:\"key\";s:19:\"field_69781c8601623\";s:5:\"label\";s:20:\"banner mosaico mob 2\";s:4:\"name\";s:20:\"banner_mosaico_mob_2\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:5:\"image\";s:5:\"value\";N;s:10:\"menu_order\";i:4;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";s:5:\"_name\";s:20:\"banner_mosaico_mob_2\";s:6:\"_valid\";i:1;}i:5;a:24:{s:2:\"ID\";i:101;s:3:\"key\";s:19:\"field_69781c9701624\";s:5:\"label\";s:17:\"Link do mosaico 2\";s:4:\"name\";s:14:\"link_mosaico_2\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:4:\"text\";s:5:\"value\";N;s:10:\"menu_order\";i:5;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:5:\"_name\";s:14:\"link_mosaico_2\";s:6:\"_valid\";i:1;}i:6;a:29:{s:2:\"ID\";i:102;s:3:\"key\";s:19:\"field_69781c9c01625\";s:5:\"label\";s:16:\"banner mosaico 3\";s:4:\"name\";s:16:\"banner_mosaico_3\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:5:\"image\";s:5:\"value\";N;s:10:\"menu_order\";i:6;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";s:5:\"_name\";s:16:\"banner_mosaico_3\";s:6:\"_valid\";i:1;}i:7;a:29:{s:2:\"ID\";i:103;s:3:\"key\";s:19:\"field_69781c9f01626\";s:5:\"label\";s:20:\"banner mosaico mob 3\";s:4:\"name\";s:20:\"banner_mosaico_mob_3\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:5:\"image\";s:5:\"value\";N;s:10:\"menu_order\";i:7;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";s:5:\"_name\";s:20:\"banner_mosaico_mob_3\";s:6:\"_valid\";i:1;}i:8;a:24:{s:2:\"ID\";i:104;s:3:\"key\";s:19:\"field_69781ca201627\";s:5:\"label\";s:17:\"Link do mosaico 3\";s:4:\"name\";s:14:\"link_mosaico_3\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:4:\"text\";s:5:\"value\";N;s:10:\"menu_order\";i:8;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:5:\"_name\";s:14:\"link_mosaico_3\";s:6:\"_valid\";i:1;}i:9;a:29:{s:2:\"ID\";i:105;s:3:\"key\";s:19:\"field_69781caa01628\";s:5:\"label\";s:16:\"banner mosaico 4\";s:4:\"name\";s:16:\"banner_mosaico_4\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:5:\"image\";s:5:\"value\";N;s:10:\"menu_order\";i:9;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";s:5:\"_name\";s:16:\"banner_mosaico_4\";s:6:\"_valid\";i:1;}i:10;a:29:{s:2:\"ID\";i:106;s:3:\"key\";s:19:\"field_69781cb501629\";s:5:\"label\";s:20:\"banner mosaico mob 4\";s:4:\"name\";s:20:\"banner_mosaico_mob_4\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:5:\"image\";s:5:\"value\";N;s:10:\"menu_order\";i:10;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";s:5:\"_name\";s:20:\"banner_mosaico_mob_4\";s:6:\"_valid\";i:1;}i:11;a:24:{s:2:\"ID\";i:107;s:3:\"key\";s:19:\"field_69781cb90162a\";s:5:\"label\";s:17:\"Link do mosaico 4\";s:4:\"name\";s:14:\"link_mosaico_4\";s:10:\"aria-label\";s:0:\"\";s:6:\"prefix\";s:3:\"acf\";s:4:\"type\";s:4:\"text\";s:5:\"value\";N;s:10:\"menu_order\";i:11;s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:17:\"conditional_logic\";i:0;s:6:\"parent\";i:95;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:5:\"_name\";s:14:\"link_mosaico_4\";s:6:\"_valid\";i:1;}}}','Seção mosaico de banner','secao_mosaico_de_banner','publish','closed','closed','','field_69781c060161e','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=95',6,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (96,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner mosaico 1','banner_mosaico_1','publish','closed','closed','','field_69781c420161f','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=96',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (97,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner mosaico mob 1','banner_mosaico_mob_1','publish','closed','closed','','field_69781c5e01620','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=97',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (98,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link do mosaico 1','link_mosaico_1','publish','closed','closed','','field_69781c6c01621','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=98',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (99,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner mosaico 2','banner_mosaico_2','publish','closed','closed','','field_69781c8301622','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=99',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (100,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner mosaico mob 2','banner_mosaico_mob_2','publish','closed','closed','','field_69781c8601623','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=100',4,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (101,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link do mosaico 2','link_mosaico_2','publish','closed','closed','','field_69781c9701624','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=101',5,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (102,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner mosaico 3','banner_mosaico_3','publish','closed','closed','','field_69781c9c01625','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=102',6,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (103,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner mosaico mob 3','banner_mosaico_mob_3','publish','closed','closed','','field_69781c9f01626','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=103',7,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (104,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link do mosaico 3','link_mosaico_3','publish','closed','closed','','field_69781ca201627','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=104',8,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (105,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner mosaico 4','banner_mosaico_4','publish','closed','closed','','field_69781caa01628','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=105',9,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (106,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner mosaico mob 4','banner_mosaico_mob_4','publish','closed','closed','','field_69781cb501629','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=106',10,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (107,1,'2026-01-27 02:04:53','2026-01-27 02:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link do mosaico 4','link_mosaico_4','publish','closed','closed','','field_69781cb90162a','','','2026-01-27 02:04:53','2026-01-27 02:04:53','',95,'http://mroculos.local/?post_type=acf-field&p=107',11,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (108,1,'2026-01-27 02:20:14','2026-01-27 02:20:14','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Vitrine home2','vitrine_home2','publish','closed','closed','','field_697820b20aa03','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=108',7,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (109,1,'2026-01-27 02:20:14','2026-01-27 02:20:14','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:13:\"mais vendidos\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Titulo da vitrine 2','titulo_da_vitrine_2','publish','closed','closed','','field_697820b20aa04','','','2026-01-27 02:20:14','2026-01-27 02:20:14','',108,'http://mroculos.local/?post_type=acf-field&p=109',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (110,1,'2026-01-27 02:20:14','2026-01-27 02:20:14','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:34:\"Encontre os modelos mais desejados\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto da vitrine 2','texto_da_vitrine_2','publish','closed','closed','','field_697820b20aa05','','','2026-01-27 02:20:14','2026-01-27 02:20:14','',108,'http://mroculos.local/?post_type=acf-field&p=110',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (111,1,'2026-01-27 02:20:50','2026-01-27 02:20:50','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-27 02:20:50','2026-01-27 02:20:50','',14,'http://mroculos.local/?p=111',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (112,1,'2026-01-27 02:22:29','2026-01-27 02:22:29','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Vitrine home3','vitrine_home3','publish','closed','closed','','field_6978215325f45','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=112',8,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (113,1,'2026-01-27 02:22:29','2026-01-27 02:22:29','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:13:\"mais vendidos\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Titulo da vitrine 3','titulo_da_vitrine_3','publish','closed','closed','','field_6978215a25f48','','','2026-01-27 02:22:29','2026-01-27 02:22:29','',112,'http://mroculos.local/?post_type=acf-field&p=113',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (114,1,'2026-01-27 02:22:29','2026-01-27 02:22:29','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:34:\"Encontre os modelos mais desejados\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto da vitrine 3','texto_da_vitrine_3','publish','closed','closed','','field_6978216025f49','','','2026-01-27 02:22:29','2026-01-27 02:22:29','',112,'http://mroculos.local/?post_type=acf-field&p=114',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (115,1,'2026-01-27 02:22:48','2026-01-27 02:22:48','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-27 02:22:48','2026-01-27 02:22:48','',14,'http://mroculos.local/?p=115',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (116,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção nossos serviços','secao_nossos_servicos','publish','closed','closed','','field_69782d964c039','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=116',11,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (117,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner de serviço 1','banner_de_servico_1','publish','closed','closed','','field_69782ea94c03a','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=117',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (118,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner de serviço mob 1','banner_de_servico_mob_1','publish','closed','closed','','field_6978309b4c03b','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=118',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (119,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link do banner de serviço 1','link_do_banner_de_servico_1','publish','closed','closed','','field_697830aa4c03c','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=119',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (120,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner de serviço 2','banner_de_servico_2','publish','closed','closed','','field_697831014c03d','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=120',4,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (121,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner de serviço mob 2','banner_de_servico_mob_2','publish','closed','closed','','field_697831054c03e','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=121',5,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (122,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link do banner de serviço 2','link_do_banner_de_servico_2','publish','closed','closed','','field_697831164c03f','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=122',6,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (123,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner de serviço 3','banner_de_servico_3','publish','closed','closed','','field_697831214c040','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=123',7,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (124,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner de serviço mob 3','banner_de_servico_mob_3','publish','closed','closed','','field_6978312a4c041','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=124',8,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (125,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link do banner de serviço 3','link_do_banner_de_servico_3','publish','closed','closed','','field_697831304c042','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=125',9,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (126,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner de serviço 4','banner_de_servico_4','publish','closed','closed','','field_6978319e4c043','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=126',10,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (127,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','banner de serviço mob 4','banner_de_servico_mob_4','publish','closed','closed','','field_697831aa4c044','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=127',11,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (128,1,'2026-01-27 03:35:13','2026-01-27 03:35:13','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link do banner de serviço 4','link_do_banner_de_servico_4','publish','closed','closed','','field_697831b44c045','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=128',12,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (129,1,'2026-01-27 03:52:00','2026-01-27 03:52:00','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título da seção de serviço','titulo_da_secao_de_servico','publish','closed','closed','','field_6978353ac0c19','','','2026-01-27 03:52:00','2026-01-27 03:52:00','',116,'http://mroculos.local/?post_type=acf-field&p=129',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (130,1,'2026-01-27 04:31:14','2026-01-27 04:31:14','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-27 04:31:14','2026-01-27 04:31:14','',14,'http://mroculos.local/?p=130',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (131,1,'2026-01-28 22:59:35','2026-01-28 22:59:35','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção de depoimentos','secao_de_depoimentos','publish','closed','closed','','field_697a9498b9dba','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=131',12,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (132,1,'2026-01-28 22:59:35','2026-01-28 22:59:35','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:11:\"Depoimentos\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Titulo do depoimentos','titulo_do_depoimentos','publish','closed','closed','','field_697a94adb9dbb','','','2026-01-28 22:59:35','2026-01-28 22:59:35','',131,'http://mroculos.local/?post_type=acf-field&p=132',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (133,1,'2026-01-28 22:59:35','2026-01-28 22:59:35','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:36:\"O que nossos clientes estão dizendo\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Sub título de depoimentos','sub_titulo_de_depoimentos_','publish','closed','closed','','field_697a94c0b9dbc','','','2026-01-28 22:59:35','2026-01-28 22:59:35','',131,'http://mroculos.local/?post_type=acf-field&p=133',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (134,1,'2026-01-28 23:06:56','2026-01-28 23:06:56','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção de Nossas Lojas','secao_de_nossas_lojas','publish','closed','closed','','field_697a9642a0dac','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=134',13,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (135,1,'2026-01-28 23:06:56','2026-01-28 23:06:56','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:12:\"nossas lojas\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Titulo da nossas lojas','titulo_da_nossas_lojas','publish','closed','closed','','field_697a9642a0dad','','','2026-01-28 23:06:56','2026-01-28 23:06:56','',134,'http://mroculos.local/?post_type=acf-field&p=135',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (136,1,'2026-01-28 23:06:56','2026-01-28 23:06:56','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:29:\"Encontre a loja mais próxima\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','texto da nossa lojas','texto_da_nossa_lojas','publish','closed','closed','','field_697a9642a0dae','','','2026-01-28 23:06:56','2026-01-28 23:06:56','',134,'http://mroculos.local/?post_type=acf-field&p=136',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (137,1,'2026-01-28 23:28:07','2026-01-28 23:28:07','a:9:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:12:\"nossas_lojas\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;s:13:\"display_title\";s:0:\"\";}','Nossas lojas','nossas-lojas','publish','closed','closed','','group_697a9b2d4dbb8','','','2026-01-28 23:28:07','2026-01-28 23:28:07','',0,'http://mroculos.local/?post_type=acf-field-group&p=137',0,'acf-field-group','',0);
INSERT INTO `wp_posts` VALUES (138,1,'2026-01-28 23:28:06','2026-01-28 23:28:06','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Telefone da loja','telefone_da_loja','publish','closed','closed','','field_697a9b2eb6ed9','','','2026-01-28 23:28:06','2026-01-28 23:28:06','',137,'http://mroculos.local/?post_type=acf-field&p=138',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (139,1,'2026-01-28 23:28:06','2026-01-28 23:28:06','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Whatsapp da loja','whatsapp_da_loja','publish','closed','closed','','field_697a9b53b6eda','','','2026-01-28 23:28:06','2026-01-28 23:28:06','',137,'http://mroculos.local/?post_type=acf-field&p=139',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (140,1,'2026-01-28 23:28:06','2026-01-28 23:28:06','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Endereço da loja','endereco_da_loja','publish','closed','closed','','field_697a9b60b6edb','','','2026-01-28 23:28:06','2026-01-28 23:28:06','',137,'http://mroculos.local/?post_type=acf-field&p=140',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (141,1,'2026-01-28 23:28:06','2026-01-28 23:28:06','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Como chegar na loja','como_chegar_na_loja','publish','closed','closed','','field_697a9b75b6edc','','','2026-01-28 23:28:06','2026-01-28 23:28:06','',137,'http://mroculos.local/?post_type=acf-field&p=141',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (142,1,'2026-01-28 23:34:12','2026-01-28 23:34:12','','Mister Óculos - Zona Norte','','trash','closed','closed','','mister-oculos-zona-norte__trashed','','','2026-02-10 18:33:35','2026-02-10 18:33:35','',0,'http://mroculos.local/?post_type=nossas_lojas&p=142',0,'nossas_lojas','',0);
INSERT INTO `wp_posts` VALUES (143,1,'2026-01-28 23:33:18','2026-01-28 23:33:18','','image 139','','inherit','open','closed','','image-139','','','2026-01-28 23:33:18','2026-01-28 23:33:18','',142,'http://mroculos.local/wp-content/uploads/2026/01/image-139.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (145,1,'2026-01-29 00:20:44','2026-01-29 00:20:44','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Linha mais procurada','linha_mais_procurada','publish','closed','closed','','field_697aa7cddca66','','','2026-01-29 00:20:44','2026-01-29 00:20:44','',80,'http://mroculos.local/?post_type=acf-field&p=145',5,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (146,1,'2026-01-29 00:22:06','2026-01-29 00:22:06','a:9:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";}','Url do vídeo','url_do_video','publish','closed','closed','','field_697aa7e6730d0','','','2026-01-29 01:58:27','2026-01-29 01:58:27','',80,'http://mroculos.local/?post_type=acf-field&p=146',7,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (147,1,'2026-01-29 00:22:06','2026-01-29 00:22:06','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Imagem da linha mais procurada','imagem_da_linha_mais_procurada','publish','closed','closed','','field_697aa7fe730d1','','','2026-02-01 21:55:21','2026-02-01 21:55:21','',80,'http://mroculos.local/?post_type=acf-field&p=147',9,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (148,1,'2026-01-29 01:02:04','2026-01-29 01:02:04','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção Linhas mais procuradas','secao_linhas_mais_procuradas','publish','closed','closed','','field_697ab149a4c6c','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=148',10,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (149,1,'2026-01-29 01:02:04','2026-01-29 01:02:04','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:21:\"linhas mais procurada\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Titulo','titulo','publish','closed','closed','','field_697ab15ba4c6d','','','2026-01-29 01:02:04','2026-01-29 01:02:04','',148,'http://mroculos.local/?post_type=acf-field&p=149',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (150,1,'2026-01-29 01:02:04','2026-01-29 01:02:04','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:34:\"Encontre os modelos mais desejados\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto','texto','publish','closed','closed','','field_697ab174a4c6e','','','2026-01-29 01:02:04','2026-01-29 01:02:04','',148,'http://mroculos.local/?post_type=acf-field&p=150',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (151,1,'2026-01-29 01:39:08','2026-01-29 01:39:08','','4876e503ee3e5143c40f64dba9bdb6fff9ba85fe','','inherit','open','closed','','4876e503ee3e5143c40f64dba9bdb6fff9ba85fe','','','2026-01-29 01:39:08','2026-01-29 01:39:08','',91,'http://mroculos.local/wp-content/uploads/2026/01/4876e503ee3e5143c40f64dba9bdb6fff9ba85fe.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp_posts` VALUES (152,1,'2026-01-29 01:54:17','2026-01-29 01:54:17','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:17:\"allow_in_bindings\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Queridos','queridos','publish','closed','closed','','field_697abdb74f63b','','','2026-01-29 01:54:17','2026-01-29 01:54:17','',80,'http://mroculos.local/?post_type=acf-field&p=152',6,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (153,1,'2026-01-29 02:00:47','2026-01-29 02:00:47','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção queridos','secao_queridos','publish','closed','closed','','field_697abf33108aa','','','2026-03-12 17:15:31','2026-03-12 17:15:31','',16,'http://mroculos.local/?post_type=acf-field&p=153',9,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (154,1,'2026-01-29 02:00:47','2026-01-29 02:00:47','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:21:\"linhas mais procurada\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Titulo','titulo','publish','closed','closed','','field_697abf33108ab','','','2026-01-29 02:00:47','2026-01-29 02:00:47','',153,'http://mroculos.local/?post_type=acf-field&p=154',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (155,1,'2026-01-29 02:00:47','2026-01-29 02:00:47','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:34:\"Encontre os modelos mais desejados\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Texto','texto','publish','closed','closed','','field_697abf34108ac','','','2026-01-29 02:00:47','2026-01-29 02:00:47','',153,'http://mroculos.local/?post_type=acf-field&p=155',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (156,1,'2026-01-29 02:01:42','2026-01-29 02:01:42','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-29 02:01:42','2026-01-29 02:01:42','',14,'http://mroculos.local/?p=156',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (157,1,'2026-01-29 02:16:23','2026-01-29 02:16:23','','6549290-uhd_3840_2160_25fps','','inherit','open','closed','','6549290-uhd_3840_2160_25fps','','','2026-01-29 02:16:23','2026-01-29 02:16:23','',0,'http://mroculos.local/wp-content/uploads/2026/01/6549290-uhd_3840_2160_25fps.mp4',0,'attachment','video/mp4',0);
INSERT INTO `wp_posts` VALUES (159,1,'2026-01-31 04:01:02','2026-01-31 04:01:02','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-31 04:01:02','2026-01-31 04:01:02','',14,'http://mroculos.local/?p=159',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (160,1,'2026-01-31 23:51:14','2026-01-31 23:51:14','','Frame','','inherit','open','closed','','frame','','','2026-01-31 23:51:14','2026-01-31 23:51:14','',14,'http://mroculos.local/wp-content/uploads/2026/01/Frame.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (162,1,'2026-01-31 23:51:49','2026-01-31 23:51:49','','Frame (1)','','inherit','open','closed','','frame-1','','','2026-01-31 23:51:49','2026-01-31 23:51:49','',14,'http://mroculos.local/wp-content/uploads/2026/01/Frame-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (163,1,'2026-01-31 23:52:14','2026-01-31 23:52:14','','Frame (2)','','inherit','open','closed','','frame-2','','','2026-01-31 23:52:14','2026-01-31 23:52:14','',14,'http://mroculos.local/wp-content/uploads/2026/01/Frame-2.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (164,1,'2026-01-31 23:52:30','2026-01-31 23:52:30','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-01-31 23:52:30','2026-01-31 23:52:30','',14,'http://mroculos.local/?p=164',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (167,1,'2026-02-01 01:20:28','2026-02-01 01:20:28','','Group 5140 (1)','','inherit','open','closed','','group-5140-1','','','2026-02-01 01:26:35','2026-02-01 01:26:35','',14,'http://mroculos.local/wp-content/uploads/2026/02/Group-5140-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (168,1,'2026-02-01 01:20:30','2026-02-01 01:20:30','','Group 5325','','inherit','open','closed','','group-5325','','','2026-02-01 01:26:35','2026-02-01 01:26:35','',14,'http://mroculos.local/wp-content/uploads/2026/02/Group-5325.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (169,1,'2026-02-01 01:20:32','2026-02-01 01:20:32','','Group 5140','','inherit','open','closed','','group-5140','','','2026-02-01 01:26:35','2026-02-01 01:26:35','',14,'http://mroculos.local/wp-content/uploads/2026/02/Group-5140.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (170,1,'2026-02-01 01:20:34','2026-02-01 01:20:34','','Group 5141','','inherit','open','closed','','group-5141','','','2026-02-01 01:26:35','2026-02-01 01:26:35','',14,'http://mroculos.local/wp-content/uploads/2026/02/Group-5141.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (171,1,'2026-02-01 01:26:35','2026-02-01 01:26:35','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-01 01:26:35','2026-02-01 01:26:35','',14,'http://mroculos.local/?p=171',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (172,1,'2026-02-01 13:25:30','2026-02-01 13:25:30','','Frame 1000008466','','inherit','open','closed','','frame-1000008466','','','2026-02-01 13:25:30','2026-02-01 13:25:30','',14,'http://mroculos.local/wp-content/uploads/2026/02/Frame-1000008466.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (173,1,'2026-02-01 13:25:44','2026-02-01 13:25:44','','Frame 1000008467','','inherit','open','closed','','frame-1000008467','','','2026-02-01 13:25:44','2026-02-01 13:25:44','',14,'http://mroculos.local/wp-content/uploads/2026/02/Frame-1000008467.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (174,1,'2026-02-01 13:25:58','2026-02-01 13:25:58','','Frame 1000008468','','inherit','open','closed','','frame-1000008468','','','2026-02-01 13:25:58','2026-02-01 13:25:58','',14,'http://mroculos.local/wp-content/uploads/2026/02/Frame-1000008468.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (175,1,'2026-02-01 13:26:11','2026-02-01 13:26:11','','Frame 1000008469','','inherit','open','closed','','frame-1000008469','','','2026-02-01 13:26:11','2026-02-01 13:26:11','',14,'http://mroculos.local/wp-content/uploads/2026/02/Frame-1000008469.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (176,1,'2026-02-01 13:26:20','2026-02-01 13:26:20','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-01 13:26:20','2026-02-01 13:26:20','',14,'http://mroculos.local/?p=176',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (177,1,'2026-02-01 15:54:04','2026-02-01 15:54:04','','Mister Óculos - Zona Norte','','publish','closed','closed','','mister-oculos-zona-norte-2','','','2026-02-01 15:54:04','2026-02-01 15:54:04','',0,'http://mroculos.local/?post_type=nossas_lojas&p=177',0,'nossas_lojas','',0);
INSERT INTO `wp_posts` VALUES (178,1,'2026-02-01 17:33:45','2026-02-01 17:33:45','a:9:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:8:\"taxonomy\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:11:\"tipo_oculos\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;s:13:\"display_title\";s:0:\"\";}','Categoria','categoria','publish','closed','closed','','group_697f8e400ef0c','','','2026-02-01 18:40:13','2026-02-01 18:40:13','',0,'http://mroculos.local/?post_type=acf-field-group&p=178',0,'acf-field-group','',0);
INSERT INTO `wp_posts` VALUES (179,1,'2026-02-01 17:33:45','2026-02-01 17:33:45','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner da categpria desk','banner_da_categpria_desk','publish','closed','closed','','field_697f8e42aa136','','','2026-02-01 17:33:45','2026-02-01 17:33:45','',178,'http://mroculos.local/?post_type=acf-field&p=179',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (180,1,'2026-02-01 17:33:45','2026-02-01 17:33:45','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner da categpria mob','banner_da_categpria_mob','publish','closed','closed','','field_697f8e58aa137','','','2026-02-01 17:33:45','2026-02-01 17:33:45','',178,'http://mroculos.local/?post_type=acf-field&p=180',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (181,1,'2026-02-01 17:35:23','2026-02-01 17:35:23','','Group 5233','','inherit','open','closed','','group-5233','','','2026-02-01 17:35:23','2026-02-01 17:35:23','',0,'http://mroculos.local/wp-content/uploads/2026/02/Group-5233.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (183,1,'2026-02-01 18:38:56','2026-02-01 18:38:56','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','SEO titulo','seo_titulo','publish','closed','closed','','field_697f9d9bc3362','','','2026-02-01 18:38:56','2026-02-01 18:38:56','',178,'http://mroculos.local/?post_type=acf-field&p=183',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (184,1,'2026-02-01 18:38:56','2026-02-01 18:38:56','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','SEO texto','seo_texto','publish','closed','closed','','field_697f9db0c3363','','','2026-02-01 18:40:13','2026-02-01 18:40:13','',178,'http://mroculos.local/?post_type=acf-field&p=184',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (185,1,'2026-02-01 19:17:36','2026-02-01 19:17:36','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner principal mobile 1','banner_principal_mobile_1','publish','closed','closed','','field_697fa6c09b36f','','','2026-02-01 19:31:18','2026-02-01 19:31:18','',17,'http://mroculos.local/?post_type=acf-field&p=185',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (186,1,'2026-02-01 19:18:03','2026-02-01 19:18:03','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner principal mobile 2','banner_principal_mobile_2','publish','closed','closed','','field_697fa6d648f0b','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=186',5,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (188,1,'2026-02-01 19:18:03','2026-02-01 19:18:03','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner principal mobile 3','banner_principal_mobile_3','publish','closed','closed','','field_697fa6e248f0d','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=188',9,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (189,1,'2026-02-01 19:31:29','2026-02-01 19:31:29','','Frame 1000007457','','inherit','open','closed','','frame-1000007457','','','2026-02-01 19:31:29','2026-02-01 19:31:29','',14,'http://mroculos.local/wp-content/uploads/2026/02/Frame-1000007457.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (190,1,'2026-02-01 19:31:37','2026-02-01 19:31:37','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-01 19:31:37','2026-02-01 19:31:37','',14,'http://mroculos.local/?p=190',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (191,1,'2026-02-01 20:13:07','2026-02-01 20:13:07','','armações','','inherit','open','closed','','armacoes-2','','','2026-02-01 20:13:07','2026-02-01 20:13:07','',14,'http://mroculos.local/wp-content/uploads/2026/02/armacoes.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (192,1,'2026-02-01 20:13:16','2026-02-01 20:13:16','','Óculos
Masculino','','inherit','open','closed','','oculos-masculino-2','','','2026-02-01 20:13:16','2026-02-01 20:13:16','',14,'http://mroculos.local/wp-content/uploads/2026/02/Oculos
Masculino.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (193,1,'2026-02-01 20:13:27','2026-02-01 20:13:27','','Óculos
Femininos','','inherit','open','closed','','oculos-femininos-2','','','2026-02-01 20:13:27','2026-02-01 20:13:27','',14,'http://mroculos.local/wp-content/uploads/2026/02/Oculos-
Femininos.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (194,1,'2026-02-01 20:13:36','2026-02-01 20:13:36','','Óculos de Sol','','inherit','open','closed','','oculos-de-sol-2','','','2026-02-01 20:13:36','2026-02-01 20:13:36','',14,'http://mroculos.local/wp-content/uploads/2026/02/Oculos-de-Sol.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (196,1,'2026-02-01 20:13:43','2026-02-01 20:13:43','','Óculos
Especiais','','inherit','open','closed','','oculos-especiais-2','','','2026-02-01 20:13:43','2026-02-01 20:13:43','',14,'http://mroculos.local/wp-content/uploads/2026/02/Oculos-
Especiais.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (197,1,'2026-02-01 20:13:46','2026-02-01 20:13:46','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-01 20:13:46','2026-02-01 20:13:46','',14,'http://mroculos.local/?p=197',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (198,1,'2026-02-01 21:50:46','2026-02-01 21:50:46','','6334472-uhd_2160_4096_25fps','','inherit','open','closed','','6334472-uhd_2160_4096_25fps','','','2026-02-01 21:50:46','2026-02-01 21:50:46','',0,'http://mroculos.local/wp-content/uploads/2026/02/6334472-uhd_2160_4096_25fps.mp4',0,'attachment','video/mp4',0);
INSERT INTO `wp_posts` VALUES (199,1,'2026-02-01 21:55:21','2026-02-01 21:55:21','a:9:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";}','Url do vídeo mob','url_do_video_mob','publish','closed','closed','','field_697fcbbe651d1','','','2026-02-01 21:55:21','2026-02-01 21:55:21','',80,'http://mroculos.local/?post_type=acf-field&p=199',8,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (200,1,'2026-02-02 01:30:31','2026-02-02 01:30:31','','Group 5328','','inherit','open','closed','','group-5328','','','2026-02-02 01:30:31','2026-02-02 01:30:31','',0,'http://mroculos.local/wp-content/uploads/2026/02/Group-5328.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (202,1,'2026-02-10 18:38:33','2026-02-04 01:27:34','','Óculos de sol','','publish','closed','closed','','202','','','2026-02-10 18:38:33','2026-02-10 18:38:33','',0,'http://mroculos.local/?p=202',1,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (203,1,'2026-02-08 01:19:48','2026-02-08 01:19:48','','Group 5140','','inherit','open','closed','','group-5140-2','','','2026-02-08 01:19:48','2026-02-08 01:19:48','',14,'http://mroculos.local/wp-content/uploads/2026/02/Group-5140-2.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (205,1,'2026-02-08 01:19:56','2026-02-08 01:19:56','','Frame 1000008441','','inherit','open','closed','','frame-1000008441','','','2026-02-08 01:19:56','2026-02-08 01:19:56','',14,'http://mroculos.local/wp-content/uploads/2026/02/Frame-1000008441.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (206,1,'2026-02-08 01:20:03','2026-02-08 01:20:03','','Frame 1000008442','','inherit','open','closed','','frame-1000008442','','','2026-02-08 01:20:03','2026-02-08 01:20:03','',14,'http://mroculos.local/wp-content/uploads/2026/02/Frame-1000008442.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (207,1,'2026-02-08 01:20:10','2026-02-08 01:20:10','','Frame 1000008443','','inherit','open','closed','','frame-1000008443','','','2026-02-08 01:20:10','2026-02-08 01:20:10','',14,'http://mroculos.local/wp-content/uploads/2026/02/Frame-1000008443.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (208,1,'2026-02-08 01:20:14','2026-02-08 01:20:14','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-08 01:20:14','2026-02-08 01:20:14','',14,'http://mroculos.local/?p=208',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (209,1,'2026-02-09 03:04:53','2026-02-09 03:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Video pricinpal desk 1','video_pricinpal_desk_1','publish','closed','closed','','field_69894c5aeed56','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=209',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (210,1,'2026-02-09 03:04:53','2026-02-09 03:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Video principal mob 1','video_principal_mob_1','publish','closed','closed','','field_69894cadeed59','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=210',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (211,1,'2026-02-09 03:04:53','2026-02-09 03:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Video pricinpal desk 2','video_pricinpal_desk_2','publish','closed','closed','','field_69894c8feed57','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=211',6,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (212,1,'2026-02-09 03:04:53','2026-02-09 03:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Video principal mob 2','video_principal_mob_2','publish','closed','closed','','field_69894cc4eed5a','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=212',7,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (213,1,'2026-02-09 03:04:53','2026-02-09 03:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Video pricinpal desk 3','video_pricinpal_desk_3','publish','closed','closed','','field_69894c9eeed58','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=213',10,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (214,1,'2026-02-09 03:04:53','2026-02-09 03:04:53','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Video principal mob 3','video_principal_mob_3','publish','closed','closed','','field_69894cc5eed5b','','','2026-02-09 03:04:53','2026-02-09 03:04:53','',17,'http://mroculos.local/?post_type=acf-field&p=214',11,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (215,1,'2026-02-09 03:06:10','2026-02-09 03:06:10','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-09 03:06:10','2026-02-09 03:06:10','',14,'http://mroculos.local/?p=215',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (216,1,'2026-02-09 04:40:27','2026-02-09 04:40:27','','logo-mr-oculos-NOVO-laranja','','inherit','open','closed','','logo-mr-oculos-novo-laranja-2','','','2026-02-09 04:40:27','2026-02-09 04:40:27','',0,'http://mroculos.local/wp-content/uploads/2026/02/logo-mr-oculos-NOVO-laranja.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (217,1,'2026-02-09 04:40:35','2026-02-09 04:40:35','http://mroculos.local/wp-content/uploads/2026/02/cropped-logo-mr-oculos-NOVO-laranja.png','cropped-logo-mr-oculos-NOVO-laranja.png','','inherit','open','closed','','cropped-logo-mr-oculos-novo-laranja-png','','','2026-02-09 04:40:35','2026-02-09 04:40:35','',216,'http://mroculos.local/wp-content/uploads/2026/02/cropped-logo-mr-oculos-NOVO-laranja.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (220,1,'2026-02-10 18:07:57','2026-02-10 18:07:57','','capa linkedin','','inherit','open','closed','','capa-linkedin','','','2026-02-10 18:07:57','2026-02-10 18:07:57','',14,'http://mroculos.local/wp-content/uploads/2026/02/capa-linkedin.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (222,1,'2026-02-10 18:08:10','2026-02-10 18:08:10','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-10 18:08:10','2026-02-10 18:08:10','',14,'http://mroculos.local/?p=222',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (223,1,'2026-02-10 18:09:14','2026-02-10 18:09:14','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-10 18:09:14','2026-02-10 18:09:14','',14,'http://mroculos.local/?p=223',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (225,1,'2026-02-10 18:10:10','2026-02-10 18:10:10','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-10 18:10:10','2026-02-10 18:10:10','',14,'http://mroculos.local/?p=225',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (227,1,'2026-02-10 18:11:44','2026-02-10 18:11:44','','Teste','','publish','closed','closed','','teste','','','2026-02-10 18:11:44','2026-02-10 18:11:44','',0,'http://mroculos.local/?post_type=marca&p=227',0,'marca','',0);
INSERT INTO `wp_posts` VALUES (228,1,'2026-02-10 18:21:05','2026-02-10 18:21:05','','Teste','','publish','closed','closed','','teste','','','2026-02-10 18:26:00','2026-02-10 18:26:00','',0,'http://mroculos.local/?post_type=oculos&p=228',0,'oculos','',0);
INSERT INTO `wp_posts` VALUES (229,1,'2026-02-10 18:20:49','2026-02-10 18:20:49','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-02-10 18:20:49','2026-02-10 18:20:49','',14,'http://mroculos.local/?p=229',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (231,1,'2026-02-10 18:37:59','2026-02-10 18:37:26',' ','','','publish','closed','closed','','231','','','2026-02-10 18:37:59','2026-02-10 18:37:59','',0,'http://mroculos.local/?p=231',5,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (232,1,'2026-02-10 18:38:33','2026-02-10 18:38:33',' ','','','publish','closed','closed','','232','','','2026-02-10 18:38:33','2026-02-10 18:38:33','',0,'http://mroculos.local/?p=232',2,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (233,1,'2026-02-10 18:39:12','2026-02-10 18:39:12',' ','','','publish','closed','closed','','233','','','2026-02-10 18:39:12','2026-02-10 18:39:12','',0,'http://mroculos.local/?p=233',1,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (235,1,'2026-03-12 12:28:13','0000-00-00 00:00:00','','Rascunho automático','','auto-draft','open','open','','','','','2026-03-12 12:28:13','0000-00-00 00:00:00','',0,'http://mroculos.local/?p=235',0,'post','',0);
INSERT INTO `wp_posts` VALUES (240,1,'2026-03-12 17:05:57','2026-03-12 17:05:57','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-03-12 17:05:57','2026-03-12 17:05:57','',14,'http://mroculos.local/?p=240',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (241,1,'2026-03-12 17:14:34','2026-03-12 17:14:34','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Seção Catálogo','secao_catalogos','publish','closed','closed','','field_69b2f2901f389','','','2026-03-12 17:33:45','2026-03-12 17:33:45','',16,'http://mroculos.local/?post_type=acf-field&p=241',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (242,1,'2026-03-12 17:14:34','2026-03-12 17:14:34','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:10:\"catálogos\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogos','titulo_catalogos','publish','closed','closed','','field_69b2f3f81f38a','','','2026-03-12 17:14:34','2026-03-12 17:14:34','',241,'http://mroculos.local/?post_type=acf-field&p=242',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (243,1,'2026-03-12 17:14:34','2026-03-12 17:14:34','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:41:\"Conheça os óculos das principais marcas\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Subtítulo Catálogos','subtitulo_catalogos','publish','closed','closed','','field_69b2f4121f38b','','','2026-03-12 17:14:34','2026-03-12 17:14:34','',241,'http://mroculos.local/?post_type=acf-field&p=243',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (244,1,'2026-03-12 17:14:34','2026-03-12 17:14:34','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Catálogos','catalogos','publish','closed','closed','','field_69b2f42f1f38c','','','2026-03-12 17:31:11','2026-03-12 17:31:11','',241,'http://mroculos.local/?post_type=acf-field&p=244',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (246,1,'2026-03-12 17:17:04','2026-03-12 17:17:04','test123','cacharel','','inherit','open','closed','','cacharel','','','2026-03-12 17:17:33','2026-03-12 17:17:33','',14,'http://mroculos.local/wp-content/uploads/2026/03/cacharel.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (247,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 1','banner_catalogo_1','publish','closed','closed','','field_69b2f5cdbc30f','','','2026-03-12 17:31:11','2026-03-12 17:31:11','',244,'http://mroculos.local/?post_type=acf-field&p=247',0,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (248,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 1','link_catalogo_1','publish','closed','closed','','field_69b2f717bc319','','','2026-03-12 17:33:45','2026-03-12 17:33:45','',244,'http://mroculos.local/?post_type=acf-field&p=248',1,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (249,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 2','banner_catalogo_2','publish','closed','closed','','field_69b2f611bc310','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=249',3,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (250,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 2','link_catalogo_2','publish','closed','closed','','field_69b2f775bc31a','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=250',4,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (251,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 3','banner_catalogo_3','publish','closed','closed','','field_69b2f61bbc311','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=251',6,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (252,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 3','link_catalogo_3','publish','closed','closed','','field_69b2f783bc31b','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=252',7,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (253,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 4','link_catalogo_4','publish','closed','closed','','field_69b2f7adbc31c','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=253',10,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (254,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 4','banner_catalogo_4','publish','closed','closed','','field_69b2f658bc312','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=254',9,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (255,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 5','banner_catalogo_5','publish','closed','closed','','field_69b2f6a2bc313','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=255',12,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (256,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 5','link_catalogo_5','publish','closed','closed','','field_69b2f7b9bc31d','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=256',13,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (257,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 6','banner_catalogo_6','publish','closed','closed','','field_69b2f6b1bc314','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=257',15,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (258,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 6','link_catalogo_6','publish','closed','closed','','field_69b2f7c9bc31e','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=258',16,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (259,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 7','banner_catalogo_7','publish','closed','closed','','field_69b2f6bfbc315','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=259',18,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (260,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 7','link_catalogo_7','publish','closed','closed','','field_69b2f7d8bc31f','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=260',19,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (261,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 8','banner_catalogo_8','publish','closed','closed','','field_69b2f6cbbc316','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=261',21,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (262,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 8','link_catalogo_8','publish','closed','closed','','field_69b2f7e4bc320','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=262',22,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (263,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 9','banner_catalogo_9','publish','closed','closed','','field_69b2f6d5bc317','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=263',24,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (265,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner Catálogo 10','banner_catalogo_10','publish','closed','closed','','field_69b2f702bc318','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=265',27,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (266,1,'2026-03-12 17:31:11','2026-03-12 17:31:11','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 10','link_catalogo_10','publish','closed','closed','','field_69b2f800bc322','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=266',28,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (267,1,'2026-03-12 17:36:28','2026-03-12 17:36:28','','New balance','','inherit','open','closed','','new-balance-1','','','2026-03-12 17:36:31','2026-03-12 17:36:31','',14,'http://mroculos.local/wp-content/uploads/2026/03/New-balance-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (268,1,'2026-03-12 17:37:06','2026-03-12 17:37:06','','Morena Rosa - Catálogo Receituário 1','','inherit','open','closed','','morena-rosa-catalogo-receituario-1','','','2026-03-12 17:37:06','2026-03-12 17:37:06','',14,'http://mroculos.local/wp-content/uploads/2026/03/Morena-Rosa-Catalogo-Receituario-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (269,1,'2026-03-12 17:37:42','2026-03-12 17:37:42','','Morena Rosa - Catálogo Solar 1','','inherit','open','closed','','morena-rosa-catalogo-solar-1','','','2026-03-12 17:37:42','2026-03-12 17:37:42','',14,'http://mroculos.local/wp-content/uploads/2026/03/Morena-Rosa-Catalogo-Solar-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (271,1,'2026-03-12 17:38:38','2026-03-12 17:38:38','','Morena Rosa - Catálogo Solar 1','','inherit','open','closed','','morena-rosa-catalogo-solar-1-2','','','2026-03-12 17:38:38','2026-03-12 17:38:38','',14,'http://mroculos.local/wp-content/uploads/2026/03/Morena-Rosa-Catalogo-Solar-1-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (272,1,'2026-03-12 17:40:01','2026-03-12 17:40:01','','Maria Valentina - Catálogo Solar 1','','inherit','open','closed','','maria-valentina-catalogo-solar-1','','','2026-03-12 17:40:01','2026-03-12 17:40:01','',14,'http://mroculos.local/wp-content/uploads/2026/03/Maria-Valentina-Catalogo-Solar-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (273,1,'2026-03-12 17:40:31','2026-03-12 17:40:31','','Preenchimento generativo 2 1','','inherit','open','closed','','preenchimento-generativo-2-1','','','2026-03-12 17:40:31','2026-03-12 17:40:31','',14,'http://mroculos.local/wp-content/uploads/2026/03/Preenchimento-generativo-2-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (274,1,'2026-03-12 17:40:50','2026-03-12 17:40:50','','Sestini - Catálogo Solar 1','','inherit','open','closed','','sestini-catalogo-solar-1','','','2026-03-12 17:40:50','2026-03-12 17:40:50','',14,'http://mroculos.local/wp-content/uploads/2026/03/Sestini-Catalogo-Solar-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (275,1,'2026-03-12 17:41:19','2026-03-12 17:41:19','','Dudalina - Catálogo Receituário copiar 1','','inherit','open','closed','','dudalina-catalogo-receituario-copiar-1','','','2026-03-12 17:41:19','2026-03-12 17:41:19','',14,'http://mroculos.local/wp-content/uploads/2026/03/Dudalina-Catalogo-Receituario-copiar-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (276,1,'2026-03-12 17:41:40','2026-03-12 17:41:40','','Dudalina - Catálogo Receituário 1','','inherit','open','closed','','dudalina-catalogo-receituario-1','','','2026-03-12 17:41:40','2026-03-12 17:41:40','',14,'http://mroculos.local/wp-content/uploads/2026/03/Dudalina-Catalogo-Receituario-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (277,1,'2026-03-12 17:41:55','2026-03-12 17:41:55','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-03-12 17:41:55','2026-03-12 17:41:55','',14,'http://mroculos.local/?p=277',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (278,1,'2026-03-12 17:42:08','2026-03-12 17:42:08','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-03-12 17:42:08','2026-03-12 17:42:08','',14,'http://mroculos.local/?p=278',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (279,1,'2026-03-12 17:54:20','2026-03-12 17:54:20','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-03-12 17:54:20','2026-03-12 17:54:20','',14,'http://mroculos.local/?p=279',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (280,1,'2026-03-12 17:55:44','2026-03-12 17:55:44','','Maria Valentina - Catálogo Receituário 1','','inherit','open','closed','','maria-valentina-catalogo-receituario-1','','','2026-03-12 17:55:44','2026-03-12 17:55:44','',14,'http://mroculos.local/wp-content/uploads/2026/03/Maria-Valentina-Catalogo-Receituario-1.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (281,1,'2026-03-12 17:55:47','2026-03-12 17:55:47','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-03-12 17:55:47','2026-03-12 17:55:47','',14,'http://mroculos.local/?p=281',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (282,1,'2026-03-13 00:50:37','2026-03-13 00:50:37','','Catálogo','','publish','closed','closed','','visualizar','','','2026-03-13 00:50:38','2026-03-13 00:50:38','',0,'http://mroculos.local/?page_id=282',0,'page','',0);
INSERT INTO `wp_posts` VALUES (283,1,'2026-03-13 00:50:37','2026-03-13 00:50:37','','Catálogo','','inherit','closed','closed','','282-revision-v1','','','2026-03-13 00:50:37','2026-03-13 00:50:37','',282,'http://mroculos.local/?p=283',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (284,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 1','titulo_catalogo_1','publish','closed','closed','','field_69b409efaadcf','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=284',2,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (285,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 2','titulo_catalogo_2','publish','closed','closed','','field_69b40a15aadd0','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=285',5,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (286,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 3','titulo_catalogo_3','publish','closed','closed','','field_69b40a1caadd1','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=286',8,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (287,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 4','titulo_catalogo_4','publish','closed','closed','','field_69b40a25aadd2','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=287',11,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (288,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 5','titulo_catalogo_5','publish','closed','closed','','field_69b40a2baadd3','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=288',14,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (289,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 6','titulo_catalogo_6','publish','closed','closed','','field_69b40a31aadd4','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=289',17,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (290,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 7','titulo_catalogo_7','publish','closed','closed','','field_69b40a37aadd5','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=290',20,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (291,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 8','titulo_catalogo_8','publish','closed','closed','','field_69b40a3caadd6','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=291',23,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (292,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Link Catálogo 9','link_catalogo_9','publish','closed','closed','','field_69b40a41aadd7','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=292',25,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (293,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 9','titulo_catalogo_9','publish','closed','closed','','field_69b40a63aadd8','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=293',26,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (294,1,'2026-03-13 13:01:59','2026-03-13 13:01:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Título Catálogo 10','titulo_catalogo_10','publish','closed','closed','','field_69b40a6aaadd9','','','2026-03-13 13:01:59','2026-03-13 13:01:59','',244,'http://mroculos.local/?post_type=acf-field&p=294',29,'acf-field','',0);
INSERT INTO `wp_posts` VALUES (296,1,'2026-03-13 13:04:34','2026-03-13 13:04:34','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-03-13 13:04:34','2026-03-13 13:04:34','',14,'http://mroculos.local/?p=296',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (298,1,'2026-03-13 13:08:26','2026-03-13 13:08:26','','Home','','inherit','closed','closed','','14-revision-v1','','','2026-03-13 13:08:26','2026-03-13 13:08:26','',14,'http://mroculos.local/?p=298',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
`term_order` int NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0);
INSERT INTO `wp_term_relationships` VALUES (7,2,0);
INSERT INTO `wp_term_relationships` VALUES (8,2,0);
INSERT INTO `wp_term_relationships` VALUES (9,2,0);
INSERT INTO `wp_term_relationships` VALUES (10,2,0);
INSERT INTO `wp_term_relationships` VALUES (12,3,0);
INSERT INTO `wp_term_relationships` VALUES (89,5,0);
INSERT INTO `wp_term_relationships` VALUES (89,6,0);
INSERT INTO `wp_term_relationships` VALUES (91,4,0);
INSERT INTO `wp_term_relationships` VALUES (91,7,0);
INSERT INTO `wp_term_relationships` VALUES (91,8,0);
INSERT INTO `wp_term_relationships` VALUES (202,9,0);
INSERT INTO `wp_term_relationships` VALUES (228,7,0);
INSERT INTO `wp_term_relationships` VALUES (228,8,0);
INSERT INTO `wp_term_relationships` VALUES (228,10,0);
INSERT INTO `wp_term_relationships` VALUES (231,2,0);
INSERT INTO `wp_term_relationships` VALUES (232,9,0);
INSERT INTO `wp_term_relationships` VALUES (233,3,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint unsigned NOT NULL DEFAULT '0',
`count` bigint NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=11 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);
INSERT INTO `wp_term_taxonomy` VALUES (2,2,'nav_menu','',0,5);
INSERT INTO `wp_term_taxonomy` VALUES (3,3,'nav_menu','',0,2);
INSERT INTO `wp_term_taxonomy` VALUES (4,4,'tipo_oculos','',0,1);
INSERT INTO `wp_term_taxonomy` VALUES (5,5,'marca_oculos','',0,1);
INSERT INTO `wp_term_taxonomy` VALUES (6,6,'genero_oculos','',0,1);
INSERT INTO `wp_term_taxonomy` VALUES (7,7,'marca_oculos','',0,2);
INSERT INTO `wp_term_taxonomy` VALUES (8,8,'genero_oculos','',0,2);
INSERT INTO `wp_term_taxonomy` VALUES (9,9,'nav_menu','',0,2);
INSERT INTO `wp_term_taxonomy` VALUES (10,10,'tipo_oculos','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=17 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 */;
INSERT INTO `wp_termmeta` VALUES (1,4,'banner_da_categpria_desk','181');
INSERT INTO `wp_termmeta` VALUES (2,4,'_banner_da_categpria_desk','field_697f8e42aa136');
INSERT INTO `wp_termmeta` VALUES (3,4,'banner_da_categpria_mob','200');
INSERT INTO `wp_termmeta` VALUES (4,4,'_banner_da_categpria_mob','field_697f8e58aa137');
INSERT INTO `wp_termmeta` VALUES (5,4,'seo_titulo','Lorem ipsum');
INSERT INTO `wp_termmeta` VALUES (6,4,'_seo_titulo','field_697f9d9bc3362');
INSERT INTO `wp_termmeta` VALUES (7,4,'seo_texto','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam fringilla ex pharetra sapien pulvinar placerat. Aenean in scelerisque est, ut sollicitudin metus. Proin porttitor et magna ut pellentesque. Nunc fringilla massa diam. Donec aliquam, elit et venenatis euismod, turpis sem ultrices est, sit amet dapibus justo nulla vel massa. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam fringilla ex pharetra sapien pulvinar placerat. Aenean in scelerisque est, ut sollicitudin metus. Proin porttitor et magna ut pellentesque. Nunc fringilla massa diam. Donec aliquam, elit et venenatis euismod, turpis sem ultrices est, sit amet dapibus justo nulla vel massa. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam fringilla ex pharetra sapien pulvinar placerat. Aenean in scelerisque est, ut sollicitudin metus. Proin porttitor et magna ut pellentesque. Nunc fringilla massa diam. Donec aliquam, elit et venenatis euismod, turpis sem ultrices est, sit amet dapibus justo nulla vel massa. ');
INSERT INTO `wp_termmeta` VALUES (8,4,'_seo_texto','field_697f9db0c3363');
INSERT INTO `wp_termmeta` VALUES (9,10,'banner_da_categpria_desk','181');
INSERT INTO `wp_termmeta` VALUES (10,10,'_banner_da_categpria_desk','field_697f8e42aa136');
INSERT INTO `wp_termmeta` VALUES (11,10,'banner_da_categpria_mob','');
INSERT INTO `wp_termmeta` VALUES (12,10,'_banner_da_categpria_mob','field_697f8e58aa137');
INSERT INTO `wp_termmeta` VALUES (13,10,'seo_titulo','');
INSERT INTO `wp_termmeta` VALUES (14,10,'_seo_titulo','field_697f9d9bc3362');
INSERT INTO `wp_termmeta` VALUES (15,10,'seo_texto','');
INSERT INTO `wp_termmeta` VALUES (16,10,'_seo_texto','field_697f9db0c3363');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
`term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0);
INSERT INTO `wp_terms` VALUES (2,'Desktop','desktop',0);
INSERT INTO `wp_terms` VALUES (3,'footer','footer',0);
INSERT INTO `wp_terms` VALUES (4,'óculos de sol','oculos-de-sol',0);
INSERT INTO `wp_terms` VALUES (5,'The look','the-look',0);
INSERT INTO `wp_terms` VALUES (6,'Masculino','masculino',0);
INSERT INTO `wp_terms` VALUES (7,'The look version','the-look-version',0);
INSERT INTO `wp_terms` VALUES (8,'Feminino','feminino',0);
INSERT INTO `wp_terms` VALUES (9,'Categorias','categorias',0);
INSERT INTO `wp_terms` VALUES (10,'Óculos de grau','oculos-de-grau',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
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','wicomm');
INSERT INTO `wp_usermeta` VALUES (2,1,'first_name','');
INSERT INTO `wp_usermeta` VALUES (3,1,'last_name','');
INSERT INTO `wp_usermeta` VALUES (4,1,'description','');
INSERT INTO `wp_usermeta` VALUES (5,1,'rich_editing','true');
INSERT INTO `wp_usermeta` VALUES (6,1,'syntax_highlighting','true');
INSERT INTO `wp_usermeta` VALUES (7,1,'comment_shortcuts','false');
INSERT INTO `wp_usermeta` VALUES (8,1,'admin_color','fresh');
INSERT INTO `wp_usermeta` VALUES (9,1,'use_ssl','0');
INSERT INTO `wp_usermeta` VALUES (10,1,'show_admin_bar_front','true');
INSERT INTO `wp_usermeta` VALUES (11,1,'locale','');
INSERT INTO `wp_usermeta` VALUES (12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}');
INSERT INTO `wp_usermeta` VALUES (13,1,'wp_user_level','10');
INSERT INTO `wp_usermeta` VALUES (14,1,'dismissed_wp_pointers','theme_editor_notice');
INSERT INTO `wp_usermeta` VALUES (15,1,'show_welcome_panel','1');
INSERT INTO `wp_usermeta` VALUES (16,1,'session_tokens','a:4:{s:64:\"71f8a271d9a0a2ae9f2e2d3357d76f2247215337d181c3a1688e11f677aaceb2\";a:4:{s:10:\"expiration\";i:1773491291;s:2:\"ip\";s:14:\"45.169.121.164\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1773318491;}s:64:\"b26f1617daacd86ded16b380c8096021d8096eb732d3493e39910fb465c5fc62\";a:4:{s:10:\"expiration\";i:1773506785;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1773333985;}s:64:\"9056dcafa652fc7ad6d21a80e00ff2369a981b5d045cbe25fd360627987879e4\";a:4:{s:10:\"expiration\";i:1773535668;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1773362868;}s:64:\"b8ef8c03d43a3c070c54ac55f69f8c2a8d4fc6ea4e601d49adcd6544991bbb8a\";a:4:{s:10:\"expiration\";i:1773579474;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1773406674;}}');
INSERT INTO `wp_usermeta` VALUES (17,1,'wp_dashboard_quick_press_last_post_id','235');
INSERT INTO `wp_usermeta` VALUES (18,1,'wp_user-settings','libraryContent=browse');
INSERT INTO `wp_usermeta` VALUES (19,1,'wp_user-settings-time','1769266534');
INSERT INTO `wp_usermeta` VALUES (20,1,'wp_persisted_preferences','a:5:{s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2026-02-09T04:40:15.925Z\";s:4:\"core\";a:1:{s:26:\"isComplementaryAreaVisible\";b:1;}s:14:\"core/edit-post\";a:1:{s:12:\"welcomeGuide\";b:0;}s:22:\"core/customize-widgets\";a:1:{s:12:\"welcomeGuide\";b:0;}}');
INSERT INTO `wp_usermeta` VALUES (21,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}');
INSERT INTO `wp_usermeta` VALUES (22,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}');
INSERT INTO `wp_usermeta` VALUES (23,1,'nf_onboarding','a:3:{s:6:\"status\";s:7:\"enabled\";s:4:\"step\";i:12;s:11:\"last_active\";i:1769284658;}');
INSERT INTO `wp_usermeta` VALUES (24,1,'wp_nf_form_preview_tmp-1769284492','a:4:{s:2:\"id\";s:14:\"tmp-1769284492\";s:8:\"settings\";a:21:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:0;s:5:\"title\";s:10:\"newsletter\";s:10:\"show_title\";i:1;s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:14:\"clear_complete\";i:1;s:13:\"hide_complete\";i:1;s:17:\"default_label_pos\";s:5:\"above\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:24:\"form_title_heading_level\";s:1:\"3\";s:3:\"key\";s:0:\"\";s:10:\"add_submit\";i:0;s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:46:\"Um formulário com este valor já foi enviado.\";s:9:\"logged_in\";b:0;s:17:\"not_logged_in_msg\";s:0:\"\";s:13:\"sub_limit_msg\";s:42:\"O formulário atingiu seu limite de envio.\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:2:{i:0;s:20:\"submit_1769284557581\";i:1;s:18:\"asas_1769284563551\";}}s:6:\"fields\";a:2:{s:5:\"tmp-1\";a:1:{s:8:\"settings\";a:13:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:4:\"asas\";s:4:\"type\";s:8:\"repeater\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"button_text\";s:4:\"asas\";s:6:\"fields\";a:0:{}s:3:\"key\";s:18:\"asas_1769284563551\";s:14:\"drawerDisabled\";b:0;}}s:5:\"tmp-2\";a:1:{s:8:\"settings\";a:12:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:8:\"Submeter\";s:4:\"type\";s:6:\"submit\";s:16:\"processing_label\";s:11:\"Processando\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:3:\"key\";s:20:\"submit_1769284557581\";s:11:\"admin_label\";s:0:\"\";}}}s:7:\"actions\";a:3:{s:5:\"tmp-1\";a:1:{s:8:\"settings\";a:19:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"label\";s:19:\"Mensagem de Sucesso\";s:4:\"type\";s:14:\"successmessage\";s:7:\"message\";s:40:\"Seu formulário foi enviado com sucesso.\";s:5:\"order\";i:1;s:6:\"active\";b:1;s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:20:\"Envio de Ninja Forms\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:40:\"Seu formulário foi enviado com sucesso.\";}}s:5:\"tmp-2\";a:1:{s:8:\"settings\";a:17:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"label\";s:23:\"E-mail do administrador\";s:4:\"type\";s:5:\"email\";s:5:\"order\";i:2;s:6:\"active\";b:1;s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:20:\"Envio de Ninja Forms\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}s:5:\"tmp-3\";a:1:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"label\";s:17:\"Record Submission\";s:4:\"type\";s:4:\"save\";s:5:\"order\";i:3;s:6:\"active\";b:1;s:2:\"to\";s:16:\"{wp:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:13:\"email_subject\";s:20:\"Envio de Ninja Forms\";s:13:\"email_message\";s:14:\"{fields_table}\";s:19:\"email_message_plain\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:11:\"success_msg\";s:40:\"Seu formulário foi enviado com sucesso.\";s:12:\"redirect_url\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";i:0;s:16:\"subs_expire_time\";s:2:\"90\";}}}}');
INSERT INTO `wp_usermeta` VALUES (28,1,'nav_menu_recently_edited','3');
INSERT INTO `wp_usermeta` VALUES (29,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"45.169.121.0\";}');
INSERT INTO `wp_usermeta` VALUES (30,1,'closedpostboxes_oculos','a:0:{}');
INSERT INTO `wp_usermeta` VALUES (31,1,'metaboxhidden_oculos','a:1:{i:0;s:7:\"slugdiv\";}');
INSERT INTO `wp_usermeta` VALUES (32,2,'nickname','papi');
INSERT INTO `wp_usermeta` VALUES (33,2,'first_name','');
INSERT INTO `wp_usermeta` VALUES (34,2,'last_name','');
INSERT INTO `wp_usermeta` VALUES (35,2,'description','');
INSERT INTO `wp_usermeta` VALUES (36,2,'rich_editing','true');
INSERT INTO `wp_usermeta` VALUES (37,2,'syntax_highlighting','true');
INSERT INTO `wp_usermeta` VALUES (38,2,'comment_shortcuts','false');
INSERT INTO `wp_usermeta` VALUES (39,2,'admin_color','fresh');
INSERT INTO `wp_usermeta` VALUES (40,2,'use_ssl','0');
INSERT INTO `wp_usermeta` VALUES (41,2,'show_admin_bar_front','true');
INSERT INTO `wp_usermeta` VALUES (42,2,'locale','');
INSERT INTO `wp_usermeta` VALUES (43,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}');
INSERT INTO `wp_usermeta` VALUES (44,2,'wp_user_level','10');
INSERT INTO `wp_usermeta` VALUES (45,2,'dismissed_wp_pointers','');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int NOT NULL DEFAULT '0',
`display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 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,'wicomm','$wp$2y$10$gA9H53KCKgvf5KD0P7kNVeICzYH7PMv7NK12mRxvwGeVcseKXqhCa','wicomm','dev@wicomm.com.br','http://mroculos.local','2026-01-24 14:17:01','',0,'wicomm');
INSERT INTO `wp_users` VALUES (2,'papi','$wp$2y$10$yFn5pJWjm2sPsdSN0rv1WeToGzjrTssCrofUdZRAVoW8hc/09GCRa','papi','papi@papi.com','','2026-02-23 00:29:17','',0,'papi');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wpfm_backup`
--
DROP TABLE IF EXISTS `wp_wpfm_backup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpfm_backup` (
`id` int NOT NULL AUTO_INCREMENT,
`backup_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
`backup_date` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wpfm_backup`
--
LOCK TABLES `wp_wpfm_backup` WRITE;
/*!40000 ALTER TABLE `wp_wpfm_backup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpfm_backup` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2026-03-13 13:53:24