0byt3m1n1
Path:
/
data
/
11
/
0
/
154
/
16
/
806342
/
meta
/
827055
/
mysql.backup
/
[
Home
]
File: 1_006aa70_0.mysqlcluster23.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster23 Database: 1_006aa70_0 -- ------------------------------------------------------ -- Server version 5.6.44-86.0-56-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-02-06 17:51:13','2018-02-06 17:51:13','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','','',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=438 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://006aa70.netsolhost.com/wordpress1','yes'),(2,'home','http://006aa70.netsolhost.com/wordpress1','yes'),(3,'blogname','wordpress1','yes'),(4,'blogdescription','Paving The Way Forward for Health, Hope and Healing','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','joey@hendrixdata.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:89:{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: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:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:3:{i:0;s:51:\"display-posts-shortcode/display-posts-shortcode.php\";i:1;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:2;s:39:\"so-widgets-bundle/so-widgets-bundle.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:2:{i:0;s:102:\"\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1/wp-content/themes/renden/style.css\";i:1;s:0:\"\";}','no'),(40,'template','twentyseventeen','yes'),(41,'stylesheet','kyma','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:5:{i:2;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";}s:14:\"sidebar-widget\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"footer-widget\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:6:{i:1563551112;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1563558675;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1563630272;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1563630491;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1563632081;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;}}}s:7:\"version\";i:2;}','yes'),(110,'theme_mods_twentyseventeen','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:3:\"top\";i:2;s:6:\"social\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1563460171;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(123,'_site_transient_timeout_browser_5eaddbe64bb311a7ba788adfd9ffdfcb','1564062275','no'),(124,'_site_transient_browser_5eaddbe64bb311a7ba788adfd9ffdfcb','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"75.0.3770.142\";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;}','no'),(126,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"joey@hendrixdata.com\";s:7:\"version\";s:6:\"4.9.10\";s:9:\"timestamp\";i:1563457490;}','no'),(133,'wp_page_for_privacy_policy','0','yes'),(134,'show_comments_cookies_opt_in','1','yes'),(138,'db_upgraded','','yes'),(139,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.2\";s:7:\"version\";s:5:\"5.2.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1563546381;s:15:\"version_checked\";s:5:\"5.2.2\";s:12:\"translations\";a:0:{}}','no'),(140,'_site_transient_timeout_php_check_e796305fbf0257ebb2c4c2c40c9bc4af','1564062659','no'),(141,'_site_transient_php_check_e796305fbf0257ebb2c4c2c40c9bc4af','a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:1;}','no'),(144,'can_compress_scripts','1','no'),(155,'recovery_keys','a:0:{}','yes'),(156,'_transient_timeout_plugin_slugs','1563635110','no'),(157,'_transient_plugin_slugs','a:8:{i:0;s:19:\"akismet/akismet.php\";i:1;s:51:\"display-posts-shortcode/display-posts-shortcode.php\";i:2;s:21:\"hello-dolly/hello.php\";i:3;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:4;s:57:\"photo-video-gallery-master/photo-video-gallery-master.php\";i:5;s:39:\"so-widgets-bundle/so-widgets-bundle.php\";i:6;s:45:\"social-media-gallery/social-media-gallery.php\";i:7;s:31:\"fusion-slider/fusion-slider.php\";}','no'),(158,'recently_activated','a:0:{}','yes'),(171,'theme_mods_wishlist','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:6:\"menu-1\";i:3;s:6:\"social\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1563472555;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"footer-w1\";a:0:{}s:9:\"footer-w2\";a:0:{}s:9:\"footer-w3\";a:0:{}s:9:\"footer-w4\";a:0:{}s:9:\"footer-w5\";a:0:{}s:9:\"footer-w6\";a:0:{}s:13:\"sub-footer-w1\";a:0:{}s:13:\"sub-footer-w2\";a:0:{}}}}','yes'),(181,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:2;}}','yes'),(187,'current_theme','Kyma','yes'),(188,'theme_switched','','yes'),(189,'theme_switched_via_customizer','','yes'),(190,'customize_stashed_theme_mods','a:0:{}','no'),(194,'theme_mods_renden','a:7:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:15:\"pre_header_menu\";i:0;s:11:\"header_menu\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:16:\"header_textcolor\";s:0:\"\";s:12:\"header_image\";s:13:\"remove-header\";s:23:\"thinkup_redux_variables\";a:9:{s:30:\"thinkup_homepage_sectionswitch\";s:1:\"1\";s:31:\"thinkup_homepage_section1_image\";a:5:{s:3:\"url\";s:119:\"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43706451_2230157123888556_1022464308237303808_o.jpg\";s:2:\"id\";s:2:\"36\";s:6:\"height\";s:4:\"1361\";s:5:\"width\";s:4:\"2048\";s:9:\"thumbnail\";s:0:\"\";}s:31:\"thinkup_homepage_section1_title\";s:12:\"911 Response\";s:30:\"thinkup_homepage_section1_desc\";s:76:\"Union EMS provides Paramedic response to all emergency requests for service.\";s:30:\"thinkup_homepage_section1_link\";s:2:\"41\";s:23:\"thinkup_homepage_layout\";s:7:\"option1\";s:29:\"thinkup_homepage_sliderswitch\";s:7:\"option1\";s:34:\"thinkup_homepage_sliderpresetwidth\";s:1:\"1\";s:29:\"thinkup_homepage_sliderpreset\";a:1:{i:0;a:9:{s:11:\"slide_title\";s:9:\"Union EMS\";s:17:\"slide_description\";s:52:\"Paving The Way Forward For Health, Hope, and Healing\";s:9:\"slide_url\";s:0:\"\";s:10:\"slide_sort\";s:1:\"0\";s:14:\"slide_image_id\";s:2:\"24\";s:15:\"slide_image_url\";s:121:\"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43590366_2230157113888557_1421806360214896640_o-1.jpg\";s:18:\"slide_image_height\";s:4:\"1361\";s:17:\"slide_image_width\";s:4:\"2048\";s:17:\"slide_image_thumb\";s:129:\"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43590366_2230157113888557_1421806360214896640_o-1-150x150.jpg\";}}}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1563545050;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"footer-w1\";a:0:{}s:9:\"footer-w2\";a:0:{}s:9:\"footer-w3\";a:0:{}s:9:\"footer-w4\";a:0:{}s:9:\"footer-w5\";a:0:{}s:9:\"footer-w6\";a:0:{}s:13:\"sub-footer-w1\";a:0:{}s:13:\"sub-footer-w2\";a:0:{}}}}','yes'),(195,'thinkup_redux_variables','a:11:{s:35:\"thinkup_homepage_sliderpresetheight\";s:3:\"350\";s:34:\"thinkup_theme_documentation_button\";s:0:\"\";s:30:\"thinkup_homepage_sectionswitch\";s:1:\"1\";s:31:\"thinkup_homepage_section1_image\";a:5:{s:3:\"url\";s:119:\"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43706451_2230157123888556_1022464308237303808_o.jpg\";s:2:\"id\";s:2:\"36\";s:6:\"height\";s:4:\"1361\";s:5:\"width\";s:4:\"2048\";s:9:\"thumbnail\";s:0:\"\";}s:31:\"thinkup_homepage_section1_title\";s:12:\"911 Response\";s:30:\"thinkup_homepage_section1_desc\";s:76:\"Union EMS provides Paramedic response to all emergency requests for service.\";s:30:\"thinkup_homepage_section1_link\";s:2:\"41\";s:23:\"thinkup_homepage_layout\";s:7:\"option1\";s:29:\"thinkup_homepage_sliderswitch\";s:7:\"option1\";s:29:\"thinkup_homepage_sliderpreset\";a:1:{i:0;a:9:{s:11:\"slide_title\";s:9:\"Union EMS\";s:17:\"slide_description\";s:52:\"Paving The Way Forward For Health, Hope, and Healing\";s:9:\"slide_url\";s:0:\"\";s:10:\"slide_sort\";s:1:\"0\";s:14:\"slide_image_id\";s:2:\"24\";s:15:\"slide_image_url\";s:121:\"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43590366_2230157113888557_1421806360214896640_o-1.jpg\";s:18:\"slide_image_height\";s:4:\"1361\";s:17:\"slide_image_width\";s:4:\"2048\";s:17:\"slide_image_thumb\";s:129:\"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43590366_2230157113888557_1421806360214896640_o-1-150x150.jpg\";}}s:34:\"thinkup_homepage_sliderpresetwidth\";s:1:\"1\";}','yes'),(196,'thinkup_redux_variables-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1563464358;}','yes'),(197,'_transient_timeout_select2-css_style_cdn_is_up','1563546872','no'),(198,'_transient_select2-css_style_cdn_is_up','1','no'),(199,'_transient_timeout_select2-js_script_cdn_is_up','1563546873','no'),(200,'_transient_select2-js_script_cdn_is_up','1','no'),(271,'theme_mods_corporate-zing','a:7:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:26:\"corporate_zing_show_slider\";s:3:\"yes\";s:26:\"corporate_zing_header_type\";s:3:\"owl\";s:25:\"corporate_zing_slider_cat\";s:1:\"1\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1563472771;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:11:\"footer-left\";a:0:{}s:13:\"footer-middle\";a:0:{}s:12:\"footer-right\";a:0:{}}}}','yes'),(280,'siteorigin_panels_settings','a:0:{}','yes'),(281,'siteorigin_panels_initial_version','2.10.6','no'),(282,'siteorigin_panels_active_version','2.10.6','yes'),(283,'widget_siteorigin-panels-post-content','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(284,'widget_siteorigin-panels-postloop','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(285,'widget_siteorigin-panels-builder','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(297,'widget_sow-button','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(298,'widget_sow-google-map','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(299,'widget_sow-image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(300,'widget_sow-slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(301,'widget_sow-post-carousel','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(302,'widget_sow-editor','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(303,'siteorigin_widget_bundle_version','1.15.7','yes'),(304,'siteorigin_widgets_old_widgets','\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/accordion/accordion.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/button/button.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/cta/cta.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/contact/contact.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/editor/editor.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/features/features.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/google-map/google-map.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/headline/headline.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/hero/hero.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/icon/icon.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/image/image.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/image-grid/image-grid.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/slider/slider.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/layout-slider/layout-slider.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/post-carousel/post-carousel.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/price-table/price-table.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/simple-masonry/simple-masonry.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/social-media-buttons/social-media-buttons.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/tabs/tabs.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/taxonomy/taxonomy.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/testimonial/testimonial.php,\\\\WDP\\DFS\\43\\1\\1\\2\\4353692211\\user\\sites\\827055.site\\www\\wordpress1\\wp-content\\plugins\\so-widgets-bundle/widgets/video/video.php','yes'),(305,'_transient_timeout_sow:cleared','1564080603','no'),(306,'_transient_sow:cleared','1','no'),(307,'siteorigin_widgets_active','a:7:{s:6:\"button\";b:1;s:10:\"google-map\";b:1;s:5:\"image\";b:1;s:6:\"slider\";b:1;s:13:\"post-carousel\";b:1;s:6:\"editor\";b:1;s:8:\"features\";b:1;}','yes'),(308,'widget_sow-features','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(321,'_transient_timeout_feed_2dd0202377a060f0df35cceaacc2c13c','1563578741','no'),(322,'_transient_feed_2dd0202377a060f0df35cceaacc2c13c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\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:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://siteorigin.com\";s: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:21:\"Free WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 May 2019 16:51: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:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=5.2.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:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:64:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Announcing the Mirror Widgets Addon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://siteorigin.com/announcing-the-mirror-widgets-addon/\";s: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:68:\"https://siteorigin.com/announcing-the-mirror-widgets-addon/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 May 2019 16:38: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Announcements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://siteorigin.com/?p=177070\";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:599:\"<p>We\'re excited to announce that version <code>1.9</code> of SiteOrigin Premium introduces the Mirror Widgets addon. Create a widget once, use it everywhere. Update it and the changes reflect in all instances of the widget. The Mirror Widget addon is perfect for information or functionality that you’d like to insert in several places but manage in a single location.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/announcing-the-mirror-widgets-addon/\">Announcing the Mirror Widgets Addon</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:1252:\"<p>We’re excited to announce that version <code>1.9</code> of <a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a> introduces the Mirror Widgets addon. Create a widget once, use it everywhere. Update it and the changes reflect in all instances of the widget. The Mirror Widget addon is perfect for information or functionality that you’d like to insert in several pages but manage from a single location. Sliders, banners, contact details and groups of social media icons are just a few of the possible use cases that come to mind. If you’re currently managing widgets with the same content across multiple pages, we’re sure you’ll find this new addon a huge time saver.</p>\n<p><a href=\"https://siteorigin.com/premium-documentation/plugin-addons/mirror-widgets/\">Mirror Widgets documentation</a></p>\n<p>Thanks for reading. If you have any questions or feedback, please let us know in the comments section below. What sort of content might you use the Mirror Widgets addon for?</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/announcing-the-mirror-widgets-addon/\">Announcing the Mirror Widgets Addon</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://siteorigin.com/announcing-the-mirror-widgets-addon/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:61:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Boost SiteOrigin Plugin Performance with Autoptimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://siteorigin.com/boost-siteorigin-plugin-performance-autoptimize/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://siteorigin.com/boost-siteorigin-plugin-performance-autoptimize/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Apr 2019 20:35:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Announcements\";s:7:\"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://siteorigin.com/?p=174492\";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:632:\"<p>Autoptimize is our preferred plugin for reducing page size and improving load time, we use it right here on SiteOrigin.com. In our latest release of the Widgets Bundle, version <code>1.15.6</code> we\'ve added a filter which prevents the exclusion of the <code>/uploads/siteorigin-widgets/</code> folder, ensuring Widgets Bundle stylesheets are concatenation and minified.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/boost-siteorigin-plugin-performance-autoptimize/\">Boost SiteOrigin Plugin Performance with Autoptimize</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:1306:\"<p><a href=\"https://wordpress.org/plugins/autoptimize/\" target=\"_blank\" rel=\"noopener noreferrer\">Autoptimize</a> is our preferred plugin for reducing page size and improving load time, we use it right here on SiteOrigin.com. By default, Autoptimize excludes the WordPress uploads folder in its concatenation and minification processes. The SiteOrigin Widgets Bundle stores its stylesheets in the uploads folder. This means that up until now, Widgets Bundle generated stylesheets haven’t been concatenation and minified by Autoptimize. In our latest release of the Widgets Bundle, version <code>1.15.6</code> we’ve added a filter which prevents the exclusion of the <code>/uploads/siteorigin-widgets/</code> folder, ensuring Widgets Bundle stylesheets are concatenation and minified. If you’re using Autoptimize, you’ll already be taking advantage of this enhancement. If not, we recommend you give it a try.</p>\n<p>Thanks for reading. If you have any questions or comments, please let us know in the comments section below.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/boost-siteorigin-plugin-performance-autoptimize/\">Boost SiteOrigin Plugin Performance with Autoptimize</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://siteorigin.com/boost-siteorigin-plugin-performance-autoptimize/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:2:\"13\";s: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:64:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Announcing the Image Overlay Addon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://siteorigin.com/announcing-the-image-overlay-addon/\";s: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:67:\"https://siteorigin.com/announcing-the-image-overlay-addon/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Apr 2019 13:53:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Announcements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://siteorigin.com/?p=171037\";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:577:\"<p>Add beautiful, customizable hover text overlays with animations to your images. Hover overlays are great for galleries, portfolios or any image that would benefit from displaying information on hover. Overlays can be deployed in seconds using the predefined light/dark themes or fully customized using the wide array of style and animation options.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/announcing-the-image-overlay-addon/\">Announcing the Image Overlay Addon</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:2977:\"<p>Add beautiful, customizable hover text overlays with animations to your images. Great for galleries, portfolios or any image that would benefit from displaying information on hover.</p>\n<p>SiteOrigin Premium version <code>1.8</code> introduces the Image Overlay addon. Once you’ve updated, head over to <span class=\"adminized-section\"><span class=\"adminized-part\">WP Admin: SiteOrigin Premium</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">Premium Addons</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">Image Overlay</span></span> to activate and view the global settings.</p>\n<p><a href=\"https://demo.siteorigin.com/premium/image-overlay/\" target=\"_blank\" rel=\"noopener noreferrer\">View the demo</a>.<br />\n<a href=\"https://siteorigin.com/premium-documentation/plugin-addons/image-overlay/\">View the documentation</a>.</p>\n<p>Support has been provided for the SiteOrigin Image, Image Grid, and Simple Masonry widgets. Overlays can be deployed in seconds using the predefined light/dark themes or fully customized using the wide array of style and animation options provided in the global addon settings. Overlay text is provided by the Media Library image title or the widget image title.</p>\n<div id=\"attachment_172355\" style=\"width: 2290px\" class=\"wp-caption alignnone\"><img aria-describedby=\"caption-attachment-172355\" src=\"https://siteorigin.com/wp-content/uploads/2019/04/overlay-dark-masonry.jpg\" alt=\"\" width=\"2280\" height=\"1140\" class=\"size-full wp-image-172355\" srcset=\"https://siteorigin.com/wp-content/uploads/2019/04/overlay-dark-masonry.jpg 2280w, https://siteorigin.com/wp-content/uploads/2019/04/overlay-dark-masonry-300x150.jpg 300w, https://siteorigin.com/wp-content/uploads/2019/04/overlay-dark-masonry-768x384.jpg 768w, https://siteorigin.com/wp-content/uploads/2019/04/overlay-dark-masonry-699x350.jpg 699w, https://siteorigin.com/wp-content/uploads/2019/04/overlay-dark-masonry-1050x525.jpg 1050w, https://siteorigin.com/wp-content/uploads/2019/04/overlay-dark-masonry-313x157.jpg 313w\" sizes=\"(max-width: 2280px) 100vw, 2280px\" /></p>\n<p id=\"caption-attachment-172355\" class=\"wp-caption-text\">An example of the dark overlay theme used in the Simple Masonry widget.</p>\n</div>\n<h3>Do More with SiteOrigin Premium</h3>\n<p><a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a> offers a huge array of additional functionality for Page Builder, the Widgets Bundle and all of our themes. Enhance your layouts with the Image Overlay and 17 other powerful addons.</p>\n<p>If you’ve built something awesome with the Image Overlay addon and would like to share it, feel free to let us know in the comments section below.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/announcing-the-image-overlay-addon/\">Announcing the Image Overlay Addon</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://siteorigin.com/announcing-the-image-overlay-addon/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:\"7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:64:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Build Your Portfolio with Corp and Jetpack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://siteorigin.com/build-your-portfolio-corp-jetpack/\";s: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:66:\"https://siteorigin.com/build-your-portfolio-corp-jetpack/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Apr 2019 10:09:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Announcements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://siteorigin.com/?p=169774\";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:508:\"<p>We\'re excited to announce Jetpack Portfolio support for our Corp theme. Jetpack Portfolio is a custom post type that allows you to easily add and manage your portfolio projects. A portfolio can be any body of work that you\'d like to show off to your prospective customers.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/build-your-portfolio-corp-jetpack/\">Build Your Portfolio with Corp and Jetpack</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:3432:\"<p>We’re excited to announce Jetpack Portfolio support for our Corp theme. Jetpack Portfolio is a custom post type that allows you to easily add and manage your portfolio projects. A portfolio can be any body of work that you’d like to show off to your prospective customers.</p>\n<p><a href=\"https://demo.siteorigin.com/corp/portfolio/\" target=\"_blank\" rel=\"noopener noreferrer\">View the demo</a>.<br />\n<a href=\"https://siteorigin.com/corp-documentation/portfolio/\">View the documentation</a>.</p>\n<h4>Filter and Sort</h4>\n<p>Corp’s portfolio layout sorts your projects by type, allowing users to quickly filter the projects they’d like to view. Projects snap into place using the stunning Isotope masonry effect.</p>\n<div id=\"attachment_171625\" style=\"width: 396px\" class=\"wp-caption alignnone\"><img aria-describedby=\"caption-attachment-171625\" src=\"https://siteorigin.com/wp-content/uploads/2019/04/portfolio-filter.png\" alt=\"\" width=\"386\" height=\"82\" class=\"size-full wp-image-171625\" srcset=\"https://siteorigin.com/wp-content/uploads/2019/04/portfolio-filter.png 386w, https://siteorigin.com/wp-content/uploads/2019/04/portfolio-filter-300x64.png 300w, https://siteorigin.com/wp-content/uploads/2019/04/portfolio-filter-313x66.png 313w\" sizes=\"(max-width: 386px) 100vw, 386px\" /></p>\n<p id=\"caption-attachment-171625\" class=\"wp-caption-text\">Filter and sort by project type.</p>\n</div>\n<h4>Project Details on Hover</h4>\n<p>Each project’s name and type is displayed when hovering over the project thumbnail.</p>\n<div id=\"attachment_171626\" style=\"width: 310px\" class=\"wp-caption alignnone\"><img aria-describedby=\"caption-attachment-171626\" src=\"https://siteorigin.com/wp-content/uploads/2019/04/project-hover-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"size-medium wp-image-171626\" srcset=\"https://siteorigin.com/wp-content/uploads/2019/04/project-hover-300x300.jpg 300w, https://siteorigin.com/wp-content/uploads/2019/04/project-hover-150x150.jpg 150w, https://siteorigin.com/wp-content/uploads/2019/04/project-hover-699x699.jpg 699w, https://siteorigin.com/wp-content/uploads/2019/04/project-hover-313x313.jpg 313w, https://siteorigin.com/wp-content/uploads/2019/04/project-hover-128x128.jpg 128w, https://siteorigin.com/wp-content/uploads/2019/04/project-hover-256x256.jpg 256w, https://siteorigin.com/wp-content/uploads/2019/04/project-hover.jpg 724w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></p>\n<p id=\"caption-attachment-171626\" class=\"wp-caption-text\">Project name and type visible on hover.</p>\n</div>\n<h4>Flexbile Display Options</h4>\n<p>Your portfolio can be inserted using the default URL structure, a SiteOrigin Post Loop widget or using the Jetpack shortcode, the choice is yours.</p>\n<h3>Do More with SiteOrigin Premium</h3>\n<p><a href=\"http://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a> offers a huge array of additional functionality for Page Builder, the Widgets Bundle and all of our themes. Remove the Corp footer attribution, add Ajax comments and enhance your Corp Page Builder layouts with the Animations Addon.</p>\n<p>Thanks for reading. If you have any questions or comments, please let us know in the comments below.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/build-your-portfolio-corp-jetpack/\">Build Your Portfolio with Corp and Jetpack</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://siteorigin.com/build-your-portfolio-corp-jetpack/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:61:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"10 Beautiful Google Font Pairings for 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://siteorigin.com/10-beautiful-google-font-pairings-2019/\";s: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:71:\"https://siteorigin.com/10-beautiful-google-font-pairings-2019/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2019 10:10:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Tutorial\";s:7:\"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://siteorigin.com/?p=167232\";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:587:\"<p>Choosing complimentary Google Fonts that match your website design and branding can be daunting. To celebrate the launch of our <a href=\"https://siteorigin.com/google-fonts-now-in-the-editor-widget/\">expanded Web Font Selector addon</a>, we\'ve selected 10 beautiful combinations for 2019, ready for your blog, portfolio or business focussed site.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/10-beautiful-google-font-pairings-2019/\">10 Beautiful Google Font Pairings for 2019</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:12425:\"<p>Choosing complimentary Google Fonts that match your website design and branding can be daunting. To celebrate the launch of our <a href=\"https://siteorigin.com/google-fonts-now-in-the-editor-widget/\">expanded Web Font Selector addon</a>, we’ve selected 10 beautiful combinations for 2019, ready for your blog, portfolio or business focussed site.</p>\n<h2>Sans Serif and Sans Serif</h2>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Oxygen:300|Source+Sans+Pro\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Oxygen\', sans-serif; font-size: 26px; font-weight: 300; margin: 0;\">Oxygen Light and Source Sans Pro Regular</h3>\n<p style=\"color: #626262; font-family: \'Source Sans Pro\', sans-serif; font-size: 16px; line-height: 29px;\">In the wake of the French Revolution and the Napoleonic Wars, Iceland’s struggle for independence took form and culminated in independence in 1918 and the founding of a republic in 1944. Until the 20th century, Iceland relied largely on subsistence fishing and agriculture, and was among the poorest countries in Europe. Industrialisation of the fisheries and Marshall Plan aid following World War II brought prosperity and Iceland became one of the wealthiest and most developed nations in the world. In 1994, it became a part of the European Economic Area, which further diversified the economy into sectors such as finance, biotechnology, and manufacturing.</p>\n</div>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Open+Sans|Raleway:300\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Raleway\', sans-serif; font-size: 26px; font-weight: 300; margin: 0;\">Raleway Light and Open Sans Regular</h3>\n<p style=\"color: #626262; font-family: \'Open Sans\', sans-serif; font-size: 16px; line-height: 29px;\">Iceland has a market economy with relatively low taxes, compared to other OECD countries. It maintains a Nordic social welfare system that provides universal health care and tertiary education for its citizens. Iceland ranks high in economic, democratic, social stability, and equality, currently ranking first in the world by median wealth per adult. In 2018, it was ranked as the sixth most developed country in the world by the United Nations’ Human Development Index, and it ranks first on the Global Peace Index. Iceland runs almost completely on renewable energy.</p>\n</div>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed:700\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Roboto Condensed\', sans-serif; font-size: 26px; font-weight: 700; margin: 0;\">Roboto Condensed Bold and Roboto Regular</h3>\n<p style=\"color: #626262; font-family: \'Roboto\', sans-serif; font-size: 16px; line-height: 29px;\">The Sagas of Icelanders say that a Norwegian named Naddodd (or Naddador) was the first Norseman to reach Iceland, and in the 9th century he named it Snæland or “snow land” because it was snowing. Following Naddodd, the Swede Garðar Svavarsson arrived, and so the island was then called Garðarshólmur which means “Garðar’s Isle”.</p>\n</div>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Lato|Ubuntu:700\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Ubuntu\', sans-serif; font-weight: 700; font-size: 26px; margin: 0;\">Ubuntu Bold and Lato Regular</h3>\n<p style=\"color: #626262; font-family: \'Lato\', sans-serif; font-size: 16px; line-height: 29px;\">According to the ancient manuscript Landnámabók, the settlement of Iceland began in 874 AD when the Norwegian chieftain Ingólfr Arnarson became the first permanent settler on the island. In the following centuries, Norwegians, and to a lesser extent other Scandinavians, emigrated to Iceland, bringing with them thralls (i.e., slaves or serfs) of Gaelic origin. The island was governed as an independent commonwealth under the Althing, one of the world’s oldest functioning legislative assemblies.</p>\n</div>\n<h2>Serif and Sans Serif</h2>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Cardo|Libre+Franklin\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Cardo\', serif; font-size: 26px; margin: 0;\">Cardo Regular and Libre Franklin Regular</h3>\n<p style=\"color: #626262; font-family: \'Libre Franklin\', sans-serif; font-size: 16px; line-height: 29px;\">Icelandic culture is founded upon the nation’s Scandinavian heritage. Most Icelanders are descendants of Norse and Gaelic settlers. Icelandic, a North Germanic language, is descended from Old West Norse and is closely related to Faroese and West Norwegian dialects. The country’s cultural heritage includes traditional Icelandic cuisine, Icelandic literature, and medieval sagas. Iceland has the smallest population of any NATO member and is the only one with no standing army, with a lightly armed coast guard.</p>\n</div>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Merriweather|Muli:300\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Merriweather\', serif; font-size: 26px; margin: 0;\">Merriweather Regular and Muli Light</h3>\n<p style=\"color: #626262; font-family: \'Muli\', sans-serif; font-size: 16px; font-weight: 300; line-height: 29px;\">The interior consists of a plateau characterised by sand and lava fields, mountains, and glaciers, and many glacial rivers flow to the sea through the lowlands. Iceland is warmed by the Gulf Stream and has a temperate climate, despite a high latitude just outside the Arctic Circle. Its high latitude and marine influence keep summers chilly, with most of the archipelago having a tundra climate.</p>\n</div>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Exo|Vollkorn:700\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Vollkorn\', serif; font-size: 26px; font-weight: 700; margin: 0;\">Vollkorn Bold and Exo Regular</h3>\n<p style=\"color: #626262; font-family: \'Exo\', sans-serif; font-size: 16px; line-height: 29px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum eleifend fringilla. Nam pharetra tortor in urna convallis viverra. Nulla hendrerit ipsum id iaculis imperdiet. In massa risus, consectetur nec luctus id, iaculis et metus. Phasellus lacus metus, pharetra quis eleifend et, hendrerit vitae augue. Curabitur fringilla libero ac augue tristique, auctor posuere nibh vulputate. Fusce eu tellus ut ligula tempus sollicitudin vitae sit amet velit.</p>\n</div>\n<h2>Sans Serif and Serif</h2>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Roboto+Slab:300|Ruda\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Ruda\', sans-serif; font-size: 26px; margin: 0;\">Ruda Regular and Roboto Slab Light</h3>\n<p style=\"color: #626262; font-family: \'Roboto Slab\', serif; font-size: 16px; font-weight: 300; line-height: 29px;\">Iceland is a Nordic island country in the North Atlantic, with a population of 348,580 and an area of 103,000 km2 (40,000 sq mi), making it the most sparsely populated country in Europe. The capital and largest city is Reykjavík, with Reykjavík and the surrounding areas in the southwest of the country being home to over two-thirds of the population. Iceland is volcanically and geologically active.</p>\n</div>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Oswald|Quattrocento\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Oswald\', sans-serif; font-size: 26px; margin: 0;\">Oswald Regular and Quattrocento Regular</h3>\n<p style=\"color: #626262; font-family: \'Quattrocento\', serif; font-size: 16px; line-height: 29px;\">Following a period of civil strife, Iceland acceded to Norwegian rule in the 13th century. The establishment of the Kalmar Union in 1397 united the kingdoms of Norway, Denmark, and Sweden. Iceland thus followed Norway’s integration into that union, coming under Danish rule after Sweden’s secession from the union in 1523. Although the Danish kingdom introduced Lutheranism forcefully in 1550, Iceland remained a distant semi-colonial territory in which Danish institutions and infrastructures were conspicuous by their absence.</p>\n</div>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=PT+Sans:700|Playfair+Display\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'PT Sans\', sans-serif; font-size: 26px; font-weight: 700; margin: 0;\">PT Sans Bold and Playfair Display Regular</h3>\n<p style=\"color: #626262; font-family: \'Playfair Display\', serif; font-size: 16px; line-height: 29px;\">Hit hard by the worldwide financial crisis, the nation’s entire banking system systemically failed in October 2008, leading to a severe depression, substantial political unrest, the Icesave dispute, and the institution of capital controls. Some bankers were jailed. Since then, the economy has made a significant recovery, in large part due to a surge in tourism. A law that took effect in 2018 makes it illegal in Iceland for women to be paid less than men.</p>\n</div>\n<div style=\"background:#efefef; margin-bottom: 35px; padding:35px;\">\n<style>\n @import url(\'https://fonts.googleapis.com/css?family=Lora|Montserrat:700\');\n </style>\n<h3 style=\"color: #2d2d2d; font-family: \'Montserrat\', sans-serif; font-size: 26px; font-weight: 700; margin: 0;\">Montserrat Bold and Lora Regular</h3>\n<p style=\"color: #626262; font-family: \'Lora\', serif; font-size: 16px; line-height: 29px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum eleifend fringilla. Nam pharetra tortor in urna convallis viverra. Nulla hendrerit ipsum id iaculis imperdiet. In massa risus, consectetur nec luctus id, iaculis et metus. Phasellus lacus metus, pharetra quis eleifend et, hendrerit vitae augue. Curabitur fringilla libero ac augue tristique, auctor posuere nibh vulputate. Fusce eu tellus ut ligula tempus sollicitudin vitae sit amet velit.</p>\n</div>\n<h2>SiteOrigin Editor Google Font Selector</h2>\n<p><a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a> version <code>1.7</code> includes an exciting expansion to the Web Font Selector addon. It’s now possible to choose from over 900 beautiful Google Web Fonts, right inside the SiteOrigin Editor widget or any instance of the TinyMCE editor. For content you haven’t yet written, the font family can be selected before typing. Alternatively, for existing content, simply highlight the text and then select the font of your choice. If you’d like to select fonts independently from theme settings, the Web Font Selector is a perfect addition to your content creation and editing process. </p>\n<p><a href=\"https://siteorigin.com/premium-documentation/plugin-addons/web-font-selector/\">SiteOrigin Premium Web Font Selector documentation</a>.</p>\n<h3>Further Reading</h3>\n<p><a href=\"https://design.google/library/choosing-web-fonts-beginners-guide/\" rel=\"noopener noreferrer\" target=\"_blank\">Choosing Web Fonts: A Beginner’s Guide</a><br />\n<a href=\"https://www.canva.com/learn/serif-vs-sans-serif-fonts/\" rel=\"noopener noreferrer\" target=\"_blank\">Serif vs Sans Serif Fonts</a><br />\n<a href=\"https://fonts.google.com/analytics\">Google Fonts Analytics</a> </p>\n<p>Thanks for reading, hopefully, you’ve found a font combination for your next project. If not, there are many more options to choose from. Perhaps try <a href=\"https://fontpair.co/\" rel=\"noopener noreferrer\" target=\"_blank\">FontPair</a> for a helping hand. </p>\n<p>Are there any Google Font combinations you enjoy using for your projects? Let us know in the comments section below.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/10-beautiful-google-font-pairings-2019/\">10 Beautiful Google Font Pairings for 2019</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://siteorigin.com/10-beautiful-google-font-pairings-2019/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:\"7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:61:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Google Fonts Now in the Editor Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://siteorigin.com/google-fonts-now-in-the-editor-widget/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://siteorigin.com/google-fonts-now-in-the-editor-widget/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Mar 2019 13:00:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Announcements\";s:7:\"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://siteorigin.com/?p=166033\";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:548:\"<p><a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a> version <code>1.7</code> includes an exciting expansion to the Web Font Selector addon. It\'s now possible to choose from over 900 beautiful Google Web Fonts, right inside the SiteOrigin Editor widget or any instance of the TinyMCE editor.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/google-fonts-now-in-the-editor-widget/\">Google Fonts Now in the Editor Widget</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:3861:\"<p><a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a> version <code>1.7</code> includes an exciting expansion to the Web Font Selector addon. It’s now possible to choose from over 900 beautiful Google Web Fonts, right inside the SiteOrigin Editor widget or any instance of the TinyMCE editor. For content you haven’t yet written, the font family can be selected before typing. Alternatively, for existing content, simply highlight the text and then select the font of your choice.</p>\n<div id=\"attachment_166761\" style=\"width: 709px\" class=\"wp-caption alignnone\"><img aria-describedby=\"caption-attachment-166761\" class=\"size-large wp-image-166761\" src=\"https://siteorigin.com/wp-content/uploads/2019/03/siteorigin-editor-web-font-selector-699x403.png\" alt=\"\" width=\"699\" height=\"403\" srcset=\"https://siteorigin.com/wp-content/uploads/2019/03/siteorigin-editor-web-font-selector-699x403.png 699w, https://siteorigin.com/wp-content/uploads/2019/03/siteorigin-editor-web-font-selector-300x173.png 300w, https://siteorigin.com/wp-content/uploads/2019/03/siteorigin-editor-web-font-selector-768x442.png 768w, https://siteorigin.com/wp-content/uploads/2019/03/siteorigin-editor-web-font-selector-1050x605.png 1050w, https://siteorigin.com/wp-content/uploads/2019/03/siteorigin-editor-web-font-selector-313x180.png 313w\" sizes=\"(max-width: 699px) 100vw, 699px\" /></p>\n<p id=\"caption-attachment-166761\" class=\"wp-caption-text\">The Select Web Font drop-down offers a wide range of Google hosted fonts.</p>\n</div>\n<p>The SiteOrigin Premium Web Font Selector is added to any instance of the TinyMCE editor. Below is a small sample of the plugins, widgets, and locations you’ll find the TinyMCE editor:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/so-widgets-bundle/\" target=\"_blank\" rel=\"noopener noreferrer\">SiteOrigin Widgets Bundle:</a>\n<ul>\n<li>SiteOrigin Editor widget</li>\n<li>SiteOrigin Accordion widget</li>\n<li>SiteOrigin Contact Form widget</li>\n<li>SiteOrigin Features widget</li>\n<li>SiteOrigin Google Maps widget</li>\n<li>SiteOrigin Hero widget</li>\n<li>SiteOrigin Tabs widget</li>\n<li>SiteOrigin Testimonial widget</li>\n</ul>\n</li>\n<li>Other Plugins:\n<ul>\n<li><a href=\"https://wordpress.org/plugins/so-css/\" target=\"_blank\" rel=\"noopener noreferrer\">SiteOrigin CSS Editor</a></li>\n<li><a href=\"https://wordpress.org/plugins/black-studio-tinymce-widget/\" target=\"_blank\" rel=\"noopener noreferrer\">Black Studio TinyMCE Widget</a></li>\n</ul>\n</li>\n<li>WordPress Core:\n<ul>\n<li>The default Classic Editor Visual tab</li>\n<li>The Block Editor (Gutenberg) Classic block</li>\n</ul>\n</li>\n</ul>\n<p>The SiteOrigin Widgets Bundle plugin isn’t required to add the Web Font Selector to other plugins or the WordPress core (Classic Editor or Block Editor). If you’d like to select fonts independently from theme settings, the Web Font Selector is a perfect addition to your content creation and editing process.</p>\n<p><a href=\"https://siteorigin.com/premium-documentation/plugin-addons/web-font-selector/\">View the addon documentation</a>.</p>\n<h3>Additional Features and a Helping Hand with SiteOrigin Premium</h3>\n<p>SiteOrigin Premium is a single plugin that adds loads of additional settings and functionality to SiteOrigin widgets, Page Builder and SiteOrign themes. The Web Font Selector is just one of 17 addons included. <a href=\"https://siteorigin.com/downloads/premium/\">Find out more</a> about our premium plugin and next level email support service.</p>\n<p>Thanks for reading. If you have any questions or feedback, please let us know in the comments section below.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/google-fonts-now-in-the-editor-widget/\">Google Fonts Now in the Editor Widget</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://siteorigin.com/google-fonts-now-in-the-editor-widget/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:\"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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:61:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Announcing the Map Styles Addon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://siteorigin.com/announcing-the-map-styles-addon/\";s: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:64:\"https://siteorigin.com/announcing-the-map-styles-addon/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Mar 2019 09:19:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Announcements\";s:7:\"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://siteorigin.com/?p=164406\";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:620:\"<p>We\'re excited to announce the Map Styles addon for <a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a>. Map Styles adds over twenty hand-picked map styles to the <a href=\"https://siteorigin.com/widgets-bundle/google-maps-widget/\">SiteOrigin Google Maps widget</a>. With a single click, select the map style that best suits your page, site design or specific map application.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/announcing-the-map-styles-addon/\">Announcing the Map Styles Addon</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:2591:\"<p>We’re excited to announce the Map Styles addon for <a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a>. Map Styles adds over twenty hand-picked map styles to the <a href=\"https://siteorigin.com/widgets-bundle/google-maps-widget/\">SiteOrigin Google Maps widget</a>. With a single click, select the map style that best suits your page, site design or specific map application.</p>\n<p>Our SiteOrigin Google Maps widget is a fully fledged Google Maps builder with options available for markers, routes, and styles. Maps are a great way to offer directions to an event, visualize a road trip, display your branch locations or let users know how to get to your store. Predefined map styles let you customize your map look and feel without the need to create a design yourself. View the currently available styles in the <a href=\"https://demo.siteorigin.com/premium/map-styles-addon/\" target=\"_blank\" rel=\"noopener noreferrer\">demo</a>.</p>\n<p><img class=\"alignnone size-full wp-image-164529\" src=\"https://siteorigin.com/wp-content/uploads/2019/03/premium-map-styles-choices.jpg\" alt=\"\" width=\"2630\" height=\"1370\" srcset=\"https://siteorigin.com/wp-content/uploads/2019/03/premium-map-styles-choices.jpg 2630w, https://siteorigin.com/wp-content/uploads/2019/03/premium-map-styles-choices-300x156.jpg 300w, https://siteorigin.com/wp-content/uploads/2019/03/premium-map-styles-choices-768x400.jpg 768w, https://siteorigin.com/wp-content/uploads/2019/03/premium-map-styles-choices-699x364.jpg 699w, https://siteorigin.com/wp-content/uploads/2019/03/premium-map-styles-choices-1050x547.jpg 1050w, https://siteorigin.com/wp-content/uploads/2019/03/premium-map-styles-choices-313x163.jpg 313w\" sizes=\"(max-width: 2630px) 100vw, 2630px\" /></p>\n<p>If you’re already using SiteOrigin Premium and have updated to version <code>1.6</code>, you can go to <span class=\"adminized-section\"><span class=\"adminized-part\">SiteOrigin</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">Premium Addons</span></span> to activate the Map Styles addon. Find out more about how to use the Map Styles addon in the <a href=\"https://siteorigin.com/premium-documentation/plugin-addons/map-styles/\">documentation</a>.</p>\n<p>Thanks for reading. If you have any questions or feedback, please let us know in the comments section below.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/announcing-the-map-styles-addon/\">Announcing the Map Styles Addon</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://siteorigin.com/announcing-the-map-styles-addon/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:\"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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:64:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Widgets Bundle Now Featuring Font Awesome 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:67:\"https://siteorigin.com/widgets-bundle-now-featuring-font-awesome-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:76:\"https://siteorigin.com/widgets-bundle-now-featuring-font-awesome-5/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Jan 2019 12:56:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Announcements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://siteorigin.com/?p=148543\";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:700:\"<p>We\'re excited to announce the <a href=\"https://wordpress.org/plugins/so-widgets-bundle/\">SiteOrigin Widgets Bundle</a> now includes the latest version of <a href=\"https://fontawesome.com/\">Font Awesome 5</a>. Font Awesome is the most popular of the six icon libraries included in the Widgets Bundle. The upgrade from Font Awesome <code>4.7</code> to <code>5.6.3</code> introduces <strong>675</strong> new icons for you to use and enjoy in your designs. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/widgets-bundle-now-featuring-font-awesome-5/\">Widgets Bundle Now Featuring Font Awesome 5</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:5132:\"<p>We’re excited to announce the <a href=\"https://wordpress.org/plugins/so-widgets-bundle/\">SiteOrigin Widgets Bundle</a> now includes the latest version of <a href=\"https://fontawesome.com/\">Font Awesome 5</a>. Font Awesome is the most popular of the six icon libraries included in the Widgets Bundle. The upgrade from Font Awesome <code>4.7</code> to <code>5.6.3</code> introduces <strong>675</strong> new icons for you to use and enjoy in your designs. </p>\n<p>Font Awesome is now divided into three categories, <a href=\"https://fontawesome.com/icons?d=gallery&s=solid\">Solid</a>, <a href=\"https://fontawesome.com/icons?d=gallery&s=regular\">Regular</a> and <a href=\"https://fontawesome.com/icons?d=gallery&s=brands\">Brands</a>. An additional category drop-down menu is provided when choosing an icon. </p>\n<p><img src=\"https://siteorigin.com/wp-content/uploads/2019/01/font-awesome-categories.png\" alt=\"\" width=\"1306\" height=\"444\" class=\"alignnone size-full wp-image-148558\" srcset=\"https://siteorigin.com/wp-content/uploads/2019/01/font-awesome-categories.png 1306w, https://siteorigin.com/wp-content/uploads/2019/01/font-awesome-categories-300x102.png 300w, https://siteorigin.com/wp-content/uploads/2019/01/font-awesome-categories-768x261.png 768w, https://siteorigin.com/wp-content/uploads/2019/01/font-awesome-categories-699x238.png 699w, https://siteorigin.com/wp-content/uploads/2019/01/font-awesome-categories-1050x357.png 1050w, https://siteorigin.com/wp-content/uploads/2019/01/font-awesome-categories-313x106.png 313w\" sizes=\"(max-width: 1306px) 100vw, 1306px\" /></p>\n<p>You’ll find Font Awesome icons in the following SiteOrigin Widgets:</p>\n<ul>\n<li>Button</li>\n<li>Features</li>\n<li>Icon</li>\n<li>Price Table</li>\n<li>Social Media Buttons</li>\n</ul>\n<h3>Additional Features and a Helping Hand with SiteOrigin Premium</h3>\n<p><a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a> is a plugin that adds a wide array of additional settings and functionality to SiteOrigin widgets, Page Builder and SiteOrign themes.</p>\n<p>The SiteOrigin Social Media Buttons widget offers <strong>47</strong> networks to choose from while the <a href=\"https://fontawesome.com/icons?d=gallery&s=brands\">Branding</a> category in Font Awesome <code>5.6.3</code> offers a whopping <strong>414</strong> icons. If you’d like to add a social media button not included in the SiteOrigin Social Media Buttons list or would prefer to use one of the alternative network icons that Font Awesome offers, SiteOrigin Premium includes the ability to create a custom network with the icon of your choice.</p>\n<p><a href=\"https://siteorigin.com/downloads/premium/\"><img src=\"https://siteorigin.com/wp-content/uploads/2019/01/custom-social-networks.jpg\" alt=\"\" width=\"1354\" height=\"1525\" class=\"alignnone size-full wp-image-148710\" style=\"max-height: 762.50px; width: auto;\" srcset=\"https://siteorigin.com/wp-content/uploads/2019/01/custom-social-networks.jpg 1354w, https://siteorigin.com/wp-content/uploads/2019/01/custom-social-networks-266x300.jpg 266w, https://siteorigin.com/wp-content/uploads/2019/01/custom-social-networks-768x865.jpg 768w, https://siteorigin.com/wp-content/uploads/2019/01/custom-social-networks-621x699.jpg 621w, https://siteorigin.com/wp-content/uploads/2019/01/custom-social-networks-932x1050.jpg 932w, https://siteorigin.com/wp-content/uploads/2019/01/custom-social-networks-313x353.jpg 313w\" sizes=\"(max-width: 1354px) 100vw, 1354px\" /></a></p>\n<p>SiteOrigin Premium also includes our next level email support service. If you need expert advice and quick replies, consider SiteOrigin Premium.</p>\n<h3>SiteOrigin Widgets in the Block Editor</h3>\n<p>If you’re using SiteOrigin Widgets in the new WordPress Block Editor (Gutenberg), you can use the SiteOrigin Layout Block to insert a Page Builder layout and then add a SiteOrigin Widget. You can also insert a SiteOrigin Widget Block and insert a widget directly. Alternatively, install the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> plugin and enjoy Page Builder in its familiar interface.</p>\n<p><img src=\"https://siteorigin.com/wp-content/uploads/2019/01/siteorigin-blocks.png\" alt=\"\" width=\"828\" height=\"993\" class=\"alignnone size-full wp-image-148572\" style=\"max-width: 414px\" srcset=\"https://siteorigin.com/wp-content/uploads/2019/01/siteorigin-blocks.png 828w, https://siteorigin.com/wp-content/uploads/2019/01/siteorigin-blocks-250x300.png 250w, https://siteorigin.com/wp-content/uploads/2019/01/siteorigin-blocks-768x921.png 768w, https://siteorigin.com/wp-content/uploads/2019/01/siteorigin-blocks-583x699.png 583w, https://siteorigin.com/wp-content/uploads/2019/01/siteorigin-blocks-313x375.png 313w\" sizes=\"(max-width: 828px) 100vw, 828px\" /></p>\n<p>Thanks for reading. If you have any questions, please post them below. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/widgets-bundle-now-featuring-font-awesome-5/\">Widgets Bundle Now Featuring Font Awesome 5</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://siteorigin.com/widgets-bundle-now-featuring-font-awesome-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:\"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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:64:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Create a Custom 404 Page with Page Builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://siteorigin.com/create-a-custom-404-page-with-page-builder/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://siteorigin.com/create-a-custom-404-page-with-page-builder/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Nov 2018 15:43:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Tutorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"tutorial\";s:7:\"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://siteorigin.com/?p=136650\";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:593:\"<p>If a page on your website no longer exists or if a link is incorrect, your users will see your 404 page. By default, your theme controls the content on your 404 page. Using <a href=\"https://wordpress.org/plugins/404page/\">404page plugin</a> and Page Builder by SiteOrigin, creating a custom 404 page is much quicker and easier than you might think.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/create-a-custom-404-page-with-page-builder/\">Create a Custom 404 Page with Page Builder</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:6273:\"<p>If a page on your website no longer exists or if a link is incorrect, your users will see your 404 page. 404 Not Found is an HTTP response status code that means <em>the requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible.</em> Ref: <a href=\"https://en.wikipedia.org/wiki/List_of_HTTP_status_codes\">Wikipedia</a>. </p>\n<p>By default, your theme controls the content on your 404 page. Using <a href=\"https://wordpress.org/plugins/404page/\">404page plugin</a> and Page Builder by SiteOrigin, creating a custom 404 page is much quicker and easier than you might think. Adding useful links, a search form and perhaps even a contact form is a great way to engage your users and hopefully help them find the content they were looking for.</p>\n<p><a href=\"https://demo.siteorigin.com/corp/page-not-found/\">View the demo</a>.<br />\n<a href=\"https://siteorigin.com/wp-content/uploads/2018/11/404.json\">Download the demo JSON layout</a> (Right click and Save As).</p>\n<h3>Required Plugins</h3>\n<p><a href=\"https://wordpress.org/plugins/404page/\">404page – your smart custom 404 error page</a><br />\n<a href=\"https://wordpress.org/plugins/siteorigin-panels/\">Page Builder by SiteOrigin</a><br />\n<a href=\"https://wordpress.org/plugins/so-widgets-bundle/\">SiteOrigin Widgets Bundle</a></p>\n<p>Once Page Builder and the Widgets Bundle plugins are activated, go to <span class=\"adminized-section\"><span class=\"adminized-part\">Plugins</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">SiteOrigin Widgets</span></span> to activate the widgets you’d like to make use of. Not all of the widgets are activated by default.</p>\n<h3>Assigning a Custom 404 Page</h3>\n<p>Go to <span class=\"adminized-section\"><span class=\"adminized-part\">Pages</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">Add New</span></span> to create your custom 404 page if you haven’t done so already. Next, with 404page plugin activated, go to <span class=\"adminized-section\"><span class=\"adminized-part\">Apppearance</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">404 Error Page</span></span>. Use the <span class=\"adminized-section\"><span class=\"adminized-part\">General: Page to be displayed as 404 page</span></span> setting to choose the page to be used as your custom 404 page.</p>\n<div id=\"attachment_137526\" style=\"width: 1674px\" class=\"wp-caption alignnone\"><img aria-describedby=\"caption-attachment-137526\" src=\"https://siteorigin.com/wp-content/uploads/2018/11/select-page.jpg\" alt=\"\" width=\"1664\" height=\"1566\" class=\"size-full wp-image-137526\" srcset=\"https://siteorigin.com/wp-content/uploads/2018/11/select-page.jpg 1664w, https://siteorigin.com/wp-content/uploads/2018/11/select-page-300x282.jpg 300w, https://siteorigin.com/wp-content/uploads/2018/11/select-page-768x723.jpg 768w, https://siteorigin.com/wp-content/uploads/2018/11/select-page-699x658.jpg 699w, https://siteorigin.com/wp-content/uploads/2018/11/select-page-1050x988.jpg 1050w, https://siteorigin.com/wp-content/uploads/2018/11/select-page-313x295.jpg 313w\" sizes=\"(max-width: 1664px) 100vw, 1664px\" /></p>\n<p id=\"caption-attachment-137526\" class=\"wp-caption-text\">Use the drop-down menu provided to choose your page. Your page can be named anything, we chose 404 for ours but that isn’t necessary.</p>\n</div>\n<h3>Editing Your Custom 404 Page</h3>\n<p>Go to Pages and edit the page you’ve chosen to be your custom 404 page. Click on the Page Builder tab to edit your page using Page Builder by SiteOrigin. If you’d like to start with our demo page, <a href=\"https://siteorigin.com/wp-content/uploads/2018/11/404.json\">download the demo JSON layout</a> (Right click and Save As). Click <span class=\"adminized-section\"><span class=\"adminized-part\">Layouts</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">Import/Export</span></span> to import the layout.</p>\n<div id=\"attachment_137527\" style=\"width: 2370px\" class=\"wp-caption alignnone\"><img aria-describedby=\"caption-attachment-137527\" src=\"https://siteorigin.com/wp-content/uploads/2018/11/custom-404-error-page-builder.jpg\" alt=\"\" width=\"2360\" height=\"1086\" class=\"size-full wp-image-137527\" srcset=\"https://siteorigin.com/wp-content/uploads/2018/11/custom-404-error-page-builder.jpg 2360w, https://siteorigin.com/wp-content/uploads/2018/11/custom-404-error-page-builder-300x138.jpg 300w, https://siteorigin.com/wp-content/uploads/2018/11/custom-404-error-page-builder-768x353.jpg 768w, https://siteorigin.com/wp-content/uploads/2018/11/custom-404-error-page-builder-699x322.jpg 699w, https://siteorigin.com/wp-content/uploads/2018/11/custom-404-error-page-builder-1050x483.jpg 1050w, https://siteorigin.com/wp-content/uploads/2018/11/custom-404-error-page-builder-313x144.jpg 313w\" sizes=\"(max-width: 2360px) 100vw, 2360px\" /></p>\n<p id=\"caption-attachment-137527\" class=\"wp-caption-text\">Our custom 404 error page build in Page Builder.</p>\n</div>\n<p>Finally, test your 404 page by going to a URL you know doesn’t exist. For example <a href=\"http://demo.siteorigin.com/corp/nopagehere\">http://demo.siteorigin.com/corp/nopagehere</a>. You can also go to <span class=\"adminized-section\"><span class=\"adminized-part\">Appearance</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">404 Error Page</span></span> and click the <span class=\"adminized-section\"><span class=\"adminized-part\">Test 404 error</span></span> button.</p>\n<h3>Additional Features and a Helping Hand with SiteOrigin Premium</h3>\n<p><a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a> is a plugin that adds additional settings and functionality to SiteOrigin widgets, Page Builder and SiteOrign themes. SiteOrigin Premium also includes our next level email support service. If you need expert advice and quick replies, consider SiteOrigin Premium.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/create-a-custom-404-page-with-page-builder/\">Create a Custom 404 Page with Page Builder</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://siteorigin.com/create-a-custom-404-page-with-page-builder/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:2:\"24\";s: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:64:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Create a Team Page with the SiteOrigin Features Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://siteorigin.com/create-a-team-page-with-the-siteorigin-features-widget/\";s: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:87:\"https://siteorigin.com/create-a-team-page-with-the-siteorigin-features-widget/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Oct 2018 10:05: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Tutorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"tutorial\";s:7:\"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://siteorigin.com/?p=133084\";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:494:\"<p>In this tutorial, we\'ll create a simple and engaging \"Meet the Team\" page using Page Builder by SiteOrigin and the SiteOrigin Headline and Features Widget. Read the complete tutorial or jump ahead and use the prebuilt layout.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/create-a-team-page-with-the-siteorigin-features-widget/\">Create a Team Page with the SiteOrigin Features Widget</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Andrew Misplon\";s: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:12012:\"<p>In this tutorial, we’ll create a simple and engaging “Meet the Team” page using Page Builder by SiteOrigin and the SiteOrigin Widget Bundle.</p>\n<p><a href=\"https://demo.siteorigin.com/corp/meet-the-team/\">View the demo</a><br />\n<a href=\"#prebuilt\">Jump to the prebuilt layout</a></p>\n<h3>Required Plugins</h3>\n<p><a href=\"https://wordpress.org/plugins/siteorigin-panels/\">Page Builder by SiteOrigin</a><br />\n<a href=\"https://wordpress.org/plugins/so-widgets-bundle/\">SiteOrigin Widgets Bundle</a></p>\n<p>Once Page Builder and the Widgets Bundle plugins are activated, go to <span class=\"adminized-section\"><span class=\"adminized-part\">Plugins</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">SiteOrigin Widgets</span></span> and make sure that the <strong>Headline</strong> and <strong>Features</strong> widgets are activated.</p>\n<h3>Getting Started</h3>\n<p>Go to Pages and edit the page you’d like to use as your team page. If you haven’t created this page yet, go to <span class=\"adminized-section\"><span class=\"adminized-part\">Pages</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">Add New</span></span> to get started. Once editing the page, if you’re using a SiteOrigin theme, scroll to the Page Settings meta box in the right column. For our <a href=\"https://demo.siteorigin.com/corp/meet-the-team/\">demo layout</a> we’ve set Page Layout to No Sidebar and disabled the Page Title. Adjusting page settings is optional, you’re free to set up your page as best suits your site design.</p>\n<p>If you haven’t activated Page Builder on this page yet, click on the Page Builder tab and then in the Page Builder toolbar, click the Add Row button and add a single column row to your page. Repeat the process to add a second row.</p>\n<h3>Adding the Widgets</h3>\n<p><img class=\"alignnone wp-image-135011\" src=\"https://siteorigin.com/wp-content/uploads/2018/10/adding-siteorigin-widgets-699x382.jpg\" alt=\"\" width=\"400\" height=\"219\" srcset=\"https://siteorigin.com/wp-content/uploads/2018/10/adding-siteorigin-widgets-699x382.jpg 699w, https://siteorigin.com/wp-content/uploads/2018/10/adding-siteorigin-widgets-300x164.jpg 300w, https://siteorigin.com/wp-content/uploads/2018/10/adding-siteorigin-widgets-768x420.jpg 768w, https://siteorigin.com/wp-content/uploads/2018/10/adding-siteorigin-widgets-313x171.jpg 313w, https://siteorigin.com/wp-content/uploads/2018/10/adding-siteorigin-widgets.jpg 927w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></p>\n<p>We’ve started our demo layout off with a Headline widget. To add a Headline widget, click in the first row you’ve created then click Add Widget. Once the Add Widget modal window appears, use the search field on the left to search for “headline”. Click the SiteOrigin Headline widget to insert it into the first row.</p>\n<p>In the second row, we’ll be inserting the SiteOrigin Features widget. Click the second row to select it, then Add Widget. Use the search field to search for “features”. Click the SiteOrigin Features widget to insert it.</p>\n<h3>Adding the Content</h3>\n<h4>SiteOrigin Headline Widget</h4>\n<p><img class=\"alignnone wp-image-135017\" src=\"https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-headline-widget-238x300.jpg\" alt=\"\" width=\"400\" height=\"504\" srcset=\"https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-headline-widget-238x300.jpg 238w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-headline-widget-555x699.jpg 555w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-headline-widget-313x394.jpg 313w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-headline-widget.jpg 734w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></p>\n<p>We’ll start out by editing the Headline widget and then move onto the Features widget. To edit the Headline widget, hover over it and click the Edit link. We’ve used the following settings:</p>\n<p><strong>Headline:</strong><br />\nText: Meet the Team<br />\nHTML Tag: H1<br />\nFont: Use theme font<br />\nFont Size: 32px<br />\nAlignment: Center</p>\n<p><strong>Subheadline:</strong><br />\nText: Lorem ipsum dolor sit amet, consectetur adipiscing elit. (This is placeholder text, replace it with a sub-headline that fits your team page)<br />\nHTML Tag: H2<br />\nFont: Use theme font<br />\nFont Size: 23px<br />\nAlignment: Center</p>\n<p><strong>Divider</strong><br />\nStyle: Solid<br />\nColor: #EEEEEE<br />\nThickness: 1<br />\nAlignment: Center<br />\nDivider Width: 80%</p>\n<p>Use FitText: Enabled<br />\nFitText Compressor Strength: 0,85</p>\n<p>The Headline widget isn’t necessary, you could also use the regular page title, it’s up to you.</p>\n<h4>SiteOrigin Features Widget</h4>\n<p><img class=\"alignnone wp-image-135026 size-large\" src=\"https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-features-widget-team-members-699x378.jpg\" alt=\"\" width=\"699\" height=\"378\" srcset=\"https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-features-widget-team-members-699x378.jpg 699w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-features-widget-team-members-300x162.jpg 300w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-features-widget-team-members-768x415.jpg 768w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-features-widget-team-members-1050x568.jpg 1050w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-features-widget-team-members-313x169.jpg 313w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-features-widget-team-members.jpg 1345w\" sizes=\"(max-width: 699px) 100vw, 699px\" /></p>\n<p>Next, we’ll add our team members using the Features widget. Hover over the widget and click Edit to get started.</p>\n<p>Before adding team members, let’s take a look at the general settings used in our demo.</p>\n<p><strong>Font Design</strong><br />\nAll settings were left at default values.</p>\n<p><strong>Other Settings</strong><br />\nContainer shape: None<br />\nContainer size: 150px<br />\nIcon Size: We’ve cleared this field and left it blank<br />\nFeatures per row: 3<br />\nResponsive layout: Enabled<br />\nLink feature title to more URL: Disabled<br />\nLink icon to more URL: Disabled<br />\nOpen more URL in new window: Disabled</p>\n<p>You’re now ready to add your team. Click the Add link in the Features section to add your first team member. Each feature can be opened, duplicated or deleted using the icons on the right. Features can also be dragged to re-order. The settings we’ve used in each feature are as follows:</p>\n<p>Container position: Top<br />\nIcon image: Used for the team member’s photo. Our photos were manually resized to <code>300px x 300px</code> before uploading to the Media Library. Be sure to make your images square with equal width and height. <code>300px x 300px</code> works well.<br />\nIcon image size: Full<br />\nTitle text: Used for the team member’s name.<br />\nText: Used for the team member description.</p>\n<h3>Rounding the Profile Images Using Custom CSS</h3>\n<p>Our team profile images are square. We’ve used Custom CSS to transform them into round images. Custom CSS can be added to our useful <a href=\"https://wordpress.org/plugins/so-css/\">SiteOrigin CSS plugin</a>. To round your profile images, follow these steps:</p>\n<p>1. Edit the row containing the SiteOrigin Features widget and open the Attributes section in the right column. Insert the following class name into the Row Class field:</p>\n<pre class=\"prettyprint \">meet-the-team</pre>\n<p>If you’re using the prebuilt layout provided later in this tutorial, this step isn’t necessary as the class name will already be added to the row containing the SiteOrigin Features widget.</p>\n<p><img class=\"alignnone wp-image-135022 size-medium\" src=\"https://siteorigin.com/wp-content/uploads/2018/10/page-builder-row-class-name-298x300.jpg\" alt=\"\" width=\"298\" height=\"300\" srcset=\"https://siteorigin.com/wp-content/uploads/2018/10/page-builder-row-class-name-298x300.jpg 298w, https://siteorigin.com/wp-content/uploads/2018/10/page-builder-row-class-name-150x150.jpg 150w, https://siteorigin.com/wp-content/uploads/2018/10/page-builder-row-class-name-313x315.jpg 313w, https://siteorigin.com/wp-content/uploads/2018/10/page-builder-row-class-name-128x128.jpg 128w, https://siteorigin.com/wp-content/uploads/2018/10/page-builder-row-class-name.jpg 518w\" sizes=\"(max-width: 298px) 100vw, 298px\" /></p>\n<p>2. Go to <span class=\"adminized-section\"><span class=\"adminized-part\">Appearance</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">Custom CSS</span></span> if you’re using SiteOrigin CSS plugin and insert the following rule:</p>\n<pre class=\"prettyprint \">.meet-the-team .sow-features-feature .sow-icon-image {\r\nborder-radius: 50%;\r\n}</pre>\n<p><strong>This step is necessary even if you’re using the prebuilt layout.</strong></p>\n<p><img class=\"alignnone wp-image-135019\" src=\"https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-css-rounding-rule-300x122.jpg\" alt=\"\" width=\"400\" height=\"163\" srcset=\"https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-css-rounding-rule-300x122.jpg 300w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-css-rounding-rule-768x313.jpg 768w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-css-rounding-rule-699x285.jpg 699w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-css-rounding-rule-313x127.jpg 313w, https://siteorigin.com/wp-content/uploads/2018/10/siteorigin-css-rounding-rule.jpg 975w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></p>\n<h3>Additional Features and a Helping Hand with SiteOrigin Premium</h3>\n<p><a href=\"https://siteorigin.com/downloads/premium/\">SiteOrigin Premium</a> is a plugin that adds additional settings and functionality to SiteOrigin widgets, Page Builder and SiteOrign themes. SiteOrigin Premium also includes our next level email support service. If you need expert advice and quick replies, consider SiteOrigin Premium.</p>\n<h3 id=\"prebuilt\">Using the Demo Layout</h3>\n<p><a href=\"https://demo.siteorigin.com/corp/meet-the-team/\">View the Demo</a>.<br />\n<a href=\"https://siteorigin.com/wp-content/uploads/2018/10/meet-the-team.json\">Download the demo layout (JSON file)</a>.</p>\n<p>If you’d like to make use of the demo layout, follow these steps:</p>\n<p>1. Download the above JSON file to your desktop.<br />\n2. Go to the page you’d like to use, if you haven’t activated Page Builder on this page yet, click on the Page Builder tab and then in the Page Builder toolbar, click <span class=\"adminized-section\"><span class=\"adminized-part\">Layouts</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">Import/Export</span></span>.<br />\n3. Upload the layout file either by dragging and dropping or selecting it using the select button.<br />\n4. Click the Insert button bottom right.<br />\n5. To round your team images, add the following to <span class=\"adminized-section\"><span class=\"adminized-part\">Appearance</span><span class=\"adminized-arrow icon-arrow-right\"></span><span class=\"adminized-part\">Custom CSS</span></span>:</p>\n<pre class=\"prettyprint \">.meet-the-team .sow-features-feature .sow-icon-image {\r\nborder-radius: 50%;\r\n}</pre>\n<p>* Unfortunately, the Features widget doesn’t have the option of using external image URL’s. This means that the images from the demo layout won’t be imported.</p>\n<p>If you have any questions or comments, please let us know below, we’d love to hear from you.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://siteorigin.com/create-a-team-page-with-the-siteorigin-features-widget/\">Create a Team Page with the SiteOrigin Features Widget</a> appeared first on <a rel=\"nofollow\" href=\"https://siteorigin.com\">SiteOrigin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://siteorigin.com/create-a-team-page-with-the-siteorigin-features-widget/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:2:\"27\";s: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:28:\"https://siteorigin.com/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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:20:{s:4:\"date\";s:29:\"Fri, 19 Jul 2019 11:25:41 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:14:\"content-length\";s:5:\"13678\";s:10:\"set-cookie\";s:131:\"__cfduid=dcc064b1ab8a1ed223659b0b7638de6991563535541; expires=Sat, 18-Jul-20 11:25:41 GMT; path=/; domain=.siteorigin.com; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/7.0.31\";s:13:\"cache-control\";s:22:\"public, max-age=432000\";s:7:\"expires\";s:29:\"Wed, 24 Jul 2019 11:25:41 GMT\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"link\";s:59:\"<https://siteorigin.com/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:13:\"last-modified\";s:29:\"Fri, 19 Jul 2019 08:12:25 GMT\";s:4:\"etag\";s:39:\"\"7d0c156b64c5d14f8cb16213d95e8b30-gzip\"\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:16:\"content-encoding\";s:4:\"gzip\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:3:\"age\";s:4:\"2294\";s:13:\"accept-ranges\";s:5:\"bytes\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"4f8c560d3a1e5eaa-TPA\";}}s:5:\"build\";s:14:\"20180206170026\";}','no'),(323,'_transient_timeout_feed_mod_2dd0202377a060f0df35cceaacc2c13c','1563578741','no'),(324,'_transient_feed_mod_2dd0202377a060f0df35cceaacc2c13c','1563535541','no'),(325,'_site_transient_timeout_community-events-3e4ad16852bc4f87d723ccfe151b87f7','1563578743','no'),(326,'_site_transient_community-events-3e4ad16852bc4f87d723ccfe151b87f7','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"208.69.133.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:30:\"How to Create Gutenberg Blocks\";s:3:\"url\";s:82:\"https://www.meetup.com/Greenville-South-Carolina-WordPress-Group/events/262642163/\";s:6:\"meetup\";s:41:\"Greenville South Carolina WordPress Group\";s:10:\"meetup_url\";s:65:\"https://www.meetup.com/Greenville-South-Carolina-WordPress-Group/\";s:4:\"date\";s:19:\"2019-07-18 11:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Greenville, SC, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.851128000000003;s:9:\"longitude\";d:-82.399349999999998;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:38:\"Happiness Bar - Any Question Answered \";s:3:\"url\";s:82:\"https://www.meetup.com/Greenville-South-Carolina-WordPress-Group/events/262420924/\";s:6:\"meetup\";s:41:\"Greenville South Carolina WordPress Group\";s:10:\"meetup_url\";s:65:\"https://www.meetup.com/Greenville-South-Carolina-WordPress-Group/\";s:4:\"date\";s:19:\"2019-07-18 17:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Greenville, SC, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.850231000000001;s:9:\"longitude\";d:-82.399024999999995;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:59:\"Automating Your Social Media #WordPress #AdventCoworkingCLT\";s:3:\"url\";s:79:\"https://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/events/259503957/\";s:6:\"meetup\";s:38:\"Greater Charlotte Area WordPress Group\";s:10:\"meetup_url\";s:62:\"https://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/\";s:4:\"date\";s:19:\"2019-07-31 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Charlotte, NC, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:35.224530000000001;s:9:\"longitude\";d:-80.820335;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:17:\"WPTalks Luncheons\";s:3:\"url\";s:85:\"https://www.meetup.com/Greenville-South-Carolina-WordPress-Group/events/bqgnwqyzlbtb/\";s:6:\"meetup\";s:41:\"Greenville South Carolina WordPress Group\";s:10:\"meetup_url\";s:65:\"https://www.meetup.com/Greenville-South-Carolina-WordPress-Group/\";s:4:\"date\";s:19:\"2019-08-15 11:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Greenville, SC, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.851128000000003;s:9:\"longitude\";d:-82.399349999999998;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:38:\"Happiness Bar - Any Question Answered \";s:3:\"url\";s:85:\"https://www.meetup.com/Greenville-South-Carolina-WordPress-Group/events/pfwkwqyzlbtb/\";s:6:\"meetup\";s:41:\"Greenville South Carolina WordPress Group\";s:10:\"meetup_url\";s:65:\"https://www.meetup.com/Greenville-South-Carolina-WordPress-Group/\";s:4:\"date\";s:19:\"2019-08-15 17:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Greenville, SC, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.850230000000003;s:9:\"longitude\";d:-82.399024999999995;}}}}','no'),(327,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1563578745','no'),(328,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News – – 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2019 20:20:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.3-alpha-45664\";s:7:\"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:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"People of WordPress: Ugyen Dorji\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/07/people-of-wordpress-ugyen-dorji/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2019 17:20:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7013\";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:386:\"You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet Ugyen Dorji from Bhutan Ugyen lives in Bhutan, a landlocked country […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Aditya Kane\";s: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:7264:\"\n<p><em>You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Ugyen Dorji from Bhutan</strong></h2>\n\n\n\n<p>Ugyen lives in <a href=\"https://en.wikipedia.org/wiki/Bhutan\">Bhutan</a>, a landlocked country situated between two giant neighbors, India to the south and China to the north. He works for ServMask Inc and is responsible for the Quality Assurance process for All-in-One WP Migration plugin. <br><br>He believes in the Buddhist teaching that “the most valuable service is one rendered to our fellow humans,” and his contributions demonstrates this through his WordPress translation work and multi-lingual support projects for WordPress.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-7023\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?w=1728&ssl=1 1728w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?resize=300%2C225&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?resize=768%2C576&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?resize=1024%2C768&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption>Bhutanese contributors to the Dzongkha locale on WordPress Translation Day</figcaption></figure>\n\n\n\n<h2><strong>How Ugyen started his career with WordPress</strong></h2>\n\n\n\n<p>Back in 2016, Ugyen was looking for a new job after his former cloud company ran into financial difficulties.</p>\n\n\n\n<p>During one interview he was asked many questions about WordPress and, although he had a basic understanding of WordPress, he struggled to give detailed answers. After that interview he resolved to develop his skills and learn as much about WordPress as he could. </p>\n\n\n\n<p>A few months passed and he received a call from ServMask Inc, who had developed a plugin called All-in-One WP Migration. They offered him a position, fulfilling his wish to work with WordPress full-time. And because of that, Ugyen is now an active contributor to the WordPress community.</p>\n\n\n\n<h3><strong>WordCamp Bangkok 2018</strong></h3>\n\n\n\n<p>WordCamp Bangkok 2018 was a turning point event for Ugyen. WordCamps are a great opportunity to meet WordPress community members you don’t otherwise get to know, and he was able to attend his first WordCamp through the sponsorship of his company.</p>\n\n\n\n<p>The first day of WordCamp Bangkok was a Contributor Day, where people volunteer to work together to contribute to the development of WordPress. Ugyen joined the Community team to have conversations with WordPress users from all over the world. He was able to share his ideas for supporting new speakers, events and organizers to help build the WordPress community in places where it is not yet booming.</p>\n\n\n\n<p>During the main day of the event, Ugyen managed a photo booth for speakers, organizers, and attendees to capture their memories of WordCamp. He also got to take some time out to attend several presentations during the conference. What particularly stuck in Ugyen’s mind was learning that having a website content plan has been shown to lead to 100% growth in business development.</p>\n\n\n\n<h3>Co-Organizing<strong> Thimphu</strong>‘s <strong>WordPress Meetup</strong></h3>\n\n\n\n<p>After attending WordCamp Bangkok 2018 as well as a local Meetup event, Ugyen decided to introduce WordPress to his home country and cities. </p>\n\n\n\n<p>As one of the WordPress Translation Day organizers, he realized that his local language, Dzongkha, was not as fully translated as other languages in the WordPress Core Translation. That is when Ugyen knew that he wanted to help build his local community. He organized Thimphu’s first WordPress Meetup to coincide with WordPress Translation Day 4, and it was a huge success!</p>\n\n\n\n<p>Like all WordPress Meetups, the Thimpu WordPress Meetup is an easygoing, volunteer-organized, non-profit meetup which covers everything related to WordPress. But it also keeps in mind the <a href=\"https://en.wikipedia.org/wiki/Gross_National_Happiness\">Bhutanese Gross National Happiness</a> four pillars by aiming to preserve and promote their unique culture and national language. </p>\n\n\n\n<h2><strong>Big dreams get accomplished one step at a time</strong></h2>\n\n\n\n<p>Ugyen has taken an active role in preserving his national language by encouraging his community to use WordPress, including Dzongkha bloggers, online Dzongkha news outlets, and government websites.</p>\n\n\n\n<p>And while Ugyen has only been actively involved in the community for a short period, he has contributed much to the WordPress community, including:</p>\n\n\n\n<ul><li>becoming a Translation Contributor for WordPress Core Translation for Dzongkha;</li><li>participating in the <a href=\"https://wptranslationday.org/\">Global WordPress Translation Day 4</a> Livestream and organizing team;</li><li>inviting WordPress Meetup Thimphu members and WordPress experts from other countries to join the <a href=\"https://wpbhutan.slack.com/\">local Slack instance</a>;</li><li>encouraging ServMask Inc. to become an event sponsor;</li><li>providing the Dzongkha Development Commission the opportunity to involve their language experts.</li></ul>\n\n\n\n<p>When it comes to WordPress, Ugyen particularly focuses on encouraging local and international language WordPress bloggers; helping startups succeed with WordPress; and sharing what he has learned from WordPress with his Bhutanese WordPress community.</p>\n\n\n\n<p>As a contributor, Ugyen hopes to accomplish even more for the Bhutan and Asian WordPress Communities. His dreams for his local community are big, including teaching more people about open source, hosting a local WordCamp, and helping to organize WordCamp Asia in 2020 — all while raising awareness of his community.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo-1.jpg?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-7026\" width=\"110\" height=\"83\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7013\";s: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:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: June 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/07/the-month-in-wordpress-june-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2019 10:07: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7009\";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:337:\"June has certainly been a busy month in the WordPress community — aside from holding the largest WordPress event ever, the project has hit a number of significant milestones and published some big announcements this past month. A Wrap for WordCamp Europe 2019 WordCamp Europe 2019 took place on June 20-22. It was the largest […]\";s: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:\"Hugh Lashbrooke\";s: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:8174:\"\n<p>June has certainly been a busy month in the WordPress community — aside from holding the largest WordPress event ever, the project has hit a number of significant milestones and published some big announcements this past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>A Wrap for WordCamp Europe 2019</h2>\n\n\n\n<p>WordCamp Europe 2019 took place on June 20-22. It was the largest WordPress event ever, with 3,260 tickets sold and 2,734 attendees. The attendees came from 97 different countries and 1,722 of them had never attended WordCamp Europe before.</p>\n\n\n\n<p>The event featured 60 speakers who delivered talks and workshops on a variety of topics over two conference days, most notably <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>’s keynote that included an update on the current status of WordPress Core development, along with a lively Q&A session. The full session from the live stream is <a href=\"https://youtu.be/UE18IsncB7s?t=13033\">available to watch online</a>.</p>\n\n\n\n<p>For its eighth year, <a href=\"https://2019.europe.wordcamp.org/2019/06/25/wordcamp-europe-2020/\">WordCamp Europe will take place in Porto, Portugal</a>. The 2020 edition of the event will be held on June 4-6. If you would like to get involved with WordCamp Europe next year, fill out <a href=\"https://2020.europe.wordcamp.org/2019/06/22/call-for-organisers/\">the organizer application form</a>. </p>\n\n\n\n<h2>Proposal for XML Sitemaps in WordPress Core</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">A proposal this month</a> suggested bringing XML sitemap generation into WordPress Core. This is a feature that has traditionally been handled by plugins, which has resulted in many different implementations across different sites. It also means that many sites do not have XML sitemaps, which can be a problem because they are hugely important to having your site correctly indexed by search engines.</p>\n\n\n\n<p>The proposal details how core sitemaps would be structured and how the team would build them, as well as what aspects of WordPress would not be considered appropriate information to be included.</p>\n\n\n\n<p>Want to get involved in building this feature? Comment on <a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">the proposal</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Translation Milestone for the Spanish Community</h2>\n\n\n\n<p><a href=\"https://twitter.com/wp_es/status/1138015568563441665\">The WordPress community of Spain has worked hard</a> to make <a href=\"https://translate.wordpress.org/locale/es/\">the es_ES locale</a> the first in the world to fully localize all of WordPress Core along with all Meta projects, apps, and the top 200 plugins. This is made possible by having the largest translation team out of any locale, consisting of 2,951 individual contributors.</p>\n\n\n\n<p>Want to get involved in translating WordPress into our locale? Find your locale on <a href=\"https://translate.wordpress.org/\">the translation platform</a>, follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a>, and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.2.2 Maintenance Release</h2>\n\n\n\n<p>On June 18, <a href=\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\">v5.2.2 of WordPress was released</a> as a maintenance release, fixing 13 bugs and improving the Site Health feature that was first published in v5.2. If your site has not already been automatically updated to this version, you can <a href=\"https://wordpress.org/download/\">download the update</a> or manually check for updates in your WordPress dashboard. Thanks to <a href=\"https://profiles.wordpress.org/audrasjb/\">JB Audras</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, and <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> for co-leading this release, as well as the 30 other individuals who contributed to it.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Full End to End Tests for WordPress Core</h2>\n\n\n\n<p>On June 27, <a href=\"https://make.wordpress.org/core/2019/06/27/introducing-the-wordpress-e2e-tests/\">e2e (end to end) testing was introduced</a> to WordPress and included in the continuous integration pipeline. E2e testing, which has been successfully used by Gutenberg, is used to simulate real user scenarios and validate process flows. Currently, the setup requires <a href=\"https://docs.docker.com/install/\">Docker</a> to run, and a number of e2e test utilities are already available in the <a href=\"https://github.com/WordPress/gutenberg/tree/master/packages/e2e-test-utils/src\">@wordpress/e2e-test-utils</a> package, in the Gutenberg repository. </p>\n\n\n\n<p>Want to use this feature? The more tests that are added, the more stable future releases will be! Follow the <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-js channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Feature Packages from the Theme Review Team</h2>\n\n\n\n<p>Following a <a href=\"https://make.wordpress.org/themes/2019/06/07/proposal-theme-feature-repositories/\">proposal for theme feature repositories</a>, an <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">update to the features package was announced</a>. Two new packages have been created that require code review and testing. The first is an Autoload Package, a foundational package for theme developers who are not currently using Composer (although <a href=\"https://getcomposer.org/\">Composer</a> is recommended instead of this package). The second is a Customizer Section Button Package that allows theme authors to create a link/button to any URL.</p>\n\n\n\n<p>There are other proposed ideas for packages that require feedback and additional discussion. Want to add your suggestions and thoughts? Join the conversation on the <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">Theme Review team blog</a> and join the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>Development continues on the Gutenberg project, with <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">the latest release</a> including layouts for the Columns block, Snackbar notices, markup improvements, and accessibility upgrades.</li><li>The Community team <a href=\"https://make.wordpress.org/community/2019/06/26/wordcamp-europe-2019-recap-of-community-team-activities-at-contributor-day-plans-for-the-future/\">published the results of their work</a> at the WordCamp Europe contributor day.</li><li>The Polyglots team <a href=\"https://make.wordpress.org/polyglots/2019/06/26/proposal-for-handling-pte-requests/\">has put together a proposal</a> for a new way to handle PTE requests.</li><li>This year’s recipient of the Kim Parsell Memorial Scholarship for WordCamp US <a href=\"https://wordpressfoundation.org/2019/2019-kim-parsell-memorial-scholarship-recipient-carol-gann/\">is Carol Gann</a>.</li><li>The Amurrio WordPress community <a href=\"http://wpamurrio.es/wordpress-amurrio-mega-meetup-i-edition/\">hosted their first “mega meetup”</a> – this is a great event format that bridges the gap between regular meetup event and WordCamp.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7009\";s: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:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.2.2 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jun 2019 18:14:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6993\";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:348:\"WordPress 5.2.2 is now available! This maintenance release fixes 13 bugs and adds a little bit of polish to the Site Health feature that made its debut in 5.2. For more info, browse the full list of changes on Trac or check out the Version 5.2.2 documentation page. WordPress 5.2.2 is a short-cycle maintenance release. The next […]\";s: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:\"marybaum\";s: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:3961:\"\n<p>WordPress 5.2.2 is now available! This maintenance release fixes 13 bugs and adds a little bit of polish to the Site Health feature <a href=\"https://wordpress.org/news/2019/05/jaco/\">that made its debut in 5.2</a>. </p>\n\n\n\n<p>For more info, browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=5.2.2&order=priority\">full list of changes on Trac</a> or check out <a href=\"https://wordpress.org/support/wordpress-version/version-5-2-2/\">the Version 5.2.2 documentation page.</a></p>\n\n\n\n<p>WordPress 5.2.2 is a short-cycle maintenance release. The next major release will be version 5.3; check <a href=\"https://make.wordpress.org/core/\">make.wordpress.org/core</a> for details as they happen. </p>\n\n\n\n<p>You can download <a href=\"https://wordpress.org/download/\">WordPress 5.2.2</a> or visit <strong>Dashboard → Updates</strong> and click <strong>Update Now</strong>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/audrasjb/\">JB Audras</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> and <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> co-led this release, with invaluable guidance from our Executive Director, Josepha Haden Chomphosy, and contributions from 30 other contributors. Thank you to everyone who made this release possible!</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya/\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jitendrabanjara1991/\">jitendrabanjara1991</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shashank3105/\">Shashank Panchal</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">vaishalipanchal</a>, <a href=\"https://profiles.wordpress.org/vrimill/\">vrimill</a>, and <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6993\";s: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:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"The Month in WordPress: May 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/06/the-month-in-wordpress-may-2019/\";s: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, 04 Jun 2019 10:21:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6987\";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:319:\"This month saw the 16th anniversary since the launch of the first release of WordPress. A significant milestone to be sure and one that speaks to the strength and stability of the project as a whole. In this anniversary month, we saw a new major release of WordPress, some exciting new development work, and a […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s: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:6602:\"\n<p>This month saw the 16th anniversary since <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">the launch of the first release of WordPress</a>. A significant milestone to be sure and one that speaks to the strength and stability of the project as a whole. In this anniversary month, we saw a new major release of WordPress, some exciting new development work, and a significant global event.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Release of WordPress 5.2</h2>\n\n\n\n<p>WordPress 5.2 “Jaco” <a href=\"https://wordpress.org/news/2019/05/jaco/\">was released on May 7</a> shipping some useful site management tools, such as the Site Health Check and PHP Error Protection, as well as a number of accessibility, privacy, and developer updates. You can read <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">the field guide for this release</a> for more detailed information about what was included and how it all works.<br></p>\n\n\n\n<p>327 individual volunteers contributed to the release. If you would like to be a part of that number for future releases, follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>A Successful WordPress Translation Day 4</h2>\n\n\n\n<p>WordPress Translation Day is a 24-hour event organised by <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team</a> where community members from all over the world come together to translate WordPress into their local languages. For the fourth edition held on 11 May, 183 brand new contributors joined the Polyglots team from 77 communities across 35 countries in Africa, Asia, Europe, North America, South America, and Oceania.<br></p>\n\n\n\n<p>While the WP Translation Day is a great time for focussed contributions to localizing WordPress, but these contributions can happen at any time of the year, so if you would like to help make WordPress available in your local language, follow <a href=\"https://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Updated Plugin Guidelines Proposal</h2>\n\n\n\n<p>The Plugins team <a href=\"https://make.wordpress.org/plugins/2019/05/14/proposal-to-modify-plugin-guidelines/\">has proposed some updates</a> to the guidelines for developers on the Plugin Directory. The majority of the proposed changes are intended to address significant issues faced by developers who do not speak English as a first language, making the Plugin DIrectory a more accessible and beneficial place for everyone.<br></p>\n\n\n\n<p>The proposal will be open for comments until late June, so the community is encouraged to get involved with commenting on them and the direction they will take the Plugin Directory. If you would like to be involved in this discussion, comment on <a href=\"https://make.wordpress.org/plugins/2019/05/14/proposal-to-modify-plugin-guidelines/\">the proposal</a> and join the #plugin review team in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Continued Gutenberg Development</h2>\n\n\n\n<p>Since the block editor was first released as part of WordPress Core in v5.0, development has continued in leaps and bounds with a new release every two weeks. <a href=\"https://make.wordpress.org/core/2019/05/29/whats-new-in-gutenberg-29th-may/\">The latest update</a> includes some great incremental improvements that will be merged into the 5.2.2 release of WordPress along with the other recent enhancements.<br></p>\n\n\n\n<p>In addition to the editor enhancements, work has been ongoing in the Gutenberg project to bring the block editing experience to the rest of the WordPress dashboard. This second phase of the project has been going well and <a href=\"https://make.wordpress.org/design/2019/05/31/gutenberg-phase-2-friday-design-update-20/\">the latest update</a> shows how much work has been done so far.<br></p>\n\n\n\n<p>In addition to that, the Block Library project that aims to bring a searchable library of available blocks right into the editor is deep in the planning phase with <a href=\"https://make.wordpress.org/design/2019/05/28/block-library-initial-explorations/\">a recent update</a> showing what direction the team is taking things.<br></p>\n\n\n\n<p>If you would like to get involved in planning and development of Gutenberg and the block editor, follow the <a href=\"https://make.wordpress.org/core/\">Core</a> and <a href=\"https://make.wordpress.org/design/\">Design</a> team blogs and join the #core, #design, and #core-editor channels in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The 5.2.2 release of WordPress <a href=\"https://make.wordpress.org/core/2019/05/28/5-2-2-release-agenda/\">is currently in development</a> with a planned release date of 13 June.</li><li>Version 2.1.1 of the WordPress Coding Standards <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/2.1.1\">has been released</a> containing seven small, but relevant fixes.</li><li>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2019/05/07/trusted-authors-changes/\">have updated the details</a> of how the Trusted Authors Program works.</li><li><a href=\"https://make.wordpress.org/community/2019/05/29/who-wants-to-test-the-new-wordcamp-blocks/\">WordCamp-specific blocks have been launched for WordCamp sites</a> with organizers needing to sign up in order to test them out.</li><li>Continuing the growing trend of other platforms adopting the Gutenberg editor, it has now <a href=\"https://octobercms.com/plugin/reazzon-gutenberg\">been ported to a plugin for OctoberCMS</a>.</li><li>Version 3.0 of the popular WordPress development environment, Varying Vagrant Vagrants (VVV), <a href=\"https://varyingvagrantvagrants.org/blog/2019/05/15/vvv-3-0-0.html\">was released this month</a>.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2019/05/31/the-4-gets-in-wordpress-community-organizing/\">published some info</a> clarifying what organizers get (and don’t get) from being involved with their local communities. </li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6987\";s: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:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.2.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/05/wordpress-5-2-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 May 2019 19:04:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"5.2.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6976\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:405:\"WordPress 5.2.1 is now available! This maintenance release fixes 33 bugs, including improvements to the block editor, accessibility, internationalization, and the Site Health feature introduced in 5.2. You can browse the full list of changes on Trac. WordPress 5.2.1 is a short-cycle maintenance release. Version 5.2.2 is expected to follow in approximately two weeks. You can download […]\";s: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:\"Jonathan Desrosiers\";s: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:4923:\"\n<p>WordPress 5.2.1 is now available! This maintenance release fixes 33 bugs, including improvements to the block editor, accessibility, internationalization, and the Site Health feature <a href=\"https://wordpress.org/news/2019/05/jaco/\">introduced in 5.2</a>.</p>\n\n\n\n<p>You can browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=5.2.1&order=priority\">full list of changes on Trac</a>.</p>\n\n\n\n<p>WordPress 5.2.1 is a short-cycle maintenance release. <a href=\"https://core.trac.wordpress.org/query?milestone=5.2.2\">Version 5.2.2</a> is expected to follow in approximately two weeks.</p>\n\n\n\n<p>You can download <a href=\"https://wordpress.org/download/\">WordPress 5.2.1</a> or visit <strong>Dashboard → Updates</strong> and click <strong>Update Now</strong>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Jonathan Desrosiers and William Earnhardt co-led this release, with contributions from 52 other contributors. Thank you to everyone that made this release possible!</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey “Rarst” Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/anischarolia/\">anischarolia</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/chesio/\">chesio</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/odminstudios/\">Dima</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/edocev/\">Emil Dotsev</a>, <a href=\"https://profiles.wordpress.org/sachyya-sachet/\">ghoul</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Grzegorz (Greg) Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mikengarrett/\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/onlanka/\">onlanka</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">paragoninitiativeenterprises</a>, <a href=\"https://profiles.wordpress.org/parkcityj/\">parkcityj</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tonybogdanov/\">tonybogdanov</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, and <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6976\";s: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:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Tomorrow is WordPress Translation Day 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:75:\"https://wordpress.org/news/2019/05/tomorrow-is-wordpress-translation-day-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:\"Fri, 10 May 2019 09:17:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6961\";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:342:\"The fourth edition of WordPress translation day is coming up on Saturday 11 May 2019: tomorrow! Get ready for a 24-hour, global marathon dedicated to localizing the WordPress platform and ecosystem. This event takes place both online and in physical locations across the world, so you can join no matter where you are! The 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s: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:3747:\"\n<p><em>The fourth edition of WordPress translation day is coming up on Saturday 11 May 2019: tomorrow! Get ready for a 24-hour, global marathon dedicated to localizing the WordPress platform and ecosystem.</em> <em>This event takes place both online and in physical locations across the world, so you can join no matter where you are! </em></p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/polyglots/\">WordPress Polyglots Team</a> has a mission to translate and make available the software’s features into as many languages as possible. As WordPress powers more than 33% of websites, people from across the world use it in their daily life. That means there is a lot that needs translating, and into many different languages. </p>\n\n\n\n<p>On 11 May 2019, from 00:00 UTC until 23:59 UTC, <a href=\"https://wptranslationday.org/\">WordPress Translation Day</a> aims to celebrate the thousands of volunteers who contribute to translation and internalization. The event is also an opportunity for encouraging more people to get involved and help increase the availability of themes and plugins in different languages.</p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>“At the time of the last event in 2017, WordPress was being translated into 178 languages, we have now reached the 200 mark!”</p><cite>WPtranslationday.org</cite></blockquote></figure>\n\n\n\n<h2>What happens on WordPress Translation Day?</h2>\n\n\n\n<p>There are a number of <a href=\"https://wptranslationday.org/the-local-events/\">local meetings all over the world</a>, as well as online talks by people from the WordPress community. More than 700 people from around the world took part in past WordPress Translation Days, and everyone welcome to join in this time around!</p>\n\n\n\n<p>Everyone is welcome to join the event to help translate and localize WordPress, no matter their level of experience. A lot is happening on the day, so join in and you will learn how to through online sessions!</p>\n\n\n\n<h3>What can you expect?</h3>\n\n\n\n<ul><li><strong>Live online training</strong>: Tutorials in different languages focused on translation and <em>localization</em>, or l10n, of WordPress. These are streamed in multiple languages</li><li><strong>Localization sessions</strong>: General instruction and specifics for particular areas and languages. These sessions are streamed in multiple languages.</li><li><strong>Internalization sessions</strong>: Tutorials about optimizing the code to ease localization processes, also called <em>internationalization</em> or i18n. These sessions are streamed in English.</li><li><strong>Local events</strong>: Polyglot contributors will gather around the world for socializing, discussing, and translating together.</li><li><strong>Remote events</strong>: Translation teams that cannot gather physically, will connect remotely. They will be available for training, mentoring, and supporting new contributors. They will also engage in “translating marathons”, in which existing teams translate as many strings as they can!</li></ul>\n\n\n\n<p>A number of experienced WordPress translators and internationalization experts are part of the line-up for the livestream, joined by some first time contributors. </p>\n\n\n\n<p>Whether you have or haven’t contributed to the Polyglots before, you can join in for WordPress Translation Day. Learn more about both local and online events and stay updated through the website and social media. </p>\n\n\n\n<ul><li><a href=\"https://wptranslationday.org/\">WordPress Translation Day website</a></li><li><a href=\"https://twitter.com/translatewp\">WordPress Translation Day Twitter</a></li><li><a href=\"https://www.facebook.com/WPTranslationDay/\">WordPress Translation Day Facebook</a></li></ul>\n\";s: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:\"6961\";s: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:48:\"\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:24:\"WordPress 5.2 “Jaco”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2019/05/jaco/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 May 2019 21:03:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6925\";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:426:\"Version 5.2 of WordPress is available for download or update in your WordPress dashboard. New features in this update make it easier than ever to fix your site if something goes wrong. There are even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:32081:\"\n<h2 style=\"text-align:center\">Keeping Sites Safer</h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?fit=632%2C500&ssl=1\" alt=\"\" class=\"wp-image-6926\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?w=1206&ssl=1 1206w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?resize=300%2C237&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?resize=768%2C608&ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?resize=1024%2C810&ssl=1 1024w\" sizes=\"(max-width: 632px) 100vw, 632px\" /></figure>\n\n\n\n<p>Version 5.2 of WordPress, named “Jaco” in honor of renowned and revolutionary jazz bassist Jaco Pastorius, is available for download or update in your WordPress dashboard. New features in this update make it easier than ever to fix your site if something goes wrong.</p>\n\n\n\n<p>There are even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3>Site Health Check</h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?resize=205%2C143&ssl=1\" alt=\"\" class=\"wp-image-6927\" width=\"205\" height=\"143\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?w=609&ssl=1 609w, https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?resize=300%2C210&ssl=1 300w\" sizes=\"(max-width: 205px) 100vw, 205px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Building on the <a href=\"https://wordpress.org/news/2019/02/betty/\">Site Health</a> features introduced in 5.1, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.</p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h3>PHP Error Protection</h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?resize=202%2C228&ssl=1\" alt=\"\" class=\"wp-image-6930\" width=\"202\" height=\"228\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?w=487&ssl=1 487w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?resize=267%2C300&ssl=1 267w\" sizes=\"(max-width: 202px) 100vw, 202px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>This administrator-focused update will let you safely fix or manage fatal errors without requiring developer time. It features better handling of the so-called “white screen of death,” and a way to enter recovery mode, which pauses error-causing plugins or themes.</p>\n\n\n\n<div style=\"height:79px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Improvements for Everyone</h2>\n\n\n\n<h3>Accessibility Updates</h3>\n\n\n\n<p>A number of changes work together to improve contextual awareness and keyboard navigation flow for those using screen readers and other assistive technologies.</p>\n\n\n\n<h3>New Dashboard Icons</h3>\n\n\n\n<p>Thirteen new icons including Instagram, a suite of icons for BuddyPress, and rotated Earth icons for global inclusion. Find them in the Dashboard and have some fun!</p>\n\n\n\n<h3>Plugin Compatibility Checks</h3>\n\n\n\n<p>WordPress will now automatically determine if your site’s version of PHP is compatible with installed plugins. If the plugin requires a higher version of PHP than your site currently uses, WordPress will not allow you to activate it, preventing potential compatibility errors.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Developer Happiness</h2>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/03/26/coding-standards-updates-for-php-5-6/\"><strong>PHP Version Bump</strong></a><strong> </strong></p>\n\n\n\n<p>The minimum supported PHP version is now 5.6.20. As of WordPress 5.2*, themes and plugins can safely take advantage of namespaces, anonymous functions, and more!</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/\"><strong>Privacy Updates</strong></a><strong> </strong></p>\n\n\n\n<p>A new theme page template, a conditional function, and two CSS classes make designing and customizing the Privacy Policy page easier.</p>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><strong><a href=\"https://make.wordpress.org/core/2019/04/24/miscellaneous-developer-updates-in-5-2/\">New Body Hook</a> </strong></p>\n\n\n\n<p>5.2 introduces a wp_body_open hook, which lets themes support injecting code right at the beginning of the <body> element.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/03/25/building-javascript/\"><strong>Building JavaScript</strong></a></p>\n\n\n\n<p>With the addition of webpack and Babel configurations in the wordpress/scripts package, developers won’t have to worry about setting up complex build tools to write modern JavaScript.</p>\n</div>\n</div>\n\n\n\n<p><em>*If you are running an old version of PHP (less than 5.6.20), <a href=\"https://wordpress.org/support/update-php/\">update your PHP</a> before installing 5.2.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a>, and <a href=\"https://pento.net/\">Gary Pendergast</a>. They were graciously supported by 327 generous volunteer contributors. Load a Jaco Pastorius playlist on your favorite music service and check out some of their profiles:</p>\n\n\n<a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamsoucie/\">Adam Soucie</a>, <a href=\"https://profiles.wordpress.org/oztaser/\">Adil Öztaşer</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aldavigdis/\">Alda Vigdís</a>, <a href=\"https://profiles.wordpress.org/alexdenning/\">Alex Denning</a>, <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/viper007bond/\">Alex Mills</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/lexiqueen/\">Alexis</a>, <a href=\"https://profiles.wordpress.org/alexislloyd/\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/arena/\">Andr?</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">andraganescu</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/euthelup/\">Andrei Lupu</a>, <a href=\"https://profiles.wordpress.org/aandrewdixon/\">Andrew Dixon</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">Andrés Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a>, <a href=\"https://profiles.wordpress.org/anischarolia/\">anischarolia</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/vanyukov/\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/avillegasn/\">Antonio Villegas</a>, <a href=\"https://profiles.wordpress.org/antonypuckey/\">antonypuckey</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/wpboss/\">Aslam Shekh</a>, <a href=\"https://profiles.wordpress.org/axaak/\">axaak</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/britner/\">Ben Ritner - Kadence Themes</a>, <a href=\"https://profiles.wordpress.org/bfintal/\">Benjamin Intal</a>, <a href=\"https://profiles.wordpress.org/billerickson/\">Bill Erickson</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson</a>, <a href=\"https://profiles.wordpress.org/bodohugobarwich/\">Bodo (Hugo) Barwich</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chiaralovelaces/\">Chiara Magnani</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/dswebsme/\">D.S. Webster</a>, <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier</a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davefx/\">DaveFX</a>, <a href=\"https://profiles.wordpress.org/davetgreen/\">davetgreen</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/david.binda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dgroddick/\">David Roddick</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/valendesigns/\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30/\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/designsimply/\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dhanukanuwan/\">Dhanukanuwan</a>, <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane</a>, <a href=\"https://profiles.wordpress.org/diegoreymendez/\">diegoreymendez</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/odminstudios/\">Dima</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency/\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/iamdmitrymayorov/\">Dmitry Mayorov</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsifford/\">dsifford</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">EcoTechie</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">Eduardo Toledo</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/edocev/\">Emil Dotsev</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">fabiankaegy</a>, <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/parsmizban/\">Farhad Sakhaei</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/peaceablewhale/\">Franklin Tse</a>, <a href=\"https://profiles.wordpress.org/fuegas/\">Fuegas</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/sachyya-sachet/\">ghoul</a>, <a href=\"https://profiles.wordpress.org/girishpanchal/\">Girish Panchal</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/gutendev/\">GutenDev <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/270d.png\" alt=\"✍\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/3299.png\" alt=\"㊙\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></a>, <a href=\"https://profiles.wordpress.org/gwwar/\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hannahmalcolm/\">Hannah Malcolm</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara/\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a>, <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a>, <a href=\"https://profiles.wordpress.org/henrywright-1/\">Henry</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/ryanshoover/\">Hoover</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ice9js/\">ice9js</a>, <a href=\"https://profiles.wordpress.org/zinigor/\">Igor Zinovyev</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/ixium/\">Ixium</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a>, <a href=\"https://profiles.wordpress.org/cc0a/\">James</a>, <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya/\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/jarred-kennedy/\">Jarred Kennedy</a>, <a href=\"https://profiles.wordpress.org/vengisss/\">Javier Villanueva</a>, <a href=\"https://profiles.wordpress.org/jayupadhyay01/\">Jay Upadhyay</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami/\">Jaydip Rami</a>, <a href=\"https://profiles.wordpress.org/parkcityj/\">Jaye Simons</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/jdeeburke/\">jdeeburke</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid/\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/miss_jwo/\">Jenny Wong</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/endocreative/\">Jeremy Green</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jitendrabanjara1991/\">jitendrabanjara1991</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk/\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathandejong/\">Jonathandejong</a>, <a href=\"https://profiles.wordpress.org/joneiseman/\">joneiseman</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnybojangles/\">jonnybojangles</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/keraweb/\">Jory Hogeveen</a>, <a href=\"https://profiles.wordpress.org/jcastaneda/\">Jose Castaneda</a>, <a href=\"https://profiles.wordpress.org/josephwa/\">josephwa</a>, <a href=\"https://profiles.wordpress.org/builtbynorthby/\">Josh Feck</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jplojohn/\">jplo</a>, <a href=\"https://profiles.wordpress.org/jrtashjian/\">JR Tashjian</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/juiiee8487/\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/juliarrr/\">juliarrr</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kamataryo/\">KamataRyo</a>, <a href=\"https://profiles.wordpress.org/karinedo/\">Karine Do</a>, <a href=\"https://profiles.wordpress.org/katyatina/\">Katyatina</a>, <a href=\"https://profiles.wordpress.org/kelin1003/\">Kelin Chauhan</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/itzmekhokan/\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/killua99/\">killua99</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/olein/\">Koji Kuno</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/codemascot/\">Kʜᴀɴ (ಠ_ಠ)</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lkraav/\">lkraav</a>, <a href=\"https://profiles.wordpress.org/lovingboth/\">lovingboth</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lgedeon/\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway/\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">Maciej Palmowski</a>, <a href=\"https://profiles.wordpress.org/maedahbatool/\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/malae/\">Malae</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/robobot3000/\">Marcin</a>, <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a>, <a href=\"https://profiles.wordpress.org/marcofernandes/\">Marco Fernandes</a>, <a href=\"https://profiles.wordpress.org/marco-peralta/\">Marco Peralta</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">marekhrabe</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/mbelchev/\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markcallen/\">markcallen</a>, <a href=\"https://profiles.wordpress.org/mechter/\">Markus Echterhoff</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a>, <a href=\"https://profiles.wordpress.org/mattnyeus/\">mattnyeus</a>, <a href=\"https://profiles.wordpress.org/mdwolinski/\">mdwolinski</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mheikkila/\">mheikkila</a>, <a href=\"https://profiles.wordpress.org/wpscholar/\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/michelleweber/\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mmtr86/\">Miguel Torres</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mauteri/\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel [WPLib Box project lead]</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeselander/\">Mike Selander</a>, <a href=\"https://profiles.wordpress.org/mikengarrett/\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">mirka</a>, <a href=\"https://profiles.wordpress.org/lord_viper/\">Mobin Ghasempoor</a>, <a href=\"https://profiles.wordpress.org/mohadeseghasemi/\">Mohadese Ghasemi</a>, <a href=\"https://profiles.wordpress.org/saimonh/\">Mohammed Saimon</a>, <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/mmuhsin/\">Muhammad Muhsin</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/m_uysl/\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/mzorz/\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nfmohit/\">Nahid Ferdous Mohit</a>, <a href=\"https://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a>, <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/neobabis/\">Neokazis Charalampos</a>, <a href=\"https://profiles.wordpress.org/modernnerd/\">Nick Cernis</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels</a>, <a href=\"https://profiles.wordpress.org/nielsdeblaauw/\">Niels de Blaauw</a>, <a href=\"https://profiles.wordpress.org/nnikolov/\">Nikolay Nikolov</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/ninio/\">ninio</a>, <a href=\"https://profiles.wordpress.org/notnownikki/\">notnownikki</a>, <a href=\"https://profiles.wordpress.org/bulletdigital/\">Oliver Sadler</a>, <a href=\"https://profiles.wordpress.org/onlanka/\">onlanka</a>, <a href=\"https://profiles.wordpress.org/pandelisz/\">pandelisz</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/peterbooker/\">Peter Booker</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pfiled/\">pfiled</a>, <a href=\"https://profiles.wordpress.org/pilou69/\">pilou69</a>, <a href=\"https://profiles.wordpress.org/pranalipatel/\">Pranali Patel</a>, <a href=\"https://profiles.wordpress.org/pratikthink/\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pratikkry/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"https://profiles.wordpress.org/punit5658/\">Punit Patel</a>, <a href=\"https://profiles.wordpress.org/bamadesigner/\">Rachel Cherry</a>, <a href=\"https://profiles.wordpress.org/rahmon/\">Rahmon</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramizmanked/\">Ramiz Manked</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/rinatkhaziev/\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rsusanto/\">Rudy Susanto</a>, <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/saeedfard/\">Saeed Fard</a>, <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/salar6990/\">Salar Gholizadeh</a>, <a href=\"https://profiles.wordpress.org/samanehmirrajabi/\">Samaneh Mirrajabi</a>, <a href=\"https://profiles.wordpress.org/samikeijonen/\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/elhardoum/\">Samuel Elh</a>, <a href=\"https://profiles.wordpress.org/sgarza/\">Santiago Garza</a>, <a href=\"https://profiles.wordpress.org/saracope/\">Sara Cope</a>, <a href=\"https://profiles.wordpress.org/saracup/\">saracup</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Scott Arciszewski</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/ebrahimzadeh/\">Sekineh Ebrahimzadeh</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/sgastard/\">sgastard</a>, <a href=\"https://profiles.wordpress.org/sharifkiberu/\">sharifkiberu</a>, <a href=\"https://profiles.wordpress.org/shashank3105/\">Shashank Panchal</a>, <a href=\"https://profiles.wordpress.org/shazdeh/\">shazdeh</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/sky_76/\">sky_76</a>, <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sudar/\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/sudhiryadav/\">Sudhir Yadav</a>, <a href=\"https://profiles.wordpress.org/szepeviktor/\">szepe.viktor</a>, <a href=\"https://profiles.wordpress.org/miyauchi/\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/themonic/\">Themonic</a>, <a href=\"https://profiles.wordpress.org/thomstark/\">thomstark</a>, <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith/\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hedgefield</a>, <a href=\"https://profiles.wordpress.org/timwright12/\">Tim Wright</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/ohiosierra/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tomharrigan/\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/tonybogdanov/\">tonybogdanov</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/liljimmi/\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/umang7/\">Umang Bhanvadia</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/vrimill/\">vrimill</a>, <a href=\"https://profiles.wordpress.org/webfactory/\">WebFactory</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/bahia0019/\">William \'Bahia\' Bay</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/willscrlt/\">Willscrlt</a>, <a href=\"https://profiles.wordpress.org/wolly/\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wrwrwr0/\">wrwrwr0</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, and <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>.\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Also, many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time or since the first release. These releases are more successful for their efforts!</p>\n\n\n\n<p>If you want learn more about volunteering with WordPress, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> or the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</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:\"6925\";s: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:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.2 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/05/wordpress-5-2-rc2/\";s: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, 02 May 2019 16:17: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:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6914\";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:\"The second release candidate for WordPress 5.2 is now available! WordPress 5.2 will be released on Tuesday, May 7, but we need your help to get there—if you haven’t tried 5.2 yet, now is the time! There are two ways to test the WordPress 5.2 release candidate: try the WordPress Beta Tester plugin (you’ll want […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2472:\"\n<p>The second release candidate for WordPress 5.2 is now available!</p>\n\n\n\n<p>WordPress 5.2 will be released on <strong><a href=\"https://make.wordpress.org/core/5-2/\">Tuesday, May 7</a></strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.2 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.2 release candidate: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-RC2.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.2, please see the <a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>This release includes the final About page design. It also contains fixes for:</p>\n\n\n\n<ul><li>Proper translation of the recovery mode notification emails (#47093).</li><li>Improvements to the way Site Health works with multisite installs (#47084).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.2 and update the <em>Tested up to</em> version in the readme to 5.2. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">WordPress 5.2 Field Guide</a> has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>It’s the start of May<br>and the release is coming.<br>We all give a cheer!</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:\"6914\";s: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:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: April 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2019/05/the-month-in-wordpress-april-2019/\";s: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, 02 May 2019 09:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6918\";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:324:\"This past month has been filled with anticipation as the community builds up towards a big new release, plans some important events, and builds new tools to grow the future of the project. WordPress 5.2 Almost Due for Release WordPress 5.2 is due for release on May 7 with many new features included for developers […]\";s: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:\"Hugh Lashbrooke\";s: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:8386:\"\n<p>This past month has been filled with anticipation as the community builds up towards a big new release, plans some important events, and builds new tools to grow the future of the project.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2 Almost Due for Release</h2>\n\n\n\n<p>WordPress 5.2 is due for release on May 7 with many new features included for developers and end-users alike. <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">The Field Guide for the release</a> provides a lot of information about what is in it and what you can expect, including a few key elements:</p>\n\n\n\n<h3>Site Health Check</h3>\n\n\n\n<p>One of the most highly anticipated features for v5.2 is <a href=\"https://make.wordpress.org/core/2019/04/25/site-health-check-in-5-2/\">the Site Health Check</a>. This feature adds two new pages in the admin interface to help end users maintain a healthy site through common configuration issues and other elements that go along with having a robust online presence. It also provides a standardized location for developers to add debugging information.</p>\n\n\n\n<h3>Fatal Error Recovery Mode</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/04/16/fatal-error-recovery-mode-in-5-2/\">The Fatal Error Recovery Mode feature</a> was originally planned for the 5.1 release but was delayed to patch up some last-minute issues that arose. This feature will help site-owners recover more quickly from fatal errors that break the display or functionality of their site that would ordinarily require code or database edits to fix.</p>\n\n\n\n<h3>Privacy and Accessibility Updates</h3>\n\n\n\n<p>Along with the headlining features mentioned above, there are some important enhancements to the privacy and accessibility features included in Core. These include <a href=\"https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/\">some important developer-focused changes</a> to how privacy policy pages are displayed and user data is exported, as well as <a href=\"https://make.wordpress.org/core/2019/04/02/admin-tabs-semantic-improvements-in-5-2/\">moving to more semantic markup for admin tabs</a> and <a href=\"https://make.wordpress.org/core/2019/04/24/notable-accessibility-changes-in-5-2/\">other improvements</a> such as switching post format icons to drop-down menus on post list tables, improved admin toolbar markup, and contextual improvements to archive widget drop-down menu.</p>\n\n\n\n<h3>New Dashicons</h3>\n\n\n\n<p>The <a href=\"https://developer.wordpress.org/resource/dashicons/\">Dashicons</a> library was last updated was over 3 years ago. Now, in the upcoming release, <a href=\"https://make.wordpress.org/core/2019/04/11/dashicons-in-wordpress-5-2/\">a set of 13 new icons will be added to the library</a> along with improvements to the build process and file format of the icons.</p>\n\n\n\n<h3>Block Editor Upgrades</h3>\n\n\n\n<p>The Block Editor has seen <a href=\"https://make.wordpress.org/core/2019/04/17/whats-new-in-gutenberg-17th-april/\">numerous improvements</a> lately that will all be included in the v5.2 release. Along with the interface upgrades, the underlying Javascript module <a href=\"https://make.wordpress.org/core/2019/04/09/the-block-editor-javascript-module-in-5-2/\">has been reorganized</a>, improvements have been made to <a href=\"https://make.wordpress.org/core/2019/04/17/block-editor-detection-improvements-in-5-2/\">how the block editor is detected</a> on the post edit screen, and <a href=\"https://make.wordpress.org/core/2019/03/25/building-javascript/\">the Javascript build process has been enhanced</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\">WordPress 5.2 is now in the Release Candidate phase</a> and you can test it by installing <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the Beta Tester plugin</a> on any WordPress site.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress Translation Day 4 is Almost Here</h2>\n\n\n\n<p>On 11 May 2019, <a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">the fourth WordPress Translation Day</a> will take place. This is a 24-hour global event dedicated to the translation of all things WordPress, from Core to themes, plugins to marketing.</p>\n\n\n\n<p>Over the course of 24 hours, WordPress communities will meet to translate WordPress into their local languages and watch talks and sessions broadcast on <a href=\"https://wptranslationday.org/\">wptranslationday.org</a>. During the previous WordPress Translation Day, 71 local events took place in 29 countries, and even more communities are expected to take part this time.</p>\n\n\n\n<p>Want to get involved in WordPress Translation Day 4? Find out <a href=\"https://make.wordpress.org/community/2019/03/22/global-wordpress-translation-day-4-info-for-event-organizers/\">how to organize a local event</a>, follow the updates on <a href=\"https://make.wordpress.org/polyglots/tag/gwtd4/\">the Polyglots team blog</a>, and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Block Library Project Gets Started</h2>\n\n\n\n<p>Since <a href=\"https://make.wordpress.org/meta/2019/03/08/the-block-directory-and-a-new-type-of-plugin/\">the initial proposal</a> for a Block Library that would be made available from inside the block editor, work has been done to put together <a href=\"https://make.wordpress.org/design/2019/04/02/call-for-design-installing-blocks-from-within-gutenberg/\">some designs</a> for how this would look. Since then the project has received a more direct focus with <a href=\"https://make.wordpress.org/design/2019/04/26/block-library-installing-blocks-from-within-gutenberg/\">a planned out scope and timeline</a>.</p>\n\n\n\n<p>The project is being managed <a href=\"https://github.com/WordPress/block-directory/projects/1\">on GitHub</a> and people interested in contributing are encouraged to get involved there. You can also keep up to date by following <a href=\"https://make.wordpress.org/design/\">the Design team blog</a> and joining the #design channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The results from the 5.0 release retrospective survey <a href=\"https://make.wordpress.org/updates/2019/04/26/5-0-release-retrospective-wrap-up/\">have been published</a> – this is the first time this kind of open retrospective has been done for a WordPress release and the results provide valuable insight into the project and its contributors.</li><li>The team behind the WordPress Coding Standards <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/2.1.0\">has released version 2.1</a>, including some very useful new sniffs.</li><li>The community <a href=\"https://make.wordpress.org/community/2019/04/18/the-get-involved-table-at-wceu-2019/\">is looking for volunteers for the Get Involved table</a> at WordCamp Europe on 20-22 June.</li><li>Gutenberg has been ported <a href=\"https://github.com/VanOns/laraberg/\">for use within the Laravel framework</a> in a project dubbed Laraberg.</li><li>The 2019 WordCamp for Publishers event <a href=\"https://2019-columbus.publishers.wordcamp.org/2019/04/12/call-for-speakers/\">has opened its call for speakers</a>.</li><li>The Gutenberg team <a href=\"https://github.com/WordPress/gutenberg/blob/add/blocks-in-widget-areas-rfc/docs/rfcs/blocks-in-widget-areas.md\">has published an RFC</a> regarding blocks being used in widgets.</li><li>WordCamp Europe, taking place on 20-22 June, has published <a href=\"https://2019.europe.wordcamp.org/schedule/\">the schedule for the event</a>.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2019/04/18/2018-meetup-survey/\">has published the results</a> of the 2018 meetup group survey.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6918\";s: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:51:\"\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:31:\"WordPress 5.2 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\";s: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, 26 Apr 2019 01:28:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6909\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"The first release candidate for WordPress 5.2 is now available! This is an important milestone as we progress toward the WordPress 5.2 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.2 is scheduled to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3117:\"\n<p>The first release candidate for WordPress 5.2 is now available!</p>\n\n\n\n<p>This is an important milestone as we progress toward the WordPress 5.2 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.2 is scheduled to be released on <strong>Tuesday, May 7</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.2 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.2 release candidate: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-RC1.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<h2>What’s in WordPress 5.2?</h2>\n\n\n\n<p>Continuing with the theme from the last release, WordPress 5.2 gives you even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.</p>\n\n\n\n<p>The Site Health Check and PHP Error Protection tools have brand new features, giving you peace of mind if you discover any issues with plugins or themes on your site. There are also updates to the icons available in your dashboard, fresh accessibility considerations for anyone using assistive technologies and more.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.2 and update the <em>Tested up to</em> version in the readme to 5.2. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">WordPress 5.2 Field Guide</a> has also been published, which goes into the details of the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.2 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Howdy, RC 1!<br>With tools this interesting,<br>I can hardly wait.</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:\"6909\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 19 Jul 2019 11:25:45 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Fri, 12 Jul 2019 20:20:46 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20180206170026\";}','no'),(329,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1563578745','no'),(330,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1563535545','no'),(331,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1563578745','no'),(332,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: All-in-One WP Migration 7.0 Patches XSS Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91751\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/all-in-one-wp-migration-7-0-patches-xss-vulnerability\";s: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:1513:\"<p>Those who use the <a href=\"https://wordpress.org/plugins/all-in-one-wp-migration/\">All-in-One WP Migration</a> plugin are encouraged to update to version 7.0 as soon as possible as 6.97 contains an admin backend cross-site-scripting vulnerability. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>An attacker would already have to be able to either compromise the database or gain access to a user account with high enough privileges to view the backup history, so some damage has already been done, but such an attacker could then also insert some XSS in order to compromise other admin users. </p><p>When double-clicking the backup description on the backup history overview page, in order to edit the description text, the text is not sanitized/escaped via html entities when generating the input field.</p><cite><a href=\"https://wpvulndb.com/vulnerabilities/9461\">Vulnerability Report</a></cite></blockquote>\n\n\n\n<p>Version 7.0 was released on the plugin directory about a day ago and patches the vulnerability. According to the stats on the WordPress plugin directory, All-in-One WP Migration is actively installed on more than two million sites. </p>\n\n\n\n<p>A proof of concept will be published on July 24th which gives site owners about a week to update. Unfortunately, users who view the changelog prior to updating will not be able to determine it patches a security issue due to the patch being labeled as <a href=\"https://wordpress.org/plugins/all-in-one-wp-migration/#developers\">a general fix</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Jul 2019 21:19:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: WPWeekly Episode 360 – CBD and E-Commerce With Javier Cano\";s:7:\"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:59:\"https://wptavern.com/?p=91730&preview=true&preview_id=91730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wpweekly-episode-360-cbd-and-e-commerce-with-javier-cano\";s: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:1247:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://www.liquidweb.com/blog/author/jcano/\">Javier Cano</a>, Director of Marketing for Liquid Web. We discuss the challenges people are facing selling CBD products on e-commerce platforms such as Shopify and WooCommerce and what Liquid Web is doing to be an ally to the industry. We also talk about high-risk payment processors and the brick and mortar approach versus selling high-risk products online. Cano also shares his experiences from attending and speaking at recent CBD expos.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 24th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #360:</strong><br />\n</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, 18 Jul 2019 01:46:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"HeroPress: History and Future of Kids Heroes in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2926\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:166:\"https://heropress.com/essays/history-and-future-of-kids-heroes-in-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=history-and-future-of-kids-heroes-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12088:\"<img width=\"560\" height=\"315\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/07/WordPress-and-its-surrounding-communities-have-the-opportunity-to-change-the-lives-of-kids-all-over-the-world..png\" class=\"attachment-large size-large wp-post-image\" alt=\"\" /><p>Kids events are not a new thing in the WordCamp and WordPress event space, however, the number of these events happening around the world are on the rise. Kids events focus on teaching children how to become content creators, creative thinkers, and even business owners. Numerous repeat attendees have morphed their personal blogs into businesses and these kids are only 8-13 years old. Kids events provide an opportunity for local communities to foster long term community growth. These events also offer opportunities for a more diverse event in that kids bring a new perspective to any event. WordPress and its surrounding communities have the opportunity to change the lives of kids all over the world.</p>\n<h2>History of Kids Events</h2>\n<p>The history of Kids Events is full of many Heroes who have worked tirelessly to ensure that children in our community are included in events. Most of these events happen in tandem with WordCamps, but that is not always the case. Here is the history of most of the Kids Events and the Heroes behind them.</p>\n<ul>\n<li>2010-03-06 – Kilkenny, Ireland – Sabrina Dent<a href=\"https://www.krishna.me/wordcamp-ireland-in-kilkenny-has-its-own-kids-camp/\"> https://www.krishna.me/wordcamp-ireland-in-kilkenny-has-its-own-kids-camp/</a></li>\n<li>2011-01-29 – Phoenix, AZ – Abbie Sanderson<a href=\"https://2015.dfw.wordcamp.org/2015/07/06/announcing-wordcamp-for-kids/\"> https://2015.dfw.wordcamp.org/2015/07/06/announcing-wordcamp-for-kids/</a></li>\n<li>2013-01-20 – Phoenix – Natalie MacLees<a href=\"https://2013.phoenix.wordcamp.org/schedule/sunday/\"> https://2013.phoenix.wordcamp.org/schedule/sunday/</a></li>\n<li>2013-04-06 – Miami</li>\n<li>2014-05-11 – Miami – Tammy Lister and Sarah Gooding <a href=\"https://2014.miami.wordcamp.org/wordcamp-miami-kids-workshop/\"> https://2014.miami.wordcamp.org/wordcamp-miami-kids-workshop/</a></li>\n<li>2014-01-19 – Phoenix – Bernice Lee and Andy Christian<a href=\"https://2014.phoenix.wordcamp.org/session/wordcamp-kids/\"> https://2014.phoenix.wordcamp.org/session/wordcamp-kids/</a></li>\n<li>2014-03-15 – Atlanta – Syed Balkhi, Sara Cannon, Micah Wood, and Russell Fair <a href=\"https://2014.atlanta.wordcamp.org/kidscamp-atlanta/\"> https://2014.atlanta.wordcamp.org/kidscamp-atlanta/</a></li>\n<li>2015-03-15 – St Louis – Russell Fair, Chris Koerner, Lucas Lima, Eric Juden, Michele Butcher-Jones <a href=\"https://2015.stlouis.wordcamp.org/session/kids-camp/\">https://2015.stlouis.wordcamp.org/session/kids-camp/</a></li>\n<li>2015-03-27 – Atlanta, GA – Russell Fair<a href=\"https://2015.atlanta.wordcamp.org/\"> https://2015.atlanta.wordcamp.org/</a></li>\n<li>2015-05-31 – Miami FL Nikhil V, Sarrah Vesselov, Shawn Hooper and Michele Butcher-Jones. <a href=\"https://2015.miami.wordcamp.org/wordcamp-for-kids-tickets-now-available/\">https://2015.miami.wordcamp.org/wordcamp-for-kids-tickets-now-available/</a></li>\n<li>2016-02-20 – Miami, FL – Sandy Edwards, Kimberly Lipari, Michele Butcher-Jones, Shawn Hooper, and Chris Christoff https://2016.miami.wordcamp.org/2016/02/05/details-on-weekend-kids-activities/#workshop</li>\n<li>2016-09-26 – Dallas/Ft. Worth, TX –<a href=\"https://2015.dfw.wordcamp.org/2015/07/06/announcing-wordcamp-for-kids/\"> https://2015.dfw.wordcamp.org/2015/07/06/announcing-wordcamp-for-kids/</a></li>\n<li>2016-10-29 – Seattle –<a href=\"https://2016.seattle.wordcamp.org/speaker/nichole-betterley/\"> Nichole Betterley</a> –<a href=\"https://2016.seattle.wordcamp.org/session/kidscamp/\"> https://2016.seattle.wordcamp.org/session/kidscamp/</a></li>\n<li>2017-03-18 – Atlanta, GA – Sandy Edwards<a href=\"https://2017.atlanta.wordcamp.org/2017/01/28/kids-camp/\"> https://2017.atlanta.wordcamp.org/2017/01/28/kids-camp/</a></li>\n<li>2017-05-20 – Jacksonville, FL – Sandy Edwards<a href=\"https://2017.jacksonville.wordcamp.org/kidscamp/\"> https://2017.jacksonville.wordcamp.org/kidscamp/</a></li>\n<li>2017-08-21 – Austin –<a href=\"https://2017.austin.wordcamp.org/kidscamp/\"> https://2017.austin.wordcamp.org/kidscamp/</a></li>\n<li>2017-11-11 – Orlando, FL – Sandy Edwards<a href=\"https://2017.orlando.wordcamp.org/kidscamp/\"> https://2017.orlando.wordcamp.org/kidscamp/</a></li>\n<li>2018-03-17 – Miami, FL – Chris Christoff, Sandy Edwards, Sam Smith, Paul Champeau, Angelica Yarde, Andrew Wikel, Josh Pollock, David Wolfpaw, Adam Warner, Brian Richards, Chris Edwards, Beka Rice, Joe Howard, Dr Nancy Richmond, Peta Bisset<a href=\"https://2018.miami.wordcamp.org/kids/\"> https://2018.miami.wordcamp.org/kids/</a></li>\n<li>2018-04-07 – Jacksonville, FL – Sandy Edwards<a href=\"https://2018.jacksonville.wordcamp.org/kidscamp/\"> https://2018.jacksonville.wordcamp.org/kidscamp/</a></li>\n<li>2018-04-14 – Atlanta, GA – Sandy Edwards<a href=\"https://2018.atlanta.wordcamp.org/schedule/\"> https://2018.atlanta.wordcamp.org/schedule/</a></li>\n<li>2018-05-26 – Calgary, Canada – Christina Workman –<a href=\"https://2018.calgary.wordcamp.org/kidscamp/\"> https://2018.calgary.wordcamp.org/kidscamp/</a></li>\n<li>2018-07-22 – San Jose, Costa Rica – Roberto Remedios, Ana Maria Montero<a href=\"https://2018.sanjose.wordcamp.org/programa/kids-camp/\"> https://2018.sanjose.wordcamp.org/programa/kids-camp/</a></li>\n<li>2018-11-24 – Harrare, Africa – Thelma Mutete –<a href=\"https://2018.harare.wordcamp.org/2018/11/17/the-wordcamp-juniors-workshop/\"> https://2018.harare.wordcamp.org/2018/11/17/the-wordcamp-juniors-workshop/</a></li>\n<li>2018-11-10 – Orlando, FL – William Jackson, Aida Correa –<a href=\"https://www.krishna.me/wordcamp-ireland-in-kilkenny-has-its-own-kids-camp/\"> https://www.krishna.me/wordcamp-ireland-in-kilkenny-has-its-own-kids-camp/</a></li>\n<li>2019-03-07 – Nordic, Helsinki, Finland – Petya<a href=\"https://2019.nordic.wordcamp.org/contributor-day/wordpress-workshop-for-kids/\"> https://2019.nordic.wordcamp.org/contributor-day/wordpress-workshop-for-kids/</a></li>\n<li>2019-04-06 – Raleigh, NC – Sandy Edwards, Patrik Seus<a href=\"https://2019.raleigh.wordcamp.org/kidscamp/\"> https://2019.raleigh.wordcamp.org/kidscamp/</a></li>\n<li>2019-05-11 – Calgary, Canada – Christina Workman <a href=\"https://2019.calgary.wordcamp.org/2019/03/19/kidscamp-is-back/\"> https://2019.calgary.wordcamp.org/2019/03/19/kidscamp-is-back/</a></li>\n<li>2019-06-29 – Jacksonville, Fl – William Jackson, Aida Correa <a href=\"https://2019.jacksonville.wordcamp.org/kidscamp/\">https://2019.jacksonville.wordcamp.org/kidscamp/</a></li>\n<li>2019-07-20 – Boston, MA – Sandy Edwards, Jim Reevoir, and Elizabeth Desrosiers <a href=\"https://2019.boston.wordcamp.org/kidscamp/\">https://2019.boston.wordcamp.org/kidscamp/</a></li>\n</ul>\n<h2>More Kids Event Information</h2>\n<p>Kids programming with WordPress is here to provide a solid opportunity for minors to be included in the community. The programs offer events, workshops, and inclusion in the ever-growing WordPress community.</p>\n<p>The community as a whole has always provided educational and networking events to further personal development. Kids Programming is no different.</p>\n<p>Events focus on key skill sets such as public speaking, writing, networking, and communication. Children get to work with peers in exciting and fulfilling ways and leave the events with new friends. These friends often live in various places around the globe and create the opportunity for long-distance friendships fostered through technological resources.</p>\n<p>For example, my son lives in Orlando and has friends in Tampa, Jacksonville and even out of state. He keeps in touch through Facebook Messenger or Slack.</p>\n<p>The fact is our kids need a fun way to use real-world skills in a non-threatening environment. A place where they won’t be tested and where they can’t fail.</p>\n<p>These programs offer just that. With over 40 different volunteers helping to foster this program across the globe it is becoming a WordPress community staple.</p>\n<p>There is still much to do. Safety has to be our #1 priority when working with minors and that means keeping things pretty consistent. There is a group of amazing volunteers documenting the process of planning a kids event and class curriculum.</p>\n<p>The team is working on checklists and curriculum to make it super easy for a meetup chapter or WordCamp to add a kids event or kids program to their offering.</p>\n<p>The future for these programs is looking very bright. There is ever-growing interested in events, and more people wanting to be part of the kids’ event revolution.</p>\n<p>You too can be a hero. We need more people to write, edit, translate and test these programs. No experience is necessary and you don’t have to love kids either. This initiative allows so many children from different backgrounds and walks of life to be included in a super caring community. We see kids whose parents are already in the community and also kids who otherwise would never know the community exists. Your time is going to help create the next generation of WordPress! To get involved or update this list of Heroes just email <a href=\"mailto:Kids@WordCamp.org\">Kids@WordCamp.org</a>.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: History and Future of Kids Heroes in WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=History%20and%20Future%20of%20Kids%20Heroes%20in%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fhistory-and-future-of-kids-heroes-in-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: History and Future of Kids Heroes in WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fhistory-and-future-of-kids-heroes-in-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fhistory-and-future-of-kids-heroes-in-wordpress%2F&title=History+and+Future+of+Kids+Heroes+in+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: History and Future of Kids Heroes in WordPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/history-and-future-of-kids-heroes-in-wordpress/&media=https://heropress.com/wp-content/uploads/2020/07/WordPress-and-its-surrounding-communities-have-the-opportunity-to-change-the-lives-of-kids-all-over-the-world.-150x150.png&description=History and Future of Kids Heroes in WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: History and Future of Kids Heroes in WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/history-and-future-of-kids-heroes-in-wordpress/\" title=\"History and Future of Kids Heroes in WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/history-and-future-of-kids-heroes-in-wordpress/\">History and Future of Kids Heroes in WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jul 2019 12:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sandy Edwards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: Newspack Opens Up Application Process for Phase Two\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91719\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/newspack-opens-up-application-process-for-phase-two\";s: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:1699:\"<p>Earlier this year, Newspack <a href=\"https://newspack.blog/2019/04/03/newspack-chooses-12-publishers-new-platform/\">chose twelve publications</a> to take part in the initial rollout phase of the platform. Newspack is a collection of themes, plugins, and features geared towards newsrooms such as revenue generation wizards, mobile delivery, and search engine optimization. </p>\n\n\n\n<p>Steve Beatty, head of Newspack Communication says they’re seeking up to 50 newsrooms to be part of phase two which lasts from September 1st – February 29th, 2020. </p>\n\n\n\n<p>“What you’ll get: a new Newspack website, including the migration of your existing site; free hosting, security, updates, backups and support on WordPress.com through February 2020; membership in the Newspack community of users; access to Newspack developers; exclusive performance benchmarking against your peers; and more,” Beatty said.</p>\n\n\n\n<p>Organizations that are selected are expected to provide feedback, test new features, and help shape the overall direction of the platform. </p>\n\n\n\n<p>Free hosting for charter members will expire on February 29th, 2020. News organizations with revenue under $500K can expect to pay $1,000 per month and organizations that generate revenue of over $500K will pay $2,000 per month. Newspack is currently in negotiations to provide subsidies for organizations that encounter difficulties with the pricing structure. </p>\n\n\n\n<p>Those interested in participating in the charter program have until August 15th to <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdPF-XEbRDoOmSyGBYCyQZgleFcXNNnJExZCd9bsjw93jAXRg/viewform?vc=0&c=0&w=1\">fill out the application</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jul 2019 20:36: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: In Case You Missed It – Issue 28\";s:7:\"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:59:\"https://wptavern.com/?p=91699&preview=true&preview_id=91699\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-28\";s: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:7685:\"<div class=\"wp-block-image\"><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1\" rel=\"attachment wp-att-50955\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a></div>\n\n\n\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n\n\n\n<h2>Changes to WordPress PHP Coding Standards</h2>\n\n\n\n<p>Based on changes that were <a href=\"https://make.wordpress.org/core/2019/03/26/coding-standards-updates-for-php-5-6/\">proposed back in March</a>, the <a href=\"https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/\">PHP Coding Standards</a> for WordPress have been altered. Note that these changes apply to WordPress core only and Gary Pendergast recommends that developers can and should choose practices that best suit your needs for plugins and themes. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/core/2019/07/12/php-coding-standards-changes/\">PHP Coding Standards Changes</a></blockquote>\n</div>\n\n\n\n<h2>Excluding Remote Employee Job Applicants Based on the State They Live In</h2>\n\n\n\n<p>Like Brad, the topic of not hiring job applicants for a remote company based on the state they live in because of tax laws is not something I’ve seen discussed. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">A really interesting topic around remote companies, and one I haven\'t seen talked about much, is the idea of \"stateism\". Basically, not hiring from certain states because of their heavy handed laws (usually tax related). There are a few states I\'d rather avoid at this point.</p>— Brad Williams (@williamsba) <a href=\"https://twitter.com/williamsba/status/1149727445450481664?ref_src=twsrc%5Etfw\">July 12, 2019</a></blockquote>\n</div>\n\n\n\n<p>In certain situations, companies that go the extra mile to hire a remote worker can also turn that person into an advocate. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Interesting. <a href=\"https://twitter.com/wpengine?ref_src=twsrc%5Etfw\">@wpengine</a> had to jump through some additional hoops to employ me remotely as a Canadian and I think that shows what a good employer they are and makes me advocate for them more. Worth thinking about beyond purely financial considerations.</p>— Chris Garrett (@chrisgarrett) <a href=\"https://twitter.com/chrisgarrett/status/1149729535782318081?ref_src=twsrc%5Etfw\">July 12, 2019</a></blockquote>\n</div>\n\n\n\n<p>If you’re involved in the hiring process for a remote company, I’d love to hear your thoughts on this topic in the comments.</p>\n\n\n\n<h2>Would You Like to See A Product Hunt for WordPress Products?</h2>\n\n\n\n<p>Once you create something awesome in the WordPress ecosystem, it’s tough to get the word out. Ben from LyrWP wants to know if anyone is interested in a <a href=\"https://www.producthunt.com/\">Product Hunt</a> website for Themes, Plugins, and Services. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Would anyone be interested in a Producthunt purely for <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> themes, plugins and services? I think this needs doing. It\'s hard for <a href=\"https://twitter.com/hashtag/developers?src=hash&ref_src=twsrc%5Etfw\">#developers</a> to get the products they slave over out there without costing a bomb in marketing. Anybody else interested in this happening?</p>— Ben (@lyrwp) <a href=\"https://twitter.com/lyrwp/status/1149693535949590529?ref_src=twsrc%5Etfw\">July 12, 2019</a></blockquote>\n</div>\n\n\n\n<p>I think it’s a great idea and something I’d like to see become a reality. There are probably a ton of great products in the WordPress space that go unseen because there’s no easy way to reach a large mass of people outside of sites like the Tavern.</p>\n\n\n\n<p>However, Mario Peshev is concerned that such a site may end up posting infrequently or promote mediocre products. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I don\'t disagree with your stance. I just think that the overall quality of WP-baked solutions is pretty poor.<br /><br />Meaning that the site will end up promoting mediocre products or post infrequently, that\'s all.</p>— Mario Peshev (@no_fear_inc) <a href=\"https://twitter.com/no_fear_inc/status/1149746943389814784?ref_src=twsrc%5Etfw\">July 12, 2019</a></blockquote>\n</div>\n\n\n\n<p>If Peshev’s concern became a reality, there wouldn’t be much of a point to continue with the site and developers would be back to square one. </p>\n\n\n\n<p>Speaking of learning about new products, who remembers the <a href=\"https://weblogtoolscollection.com/archives/2013/01/16/wordpress-plugin-releases-for-116-3/\">Plugin Release posts</a> on WeblogToolsCollection.com?</p>\n\n\n\n<h2>Early Look at What A Block Directory in WP-Admin Could Look Like</h2>\n\n\n\n<p>Mel Choyce has shared a collection of concept images that depict what a Block Directory could look like inside of WP-Admin. She describes the inspiration for each image and how each screen would work. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/design/2019/07/11/block-directory-in-wp-admin-concepts/\">Block Directory in WP-Admin Concepts</a></blockquote>\n</div>\n\n\n\n<p>What I find interesting is that users will be able to try out new blocks before installing them. “Inside the modal, you’d also be able to demo a block before installing. <a href=\"https://profiles.wordpress.org/ck3lee/\">@ck3lee</a> has figured out how to make this possible,” Choyce said. </p>\n\n\n\n<p>It’s also great to see that the tech behind <a href=\"https://make.wordpress.org/core/2016/07/06/shiny-updates-in-4-6/\">Shiny Updates</a> will be used for quickly installing and activating new blocks. If you have feedback regarding the conceptual designs, please leave a comment on her post. </p>\n\n\n\n<h2>Notes From Lead Developer Conference</h2>\n\n\n\n<p>More than 20 Automatticians are attending the <a href=\"https://london2019.theleaddeveloper.com/\">Lead Developer Conference</a> in London, England, and are publishing notes from each day. You can check out <a href=\"https://developer.wordpress.com/2019/07/12/lead-developer-conference-day-one/\">Day 1 here</a>. </p>\n\n\n\n<h2>WPCampus 2019 Will Be LiveStreamed </h2>\n\n\n\n<p><a href=\"https://twitter.com/wpcampusorg/status/1149446903257604100\">Thanks to Pantheon</a>, all sessions excluding workshops at WPCampus will be livestreamed with captioning and available to watch for free. Simply visit the <a href=\"https://2019.wpcampus.org/watch/\">livestream page</a> on Friday, July 26 and Saturday, July 27.</p>\n\n\n\n<h2>Apply for a DonateWC WordCamp Sponsorship</h2>\n\n\n\n<p>DonateWC is <a href=\"https://donatewc.org/sponsorship-application-form/\">looking for applicants</a> for its sponsorship program. DonateWC provides underrepresented and minority groups within the WordPress community with the means to attend a WordCamp.</p>\n\n\n\n<p>That’s it for issue twenty-eight. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2019 22:00:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s: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:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"HeroPress: Syndication!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2922\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://heropress.com/syndication/#utm_source=rss&utm_medium=rss&utm_campaign=syndication\";s: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:3038:\"<img width=\"960\" height=\"311\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/07/Screen-Shot-2019-07-12-at-3.47.42-PM-1024x332.png\" class=\"attachment-large size-large wp-post-image\" alt=\"WordPress.org banner\" />\n<p>As of today, HeroPress essays will be syndicated on <a href=\"https://wordpress.org/news/\">WordPress.org/news</a> once a month, on the first friday of the month.</p>\n\n\n\n<p>A few weeks ago Josepha The Great approached me and said she’d been tasked with getting Better News at that location, and HeroPress was one of her first thoughts. We discussed how it would work and here’s what we came up with.</p>\n\n\n\n<p>Once a month I’ll suggest an essay and someone at Automattic will paraphrase and condense the essay and publish it at WordPress.org/news along with links to the original. This gives us both the opportunity for a traffic boost.</p>\n\n\n\n<p>I’m super excited about this opportunity, and I’d like to thank Josepha Haden, Matt Mullenweg, Yvette Sonneveld, Alison Rothwell, and Aditya Kane for their work in making this happen.</p>\n\n\n\n<p>The first one is about <a href=\"https://wordpress.org/news/2019/07/people-of-wordpress-ugyen-dorji/\">Ugyen Dorji from Bhutan</a>, I hope you’ll check it out. Please leave a comment for Ugyen on HeroPress.com.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Syndication!\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Syndication%21&via=heropress&url=https%3A%2F%2Fheropress.com%2Fsyndication%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Syndication!\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fsyndication%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fsyndication%2F&title=Syndication%21\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Syndication!\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/syndication/&media=https://heropress.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-12-at-3.47.42-PM-150x150.png&description=Syndication!\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Syndication!\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/syndication/\" title=\"Syndication!\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/syndication/\">Syndication!</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2019 20:03:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: Experimental Block Areas Plugin Allows for Editing Content Sitewide with Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91642\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/experimental-block-areas-plugin-allows-for-editing-content-sitewide-with-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3790:\"<p>WordPress core committer <a href=\"https://felix-arntz.me\" rel=\"noopener noreferrer\" target=\"_blank\">Felix Arntz</a> is working on an experimental <a href=\"https://github.com/wprig/block-areas\" rel=\"noopener noreferrer\" target=\"_blank\">Block Areas</a> plugin that would enable users to create and edit content sitewide using the Gutenberg editor. Inspired by a conversation with <a href=\"https://twitter.com/mor10\" rel=\"noopener noreferrer\" target=\"_blank\">Morten Rand-Hendriksen</a> at WordCamp Europe, Arntz created the plugin to “explore what the theming of tomorrow could look like already today.”</p>\n<p>Block Areas allows users to define specific areas where they want to use the block editor (outside of regular posts). The block areas function similar to widget areas, but are created using a custom post type with a familiar admin UI.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/block-areas-admin-page.jpg?ssl=1\"><img /></a></p>\n<p>“They are implemented as a post type – with the key aspect that they can’t be accessed in the frontend via a certain URL, but your theme has to render them via a block_areas()->render( $slug ) method that the plugin exposes,” Arntz said. “The slug you pass to the method should match the block area slug (i.e. post slug) of one of the areas you have created in the admin.”</p>\n<p>The plugin comes with block areas for site header and footer to provide a starting point. However, adding the block areas to a theme is one technical hurdle that currently limits this experimental plugin to developers.</p>\n<p>The concept is reminiscent of the now seemingly abandoned <a href=\"https://wordpress.org/plugins/buckets/\" rel=\"noopener noreferrer\" target=\"_blank\">Buckets</a> plugin that <a href=\"https://wptavern.com/buckets-a-wordpress-widgets-alternative-for-placing-content-anywhere\" rel=\"noopener noreferrer\" target=\"_blank\">aimed to provide an alternative to WordPress widgets</a>. It allows admins to create reusable pieces of content and place them anywhere on their sites. Reusable buckets can be created with the same UI as the legacy post editor and then placed anywhere using a shortcode or via a button in the TinyMCE editor.</p>\n<p>In the case of Buckets, the idea was to preserve the users’ ability to create content using the visual editor and media manager. Block Areas seems to have a similar aim – to preserve users’ ability to use the block editor anywhere they want throughout the site. That is part of the general goal of Gutenberg Phase 2, which includes migrating widgets and menus to use the block editor.</p>\n<p>Block Areas is just one idea for providing a unified approach to reusable content inside WordPress. It is not an official project and may not be the approach that the Gutenberg team settles on for core. However, it offers a good opportunity for discussion and collaboration about the possibilities of taking the editor sitewide. This will open up a whole new genre of blocks for plugin developers.</p>\n<p>“Think about a block that renders the site title, the custom header, a menu, the copyright information – taking Gutenberg to the site level opens up a whole new set of typical blocks that would be required,” Arntz said. “Start thinking about which blocks you would need outside of your post content bubble today.”</p>\n<p>The <a href=\"https://github.com/wprig/block-areas\" rel=\"noopener noreferrer\" target=\"_blank\">Block Areas</a> plugin is available on GitHub if you want to experiment with it. Check out Arntz’s <a href=\"https://felix-arntz.me/blog/exploring-sitewide-gutenberg-usage-today/\" rel=\"noopener noreferrer\" target=\"_blank\">introduction post</a> for more implementation details.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2019 17:41:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.org blog: People of WordPress: Ugyen Dorji\";s:7:\"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://wordpress.org/news/?p=7013\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/07/people-of-wordpress-ugyen-dorji/\";s: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:6435:\"<p><em>You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Ugyen Dorji from Bhutan</strong></h2>\n\n\n\n<p>Ugyen lives in <a href=\"https://en.wikipedia.org/wiki/Bhutan\">Bhutan</a>, a landlocked country situated between two giant neighbors, India to the south and China to the north. He works for ServMask Inc and is responsible for the Quality Assurance process for All-in-One WP Migration plugin. <br /><br />He believes in the Buddhist teaching that “the most valuable service is one rendered to our fellow humans,” and his contributions demonstrates this through his WordPress translation work and multi-lingual support projects for WordPress.</p>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-7023\" />Bhutanese contributors to the Dzongkha locale on WordPress Translation Day\n\n\n\n<h2><strong>How Ugyen started his career with WordPress</strong></h2>\n\n\n\n<p>Back in 2016, Ugyen was looking for a new job after his former cloud company ran into financial difficulties.</p>\n\n\n\n<p>During one interview he was asked many questions about WordPress and, although he had a basic understanding of WordPress, he struggled to give detailed answers. After that interview he resolved to develop his skills and learn as much about WordPress as he could. </p>\n\n\n\n<p>A few months passed and he received a call from ServMask Inc, who had developed a plugin called All-in-One WP Migration. They offered him a position, fulfilling his wish to work with WordPress full-time. And because of that, Ugyen is now an active contributor to the WordPress community.</p>\n\n\n\n<h3><strong>WordCamp Bangkok 2018</strong></h3>\n\n\n\n<p>WordCamp Bangkok 2018 was a turning point event for Ugyen. WordCamps are a great opportunity to meet WordPress community members you don’t otherwise get to know, and he was able to attend his first WordCamp through the sponsorship of his company.</p>\n\n\n\n<p>The first day of WordCamp Bangkok was a Contributor Day, where people volunteer to work together to contribute to the development of WordPress. Ugyen joined the Community team to have conversations with WordPress users from all over the world. He was able to share his ideas for supporting new speakers, events and organizers to help build the WordPress community in places where it is not yet booming.</p>\n\n\n\n<p>During the main day of the event, Ugyen managed a photo booth for speakers, organizers, and attendees to capture their memories of WordCamp. He also got to take some time out to attend several presentations during the conference. What particularly stuck in Ugyen’s mind was learning that having a website content plan has been shown to lead to 100% growth in business development.</p>\n\n\n\n<h3>Co-Organizing<strong> Thimphu</strong>‘s <strong>WordPress Meetup</strong></h3>\n\n\n\n<p>After attending WordCamp Bangkok 2018 as well as a local Meetup event, Ugyen decided to introduce WordPress to his home country and cities. </p>\n\n\n\n<p>As one of the WordPress Translation Day organizers, he realized that his local language, Dzongkha, was not as fully translated as other languages in the WordPress Core Translation. That is when Ugyen knew that he wanted to help build his local community. He organized Thimphu’s first WordPress Meetup to coincide with WordPress Translation Day 4, and it was a huge success!</p>\n\n\n\n<p>Like all WordPress Meetups, the Thimpu WordPress Meetup is an easygoing, volunteer-organized, non-profit meetup which covers everything related to WordPress. But it also keeps in mind the <a href=\"https://en.wikipedia.org/wiki/Gross_National_Happiness\">Bhutanese Gross National Happiness</a> four pillars by aiming to preserve and promote their unique culture and national language. </p>\n\n\n\n<h2><strong>Big dreams get accomplished one step at a time</strong></h2>\n\n\n\n<p>Ugyen has taken an active role in preserving his national language by encouraging his community to use WordPress, including Dzongkha bloggers, online Dzongkha news outlets, and government websites.</p>\n\n\n\n<p>And while Ugyen has only been actively involved in the community for a short period, he has contributed much to the WordPress community, including:</p>\n\n\n\n<ul><li>becoming a Translation Contributor for WordPress Core Translation for Dzongkha;</li><li>participating in the <a href=\"https://wptranslationday.org/\">Global WordPress Translation Day 4</a> Livestream and organizing team;</li><li>inviting WordPress Meetup Thimphu members and WordPress experts from other countries to join the <a href=\"https://wpbhutan.slack.com/\">local Slack instance</a>;</li><li>encouraging ServMask Inc. to become an event sponsor;</li><li>providing the Dzongkha Development Commission the opportunity to involve their language experts.</li></ul>\n\n\n\n<p>When it comes to WordPress, Ugyen particularly focuses on encouraging local and international language WordPress bloggers; helping startups succeed with WordPress; and sharing what he has learned from WordPress with his Bhutanese WordPress community.</p>\n\n\n\n<p>As a contributor, Ugyen hopes to accomplish even more for the Bhutan and Asian WordPress Communities. His dreams for his local community are big, including teaching more people about open source, hosting a local WordCamp, and helping to organize WordCamp Asia in 2020 — all while raising awareness of his community.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo-1.jpg?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-7026\" width=\"110\" height=\"83\" /></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</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, 12 Jul 2019 17:20:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Aditya Kane\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Post Status: Preserving the Wilderness\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=65050\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://poststatus.com/preserving-the-wilderness-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:11760:\"<pre class=\"wp-block-verse\">Midway in our life\'s journey, I went astray <br /> from the straight road and woke to find myself <br /> alone in a dark wood. <br /><br />—Dante\'s <em>Inferno</em>, John Ciardi\'s translation<br /></pre>\n\n\n\n<p>If you’ve been trying to follow the ongoing debate over the future of the internet but got lost, gave up, or just tuned out, you’re probably in good company. Serious problems seem to generate unhelpfully broad and exaggerated headlines, like Alexis Madrigal at <em>The Atlantic </em>describing “<a href=\"https://www.theatlantic.com/technology/archive/2019/06/how-politicians-and-scholars-turned-against-big-tech/591052/\">the coalition out to kill tech as we know it</a>.” He provides a good breakdown of the many interest groups and the perspectives in play, however, from Antitrust Theorists to Shoshana Zuboff, who coined the term “<a href=\"https://www.theguardian.com/technology/2019/jan/20/shoshana-zuboff-age-of-surveillance-capitalism-google-facebook\">surveillance capitalism</a>.”</p>\n\n\n\n<blockquote><p>Writer and Kickstarter co-founder Yancey Strickler says the internet is becoming a “dark forest” as people retreat to “wild” spaces.</p></blockquote>\n\n\n\n<p>Madrigal is <a href=\"https://www.theatlantic.com/technology/archive/2019/06/facebook-and-youtubes-platform-excuse-dying/591466/\">probably right</a> that people are tired of hearing that publishing platforms like Facebook, YouTube, and Twitter have no role in policing “provably false information” posted by their users. <a href=\"https://poststatus.com/free-speech-privacy-and-web/\">Brian predicted this</a> several years ago before WordPress.com <a href=\"https://techcrunch.com/2018/08/16/new-wordpress-policy-allows-it-to-shut-down-blogs-of-sandy-hook-deniers/\">came under pressure</a> to shut down sites denying the Sandy Hook school shooting ever happened. Now the boundaries of acceptable content are more actively guarded but not consistently or well, and <a href=\"https://www.theverge.com/2019/2/25/18229714/cognizant-facebook-content-moderator-interviews-trauma-working-conditions-arizona\">in some cases like Facebook</a> or YouTube, if the cure is human moderation, <a href=\"https://www.theverge.com/2019/6/19/18681845/facebook-moderator-interviews-video-trauma-ptsd-cognizant-tampa\">it’s as bad as the disease</a>.</p>\n\n\n\n<p>Former Google product manager and <a href=\"https://humanetech.com/\">Center for Humane Technology</a> founder Tristan Harris is near the top of Madrigal’s list of tech-killers. Harris <a href=\"https://gizmodo.com/this-is-how-youre-being-manipulated-1835853810\">recently testified</a> before the US Senate with <a href=\"https://www.commerce.senate.gov/public/index.cfm/2019/6/optimizing-for-engagement-understanding-the-use-of-persuasive-technology-on-internet-platforms\">such stark examples of manipulative interfaces</a> that one senator said he was thankful he would “be dead and gone … when all this shit comes to fruition.” </p>\n\n\n\n<p>While Harris is good at generating outrage by publicizing truly outrageous things Google, Facebook, and others are doing, it’s not always clear what he thinks should be done. Does protecting our attention, or children’s developing brains, or democracy itself require platforms to police themselves or be policed by someone else?</p>\n\n\n\n<p>Compared to Harris, Pinboard owner and widely read blogger Maciej Ceglowski made a less dramatic but similarly urgent <a href=\"https://www.banking.senate.gov/imo/media/doc/Ceglowski%20Testimony%205-7-19.pdf\">statement</a> about privacy and data collection to the Senate back in May. (<a href=\"https://idlewords.com/talks/senate_testimony.2019.5.htm\">Web version and video link</a>.) A more recent post on Ceglowski’s blog called “<a href=\"https://idlewords.com/2019/06/the_new_wilderness.htm\">The New Wilderness</a>” argues we need laws protecting the digital environment from surveillance, so it retains a “wilderness” of “ambient privacy.” Like Harris, Ceglowski focuses on Facebook and Google as “the world’s most sophisticated dragnet surveillance operation, a duopoly that rakes in nearly two-thirds of the money spent on online ads.”</p>\n\n\n\n<p>In line with Ceglowski’s imagery, writer and Kickstarter co-founder Yancey Strickler says <a href=\"https://onezero.medium.com/the-dark-forest-theory-of-the-internet-7dc3e68a7cb1\">the internet is becoming a “dark forest”</a> as people retreat to “wild” spaces.</p>\n\n\n\n<p>Strickler isn’t talking about “wild” spaces on the web that offer unmoderated, possibly objectionable content; he means areas without algorithms that keep <a href=\"https://thebaffler.com/latest/unpopular-content-schwartz\">“unpopular” material</a> out of our monetized attention:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>These are all spaces where depressurized conversation is possible because of their non-indexed, non-optimized, and non-gamified environments.</p></blockquote>\n\n\n\n<p>The problem Strickler sees with our retreat from the “mainstream” parts of the internet is the possibility of their discredit and loss. We may already be past that point, <a href=\"https://taibbi.substack.com/p/russiagate-is-wmd-times-a-million\">as Matt Taibbi has argued about the press</a>.</p>\n\n\n\n<p>Cory Doctorow has been working this beat for a long time and has some excellent, recent contributions to the debate:</p>\n\n\n\n<ul><li>A discussion of <a href=\"https://corecursive.com/33-cory-doctorow-digital-rights/\">monopolies and why software has power</a> on the CoRecursive podcast with Adam Gordon Bell. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /></li><li>A contribution to the <em>New York Times’</em> “Op-Eds From the Future” series with a piece called “<a href=\"https://www.nytimes.com/2019/06/24/opinion/future-free-speech-social-media-platforms.html\">I Shouldn’t Have to Publish This in The New York Times</a>.” <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f4f0.png\" alt=\"?\" class=\"wp-smiley\" /></li></ul>\n\n\n\n<p>Doctorow’s Op-Ed from the future comes from a time “in which we have decided to solve the problems of Big Tech by making them liable for what their users say and do.” </p>\n\n\n\n<p>In this possible future:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>[A]ll our speech is vetted by algorithms that delete anything that looks like misinformation, harassment, copyright infringement, incitement to terrorism, etc — with the result that the only place where you can discuss anything of import is newspapers themselves. [<a href=\"https://poststatus.com/category/planet/feed/#note-1\">1</a>]</p></blockquote>\n\n\n\n<p>Doctorow describes the alternative to picking media winners and tech losers <a href=\"https://craphound.com/news/2019/06/24/i-shouldnt-have-to-publish-this-in-the-new-york-times-my-op-ed-from-the-future/\">on his blog</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We can either try to fix Big Tech (by making it use its monopoly profits to clean up its act) or we can fix the internet (by breaking them up and denying them access to monopoly profits) — but we can’t do both.</p></blockquote>\n\n\n\n<p>I’m not sure what Option A (self-regulation) would look like or how it could help, which is partly Doctorow’s point. If Option B (trust-busting) happens, it would probably leave a lot more space for wild things to grow. But even in the shadow of Big Tech monopolies, WordPress and other mature open source ecosystems still represent their antithesis, like a vast network of old-growth forests connected to small stands of young saplings. That analogy reminds me of <a href=\"https://mor10.com/wordpress-the-15-year-revolution/\">Morten Rand-Hendriksen’s reflections on WordPress’s 15th anniversary</a> and his hope that his “son will be building his own web experiences using software that traces its roots back to [WordPress].”</p>\n\n\n\n<p>The wild, biodiverse forest image is a good one for us because it is an image of social, interdependent, and very different individuals. Peter Wohlleben’s book on <em>The Hidden Life of Trees</em> could just as easily describe the cooperative, distributive, and passionately interconnected, democratic nature of open source communities at their best:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>When trees grow together, nutrients and water can be optimally divided among them all so that each tree can grow into the best tree it can be. If you “help” individual trees by getting rid of their supposed competition, the remaining trees are bereft. They send messages out to their neighbors in vain, because nothing remains but stumps. Every tree now muddles along on its own, giving rise to great differences in productivity. Some individuals photosynthesize like mad until sugar positively bubbles along their trunk. As a result, they are fit and grow better, but they aren’t particularly long-lived. This is because a tree can be only as strong as the forest that surrounds it. And there are now a lot of losers in the forest. Weaker members, who would once have been supported by the stronger ones, suddenly fall behind. Whether the reason for their decline is their location and lack of nutrients, a passing malaise, or genetic makeup, they now fall prey to insects and fungi.</p></blockquote>\n\n\n\n<p>Even the giants are in trouble if they are the last trees standing. Wohlleben explains they will end up presiding over a barren desert where little more than weeds can survive:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“But isn’t that how evolution works?” you ask. The survival of the fittest? Their well-being depends on their community, and when the supposedly feeble trees disappear, the others lose as well. When that happens, the forest is no longer a single closed unit. Hot sun and swirling winds can now penetrate to the forest floor and disrupt the moist, cool climate. Even strong trees get sick a lot over the course of their lives. When this happens, they depend on their weaker neighbors for support. If they are no longer there, then all it takes is what would once have been a harmless insect attack to seal the fate even of giants.</p></blockquote>\n\n\n\n<p>If we maintain open source communities that are accessible and inclusive <br /> — for big and small, young and old, established businesses and new ones — then we are doing our part to keep the web wild and healthy. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f3de.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2>Notes</h2>\n\n\n\n<ol><li><a id=\"note-1\" href=\"https://medium.com/whither-news/news-publishers-go-to-war-with-the-internet-and-we-all-lose-cc8aca5336f5\">Jeff Jarvis thinks that’s what newspapers want</a> — a “war with the internet,” i.e. the major platform providers — out of the hope this might restore their previous command of advertising and attention. Jarvis is far less critical of big tech and <a href=\"https://www.theguardian.com/commentisfree/2013/aug/07/big-tech-protect-big-brother\">defended it in the past</a> as a check against “Big Brother,” i.e., powerful state actors. Today, Zuboff’s view of big tech as “Big Other” seems more accurate: <a href=\"https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2594754\">a threat to democratic norms</a> that, unlike the state, operates with almost no regulatory oversight.</li></ol>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2019 13:49: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: JAMstack’s Growing Popularity Brings Increase in WordPress Plugins for Deploying to Netlify\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91155\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/jamstacks-growing-popularity-brings-increase-in-wordpress-plugins-for-deploying-to-netlify\";s: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:7823:\"<p>One of the more interesting trends this year is that WordPress developers are beginning to explore JAMstack setups for their sites. JAMstack is a term coined by <a href=\"https://www.netlify.com\" rel=\"noopener noreferrer\" target=\"_blank\">Netlify</a> CEO Mathias Biilmann to describe development architecture that includes client-side JavaScript, reusable APIs, and prebuilt Markup, the three pillars of a modern static website.</p>\n<p>Static websites are making a major comeback right now, perhaps as a reaction to the slow, bloated PHP frameworks that run large portions of the web today. The speed, security, and scalability of these sites, often available at a lower cost, are some of the most compelling reasons developers find themselves joining the rapidly growing JAMstack community. It also provides a git and CLI-friendly development workflow and allows developers to easily experiment with the latest frontend technologies, without prescribing any specific frameworks or tools.</p>\n<p>Most JAMstack sites are built using Jekyll, Hugo, Nuxt, Next, Gatsby, or another <a href=\"https://www.staticgen.com/\" rel=\"noopener noreferrer\" target=\"_blank\">static site generator</a>. The generated markup and assets are often served via a CDN for near instant page loads.</p>\n<p><a href=\"https://www.netlify.com\" rel=\"noopener noreferrer\" target=\"_blank\">Netlify</a> pioneered JAMstack hosting and has inspired the creation of a myriad of tools that enable fast and convenient deployments. Plugins that allow developers source content from WordPress and host it with Netlify are starting to pop up more frequently. Netlify’s free tier is one of the main reasons it has grown so quickly in popularity, as it provides a fast way to host a personal site or small project with custom domain support, HTTPS, Git integration, and continuous deployment included.</p>\n<p><a href=\"https://tinypixel.dev/\" rel=\"noopener noreferrer\" target=\"_blank\">Tiny Pixel Collective</a> created a plugin called <a href=\"https://github.com/pixelcollective/netlify-deploy\" rel=\"noopener noreferrer\" target=\"_blank\">Netlify Deploy</a> that automates Netlify builds on WordPress publish and update events. The company built it to make it easier for developers to rebuild Netlify-hosted Gatsby frontends using WordPress as the publishing tool. It works in the background to keep a static frontend in sync with the post database, rebuilding the site when users make updates to posts and pages. The plugin triggers the Netlify webhook whenever the standard WordPress posttypes post and page undergo a change in publish status, but it can also be modified to work with custom post types and custom publish hooks.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-jamstack-deployments/\" rel=\"noopener noreferrer\" target=\"_blank\">JAMstack Deployments</a>, created by <a href=\"https://crgeary.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Christopher Geary</a>, a developer and JAMstack aficionado, is a similar WordPress plugin that facilitates deployments to Netlify, as well as other platforms. The plugin’s settings page lets users configure the webhook URL in the admin, and includes options to limit it to trigger on specific post types and taxonomies. JAMstack Deployments is also conveniently available for free on WordPress.org.</p>\n<p><a href=\"https://wordpress.org/plugins/webhook-netlify-deploy/\" rel=\"noopener noreferrer\" target=\"_blank\">Deploy Netlify Webhook</a> is a similar plugin from <a href=\"https://lukesecomb.digital/\" rel=\"noopener noreferrer\" target=\"_blank\">Luke Secomb</a> that appears to work manually through a “Build” button in the WordPress admin. It has the added benefit of allowing developers to check the status of the latest build to see if it was successful, without having to leave WordPress.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/netlify-webhook-deploy.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://justinwhall.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Justin Hall</a>, a plugin author and senior web developer at SendGrid, published his <a href=\"https://github.com/justinwhall/gatsby-wordpress-netlify-starter\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby + Headless WordPress + Netlify starter skeleton</a> to GitHub. This particular setup requires his <a href=\"https://github.com/justinwhall/littlebot-netlify\" rel=\"noopener noreferrer\" target=\"_blank\">LittleBot Netlify plugin</a> to trigger Netlify build hooks on post save or update, with an additional option that allows WordPress users to publish to Staging or Production sites.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/stage-production.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://wordpress.org/plugins/static-html-output-plugin/\" rel=\"noopener noreferrer\" target=\"_blank\">WP2Static</a> is a popular plugin that generates static HTML files rom a WordPress site. Users have the option of auto-deploying to a folder on the server, a ZIP file, FTP server, S3, GitHub, Netlify, BunnyCDN, BitBucket, or GitLab. Theh plugin currently has more than 10,000 active installations.</p>\n<p>These are just a small sampling of tools that developers are creating to allow WordPress users to retain the capabilities a dynamic publishing platform while building it statically to take advantage of the speed, security, and performance gains.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I used to be afraid I was distracting <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> folks by teaching <a href=\"https://twitter.com/gatsbyjs?ref_src=twsrc%5Etfw\">@gatsbyjs</a>.</p>\n<p>Now it\'s clear WordPress devs must learn tools like Gatsby to stay relevant, and WordPress must meet headless needs to stay relevant. <a href=\"https://twitter.com/hashtag/LearnJavascriptDeeply?src=hash&ref_src=twsrc%5Etfw\">#LearnJavascriptDeeply</a> <a href=\"https://twitter.com/hashtag/LetsDoThis?src=hash&ref_src=twsrc%5Etfw\">#LetsDoThis</a><a href=\"https://t.co/TEJeNrFa1K\">https://t.co/TEJeNrFa1K</a> <a href=\"https://t.co/69geFKlZ9r\">https://t.co/69geFKlZ9r</a></p>\n<p>— Zac Gordon (@zgordon) <a href=\"https://twitter.com/zgordon/status/1141392958341746689?ref_src=twsrc%5Etfw\">June 19, 2019</a></p></blockquote>\n<p></p>\n<p>The trend towards using a headless CMS combined with static site generators is a setup that is heavily geared towards developers at the moment. <a href=\"https://bejamas.io/blog/jamstack-for-clients/\" rel=\"noopener noreferrer\" target=\"_blank\">Translating all the jargon</a> for non-technical site and business owners is a new challenge for those looking to sell services for setting up JAMstack architecture.</p>\n<p>That’s where more user-friendly hosting platforms like <a href=\"https://www.strattic.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Strattic</a>, <a href=\"https://www.getshifter.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Shifter</a>, and <a href=\"https://www.hardypress.com/\" rel=\"noopener noreferrer\" target=\"_blank\">HardyPress</a> are making inroads on marketing JAMstack technology to a less-technical crowd. They provide all-in-one “serverless” architecture solutions that generate static files from WordPress sites and serve them via CDN.</p>\n<p>One of the chief drawbacks to pursuing a static WordPress setup is that many dynamic capabilities do not work in this environment. Adding contact forms can be a challenge. Sites that require native WordPress comments or anything that is more complex and interactive will not work. This includes functionality offered by WooCommerce, bbPress, BuddyPress, and membership plugins, to name a few examples. For now, the JAMstack fervor is mostly limited to the DIY developer crowd looking to host more simple sites.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2019 03:02:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"WPTavern: WordPress Theme Review Team Seeks to Curb Obtrusive Admin Notices with New Requirement to Follow Core Design Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91604\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"https://wptavern.com/wordpress-theme-review-team-seeks-to-curb-obtrusive-admin-notices-with-new-requirement-to-follow-core-design-patterns\";s: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:3856:\"<p>For years, the WordPress admin has become increasingly overloaded with admin notices. Some of them are giant, branded notices with their own particular designs that obstruct users’ activities in the admin.</p>\n<p>The Theme Review Team is taking action to curb obtrusive notices that fall within its purview – those generated by themes hosted in the official directory. In the excitement of yesterday’s announcement about the <a href=\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\" rel=\"noopener noreferrer\" target=\"_blank\">long-term plan to make make all WordPress.org themes accessible,</a> this small bit of good news regarding admin notices slipped through the cracks. The team ratified a <a href=\"https://wordpress.slack.com/archives/C02RP4Y3K/p1562696178471900\" rel=\"noopener noreferrer\" target=\"_blank\">proposal</a> from TRT member Danny Cooper to require all themes to use WordPress’ admin_notices API.</p>\n<blockquote><p>All the notifications generated by a theme should use the admin_notices API and follow the core design pattern.</p></blockquote>\n<p>During this week’s the meeting, Cooper cited Storefront, WooCommerce’s flagship theme, as one example of a theme-generated notice that does not follow the core design pattern and is shown on every page.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/storefront-notice.png?ssl=1\"><img /></a></p>\n<p>Another example is this style of activation notice on the Noto theme from Pixelgrade:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/pixelgrade.png?ssl=1\"><img /></a></p>\n<p>The Futurio theme has also employed a similar style notice for getting started after activation:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/futurio.png?ssl=1\"><img /></a></p>\n<p>In the past these notices have not been expressly forbidden, although they are generally frowned upon by those who want to keep the WordPress admin from being overtaken by large, branded notices and calls to action.</p>\n<p>Another example of an obtrusive notice is Hestia’s popup that appears if you activate the theme but then navigate to “Add New” on the Themes screen to hunt for a different theme. Cooper said this particular popup is likely outside the remit of this guideline, but it demonstrates what lengths theme shops will go to in order to better market their themes.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-10-at-4.45.08-PM.png?ssl=1\"><img /></a></p>\n<p>There don’t seem to be any specific requirements that would restrict the use of branding within the admin notices as long as they follow the <a href=\"https://codex.wordpress.org/Plugin_API/Action_Reference/admin_notices\" rel=\"noopener noreferrer\" target=\"_blank\">core design pattern</a>. A visual example of this pattern is shown below.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/notices.png?ssl=1\"><img /></a></p>\n<p>The Sydney theme has an example of a branding-free notice that works within these guidelines:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/sydney.png?ssl=1\"><img /></a></p>\n<p>This new requirement will affect many popular themes on WordPress.org and will likely be applied the next time existing themes go through the update review process. Cooper said that themes already known to be in violation of this guideline will be prompted by the TRT to change their notices as soon as possible or risk suspension.</p>\n<p>“It’s especially important that themes on the ‘Popular’ tab adapt quickly as other theme developers use them as inspiration when implementing similar functions,” Cooper said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jul 2019 22:57:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"WPTavern: 10up Releases New Plugin That Shows How to Extend Gutenberg’s Document Panel Using SlotFill and Filters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91613\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/10up-releases-new-plugin-that-shows-how-to-extend-gutenbergs-document-panel-using-slotfill-and-filters\";s: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:2350:\"<p>If you’ve been looking for a way to add slots and controls to the Document panel in WordPress’ content editor, check out a new plugin <a href=\"https://10up.com/blog/2019/extending-gutenberg-with-slotfill/\">released</a> by 10up called <a href=\"https://github.com/10up/slotfill-and-filter-demos/\">Gutenberg SlotFill and Filter Demos</a>. </p>\n\n\n\n<p>SlotFill and Filters is a new take on the classic filters, actions, and hooks system in WordPress. Slot and Fill are React components that enable developers to inject items into predefined spaces in the new editor. </p>\n\n\n\n<p>“SlotFill is a pattern for component extensibility, where a single Slot may be occupied by an indeterminate number of Fills elsewhere in the application,” Ryan Welcher said. </p>\n\n\n\n<div class=\"wp-block-image\"><img />An Example of SlotFill in Action</div>\n\n\n\n<p>In the demo screenshot above, 10up was able to stick to the Classic UI conventions in the mobile app while displaying the same information in the Document panel of the new editor. </p>\n\n\n\n<p>SlotFill initially started as a <a href=\"https://github.com/10up/slotfill-and-filter-demos/tree/master/src/slots\">GitHub repo</a> where Welcher collected his findings. The repo eventually turned into a library of examples and explanations for SlotFill and JavaScript based filters. </p>\n\n\n\n<p>In January, Welcher <a href=\"https://github.com/WordPress/gutenberg/pull/13361\">submitted a pull request</a> to the Gutenberg repo asking for SlotFill to be added to the document sidebar. His request received positive feedback and not only has SlotFill’s documentation been added to the <a href=\"https://developer.wordpress.org/block-editor/components/slot-fill/\">WordPress Core Gutenberg Handbook</a>, but the functionality is available in Gutenberg 6.1 and will be available in WordPress 5.3.</p>\n\n\n\n<p>To learn more about SlotFill, check out <a href=\"https://10up.com/blog/2019/extending-gutenberg-with-slotfill/\">Welcher’s release post</a> or the <a href=\"https://github.com/10up/slotfill-and-filter-demos/\">Gutenberg SlotFill and Filter Demos plugin</a>. Welcher is also doing a session at the <a href=\"https://javascriptforwp.com/conference/\">JavaScript For WordPress Conference</a>, on July 11-13, 2019, where he’ll showcase basic and real-world examples of SlotFill in use. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jul 2019 21:26:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: Gutenberg 6.1 Introduces Animation to Block Moving Actions, Adds Block-Based Widgets Screen Experiments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91568\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/gutenberg-6-1-introduces-animation-to-block-moving-actions-adds-block-based-widgets-screen-experiments\";s: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:3333:\"<p>Gutenberg plugin users who update to <a href=\"https://make.wordpress.org/core/2019/07/10/whats-new-in-gutenberg-10-july/\" rel=\"noopener noreferrer\" target=\"_blank\">version 6.1</a> should notice a considerable difference in how the UI reacts to block moving actions. This release brings in the <a href=\"https://wptavern.com/gutenberg-team-is-exploring-adding-motion-to-block-moving-actions\" rel=\"noopener noreferrer\" target=\"_blank\">animation experiments</a> that Matías Ventura introduced in a post titled “<a href=\"https://matiasventura.com/post/using-motion-to-express-change/\" rel=\"noopener noreferrer\" target=\"_blank\">Using Motion to Express Change</a>.” The subtle animations add realistic motion to block changes, creation, removal, and reordering, creating a smoother transition between actions. It lends a bit of sophistication to what was previously an instant but more abrupt interaction.</p>\n<p></p>\n<p>Riad Benguella’s demo video shows the new animation for block reordering. When blocks are added or deleted, content moves around the screen more fluidly, with the surrounding blocks sliding into place. You can test it live and see it in action on the <a href=\"https://wordpress.github.io/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg Playground</a>, which is now hosted on GitHub Pages.</p>\n<p>Version 6.1 also incorporates more experiments on the block-based widgets screen that is still in progress. A new widget blocks editor has been added to the Customizer under a panel labeled “Widget Blocks (Experimental).” At the moment, editing widgets in the Customizer in such a constricted space doesn’t seem to make much sense. It’s easy to get the controls jumbled up on top of each other. Live previews work but are much slower than the experience of using the post editor, and users may wonder why they can’t simply edit the content on the page where it appears. It’s important to remember that this is still an experiment.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-10-at-12.27.28-PM.png?ssl=1\"><img /></a></p>\n<p>The experimental widgets screen has also been updated to include the block inspector and a global inserter. This screen can be tested under the <strong>Gutenberg » Beta</strong> menu in the admin.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-10-at-12.30.09-PM.png?ssl=1\"><img /></a></p>\n<p>Gutenberg had taken a dip in performance in the previous two releases, but 6.1 recovers that with significant gains in typing performance. The latest version is 30% faster on long posts.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-10-at-12.34.44-PM.png?ssl=1\"><img /></a></p>\n<p>This update includes more than two dozen enhancements, fixes, and documentation improvements. Check out the <a href=\"https://make.wordpress.org/core/2019/07/10/whats-new-in-gutenberg-10-july/\" rel=\"noopener noreferrer\" target=\"_blank\">6.1 release post</a> for a detailed list of all the changes. Better yet, take the latest Gutenberg features and experiments for a test drive and you’ll get a good sense of where the project is headed and what will be coming to WordPress core in the near future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jul 2019 17:58:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"HeroPress: News, Updates, etc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2920\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://heropress.com/news-updates-etc/#utm_source=rss&utm_medium=rss&utm_campaign=news-updates-etc\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2454:\"<p>You may have noticed there’s no Essay this week. This is for a variety of small reasons, some of which involve going fishing. We’ll resume our regular schedule next week. I think this is only the second time in over 4 years that we’ve missed an essay.</p>\n\n\n\n<p>Later this week I should have a fun announcement, watch this space for it. I’m pretty excited.</p>\n\n\n\n<p>While I have your attention I’d like to take this opportunity to ask you to promote HeroPress on social media. I’d love to see a groundswell of tweets and other postings to spread the word.</p>\n\n\n\n<p>Thanks, I appreciate you all.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: News, Updates, etc.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=News%2C%20Updates%2C%20etc.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fnews-updates-etc%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: News, Updates, etc.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fnews-updates-etc%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fnews-updates-etc%2F&title=News%2C+Updates%2C+etc.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: News, Updates, etc.\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/news-updates-etc/&media=https://heropress.com/wp-content/plugins/rtsocial/images/default-pinterest.png&description=News, Updates, etc.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: News, Updates, etc.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/news-updates-etc/\" title=\"News, Updates, etc.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/news-updates-etc/\">News, Updates, etc.</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jul 2019 13:08:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"WPTavern: WordPress Theme Review Team Initiates New Long Term Plan to Make All WordPress.org Themes Accessible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\";s: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:5321:\"<p>The WordPress Theme Review Team (TRT) met today and <a href=\"https://make.wordpress.org/themes/2019/07/09/meeting-notes-from-the-9th-of-july-2019/\" rel=\"noopener noreferrer\" target=\"_blank\">agreed to put new accessibility requirements in place</a> for themes hosted in the official directory. These include some of the items that are required for theme authors who want to add the accessibility-ready tag. A handful of these requirements will soon be added to the standard requirements for all themes. The initial focus will be on items that do not have a major visible impact on a theme’s design, as the team anticipates some pushback from designers.</p>\n<p>“We’ve long made the argument that WCAG can’t easily be applied to a theme which has no content; I don’t think we want to break that,” Accessibility team member Joe Dolson said. “For the purpose of theme testing, I think it’s still better to target a customized set of criteria that are content-independent. But if we can incorporate the first four items in the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/\" rel=\"noopener noreferrer\" target=\"_blank\">guidelines</a>, I’d be super happy. The rest of the criteria, while important, are harder to assess and implement, and have greater impact on design.”</p>\n<p>The Theme Review Team has agreed to start gradually rolling out new accessibility guidelines every other month while educating developers to help them get on board. The first requirement will be Skip Links, followed by the other three that are outlined in the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/\" rel=\"noopener noreferrer\" target=\"_blank\">Theme Review Handbook</a>:</p>\n<ul>\n<li><strong>Skip Links</strong><br />\nThemes must include a mechanism that enables users to navigate directly to content or navigation on entering any given page. These links may be positioned off screen initially but must be available to screen reader users and must be visible on focus for sighted keyboard navigators.</li>\n<li><strong>Keyboard Navigation</strong><br />\nTheme authors must provide visual keyboard focus highlighting in navigation menus and for form fields, submit buttons and text links. All controls and links must be reachable using the keyboard.</li>\n<li><strong>Controls</strong><br />\nAll theme features that behave as buttons or links must use button, input, or a elements, to ensure native keyboard accessibility and interaction with screen reader accessibility APIs.<br />\nAll controls must also have machine-readable text to indicate the nature of the control.</li>\n<li><strong>Form Labeling</strong><br />\nComment forms must have appropriate field labels and all content within form tags need to be explicitly associated to a form control. Post-submission responses (errors or confirmations) must be perceivable. If you are using the default WordPress comment or search forms, these pass the accessibility-ready criteria.</li>\n</ul>\n<p>“The changed requirement wouldn’t encompass all the accessibility-ready requirements to be present on the standard themes, nor would it automatically make them accessibility-ready, but by incorporating one by one requirements, through longer time period, the idea is to encourage theme authors to write accessible themes out of the box,” TRT member Denis Žoljom said.</p>\n<p>The team is also re-examining the efficacy of the Trusted Authors program and whether there is evidence for discontinuing it. They are considering removing the child theme queue, which was incentivizing authors to submit more child themes since the queue moves faster than the regular one.</p>\n<p>Imposing stricter accessibility requirements for WordPress.org themes is one suggestion that theme authors discussed over the weekend as a potential response to <a href=\"https://wptavern.com/anders-noren-release-free-chaplin-theme-designed-for-block-editor-theme-authors-discuss-better-ways-to-promote-truly-free-themes\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.org’s growing problem with crippleware</a>. The expectation is that stricter requirements would shorten the queue of themes ready for review and perhaps even motivate companies to invest in accessibility testing to improve that process. While it may not have a direct affect on theme companies’ ability to produce crippleware, it makes the barrier for entry higher so that reviewers have more time to focus on improvements to the directory and the review process.</p>\n<p>The new accessibility requirements will apply to all themes hosted on WordPress.org, not just new ones entering the directory. Existing themes will be expected to meet the requirements as they pass through the review process for updates. However, the team will not be actively hunting down old themes to suspend them. Today’s decision marks an important turning point that has the potential to have a ripple effect across the entire theme industry, as WordPress.org sets the standard for theme development. These new requirements give legs to WordPress’ commitment to accessibility in what TRT member Justin Tadlock called “a small but major step toward accessibility for all in the directory.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Jul 2019 23:24:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: The News Project Launches Its First Customer Site CALmatters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/the-news-project-launches-its-first-customer-site-calmatters\";s: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:2798:\"<p><a href=\"https://thenewsproject.net\">The News Project</a> founded by Merril Brown has <a href=\"https://techcrunch.com/2019/07/09/the-news-projects-publishing-platform-goes-live-with-its-first-customer-calmatters/\">launched</a> its first customer site, <a href=\"https://calmatters.org/blogs/inside-calmatters/2019/07/introducing-a-new-look-for-calmatters/\">CALmatters</a>. CALmatters is a nonprofit journalism venture that covers politics, environmental regulation, education, and more. </p>\n\n\n\n<p>The site sports a new design, a fresh logo, and was built using WordPress. The News Project describes itself as a “solution that integrates best-of-breed content, audience and revenue tools that a typical news venture would assemble separately at far greater cost in time, effort and dollars.”</p>\n\n\n\n<p>Interestingly, <a href=\"https://newspack.blog/\">Newspack</a>, a vertical on WordPress.com and <a href=\"https://github.com/Automattic/newspack-plugin\">open-source plugin</a> tailored to newsrooms and journalists <a href=\"https://newspack.blog/2019/05/01/newspack-faq/\">is described</a> in a similar fashion, “It’s a ready-to-go, intuitive, revenue-focused publishing platform that will let small and medium-sized newsrooms dedicate more resources to their journalism. Newspack will be simple to set up, easy to use, durable, flexible and fast.”</p>\n\n\n\n<p>The descriptions and the services being offered are interesting because of what happened earlier this year. Back in January, <a href=\"https://wptavern.com/wordpress-com-secures-2-4-million-in-funding-from-google-and-partners-to-build-a-publishing-platform-for-news-organizations?fbclid=IwAR3qPdJ3quQN3YeYWB_ymi38pLLrIv-P2-2uMXxTvUfRelI1gJ07Y_-cpiQ\">WordPress.com secured $2.4M in funding</a> from Google and other partners to build a publishing platform for news organizations. Around the same time, <a href=\"https://www.axios.com/the-news-project-wordpress-local-news-cms-49d8f91e-2253-4709-bd85-9fb9e06fdd23.html\">The News Project announced</a> it received a six-figure investment from <a href=\"https://wpvip.com/2019/01/15/wordpress-com-vip-invests-in-the-news-project/\">WordPress.com VIP</a> which is essentially accomplishing the same thing. </p>\n\n\n\n<p>I don’t understand why Automattic would invest in The News Project and then create a vertical on WordPress.com that solves the same problem. Since The News Project is already using WordPress to power the CMS and WordPress.com VIP to host their customers, perhaps the capital was more of an in-kind gift. </p>\n\n\n\n<p>Regardless of the relationship between the two company’s, newsrooms and small-to-medium-sized publications are getting more options to consider when it comes to hosting and a CMS that’s highly tailored to the industry. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Jul 2019 20:21:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Matt: The Houston Doberge Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=49673\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2019/06/doberge-project/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17215:\"<p><em>Every year for my Mom’s birthday lunch she has a Doberge cake from <a href=\"https://gambinos.com/\">Gambino’s in New Orleans</a>, but this year there was a Fedex snafu and it arrived spoiled. We found a last-minute replacement, but it piqued my curiosity as to better alternatives and I commissioned this survey of eight bakeries to answer the question: What’s the best Doberge cake in Houston or New Orleans? The article and pictures that follow are from <a href=\"https://alicelevitt.com/\">food critic, travel journalist, and medical science writer Alice Levitt</a>. I hope you enjoy the history, reviews, and surprise winner.</em></p>\n\n\n\n<p>1885, Budapest. Franz Josef I and his wife, Elizabeth, rulers of Austro-Hungary, are attending the National General Exhibition of Budapest. There is much to see, but the emperor’s sweet tooth is pulling him toward one particular display. He simply must taste this new cake he’s been hearing about. He must find the Dobos torte.</p>\n\n\n\n<span id=\"more-49673\"></span>\n\n\n\n<p>It isn’t just any cake. With increased ease in shipping products across the continent thanks to better rail links, Jozsef Dobos had set a goal of getting his cakes into homes across Europe. But while trains were fast they weren’t refrigerated, and fluffy whipped cream-layered fancies would quickly become rancid mush in a hot railway carriage. Innovative delicatessen owner Dobos created the solution: a five-layer cake that took a cue from France with a filling of stable chocolate buttercream, a trend that hadn’t yet hit central Europe. Each layer of vanilla sponge worked with its spackling of buttercream like a well-designed piece of modern architecture, keeping itself cool and dry (but not too dry). For a final flourish — and still more shelf-stability — the whole cake got a crisp caramel jacket. </p>\n\n\n\n<p>Dobos, a proponent of open source before it had a name, gave his recipe to the Budapest Confectioner’s and Gingerbread Maker’s Chamber of Industry in 1906 with the stipulation that it must be shared with anyone who wanted it. The cake traveled widely. Now with seven layers, it made its way to America through Jewish delis that sold it as Seven-Layer Cake. Upscale shops like the St. Moritz Bakery in Greenwich, Connecticut, enrobed it in dark chocolate instead of caramel. For its final bit of Americanization, it turned from a round cake into a rectangle. </p>\n\n\n\n<p>1933, New Orleans. It was never this hot in Hungary. Beulah Ledner, with her Eastern European blood, was not made for it. Neither were certain cakes, it turned out. During the Great Depression, she earned extra money for her family crafting the German confections her mother had taught her to make. </p>\n\n\n\n<p>One favorite was Dobos torte. But despite its Hungarian hardiness, it was not created with sticky Louisiana summers in mind. The wintry pastry needed to lighten up.</p>\n\n\n\n<p>Some bakers had ballooned their cakes to 11 layers. Ledner stuck with a more modest eight. But her stroke of genius was replacing the rich buttercream between the layers with airier custard. Buttercream still made an appearance surrounding the cake, which was then covered in a layer of fondant. </p>\n\n\n\n<p>“She knew no one in New Orleans would take to an Eastern European cake,” her son Albert Ledner told <em>Country Roads</em> magazine. “So she Frenchified the name and called it ‘Doberge.’” With that, the pastry’s fate as a New Orleans classic, alongside King Cake and beignets, was sealed. Her Lowerline Street bakery flooded with customers who called her “the Doberge Queen of New Orleans,” perhaps not realizing that she had invented both the cake and the name. Her business grew into a new spot on South Claiborne Avenue and a new name — the Mrs. Charles Ledner Bakery. The torte options grew, too. Chocolate was the standard flavor, but there were lemon, caramel, and strawberry versions. The half-and-half cake, which allowed customers the option to taste chocolate and lemon in a single go, became the most beloved version.</p>\n\n\n\n<p>Despite her success, Ledner sold the business and all its recipes in 1946, blaming health issues and World War II sugar rations. The purchaser, Joe Gambino, adhered strictly to her recipes. He opened his shop, Joe Gambino’s Bakery, in 1949 and has served the cakes to New Orleans and the rest of Louisiana, ever since. </p>\n\n\n\n<p>As for Ledner, part of her deal with Gambino included a five-year embargo on opening a new bakery in New Orleans. But she could only sit still for two, and debuted the Beulah Ledner Bakery in nearby Jefferson Parish in 1948. Demand forced her to change locations yet again and she expanded to Metairie, this time with a bakery designed and built by her architect son. Ledner ran that last bakery until 1981, when she retired at the age of 87. She ate a slice of Doberge for her birthday every year, including at her 94th and final celebration.</p>\n\n\n\n<p>Unsurprisingly, the Doberge’s sugary tendrils also made their way into nearby Houston. There are six businesses in Space City that sell either Doberge or the more classic Jewish-deli-style Seven-Layer Cake. But how to know which to buy for your next birthday? I sampled all six, as well as the best of New Orleans, to figure out which should be avoided and which are worthy centerpieces for a special occasion. They are listed here from worst to best.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Disappointment<br />The Dobasche, <a href=\"http://raosbakery.com/\">Rao’s Bakery</a> </h4>\n\n\n\n<ul><li><strong>Cake</strong>: White and double fudge</li><li><strong>Layers</strong>: Menu says six, but I only got four</li><li><strong>Filling</strong>: Vanilla and chocolate pudding, purportedly</li><li><strong>Exterior</strong>: Fudge icing, ganache top, and walnuts on the sides</li><li><strong>Decorations</strong>: Just the walnuts</li><li><strong>Pickup experience</strong>: Quick and easy, even on Easter</li><li><strong>Flavors</strong>: Chocolate or lemon</li><li><strong>Sizes</strong>: 6”, 8”, quarter, half, or full sheets</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Johnny Rao opened the original location of his bakery in Beaumont on 1941, almost matching the vintage of Ledner’s cakes. The Champions-area bakery, at the top of North Houston’s internationally varied Veterans Memorial Drive, opened in 2006. Things seemed promising despite the strange spelling, “Dobasche.”</p>\n\n\n\n<p>It’s a cheerful place, full of families on a Sunday morning, but the cake didn’t live up to the pleasant experience of the bakery. What made this a Doberge? Nothing, really. The four fat layers of cake alternated between too-light chocolate and white. Though the description on the menu said there were both vanilla and chocolate pudding fillings, I could only find a meager swipe of vanilla buttercream holding the layers together. The exterior fudge icing tasted suspiciously like it had been made by Duncan Hines.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>Runners Up<br />Chocolate Daubache, <a href=\"https://fgbakery.com/\">French Gourmet Bakery</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: Vanilla</li><li><strong>Layers</strong>: Six — four thin, two thick</li><li><strong>Filling</strong>: Fudge icing</li><li><strong>Exterior</strong>: More of the same fudge icing</li><li><strong>Decorations</strong>: A few swirls on top</li><li><strong>Pickup experience</strong>: Exceptional. The counter staffer even offered to carry the cake to the car.</li><li><strong>Flavors</strong>: Chocolate or strawberry</li><li><strong>Sizes</strong>: 8”</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The Ramain family has been running this ladies-who-lunch destination since 1973. Yes, the raison d’être is French-inspired mousse cakes, macarons, and eclairs, but there’s a menu of “American Cakes,” too. The Daubache is served with strawberry filling by default, but is available in a chocolate version as well. </p>\n\n\n\n<p>The six layers here were the most uneven, with two thick ones in the middle resembling buck teeth in a sea of average-sized chompers. There was nothing truly wrong with this cake, but it was really just an acceptable, if slightly oversweet, layer cake with nothing to distinguish it.</p>\n\n\n\n<h4>Seven-Layer Chocolate Cake, <a href=\"https://3brothersbakery.com/\">Three Brothers Bakery</a></h4>\n\n\n\n<p><strong>Cake</strong>: Fluffy, vanilla-scented<br /><strong>Layers</strong>: Seven<br /><strong>Filling</strong>: Chocolate buttercream<br /><strong>Exterior</strong>: Fudge icing<br /><strong>Decorations</strong>: Icing swirls and chocolate sprinkles with a cherry on top.<br /><strong>Pick up experience</strong>: Placed the order online, and pick-up was friendly and easy.<br /><strong>Flavors</strong>: Chocolate or mocha<br /><strong>Sizes</strong>: One size, which feeds about 10-12</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>This is a cake with history. Why not go to a comparably storied bakery? The Three Brothers saga began in 1825 with the opening of Morris Jucker’s bakery in Chrzanow, Poland. The family continued to run the business there until they were rounded up and sent to a concentration camp in 1941. Brothers Sigmund, Sol, and Max Jucker all survived to open their first Houston bakery in 1949.</p>\n\n\n\n<p>That’s the good news. The bad news is that the brothers adapted to American tastes by raising the amount of sugar in their recipes. The buttercream in their Seven Layer Cake made my teeth hurt. But the fudge icing on the outside was less sweet and deeply chocolaty, enhanced with a layer of chocolate sprinkles. I ended up focusing on the perimeter of the large slice. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Classic<br />Doberge Cake, Gambino’s</h4>\n\n\n\n<ul><li><strong>Cake</strong>: Fluffy but sturdy and moist vanilla buttermilk cake</li><li><strong>Layers</strong>: Six</li><li><strong>Filling</strong>: Coffee-infused chocolate custard</li><li><strong>Exterior</strong>: Chocolate buttercream and fondant</li><li><strong>Decorations</strong>: Pretty buttercream flowers</li><li><strong>Pick up experience</strong>: Was able to pick up from case without pre-ordering.</li><li><strong>Flavors</strong>: Chocolate, lemon, caramel, or a mix</li><li><strong>Sizes</strong>: 8”</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>So this is history. Gambino’s takes great care in crafting every cake, including baking each of its layers separately, rather than cutting one big cake into pieces. Custard is made from scratch for each specimen. And the half-and-half cakes are still one of the Metairie bakery’s best-sellers. I snapped up a chocolate cake straight from the case.</p>\n\n\n\n<p>Ledner’s attempt at Americanizing her cake by adding more sugar is clear. The buttercream crunched with crystals of it. Combined with the fondant, it was unpleasantly sweet, though I liked the earthiness of the coffee in the chocolate custard.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Original<br />Seven-Layer Dobash Torte, <a href=\"https://www.thevillagebakeryhouston.com/\">Village Bakery</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: White</li><li><strong>Layers</strong>: Seven</li><li><strong>Filling</strong>: Chocolate buttercream</li><li><strong>Exterior</strong>: Chocolate buttercream, topped with a layer of lady fingers and caramel</li><li><strong>Decorations</strong>: Nope</li><li><strong>Pick up experience</strong>: Very pleasant.</li><li><strong>Flavors</strong>: Almost endless.</li><li><strong>Sizes</strong>: Up to you. Cakes are entirely custom.</li></ul>\n\n\n\n<p>The name Dobash is misleading; this is no New Orleans delicacy. Of all the cakes I tried, this is closest to Dobos’ original, down to the crunchy coating of caramel, now a rarity. The rectangular shape, however, may owe to Jewish owner Richard Jucker. (I also picked up a day-old bag of his varied, not-too-sweet <a href=\"https://www.myjewishlearning.com/the-nosher/what-are-hamantaschen/\">Hamantaschen</a> while I was there.)</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Any resemblance to the Three Brothers cake is no coincidence. Jucker’s father was one of the founders of that bakery and the younger baker worked there from 1981 to 1999. But just as he broke away, this cake is very much its own torte. Fluffy, vanilla-scented layers are surrounded by buttercream that verges on too sweet, especially with the addition of the caramel, but never overwhelms as some of the others do. This is a Dobos torte for the traditionalist — and the client interested in enhancing their cake with flavors like pistachio or almond buttercream. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Upgrade<br />Seven-Layer Cake, <a href=\"https://www.kennyandziggys.com/\">Kenny & Ziggy’s</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: Yellow</li><li><strong>Layers</strong>: Seven</li><li><strong>Filling</strong>: Chocolate mousse</li><li><strong>Exterior</strong>: Chocolate ganache</li><li><strong>Decorations</strong>: Toasted almonds on the sides</li><li><strong>Pick up experience</strong>: N/A</li><li><strong>Flavors</strong>: Just chocolate</li><li><strong>Sizes</strong>: Only one, a whopping two feet, eight inches. Catering director Jeanne Magenheim estimates that each one feeds up to 28 people.</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>It’s hard to believe that Houston is home to one of the world’s best remaining Jewish delis, but thanks to living piece of culinary history Ziggy Gruber — whose family came to the U.S. from Hungary in the early 20th century and opened New York’s famous Rialto Deli — it has been since 1999. The Deli Man himself designed his Seven-Layer cake to be a cut above the classic. </p>\n\n\n\n<p>Instead of buttercream, he ups the ante with intense chocolate mousse. A thick layer of ganache surrounds the outsized square slices of almond-bedecked layer cake. This would be my favorite if not for the too-light cake itself. Just a hint more substance, and this would be close to perfection.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Specialist<br />Chocolate Doberge, <a href=\"https://debbiedoesdoberge.com/\">Debbie Does Doberge</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: White, sturdy but moist</li><li><strong>Layers</strong>: Seven</li><li><strong>Filling</strong>: Custard</li><li><strong>Exterior</strong>: Poured fondant</li><li><strong>Decorations</strong>: You can request buttercream roses or fleurs de lis.</li><li><strong>Pick up experience</strong>: N/A</li><li><strong>Flavors</strong>: Endless, including pistachio, fig/white chocolate/goat cheese, and rum-spiked Bananas Foster.</li><li><strong>Sizes</strong>: 6” through 16”</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>A designer friend described the cakes here, crafted by Charlotte McGehee and Charles Mary IV, as having the concise beauty of a sports car. Each slice is simply perfect. The balance of each precisely even layer of cake to complementary custard filling feels like eating cake in Plato’s cave. The care taken in each detail is evident, down to the soft, uncommonly edible fondant coating on each slice, whether it covers a well-spiced carrot cake or indulgently minty chocolate one. </p>\n\n\n\n<p>Is it the best Doberge being produced in the world today? Almost certainly. But right now, the New Orleans company doesn’t ship. (They hope to start again soon.) When it does, this should be the option (smeared) on everyone’s lips. But until then, I’ll fly to New Orleans just to grab a slice of rainbow-striped cake with almond custard and sigh.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Standout<br />New Orleans Daubache, <a href=\"http://acadianbakers.com/\">The Acadian Bakers</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: Fluffy vanilla</li><li><strong>Layers</strong>: Six </li><li><strong>Filling</strong>: Chocolate custard</li><li><strong>Exterior</strong>: Ganache</li><li><strong>Decorations</strong>: Chocolate swirls and hearts, as well as two chocolate-covered strawberries.</li><li><strong>Pick up experience</strong>: Cake was more than an hour late, with little apology.</li><li><strong>Flavors</strong>: Just chocolate</li><li><strong>Sizes</strong>: 9”</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The Acadian Bakers has the best Doberge option for a Houston resident; pastry chef Sandra Bubbert has been turning out craveable cakes for more than 36 years. Luminaries from presidents George H.W. Bush and Bill Clinton to Reba McIntyre and Arnold Schwarzenegger have tasted her treats, earning her a reputation as “baker to the stars.”</p>\n\n\n\n<p>I wasn’t treated like a star with the more than hour-long wait for my cake, despite having set a time for pick-up a week before, but once I tasted it, the frustration fell away. This cake is exactly what a Doberge should be. Sweet, but not overwhelming, decadently chocolaty, and sturdy enough to withstand a hot day on the Gulf Coast. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Jul 2019 05:15:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"WPTavern: Anders Norén Release Free Chaplin Theme Designed for Block Editor, Theme Authors Discuss Better Ways to Promote Truly Free Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91335\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"https://wptavern.com/anders-noren-release-free-chaplin-theme-designed-for-block-editor-theme-authors-discuss-better-ways-to-promote-truly-free-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7160:\"<p><a href=\"https://www.andersnoren.se\" rel=\"noopener noreferrer\" target=\"_blank\">Anders Norén</a> has released <a href=\"https://wordpress.org/themes/chaplin/\" rel=\"noopener noreferrer\" target=\"_blank\">Chaplin</a>, his 20th free WordPress theme, designed specifically for use with the block editor. Chaplin could be loosely described as an agency or business stye theme but the capabilities of the block editor enable users to create advanced page layouts that would suit many different types of websites.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/chaplin.jpg?ssl=1\"><img /></a></p>\n<p>The layout for the front page shown in the screenshots can be easily recreated by adding a new page, selecting “Cover Template” for the page template, and adding a featured image. Users can then add columns, images, and paragraph text using the block editor to recreate the structure of the demo. Norén has included detailed instructions in the theme’s readme.txt file for setting it up to look like the demo.</p>\n<p>Font and color settings can both be found in the Customizer and these styles will be reflected in the block editor for a more realistic preview of the content. Chaplin comes with infinite scroll built in and additional settings for displaying and hiding specific post meta on archives and single posts. The theme has logo support, widget areas, a social menu with icons, sticky header support, and a search overlay. Check out the <a href=\"https://andersnoren.se/themes/chaplin/\" rel=\"noopener noreferrer\" target=\"_blank\">live demo</a> to see all the features in action.</p>\n<p>Shortly before the release of WordPress 5.0, Norén worked to get all of his themes <a href=\"https://wptavern.com/authors-of-popular-wordpress-org-themes-rolling-out-gutenberg-compatibility-updates-ahead-of-5-0-release\" rel=\"noopener noreferrer\" target=\"_blank\">compatible with the new block editor</a>. Most of his previous themes were created to be niche-specific and easy to have looking just like the demo upon activation. One drawback was that the only way to really customize his themes was to create a child theme and add/or custom CSS, something that is out of reach for most WordPress users.</p>\n<p>In a <a href=\"https://www.andersnoren.se/enter-stage-left-chaplin/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> introducing the theme, Norén described how the new block editor inspired him to start building themes differently than he had in the past.</p>\n<p>“For a while, though, I’ve been thinking about how I could build a theme more customizable than the ones I’ve been making so far,” he said. “With the introduction of the Block Editor in WordPress 5.0, any page on a WordPress site can accommodate pretty much any layout, making WordPress itself a lot more flexible than it was just a year ago. If the Block Editor would enable users to create any layout on their site, and the theme would allow them to style the layouts however they want, then that could end up being pretty useful.”</p>\n<p>Chaplin is a successful departure from Norén’s previously static themes that gives users more freedom simply by making the block editor the main vehicle for creating and rearranging the home page layout. No two customizations will look exactly alike because users can arrange blocks in any combination.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/chaplin-collage-compressed.jpg?ssl=1\"><img /></a></p>\n<p>This theme is a good example of the possibilities that the block editor opens up for users who want more control of their sites’ layouts and content without having to wade through pages of documentation and dozens of panels of Customizer options. In many ways, themes that fully embrace the block editor are beginning to make older themes seem two-dimensional. This shift in focus is an important milestone in the evolution of theme development.</p>\n<h3>WordPress Theme Authors Discuss Better Ways to Promote Quality Themes on WordPress.org</h3>\n<p>Based on the community <a href=\"https://twitter.com/andersnoren/status/1146000192795271168\" rel=\"noopener noreferrer\" target=\"_blank\">response</a> to Chaplin’s release, it’s clear that there is a real demand for themes made specifically for the block editor. However, WordPress.org is not currently set up to promote themes like this.</p>\n<p>If you filter for “block editor styles” and “wide blocks” when searching for themes, WordPress.org search currently returns just 26 themes.</p>\n<p>Unless you already know about a specific theme and search for it, the best themes are difficult to find. The Featured and Popular Tabs inside WordPress’ theme browser do little to surface block-ready themes.</p>\n<p>In a related <a href=\"https://twitter.com/justintadlock/status/1147472529113698311\" rel=\"noopener noreferrer\" target=\"_blank\">discussion</a> that popped up over the weekend, long time Theme Review Team member Justin Tadlock contends that the WordPress.org theme directory is “becoming little more than a crippleware distributor.” He is referring to those themes that do not enable users to further customize them but rather lock away certain features behind upsells.</p>\n<p>“Essentially, many themes submitted are a ‘lite’ or ‘free’ version of a commercial theme with extremely reduced functionality,” Tadlock said. “For example, we had a theme author trying to upsell access to post formats (a core feature) the other day.”</p>\n<p>Fellow Theme Review Team member Danny Cooper <a href=\"https://twitter.com/dannycooper147/status/1147569548855562245\" rel=\"noopener noreferrer\" target=\"_blank\">cited</a> Elementor’s Hello Theme as one example of “the new breed of themes that only exist to ‘sell’ something else.”</p>\n<p>Participants in the discussion suggested WordPress.org employ stricter enforcement of upsells or implement a more nuanced tag system that would identify themes that have some features locked for users who don’t purchase an upgrade. Others suggested theme authors meet the minimum accessibility requirements as a new threshold for entry into the directory, which would likely slash the number of themes waiting to be reviewed and incentivize companies to invest in accessibility testing to improve that process.</p>\n<p>“Honestly, I would prefer all themes with upsell to be filtered out into their own section of the directory, so it’s clear to visitors what themes are free and what themes are ‘free,’ Norén said in response to the discussion. “It would also reduce the incentive for theme shops to flood the directory with crippled themes.”</p>\n<p>Norén is one of a handful of theme authors who are submitting high quality themes to the directory that are truly free from upsells. In a time when it’s still not common to find new themes built specifically for the block editor, WordPress.org might benefit from featuring these themes in the same way it does for block-enabled plugins.</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, 08 Jul 2019 22:10:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: WPWeekly Episode 359 – Diversity Speaker Training With Jill Binder\";s:7:\"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:59:\"https://wptavern.com/?p=91436&preview=true&preview_id=91436\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/wpweekly-episode-359-diversity-speaker-training-with-jill-binder\";s: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:2523:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://jillbinder.com/\">Jill Binder</a>, Founder, and Chief Consultant and Trainer at <a href=\"http://diversein.tech\">Diverse Speakers In Tech</a>. We discussed how and why the <a href=\"https://make.wordpress.org/training/handbook/lesson-plans/speaker-training/\">Diverse Speaker Training group</a> was created, how <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\">the training</a> encourages underrepresented people to speak at WordCamps, and how the <a href=\"https://en.blog.wordpress.com/2019/06/19/want-to-see-a-more-diverse-wordpress-contributor-community-so-do-we/\">recent 50% sponsorship funds</a> from Automattic will be used.</p>\n<p>We also learned that local communities that have participated in the training at the meetup level have seen a sharp increase in the number of diverse speaker applications submitted to WordCamps. Binder is hoping to be sponsored 100% so she can work on the project full-time. If you’re interested in <a href=\"https://jillbinder.com/contact/\">sponsoring her work</a>, please visit her contact page and get in touch.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://pantheon.io/blog/announcing-pantheon-localdev-early-access\">Announcing Pantheon Localdev Early Access</a></p>\n<p><a href=\"https://woocommerce.wordpress.com/2019/07/02/woocommerce-3-6-5-security-release/\">WooCommerce 3.6.5 security release</a></p>\n<p><a href=\"https://jetpack.com/2019/07/02/jetpack-7-5/\">Jetpack 7.5</a></p>\n<p><a href=\"https://twitter.com/JohnONolan/status/1146075173134618625\">Discuss This Tweet by John O’ Nolan</a></p>\n<h2>Transcript:</h2>\n<p><a href=\"https://wptavern.com/wp-content/uploads/2019/07/EPISODE-359-Transcript.rtf\">EPISODE 359 Transcript</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 10 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #359:</strong><br />\n</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, 04 Jul 2019 01:10: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"WPTavern: Google Launches Effort to Make Robots Exclusion Protocol an Internet Standard, Open Sources Robots.txt Parser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://wptavern.com/google-launches-effort-to-make-robots-exclusion-protocol-an-internet-standard-open-sources-robots-txt-parser\";s: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:3859:\"<p>Website owners have been excluding web crawlers using the Robots Exclusion Protocol (REP) on robots.txt files for 25 years. More than 500 million websites use robots.txt files to talk to bots, according to Google’s data. Up until now, there has never been an official Internet standard, no documented specification for writing the rules correctly according to the protocol. Over the years, developers shared their various interpretations of the protocol, but this created many different ambiguous methods for controlling crawlers.</p>\n<p>Google is working together with Martijn Koster, the original author of the protocol, webmasters, and other search engines to <a href=\"https://webmasters.googleblog.com/2019/07/rep-id.html\" rel=\"noopener noreferrer\" target=\"_blank\">create a proposal</a> to submit to the <a href=\"https://www.ietf.org/standards/\" rel=\"noopener noreferrer\" target=\"_blank\">Internet Engineering Task Force</a> (IETF) for standardizing the REP:</p>\n<blockquote><p>The proposed REP draft reflects over 20 years of real world experience of relying on robots.txt rules, used both by Googlebot and other major crawlers, as well as about half a billion websites that rely on REP. These fine grained controls give the publisher the power to decide what they’d like to be crawled on their site and potentially shown to interested users. It doesn’t change the rules created in 1994, but rather defines essentially all undefined scenarios for robots.txt parsing and matching, and extends it for the modern web.</p></blockquote>\n<p>The proposed specification includes several major items that webmasters and developers will want to review. It extends the use of robots.txt to any URI-based transfer protocol (FTP, CoAP, et al), instead of limiting it to HTTP. It also implements a new maximum caching time of 24 hours and lets website owners update robots.txt whenever they choose, without having crawlers overload their sites with requests. If a previously accessible robots.txt file becomes inaccessible for whatever reason, crawlers will respect the known disallowed pages that were previously identified for “a reasonably long period of time.”</p>\n<p>Google has also <a href=\"https://opensource.googleblog.com/2019/07/googles-robotstxt-parser-is-now-open.html\" rel=\"noopener noreferrer\" target=\"_blank\">open sourced</a> the C++ library it uses for parsing and matching rules in robots.txt files, along with a testing tool for testing the rules. Developers can use this parser to create parsers that use the proposed REP requirements. It has been updated to ensure that Googlebot only crawls what it’s allowed to and is now <a href=\"https://github.com/google/robotstxt\" rel=\"noopener noreferrer\" target=\"_blank\">available on GitHub</a>.</p>\n<p>“This library has been around for 20 years and it contains pieces of code that were written in the 90’s,” Google’s Search Open Sourcing team said in the <a href=\"https://webmasters.googleblog.com/2019/07/repp-oss.html\" rel=\"noopener noreferrer\" target=\"_blank\">announcement</a>. “Since then, the library evolved; we learned a lot about how webmasters write robots.txt files and corner cases that we had to cover for, and added what we learned over the years also to the internet draft when it made sense.”</p>\n<p>Lizzi Harvey, who maintains Google’s Search developer docs, updated the robots.txt spec to match the REP draft. Check out the <a href=\"https://developers.google.com/search/reference/robots_txt#what-changed\" rel=\"noopener noreferrer\" target=\"_blank\">full list of changes</a> if you want to compare your robots.txt file to the proposed spec. If the proposal for standardizing the REP is successfully adopted by the IETF, the days of googling and wading through undocumented robots.txt rules will soon be over.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2019 19:11:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Font Awesome is Branching out with Duotone Colors and Icon Smashups\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/font-awesome-is-branching-out-with-duotone-colors-and-icon-smashups\";s: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:2617:\"<p><a href=\"https://fontawesome.com/icons?d=gallery&v=5.9.0\" rel=\"noopener noreferrer\" target=\"_blank\">Font Awesome 5.9</a> was released last month with 421 new and updated icons. The popular icon font library has grown to include more than 5,000 vector icons and is used on <a href=\"https://trends.builtwith.com/widgets/Font-Awesome\" rel=\"noopener noreferrer\" target=\"_blank\">34% of the top million websites</a>. It’s also one of the top open source projects on GitHub and a popular choice for WordPress theme and plugin developers using icons in their work.</p>\n<p>Just a month after 5.8 brought in another batch of top requested brand icons, including Airbnb, Salesforce, and Evernote, the latest release adds more Editor icons to help those who are building text and WYSIWYG editor UIs.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-03-at-8.52.47-AM.png?ssl=1\"><img /></a></p>\n<p>Another notable update in 5.9 is the introduction of icon duos, where Font Awesome has taken some icons and put them together with other icons. For example, the update includes combinations like car-bus and burger-soda.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-03-at-9.06.59-AM.png?ssl=1\"><img /></a></p>\n<p>Font Awesome also recently announced that it will soon be introducing duotone colors to the library, which users will be able to customize.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">We thought it might be fun to add a little color to our icons. So we did. <a href=\"https://twitter.com/hashtag/duotone?src=hash&ref_src=twsrc%5Etfw\">#duotone</a> <a href=\"https://twitter.com/hashtag/comingsoon?src=hash&ref_src=twsrc%5Etfw\">#comingsoon</a> <a href=\"https://t.co/9nOyw8pgCK\">pic.twitter.com/9nOyw8pgCK</a></p>\n<p>— Font Awesome (@fontawesome) <a href=\"https://twitter.com/fontawesome/status/1143244812910510084?ref_src=twsrc%5Etfw\">June 24, 2019</a></p></blockquote>\n<p></p>\n<p>Documentation on the using the duotones is not yet available, but Font Awesome confirmed that users will be able to change the tones of each icon within their own CSS to any combination. The feature will work out-of-the-box by inheriting the current color but users will be able to change the master color or each layer individually. The icons can then be further customized by targeting each layer in CSS. Follow <a href=\"https://twitter.com/fontawesome\" rel=\"noopener noreferrer\" target=\"_blank\">Font Awesome on Twitter</a> for all the latest news on icon updates and the upcoming duotone color feature release.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2019 15:16:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"HeroPress: I Am Cookie Dough\";s:7:\"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=2911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/i-am-cookie-dough/#utm_source=rss&utm_medium=rss&utm_campaign=i-am-cookie-dough\";s: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:12128:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/07/070319-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I can finally acknowledge that I am worth being a part of a team.\" /><p>I was always told I had to go to college. I was “gifted” so learning came easy and I enjoyed it. From ages 6 to 18, I went to competitive accelerated schools designed to churn out college students. It was a narrow path I’d been set on, without encouragement to explore beyond.</p>\n<p>Majoring in theater was a no-brainer. It was the only thing I’d done my whole life, so I figured I wouldn’t get bored. My mom was a stage manager so it has always been easy to bring me to rehearsals with her when working a show. I ended up in close to 20 different productions between 5 and 13. Plus, Florida State University had a great theatre program and in-state tuition was cheap. So I went.</p>\n<p>But I wasn’t there because I wanted to be. I’d gone simply because I felt I <i>had</i> to go to college, regardless of what I did when I got there. I liked theater a lot, but I didn’t love it the way my classmates did. Self-doubt crept in. Depression overcame me. Anxiety and self-hatred took root. I stopped going to class. I isolated myself from my friends who – going through their own stuff – were too busy to notice.</p>\n<p>At 19, I dropped out.</p>\n<h3>Straying from the path</h3>\n<p>With me, I took thousands in debt, a diagnosis of bipolar disorder, and a bruised ego. I wandered, directionless for the first time in my life.</p>\n<p>I felt like a failure. I did not know who or what I was anymore, I had no community and I belonged nowhere. I was crippled by my concurrent depression and lack of a diploma. What was my path now?</p>\n<p>My mother spent her whole life working in the arts and that made her happy. I wanted the same thing. But we were always pinching pennies. I didn’t want that for myself, and I didn’t want my kids to grow up with that burden. So I thought to myself, “What can I do that’s creative, won’t be boring, and can earn me an income?”</p>\n<p>I don’t remember if there was a lightbulb moment where I realized web design checked all my boxes. But that was there I landed.</p>\n<p>I started getting my toes wet with HTML and CSS, but coding didn’t come easily to me. I didn’t have a computer, so I would write out lines of code by hand in order to memorize syntax. It didn’t click and just swam in front of my eyes. It was difficult, so I gave up.</p>\n<p>For a year and a half, I lived in a few different cities, from Ft Lauderdale all the way to Los Angeles, working some retail and food service jobs. I learned about customer service, the balance between maintenance and growth, and found myself more than a little bit fascinated by marketing. I began to learn how to juggle the depression and anxiety that lived in my head.</p>\n<p>No matter where I went, web design was sitting in the back of my brain. I was shut down when I tried to suggest changes to the booking system of a salon I worked at. I found myself sketching redesigns of the website of the bar where I picked up shifts. I started learning again after moving back to Florida. This time, I found online resources like Udemy and CodeSchool and it all began to click.</p>\n<h3>Finding a new path</h3>\n<p>While I still didn’t love code itself, I loved the idea of building something from nothing. It all hearkened back to theater: rallying the knowledge and experience of multiple people, laying out a plan, inventing some creative solutions along the way, iteration after iteration until it functions and yields a result, then presenting it as a living and breathing product. I had learned about story-telling via script analysis classes in college as well as spacing and color psychology. I had always been academic, so I found ease and comfort in things like databases and content writing. My intellectual and creative side were merging, dancing together in one elegant performance.</p>\n<p>In 2015, I applied for a web design internship at a small agency. It was here where WordPress and I first met. I was amazed that I could easily build websites with limited coding knowledge. I attended my first WordCamp in Miami, where I watched people like Morten Hendricksen and Michelle Schlup live what I wished I could be doing.</p>\n<p>I was promoted to a full employee in a poisonous environment. I had to work long hours and was accused of not being a team player if I didn’t. I was guilt-tripped with gifts and compliments. I was asked to do tasks I hadn’t been trained in and was berated when I struggled. I left one day after about a year, in tears. The despair, loneliness and frustration were unassailable. I had failed, yet again, to move forward on the path I felt I belonged on.</p>\n<h3>Setting my own path</h3>\n<p>I had no savings and no car, so I was left with a choice: apply to work at the Wendy’s that was walking distance up the street, or find a way to make money out of thin air. Taking inventory of my skills:</p>\n<ol>\n<li>I knew WordPress</li>\n<li>I knew how <i>not</i> to run a business</li>\n</ol>\n<p>So I started building small sites for friends and family. I scrambled to learn how to invoice properly, how to handle contracts, how to get taxes paid. I googled a lot and failed often. But it was rewarding and creative, so I stuck to it.</p>\n<p>In 2017, I felt confident enough to apply to speak at WordCamp Miami. It had been 2 years since I had attended the first and I was floored when I was accepted.</p>\n<p>In the three years that I ran my business, I worked with clients from all over the world. I used WordPress daily to build and break, support and scale websites for other business owners like me. I wore every hat I could balance: CEO, CFO, designer, developer, marketer, and support staff in one.</p>\n<p>While I appeared “successful” (whatever that means) I was paddling like crazy beneath the surface and was constantly stretched to my limit. I achieved decent work-life boundaries and found satisfaction in the work, but being depressed while running a business is easier said than done.</p>\n<p>In early 2019, as my bank account began to dry up, I began to seriously consider throwing in the towel.</p>\n<h3>A fork in the path</h3>\n<p>I spoke at WordCamp Miami that year. The entire camp buoyed my spirits; this time, there were faces and topics I recognized. I went with my friend, Louise Treadwell, who made the entire experience less frightening.</p>\n<p>And the universe was looking out for me. The very first person I met that day was Adam Warner.</p>\n<p>He saw my talk and I suppose he saw something in me that he liked. By the end of the conference, my head was swimming with the opportunity he had presented to me: to travel as a GoDaddy Pro Speaker Ambassador.</p>\n<p>I felt that electric sensation again of my two halves – academic and creative – merging. It was the first time the community had reached out and taken a firm, confident grasp of my hand. And I was in exactly the right spot to accept it.</p>\n<p>The idea of attending more WordCamps was thrilling. I vowed to myself that I would up my Twitter game. After all, all my WordCamp heroes were active on Twitter and I was desperate to be where the action was.</p>\n<p>I grabbed as many opportunities as I could to remain visible. I wrote blog posts and made YouTube videos to prove what I knew, to myself as much as others. I wanted to earn my place at the table by giving back into the community that had plucked me out of my despair.</p>\n<h3>Time to merge</h3>\n<p>I’d done a podcast episode with Michelle Ames and I noticed she worked for the plugin, GiveWP. Out of curiosity, I wandered over to their careers page and saw an opening for a support tech. I had the job within 3 days.</p>\n<p>I’ve done a lot of things out of fear that many people find brave. I was told I was brave for majoring in theater, but I’d done it because I didn’t want to fail at something unfamiliar. I was told I was brave for moving to Los Angeles after I dropped out, but I was afraid to be stagnant. I was told I was brave to start my own business, but I was afraid to work for someone else.</p>\n<p>I do feel fear. Fear that I don’t know enough, that I’m too young or inexperienced, that I’ll let down the people who have cheered me on, that I’ll end up vulnerable the way I was in my last job. That I’ll get hurt. That being a black, queer, woman in the tech space will be too challenging.</p>\n<p>I’m comforted by the knowledge that most WordPress people don’t care what gender/color/sexuality you are… as long as you keep your plugins updated. Open-source means you’re not here to out-do the next person, but to contribute toward a common goal. I can dive into support at Give with WordPress as my base, my constant. I can finally acknowledge that I am worth being part of a team. It means all the difference in the world.</p>\n<h3>Who invented this path nonsense anyway?</h3>\n<p>I don’t have to be on a path anymore. I can let myself remain open to possibilities and say “yes” more. I don’t have to decide what I’m going to be, <i>I can just become it,</i> because I can trust myself and the foundation that WordPress has given me. WordPress, with it’s limitless contributors, versions, and possibilities, reminds us that we should be excited by change, not afraid.</p>\n<p>I believe that giving up what I worked for 3 years to build is the bravest thing I’ve done so far. At first, I was furious at myself that I couldn’t make my own business as sustainable as I’d wanted. Moving to Give felt like failing. But Louise called it “failing up” which I think is pretty apt. It was a step forward into something I could grow into and really succeed at, rather than sticking with the familiar like I had always done.</p>\n<p>I often remind myself of a quote from Buffy the Vampire Slayer which, ironically, I watched for the first time while in some the deepest throes of my depression: <i>“</i><i>I’m cookie dough. I’m not done baking. I’m not finished becoming who ever the hell it is I’m gonna turn out to be.” </i></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\">\n<div class=\"rtsocial-twitter-horizontal\">\n<div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: I Am Cookie Dough\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=I%20Am%20Cookie%20Dough&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fi-am-cookie-dough%2F\" rel=\"nofollow\" target=\"_blank\"></a></div>\n</div>\n<div class=\"rtsocial-fb-horizontal fb-light\">\n<div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: I Am Cookie Dough\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fi-am-cookie-dough%2F\" rel=\"nofollow\" target=\"_blank\"></a></div>\n</div>\n<div class=\"rtsocial-linkedin-horizontal\">\n<div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fi-am-cookie-dough%2F&title=I+Am+Cookie+Dough\" rel=\"nofollow\" target=\"_blank\" title=\"Share: I Am Cookie Dough\"></a></div>\n</div>\n<div class=\"rtsocial-pinterest-horizontal\">\n<div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/i-am-cookie-dough/&media=https://heropress.com/wp-content/uploads/2019/07/070319-150x150.jpg&description=I Am Cookie Dough\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: I Am Cookie Dough\"></a></div>\n</div>\n<p><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/i-am-cookie-dough/\" title=\"I Am Cookie Dough\"></a></div>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/i-am-cookie-dough/\">I Am Cookie Dough</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jul 2019 12:00:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Allie Nimmons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Walking 718km to WCEU, an Interview With Marcel Bootsman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91357\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/walking-748km-to-wceu-an-interview-with-marcel-bootsman\";s: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:2209:\"<p>I have a hard time walking a mile or two let alone 718km, but that’s what <a href=\"https://twitter.com/mbootsman\">Marcel Bootsman</a> did on his journey to <a href=\"https://walktowc.eu/\">WordCamp EU</a> to generate funds for <a href=\"https://donatewc.org/\">DonateWC</a>. </p>\n\n\n\n<p>In this interview, Bootsman explains how he prepared for the journey, what he experienced during his trip, and why he chose DonateWC as the charity to raise funds for. </p>\n\n\n\n<p>One of the things that I was curious about was what Bootsman thought about during those long stretches where he had plenty of time to think to himself. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The thing that I noticed is that my thinking had changed during the month. In the beginning, I was thinking about my work, my company, and my family a lot. After about a week my family met me and it was very emotional. </p><p>After that week I found a how do you call it, peace or something like a Zen mode. Nothing was on my mind for large parts of the route. While I was walking, I was just looking around at the scenery and checking out the animals that I saw.</p><p>Sometimes I got an idea about my work and what I wanted to do differently. I’d write it down on my phone and the trip was mostly calm and relaxing.</p><cite>Marcel Bootsman </cite></blockquote>\n\n\n\n<p>The interview is 31 minutes long and is available in video and mp3 formats. There’s also a transcript available below. In the end, Bootsman was able to raise €8590 for DonateWC and inspire a lot of people. To learn more about his journey, check out his <a href=\"https://walktowc.eu/2019/06/29/wrapping-up-walk-to-wordcamp-europe/\">Walk to WordCamp EU summary</a>. </p>\n\n\n\n<h2>Watch and Listen:</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2>Listen:</h2>\n\n\n\nInterview with Marcel Bootsman\n\n\n\n<h2>Transcript:</h2>\n\n\n\n<div class=\"wp-block-file\"><a href=\"https://wptavern.com/wp-content/uploads/2019/07/Interview-With-Marcel-Bootsman-Transcript.rtf\">Interview-With-Marcel-Bootsman-Transcript</a><a href=\"https://wptavern.com/wp-content/uploads/2019/07/Interview-With-Marcel-Bootsman-Transcript.rtf\" class=\"wp-block-file__button\">Download</a></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:\"Tue, 02 Jul 2019 23:57: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: msgWP to Launch Plugin Enabling WordPress Microblogging with Telegram\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/msgwp-to-launch-plugin-enabling-wordpress-microblogging-with-telegram\";s: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:6742:\"<p><a href=\"https://msgwp.com/\" rel=\"noopener noreferrer\" target=\"_blank\">msgWP</a> piqued public interest this week with a demo of its new microblogging product that allows users to publish text messages and photos to WordPress sites using <a href=\"https://telegram.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Telegram</a>. Although the plugin hasn’t officially launched yet, a <a href=\"https://msgwp.com/demo/\" rel=\"noopener noreferrer\" target=\"_blank\">live demo</a> on the website allows people to anonymously publish a post to msgWP’s demo blog from their own Telegram accounts by launching a Telegram bot.</p>\n<p>The plugin’s creator, <a href=\"https://github.com/meszarosrob\" rel=\"noopener noreferrer\" target=\"_blank\">Róbert Mészáros</a>, said he plans to launch it in late summer or early fall, after collecting more feedback from beta testers and polishing the website. Mészáros is a developer who mainly works on a contract or freelance basis. Although msgWP isn’t is first WordPress plugin, it is the first one he has created as a product to promote.</p>\n<p>“It’s highly unlikely that I’ll make msgWP available on the WordPress.org Plugin Directory, but it’s going to be GPL licensed,” Mészáros said.</p>\n<p>“Support, automatic updates, and restricted content will be available only for those who buy a plan. Since I’m using msgWP myself and I plan to donate a part of profit back to the community, to the WordPress Foundation.”</p>\n<p>Most of the plugins available that integrate Telegram with WordPress either broadcast to a channel or display the feed of a public channel in a widget. This is the first plugin that sends Telegram user-generated content into WordPress.</p>\n<p>I tested the demo last night and successfully posted a text to the demo blog. Images do not yet appear to be working on the demo or may be disabled for now. Mészáros said the demo implementation unhooks some of the checks that are enabled by default on the plugin.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-02-at-12.36.31-PM.png?ssl=1\"><img /></a></p>\n<p>When the msgWP plugin is used on a site, administrators need to allow a Telegram account to create posts explicitly. This setting is available in the admin screen where you can enter the username of a Telegram account. Adding multiple usernames to the whitelist opens up some interesting possibilities for group blogging.</p>\n<p>“Since every Telegram message contains information about the Telegram account, we can filter out those who are not whitelisted,” Mészáros said.</p>\n<p>“Also, the fact that users are explicitly whitelisted opens up the way to have user level settings. For example, you can set a specific category for a Telegram account or only give them the option to create draft posts.</p>\n<p>“If you whitelist yourself you have a microblog; if you whitelist 20 users with various settings, you can cover a live event with Telegram and msgWP.”</p>\n<p>The msgWP plugin also checks the IP of the request. If it falls outside a particular IP range, msgWP can recognize that it’s not from Telegram and block it.</p>\n<p>Mészáros’ inspiration for the plugin came from his principles regarding centralized social media. While he maintains a private blog where his friends follow him, Mészáros’ doesn’t use platforms like Twitter and Facebook.</p>\n<p>“I feel strongly about blogging and microblogging,” he said. “It’s not all rainbows – if you have one, you know that it takes a certain kind of commitment and effort.”</p>\n<p>Mészáros said he was also inspired “by an almost forgotten history of WordPress,” wherein many took advantage of its support for XML-RPC to blog from desktop blog editors, like MarsEdit, BlogJet, and BlogDesk, without ever logging into the admin. He contends that third-party tools like this demonstrate that <a href=\"https://msgwp.com/what-is-wordpress-without-its-editor-we-are-not-sure/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress is more than the editor</a>.</p>\n<p>Since msgWP is already integrated into the messaging workflow for Telegram users, it may inspire some to blog more often. Posting is faster than using Twitter, Facebook, or even the WordPress mobile apps, albeit with far fewer features.</p>\n<p>“Paradoxically we want to encourage people to use WordPress by not reminding them that they run their sites/microblogs on WordPress,” Mészáros said. “A messaging app has some informality to it, and that will help a lot. All you need is to write and press send. After all, you are sending texts, and not publishing structured articles on your blog after too many glasses of wine. For this reason, we don’t see msgWP with Telegram as a replacement for the WP Mobile Apps.”</p>\n<p>Despite the convenience promised through various apps, the concept of microblogging on one’s own website does not seem to have taken off yet. Services like <a href=\"https://micro.blog/\" rel=\"noopener noreferrer\" target=\"_blank\">micro.blog</a>, which integrate with existing WordPress blogs, are still used by a fervent few and have not yet gained mainstream adoption. Even the “Press This” feature that was included in WordPress core prior to 2017, was <a href=\"https://wptavern.com/press-this-removed-from-wordpress-4-9-in-favor-of-a-plugin\" rel=\"noopener noreferrer\" target=\"_blank\">retired in favor of a canonical plugin</a>, with discontinued support for the bookmarklet feature. It hasn’t been updated for two years and is only installed on approximately 10,000 sites.</p>\n<p>Postcard, a social sharing and microblogging app that integrated with WordPress, is another tool that was aimed at fundamentally changing how people use social networks. It was <a href=\"https://wptavern.com/postcard-project-discontinued-ios-and-android-apps-now-open-source\" rel=\"noopener noreferrer\" target=\"_blank\">discontinued due to the development burden</a> of supporting multiple apps.</p>\n<p>There are many different solutions that have popped up over the years for enabling quick posts or microblogging, all with vastly different approaches. msgWP has an advantage in that Mészáros can leverage the power and speed of Telegram, along with all of its mobile and desktop clients, without having to maintain that aspect of the publishing interface. Even if it doesn’t spark a wildfire of microblogging across the web, it may offer users a convenient alternative to posting content inside social media silos, especially for niche use cases like group microblogging for live events.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jul 2019 22:36:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Matt: Just Write with David Perell\";s:7:\"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:22:\"https://ma.tt/?p=49754\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://ma.tt/2019/07/just-write-with-david-perrell/\";s: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:594:\"<p>I had an <a href=\"https://www.perell.com/podcast/matt-mulleweg\">interesting conversation with David Perell on his North Star Podcast that I recommend checking out</a>. He’s also leading a really interesting program <a href=\"https://www.perell.com/write-of-passage\">called Write of Passage</a> which is an online course which helps people grow their career by writing and sharing online, which I think is brilliant and a big source of my career growth over the years. I’ve heard he has another coming soon around information organization. David is someone to watch and follow.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jul 2019 12:56: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: CMS Backend Opener: A Firefox Extension to Quickly Locate the Login Page to Popular CMS Backends\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91312\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/cms-backend-opener-a-firefox-extension-to-quickly-locate-the-login-page-to-popular-cms-backends\";s: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:1342:\"<p>If you use Firefox and manage multiple websites that use different Content Management Systems and have a hard time keeping track of the various URLs to their backends, consider using the <a href=\"https://addons.mozilla.org/en-US/firefox/addon/cms-backend-opener/\">CMS Backend Opener</a> Firefox extension created by Andy R.</p>\n\n\n\n<p>Once installed, you can use either a keyboard shortcut (Alt + Y) or press a button within the browser and it will automatically open the login page for the detected CMS in a new window. </p>\n\n\n\n<p>The extension uses the CMS meta-tag: Generator to detect which CMS is being used. The following CMS’ are supported:</p>\n\n\n\n<ul><li>Typo3</li><li>Typo3 Neos</li><li>Joomla</li><li>WordPress</li><li>Django</li><li>Shopware (beta)</li><li>Magento (beta)</li><li>Drupal</li><li>Contao</li><li>Weblication</li><li>WebsiteBaker</li><li>CMSQLite</li><li>Oxid</li></ul>\n\n\n\n<p>Although the extension has not been updated in two years, I tested it on Firefox 67.0.4 on my MacBook Pro and it worked without any issues. I typically use a bookmark to browse to WP-Admin but this is more convenient, especially on WordPress.com. </p>\n\n\n\n<p>I’ve also learned that if you have Pretty Permalinks enabled in WordPress, you can type /login or /admin after your domain and it will typically load the login page. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2019 22:53:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WPTavern: Lessons from the GraphQL Documentary: Never Underestimate the Power of Open Source Communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91081\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/lessons-from-the-graphql-documentary-never-underestimate-the-power-of-open-source-communities\";s: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:5631:\"<p><a href=\"https://www.honeypot.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Honeypot</a>, a tech-focused job platform based in Europe, has produced a <a href=\"https://youtu.be/783ccP__No8\" rel=\"noopener noreferrer\" target=\"_blank\">documentary</a> that offers a fascinating look at the origins of <a href=\"https://graphql.org/\" rel=\"noopener noreferrer\" target=\"_blank\">GraphQL</a>. The 28-minute video explores how quickly the project began to have an impact on the wider tech industry after Facebook publicly released it as an open source project.</p>\n<p>GraphQL co-founder Nick Schrock, who was interviewed along with fellow co-creators Lee Byron and Dan Schafer, said the documentary “captured both the urgency and joy of the early months of the GraphQL.” It was filmed over two months in San Francisco and Berlin, where Honeypot runs the <a href=\"https://www.graphqlconf.org/\" rel=\"noopener noreferrer\" target=\"_blank\">GraphQL Conf</a> in cooperation with <a href=\"https://www.prisma.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Prisma</a>.</p>\n<p>GraphQL began as an internal project at Facebook that was born out of necessity as the tech industry began to shift towards providing better mobile experiences for users. At that time, Facebook’s native apps were just a thin wrapper around the mobile website.</p>\n<p>“The inability of a large technology company to adjust to a technology shift as big as the mobile shift is the type of thing that will consign a seemingly unstoppable empire to the grave in a matter of a few years,” Schrock said.</p>\n<p>Facebook decided to re-write the Facebook iOS app but the APIs they had at that time were inadequate for creating the Newsfeed. A new Newsfeed API was written simultaneously to be used with the new mobile app. Facebook for iOS 5.0, released in 2012, was a native re-write of the app and also the first time GraphQL was deployed in the wild. Following that release, its use was expanded beyond just the Newsfeed to encompass most of the functionality offered in Facebook’s iOS app.</p>\n<p>Facebook shared GraphQL with the world at React Europe 2015 and published the GraphQL spec later in 2015. They explained that their goal was to design what they thought was the ideal API for frontend developers and work backwards with the technology.</p>\n<p>GraphQL’s creators were surprised at how fast the uptake was after making the project public. Engineers at Airbnb, Twitter, and Github were early adopters and their experiences are shared in the documentary with interviews from the community. The problems GraphQL’s creators encountered in scaling their mobile experience were not specific to Facebook. Other companies had similar problems and the demand for GraphQL in the industry was already there. Within six months, the team saw implementations of GraphQL in many of the major programming languages. They realized how important the project was to the industry after <a href=\"https://github.blog/2016-09-14-the-github-graphql-api/\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub announced in 2016 that its public API would be a GraphQL API</a>:</p>\n<blockquote><p>Using GraphQL on the frontend and backend eliminates the gap between what we release and what you can consume. We really look forward to making more of these simultaneous releases. GraphQL represents a massive leap forward for API development. Type safety, introspection, generated documentation, and predictable responses benefit both the maintainers and consumers of our platform.</p></blockquote>\n<p>The documentary tells the story of how GraphQL began the first three years as a solution to internal problems at Facebook but expanded to become a community tool that was initially adopted by hobbyists and then incorporated into the products of large tech companies. GraphQL co-founder Lee Byron predicts that the project is entering the next phase of its life and “heading towards becoming an industry standard and one that’s collaborative.”</p>\n<p>There’s no way to measure the number of APIs that are being built around GraphQL, but the query language is now used in both internal and external APIs at major companies like Pinterest, Intuit, Coursera, Walmart, Shopify, PayPal, KLM, NBC News Digital, Credit Karma, Wayfair, and Yelp. Since it can be used in combination with REST APIs, GraphQL’s rapid adoption is not necessarily a good predictor for the end of REST architecture, but it’s a trend that is worth following. This widespread adoption began with just a handful of engineers who saw GraphQL’s promise at React Europe 2015, built tools to optimize development, and advocated for using GraphQL at their companies.</p>\n<p>“I totally underestimated the power of these open source communities,” Schrock said. “We had to rely on this community of poeple to form spontaneously and then build implementations of this in different languages and then actually productionize it and build an entire tool ecosystem around it. I didn’t think that was ever going to work, and I was totally wrong. If an idea makes sense to people and it clicks with their mind and they can see the vision, they are actually willing to do a lot of work in order to see it executed and share their work, and it’s a pretty remarkable thing to see.”</p>\n<p>The energy in the GraphQL documentary is inspiring and the story shares many parallels with other open source projects that have gained widespread adoption through passionate communities. Check out the full documentary below:</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2019 21:02: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Post Status: WCEU 2019 in Review\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=64837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/wceu-2019-in-review/\";s: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:9086:\"<p>All the talks and panels at WCEU were planned and executed well, but there were a few standouts we’ll highlight, in case you weren’t able to watch the entire <a href=\"https://2019.europe.wordcamp.org/2019/06/21/livestream/\">livestream</a>.</p>\n\n\n\n<h2><strong>Friday Highlights</strong></h2>\n\n\n\n<ul><li><strong>Jenny Beaumont</strong>’s “<a href=\"https://2019.europe.wordcamp.org/session/doing-it-wrong/\">Doing It Wrong</a>” was an encouraging talk that set a good mood for the whole conference. Jenny’s <a href=\"https://www.youtube.com/watch?v=J7D5p25NyAk\">interview</a> with <strong>Torque</strong> at WCEU is worth a listen too. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f31e.png\" alt=\"?\" class=\"wp-smiley\" /></li><li><strong>John Jacoby</strong>’s talk on “<a href=\"https://2019.europe.wordcamp.org/session/advanced-database-management-for-plugins/\">Advanced Database Management For Plugins</a>” explored the pain of dealing with databases when you’re writing plugins. He also announced a stand-alone open source library for better WordPress database management that will be released in July.</li><li><strong>Josepha Haden</strong>‘s talk entitled “<a href=\"https://2019.europe.wordcamp.org/session/change-your-socks-change-your-mind-a-no-fuss-primer-on-change-management/\">Change your socks, change your mind: A no-fuss primer on change management</a>” focused on the things group and community leaders should attend to most during periods of significant change. That’s a timely subject, given the events of the past year, and Josepha’s points apply to many parts of the WordPress community. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f9e6.png\" alt=\"?\" class=\"wp-smiley\" /></li></ul>\n\n\n\n<p>Matt’s talk after lunch on Friday was more of an update on Gutenberg. Matt presented some Gutenberg stats and then put the spotlight on some new block editor plugins and experiments. Matt reminded everyone that Gutenberg is in phase two, “where we are working with widgets (old school blocks), customization, and menus.”</p>\n\n\n\n<h2><strong>Matt’s Session</strong></h2>\n\n\n\n<ul><li>Matt showed off the <a href=\"https://wordpress.org/plugins/grids/\"><strong>Grid</strong> block plugin</a> from <strong>Evolve</strong> that generates any layout style with a slick UI. You have to see it in action.</li><li>Gutenberg is now <a href=\"https://www.drupal.org/project/gutenberg\">available for <strong>Drupal</strong></a><strong>.</strong></li><li>There are about 150k posts published each day with Gutenberg. That’s about two every second, and ta rate is increasing.</li><li>Gutenberg will soon have:<ul><li>A block directory that’s accessible from the “top-level navigation” on the .org site.</li><li>Footnotes and improved “micro” animations.</li><li>Special attention placed on the mobile experience. Matt noted that “Gutenberg for mobile is live, and the ability [to use its features] is increased now in the mobile apps.” He also mentioned they “had to write the codebase separately for this experience.”</li></ul></li></ul>\n\n\n\n<p>The initial questions Matt got from the audience were somewhat aggressive and prolonged, so the moderators found it a challenge to keep things moving. At one point, a moderator broke in to say, “This isn’t a question; it’s a blog post.” I’m wondering if in the future at WCEU (or the upcoming WordCamp US) if a different moderation process might be considered.</p>\n\n\n\n<p>If I had to choose one question of note, it would be the one asked about Matt’s (and WordPress’s) commitment to accessibility. Matt replied, “Accessibility is hard. We will get there. I believe we can make every release of WordPress better, but it’s challenging with Gutenberg because there might not be previous examples to work from.” He acknowledged the excellent work that <strong>WPCampus</strong> recently did with its accessibility audit.</p>\n\n\n\n<h2><strong>Saturday Highlights:</strong></h2>\n\n\n\n<p>Saturday’s talks, like Friday’s, were well done, although the panel on Gutenberg might have had more diversity in its composition, as a few people noted on Twitter.</p>\n\n\n\n<p>Two especially notable talks:</p>\n\n\n\n<ul><li><strong>Brian Teeman</strong>, one of the Joomla co-founders, defined what counts as truly free software. (<a href=\"https://www.slideshare.net/brianteeman/the-power-of-free-151309934\">Slides</a>) If you have begun to wonder how cloud services and <strong>Jetpack</strong> challenge the concept of “free,” check out Brian’s talk. Brian also has a recent post on his blog with <a href=\"https://brian.teeman.net/web/891-learn-something-new-at-a-conference\">some good advice for conference goers</a>: attend sessions randomly or pick ones with unfamiliar topics if you want to learn the most.</li><li><strong>Marcel Bootsman</strong> gave an inspiring account of his 700km walk to Berlin to attend the conference. It tied in well with <strong>Ines Van Essen</strong>’s talk later that afternoon about bringing peop<a href=\"https://2019.europe.wordcamp.org/session/bringing-people-to-wordcamps/\">https://2019.europe.wordcamp.org/session/bringing-people-to-wordcamps/</a>le to WordCamps and how much it typically costs for someone to attend.</li></ul>\n\n\n\n<p>The conclusion of WCEU came with the usual display of conference statistics:</p>\n\n\n\n<ul><li>3,260 tickets were sold. (800 more than last year!) <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f39f.png\" alt=\"?\" class=\"wp-smiley\" /></li><li>2,734 attendees. (610 for contributor day!)</li><li>1,722 or 56% were attending WCEU for the first time.</li><li>11,700 meals were served. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f37d.png\" alt=\"?\" class=\"wp-smiley\" /></li><li>60 speakers gave talks.</li><li>60 interviews took place.</li><li>60 sponsors — and 150 micro-sponsors helped make it all possible.</li><li>2k photos / 1m Tweets — YOU ARE WELCOME! <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" /></li><li>97 countries were represented by attendees. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f30d.png\" alt=\"?\" class=\"wp-smiley\" /></li><li>166 square meters of printed banners and materials were produced this year, which will be repurposed by being made into bags. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/267b.png\" alt=\"♻\" class=\"wp-smiley\" /></li></ul>\n\n\n\n<p>Since I was not physically attending WCEU, I asked people who were there in Berlin what they most appreciated — especially if it wasn’t observable through the livestream.</p>\n\n\n\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2019/06/Screen-Shot-2019-06-28-at-1.05.08-PM.png\" alt=\"\" class=\"wp-image-64838\" />\n\n\n\n<p>I got <a rel=\"noreferrer noopener\" href=\"https://twitter.com/dimensionmedia/status/1142704622911524864\" target=\"_blank\">some good answers on Twitter</a> from <a rel=\"noreferrer noopener\" href=\"https://twitter.com/topher1kenobe/status/1142829013515276289\" target=\"_blank\">Topher</a>, <a rel=\"noreferrer noopener\" href=\"https://twitter.com/JJJ/status/1142784869610770433\" target=\"_blank\">JJJ</a>, <a rel=\"noreferrer noopener\" href=\"https://twitter.com/mor10/status/1142804505802739714\" target=\"_blank\">mor10</a>, <a rel=\"noreferrer noopener\" href=\"https://twitter.com/learnwithmattc/status/1142460541409124354\" target=\"_blank\">Matt Cromwell</a>, <a rel=\"noreferrer noopener\" href=\"https://twitter.com/netagence/status/1142774768804012033\" target=\"_blank\">Pierre Mobian</a>, and <a rel=\"noreferrer noopener\" href=\"https://twitter.com/yvettesonneveld/status/1142833983157391360\" target=\"_blank\">Yvette Sonneveld</a>, among others.</p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://2019.europe.wordcamp.org/2019/04/30/wp-cafe/\" target=\"_blank\">The WP Cafe</a> was a new feature for WCEU that provided “space for our attendees to meet, connect, and chat about a range of topics.” It’s an evolution of the previous year’s “Tribe Meetups.”</p>\n\n\n\n<p>After the event, the WordCamp Europe team <a href=\"https://2019.europe.wordcamp.org/2019/06/24/after-party-apology/\">addressed some issues</a> that came up at the afterparty — around the entertainment that was provided, and in regard to water availability.</p>\n\n\n\n<h2><strong>WCEU 2020</strong></h2>\n\n\n\n<p>WordCamp Europe is always held in a different city in Europe every year, and it was announced at the end of the event that the 2020 conference would be held in Porto, Portugal. (There’s <a rel=\"noreferrer noopener\" href=\"http://youtu.be/gKGA3O3aZy4\" target=\"_blank\">a trailer</a>.)</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Porto seems to be a popular destination, and WCEU reported that just 24 hours after opening the #WCEU 2020 Call for Organisers, over 30 applications were already received.</p>\n\n\n\n<p><a href=\"https://twitter.com/WCEurope/status/1142117820660101120\"><em>Photo credit @WCEurope</em></a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2019 20:45:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: The Month in WordPress: June 2019\";s:7:\"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://wordpress.org/news/?p=7009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/07/the-month-in-wordpress-june-2019/\";s: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:8172:\"<p>June has certainly been a busy month in the WordPress community — aside from holding the largest WordPress event ever, the project has hit a number of significant milestones and published some big announcements this past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>A Wrap for WordCamp Europe 2019</h2>\n\n\n\n<p>WordCamp Europe 2019 took place on June 20-22. It was the largest WordPress event ever, with 3,260 tickets sold and 2,734 attendees. The attendees came from 97 different countries and 1,722 of them had never attended WordCamp Europe before.</p>\n\n\n\n<p>The event featured 60 speakers who delivered talks and workshops on a variety of topics over two conference days, most notably <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>’s keynote that included an update on the current status of WordPress Core development, along with a lively Q&A session. The full session from the live stream is <a href=\"https://youtu.be/UE18IsncB7s?t=13033\">available to watch online</a>.</p>\n\n\n\n<p>For its eighth year, <a href=\"https://2019.europe.wordcamp.org/2019/06/25/wordcamp-europe-2020/\">WordCamp Europe will take place in Porto, Portugal</a>. The 2020 edition of the event will be held on June 4-6. If you would like to get involved with WordCamp Europe next year, fill out <a href=\"https://2020.europe.wordcamp.org/2019/06/22/call-for-organisers/\">the organizer application form</a>. </p>\n\n\n\n<h2>Proposal for XML Sitemaps in WordPress Core</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">A proposal this month</a> suggested bringing XML sitemap generation into WordPress Core. This is a feature that has traditionally been handled by plugins, which has resulted in many different implementations across different sites. It also means that many sites do not have XML sitemaps, which can be a problem because they are hugely important to having your site correctly indexed by search engines.</p>\n\n\n\n<p>The proposal details how core sitemaps would be structured and how the team would build them, as well as what aspects of WordPress would not be considered appropriate information to be included.</p>\n\n\n\n<p>Want to get involved in building this feature? Comment on <a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">the proposal</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Translation Milestone for the Spanish Community</h2>\n\n\n\n<p><a href=\"https://twitter.com/wp_es/status/1138015568563441665\">The WordPress community of Spain has worked hard</a> to make <a href=\"https://translate.wordpress.org/locale/es/\">the es_ES locale</a> the first in the world to fully localize all of WordPress Core along with all Meta projects, apps, and the top 200 plugins. This is made possible by having the largest translation team out of any locale, consisting of 2,951 individual contributors.</p>\n\n\n\n<p>Want to get involved in translating WordPress into our locale? Find your locale on <a href=\"https://translate.wordpress.org/\">the translation platform</a>, follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a>, and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.2.2 Maintenance Release</h2>\n\n\n\n<p>On June 18, <a href=\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\">v5.2.2 of WordPress was released</a> as a maintenance release, fixing 13 bugs and improving the Site Health feature that was first published in v5.2. If your site has not already been automatically updated to this version, you can <a href=\"https://wordpress.org/download/\">download the update</a> or manually check for updates in your WordPress dashboard. Thanks to <a href=\"https://profiles.wordpress.org/audrasjb/\">JB Audras</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, and <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> for co-leading this release, as well as the 30 other individuals who contributed to it.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Full End to End Tests for WordPress Core</h2>\n\n\n\n<p>On June 27, <a href=\"https://make.wordpress.org/core/2019/06/27/introducing-the-wordpress-e2e-tests/\">e2e (end to end) testing was introduced</a> to WordPress and included in the continuous integration pipeline. E2e testing, which has been successfully used by Gutenberg, is used to simulate real user scenarios and validate process flows. Currently, the setup requires <a href=\"https://docs.docker.com/install/\">Docker</a> to run, and a number of e2e test utilities are already available in the <a href=\"https://github.com/WordPress/gutenberg/tree/master/packages/e2e-test-utils/src\">@wordpress/e2e-test-utils</a> package, in the Gutenberg repository. </p>\n\n\n\n<p>Want to use this feature? The more tests that are added, the more stable future releases will be! Follow the <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-js channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Feature Packages from the Theme Review Team</h2>\n\n\n\n<p>Following a <a href=\"https://make.wordpress.org/themes/2019/06/07/proposal-theme-feature-repositories/\">proposal for theme feature repositories</a>, an <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">update to the features package was announced</a>. Two new packages have been created that require code review and testing. The first is an Autoload Package, a foundational package for theme developers who are not currently using Composer (although <a href=\"https://getcomposer.org/\">Composer</a> is recommended instead of this package). The second is a Customizer Section Button Package that allows theme authors to create a link/button to any URL.</p>\n\n\n\n<p>There are other proposed ideas for packages that require feedback and additional discussion. Want to add your suggestions and thoughts? Join the conversation on the <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">Theme Review team blog</a> and join the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>Development continues on the Gutenberg project, with <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">the latest release</a> including layouts for the Columns block, Snackbar notices, markup improvements, and accessibility upgrades.</li><li>The Community team <a href=\"https://make.wordpress.org/community/2019/06/26/wordcamp-europe-2019-recap-of-community-team-activities-at-contributor-day-plans-for-the-future/\">published the results of their work</a> at the WordCamp Europe contributor day.</li><li>The Polyglots team <a href=\"https://make.wordpress.org/polyglots/2019/06/26/proposal-for-handling-pte-requests/\">has put together a proposal</a> for a new way to handle PTE requests.</li><li>This year’s recipient of the Kim Parsell Memorial Scholarship for WordCamp US <a href=\"https://wordpressfoundation.org/2019/2019-kim-parsell-memorial-scholarship-recipient-carol-gann/\">is Carol Gann</a>.</li><li>The Amurrio WordPress community <a href=\"http://wpamurrio.es/wordpress-amurrio-mega-meetup-i-edition/\">hosted their first “mega meetup”</a> – this is a great event format that bridges the gap between regular meetup event and WordCamp.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"Mon, 01 Jul 2019 10:07: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:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: Free Online JavaScript for WordPress Conference to Feature “Headless WordPress” Track, July 12\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91260\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/free-online-javascript-for-wordpress-conference-to-feature-headless-wordpress-track-july-12\";s: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:2082:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/02/JS-for-WP-conf-2019.jpg?ssl=1\"><img /></a></p>\n<p>The second edition of the <a href=\"https://javascriptforwp.com/conference/\" rel=\"noopener noreferrer\" target=\"_blank\">JavaScript for WordPress</a> conference will be streamed online July 11-13, 2019. Based on the success of the 2018 event, which had 1,200 attendees watching live, organizer Zac Gordon decided to expand the event to feature three free days of talks, workshops, and a contribution day focused on JavaScript and WordPress.</p>\n<p>The conference will run from July 11-13, and includes educational content for a whole range of Javascript capabilities, from beginner to advanced:</p>\n<ul>\n<li>Day 1 – Workshops for JavaScript Beginners</li>\n<li>Day 2 – Three Tracks of Intermediate and Advanced Talks (plus One Non-Technical Track)</li>\n<li>Day 3 – Contributor Day to help improve the JavaScript-related documentation for WordPress</li>\n</ul>\n<p>Gordon has published the finalized <a href=\"https://javascriptforwp.com/conference/\" rel=\"noopener noreferrer\" target=\"_blank\">schedule</a> for the 36 sessions and speakers that will be streamed on Friday, July 12. This year the event will feature one track devoted to exploring topics surrounding “headless WordPress,” an approach that eschews WordPress’ traditional architecture in favor of decoupling the front and backends, allowing developers to integrate different stacks. The track includes presentations like A React Theme in 30 Min, SEO for Headless WordPress Themes, Gatsby & WordPress, and Headless E-Commerce with BigCommerce. Other tracks feature more general JavaScript and Gutenberg topics.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/js-for-wp-conf-schedule-2019.png?ssl=1\"><img /></a></p>\n<p>Thanks to more than a dozen sponsors, registration is free, but viewers must <a href=\"https://javascriptforwp.com/conference/\" rel=\"noopener noreferrer\" target=\"_blank\">sign up</a> on the conference website in order to attend online.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jun 2019 00:16: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: In Case You Missed It – Issue 27\";s:7:\"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:59:\"https://wptavern.com/?p=91256&preview=true&preview_id=91256\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-27\";s: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:8950:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1\" rel=\"attachment wp-att-50955\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a></p>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2 class=\"entry-title\">Carol Gann Awarded the 2019 Kim Parsell Memorial Scholarship</h2>\n<p><a href=\"https://carolgann.wordpress.com/\">Carol Gann</a>, who is a Meetup coordinator in the <a href=\"https://wporlando.org/\">WordPress Orlando Community</a>, has been awarded the <a href=\"https://2019.us.wordcamp.org/2019/06/28/carol-gann-2019-kim-parsell-memorial-scholarship-recipient/\">Kim Parsell Memorial Scholarship</a>. The scholarship is named after Kim Parsell who <a href=\"https://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away\">passed away in 2015</a> but her impact on the WordPress community is still felt today.</p>\n<p>“My proudest contribution to the WordPress open source project is training small business owners and bloggers to be comfortable and conversant with their own WordPress websites. WordPress empowers people. Many end users of WordPress are not technically minded. As a WordPress Meetup co-organizer, I contribute to the coffee help desk, assisting others in finding solutions to their WordPress problems. I also host another help desk opportunity, ‘Coffee With Carol,’ to empower WordPress users,” Gann said.</p>\n<p>I can tell from the quote above that Kim and Carol would get along well as Kim was also the type of person who would do what she could to help others.</p>\n<h2>GravityView Diversity Grant to Attend PressNomics 6</h2>\n<p>The folks over at GravityView are <a href=\"https://gravityview.co/gravityview-diversity-grant/\">offering a grant</a> to recognize the challenges certain groups of people face succeeding in technology fields and to promote inclusivity and diversity. The grant includes a ticket to PressNomics 6, a flight to Tuscon, AZ, lodging, transportation via a Lyft gift card, and a one-on-one business consultation with Zak Katz, Co-founder of GravityView. The deadline to apply is 11:59 PM MDT on June 30, 2019.</p>\n<h2>10up OpenSource Project Scaffolding Suite</h2>\n<p>10up has released a <a href=\"https://10up.com/blog/2019/project-scaffolds-released/\">project scaffolding suite</a> that includes a WordPress starter theme, starter plugin, and NPM package. The purpose of the suite is to streamline repetitive tasks, encourage community contributions, and provide a starting point that includes 10up’s engineering best practices.</p>\n<h2>End to End Tests Added to Core</h2>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://make.wordpress.org/core/2019/06/27/introducing-the-wordpress-e2e-tests/\">Introducing the WordPress e2e tests</a></p></blockquote>\n<p></p>\n<h2>WP Tavern Turns 10 Years Old</h2>\n<p>I was looking back through the Tavern archives and realized that this past January, WP Tavern turned 10 years old. It’s been quite a journey and it’s not over yet. Check out the <a href=\"https://wptavern.com/welcome-to-the-wordpress-tavern\">first post</a> I published on the Tavern announcing its opening.</p>\n<h2>Matt Mullenweg Announces That Automattic Is Sponsoring Jill Binder’s Work</h2>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://ma.tt/2019/06/diversifying-wordpress/\">Diversifying WordPress</a></p></blockquote>\n<p></p>\n<h2>John James Jacoby Releases A Plugin That Cryptographically Signs Posts</h2>\n<p>John James Jacoby <a href=\"https://jjj.blog/2019/06/heidenberg/\">has released</a> a <a href=\"https://github.com/JJJ/Heidenberg\">small plugin on GitHub</a> that cryptographically signs posts. The plugin splits the content of posts in words and then stenographically inserts zero-width characters between them. These characters then form a unique, invisible pattern that can be used to detect plagiarised content. This plugin sounds like it would pair well with <a href=\"https://wptavern.com/new-wordproof-plugin-timestamps-wordpress-content-on-the-blockchain\">WordProof</a>.</p>\n<h2>What does DXP Mean?</h2>\n<p>I asked on Twitter what does DXP or Digital Xperience platform mean? It comes across as fancy marketing lingo. Here are a few of the responses I received.</p>\n<p><a href=\"https://twitter.com/mattmedeiros/status/1143302580057071616\">Matt Mederios</a> – ‘<span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\">DXP’ or in other words, how we want our customers to experience WordPress in our controlled ecosystem. All your solutions in one place, possibly to the point you don’t recognize it’s WordPress.<br />\n</span></p>\n<p><a href=\"https://twitter.com/StephenCronin/status/1143388011586920448\">Stephen Cronin</a> – <span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\">DXP is an enterprise thing and has been around for ages in various guises. WordPress is not listed by Gartner, but Drupal and SharePoint are, along with other enterprise CMS’s. If people want to create DXPs out of WordPress, more power to them.</span></p>\n<p><a href=\"https://twitter.com/karimmarucchi/status/1143307026421997571\">Karim Marucchi</a> – <span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\">Forget the buzz, large sites are moving past ‘just’ content, no one product (not </span><span class=\"r-18u37iz\"><a class=\"css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\" dir=\"ltr\" href=\"https://twitter.com/hashtag/AEM?src=hashtag_click\">#AEM</a></span><span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\"> not </span><span class=\"r-18u37iz\"><a class=\"css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\" dir=\"ltr\" href=\"https://twitter.com/hashtag/Sitecore?src=hashtag_click\">#Sitecore</a></span><span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\">) will ever be perfect for all the existing & new features that are popping up ‘monthly’, so with </span><span class=\"r-18u37iz\"><a class=\"css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\" dir=\"ltr\" href=\"https://twitter.com/hashtag/OpenSourse?src=hashtag_click\">#OpenSourse</a></span><span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\"> we all can make the most open easy/most compatible /cheap framework that will help the <span class=\"r-18u37iz\"><a class=\"css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\" dir=\"ltr\" href=\"https://twitter.com/hashtag/enterprise?src=hashtag_click\">#enterprise</a></span> manage/customize/blend all the ways you need to interact with your clients. And yes, the good Hosts, are staying out of trying to be all things.</span></p>\n<p>Thanks to these three, the meaning of DXP is a bit more clear.</p>\n<h2>WordCamp EU Organizing Team Issues Apology</h2>\n<p>There were some things that took place during the WordCamp EU afterparty that didn’t sit well with some people. The WordCamp EU organizing team explained what happened and <a href=\"https://2019.europe.wordcamp.org/2019/06/24/after-party-apology/\">issued an apology</a> for the mistakes that were made.</p>\n<h2>Torque Interviews Marcel Bootsman</h2>\n<p>Doc Pop of Torque <a href=\"https://twitter.com/TheTorqueMag/status/1141715724685185024\">caught up</a> with Marcel Bootsman to talk about his walking journey to Berlin. Ironically, the interview occurs as they’re walking around.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">.<a href=\"https://twitter.com/mbootsman?ref_src=twsrc%5Etfw\">@mbootsman</a> just finished his 718km walk to <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a>, so we thought it would be fun to do a <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f4ac.png\" alt=\"?\" class=\"wp-smiley\" /> and <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f6b6-1f3fc.png\" alt=\"??\" class=\"wp-smiley\" /> about his <a href=\"https://twitter.com/hashtag/walktoWCEU?src=hash&ref_src=twsrc%5Etfw\">#walktoWCEU</a> project. <a href=\"https://t.co/5qSlVZYuiv\">pic.twitter.com/5qSlVZYuiv</a></p>\n<p>— Torque (@TheTorqueMag) <a href=\"https://twitter.com/TheTorqueMag/status/1141715724685185024?ref_src=twsrc%5Etfw\">June 20, 2019</a></p></blockquote>\n<p></p>\n<p>That’s it for issue twenty-seven. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</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, 28 Jun 2019 20:55:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: BuddyPress 5.0 to Introduce BP REST API, First Beta Due Mid-August\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91063\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/buddypress-5-0-to-introduce-bp-rest-api-first-beta-due-mid-august\";s: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:3010:\"<p>BuddyPress 5.0 is on track to introduce a new BP REST API, which has been in <a href=\"https://wptavern.com/buddypress-rest-api-feature-plugin-now-in-development\" rel=\"noopener noreferrer\" target=\"_blank\">development as a feature plugin</a> on <a href=\"https://github.com/buddypress/BP-REST\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub</a> since 2016. Contributors plan to merge the API with 14 endpoints for popular components like activity updates, groups, members, private messages, and extended profile fields. Another eight endpoints for blogs, friends, and other features, are planned to ship in BuddyPress 6.0.0.</p>\n<p>The first major use of the BP REST API inside BuddyPress is a <a href=\"https://buddypress.trac.wordpress.org/changeset/12405\" rel=\"noopener noreferrer\" target=\"_blank\">new group management interface</a> that enables administrators to quickly search for specific members to promote, demote, ban, or remove. BuddyPress contributor Mathieu Viet shared a demo of what users can expect from the new interface on both the frontend and the backend.</p>\n<p><div class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<a href=\"https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4\">https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4</a></div></p>\n<p>Contributors are still discussing how to include the BP REST API into the BuddyPress plugin package, whether they should continue maintaining it on GitHub until all the endpoints are finished and include it during the BuddyPress plugin’s build process, or merge it into BuddyPress core and use Trac. GitHub is more convenient for development but some expressed concerns about fragmenting the history of the API’s development on two platforms.</p>\n<p>BuddyPress lead developer Boone Gorges said in a recent dev chat that shipping the BP REST API without documentation is a blocker. Contributors are now working on a new documentation site. Since version 5.0.0 will be more of a developer-oriented release, Viet suggested contributors take the opportunity to set up developer.buddypress.org with similar resources as WordPress has on its <a href=\"https://developer.wordpress.org/\" rel=\"noopener noreferrer\" target=\"_blank\">DevHub</a> project. He is looking for feedback on his <a href=\"https://bpdevel.wordpress.com/2019/06/24/bp-devhub/\" rel=\"noopener noreferrer\" target=\"_blank\">proposal</a> for automatically generating the documents from the REST schemas of the API’s endpoints and further customizing it for integration into the broader developer.buddypress.org site.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/bp-rest-api-reference.png?ssl=1\"><img /></a></p>\n<p>BuddyPress contributors are targeting August 15 for releasing 5.0.0 beta 1 and will discuss a date for RC further down the road. Regular dev chat meetings have resumed and are now happening every other Wednesday at 19:00 UTC in the #BuddyPress Slack channel.</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, 28 Jun 2019 18:52:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WordPress for iOS 12.6.1 Revamps Stats, Acknowledges Third-Party Libraries\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91217\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/wordpress-for-ios-12-6-1-revamps-stats-acknowledges-third-party-libraries\";s: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:2991:\"<p>WordPress for iOS 12.6.1 is now available in the <a href=\"https://apps.apple.com/us/app/wordpress-1-website-builder/id335703880\">iTunes App Store</a>. The User Interface as well as the backend that powers stats has been revamped and more closely resembles what you see on the Jetpack Stats module. There are now date selectors and individual stats contain more detail. </p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/06/img_2783.png?ssl=1\"><img /></a>Revamped Stats in the WordPress for iOS App</div>\n\n\n\n<p>More often than not over the years, when I’ve tried to view stats, they don’t load. In 12.6.1, the stats are cached making them not only quicker to load, but they’re available to view offline as well. </p>\n\n\n\n<p>This version also improves the block editor by fixing an issue where the setting to open links in new tabs was always set to off. Also, when users attempt to put invalid content into blocks, there’s a more descriptive error message. </p>\n\n\n\n<p>Those who share photos into WordPress from other apps can now share an unlimited number of photos and if an image fails to upload, the error message will contain more detailed information. </p>\n\n\n\n<p>The WordPress for iOS app uses libraries from third-party’s. To see who these parties are, the team has added an acknowledgments section in the app. You can view this page by browsing to Me > App Settings > About WordPress for iOS > Acknowledgements. Fair warning, this page is quite lengthy. There’s also a variety of bug fixes in this version as well. </p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/06/img_2784.png?ssl=1\"><img /></a>WordPress for iOS Third-party Library Acknowledgements </div>\n\n\n\n<p>One change that I noticed that doesn’t make sense and that I’ve been unable to find an explanation for is the labeling change. The app is now labeled on the app store as <strong>WordPress #1 Website Builder</strong>. </p>\n\n\n\n<p>I don’t view the app as a website builder, it’s more of a website manager. I’ve asked in the WordPress Mobile Slack channel why this change was made <s>but as of publishing, have not received a response</s>.</p>\n\n\n\n<p>WordPress for iOS is free and <a href=\"https://apps.apple.com/us/app/wordpress-1-website-builder/id335703880\">available on iTunes</a>. There’s also a mobile app for Android devices and a desktop application that be found on the <a href=\"https://apps.wordpress.com/mobile/\">WordPress Mobile Apps</a> site. </p>\n\n\n\n<h2>Updated June 28th, 2019</h2>\n\n\n\n<p>I received a response from Elisa Budelli, Mobile Developer at Automattic, regarding the label change. </p>\n\n\n\n<p>“The title is describing WordPress as a full product, not only the mobile apps. The switch is based on a recommendation from a SEO specialist, and we will evaluate how it works and revert if we see no impact.”</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, 27 Jun 2019 23:48: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: EditorsKit 1.6 and 1.7 Add Tools for Writers, Drag and Drop Block Export/Import\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=90711\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/editorskit-1-6-and-1-7-add-tools-for-writers-drag-and-drop-block-export-import\";s: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:4444:\"<p>Recent <a href=\"https://editorskit.com/\" rel=\"noopener noreferrer\" target=\"_blank\">EditorsKit</a> releases have introduced a set of new tools that some writers may have found missing from Gutenberg. The plugin’s creator, Jeffrey Carandang, said <a href=\"https://jeffreycarandang.com/editorskit-1-6/\" rel=\"noopener noreferrer\" target=\"_blank\">version 1.6</a> was targeted at improving the writing flow for writers, bloggers, and content creators.</p>\n<p>Gutenberg has decent support for copying and pasting Markdown. It will automatically convert links, blockquotes, code snippets, and other formatting into the proper Gutenberg blocks. However, the editor does not offer full support for users who who want to write with Markdown.</p>\n<p>EditorsKit 1.6 adds basic markdown capabilities for things like <em>bold</em>, <em>italic</em> and ~strikethrough~ and these can also be used alongside other available editor markdowns and their keyboard shortcuts. These are integrated directly into the RichText editor so you don’t have to use a dedicated Markdown plugin with a custom block, like <a href=\"https://wordpress.org/plugins/wp-githuber-md/\" rel=\"noopener noreferrer\" target=\"_blank\">WP Githuber MD</a>, or <a href=\"https://jetpack.com/support/markdown/\" rel=\"noopener noreferrer\" target=\"_blank\">Jetpack’s Markdown module</a>.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">EditorsKit 1.6 is now available <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f680.png\" alt=\"?\" class=\"wp-smiley\" /> Comes with Gutenberg Editor Markdown Support, Clear Formatting, Subscript & Superscript Formats, Toggle Title and more. Here\'s a quick preview on how these features were integrated on WordPress Gutenberg block editor <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f3ac.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/apB4uMjuqg\">pic.twitter.com/apB4uMjuqg</a></p>\n<p>— Jeffrey Carandang (@phpbits) <a href=\"https://twitter.com/phpbits/status/1135895882216329216?ref_src=twsrc%5Etfw\">June 4, 2019</a></p></blockquote>\n<p></p>\n<p>Version 1.6 introduced an expanded “clear formatting” option as a response to requests Carandang received on the plugin’s <a href=\"https://www.facebook.com/groups/1306393256173179/\" rel=\"noopener noreferrer\" target=\"_blank\">Facebook community</a> and Slack. It clears formatting on specific text, removes formatting on selected text, and clears all paragraph and heading block formatting using the “Clear Block Formatting” option in the block settings. This version also added subscript, superscript, and uppercase text formats, along with a title visibility toggle that removes titles from the frontend on a per-post basis.</p>\n<p>While these tools may provide features that some users find to be critically missing from Gutenberg, for many others they simply add to the clutter of the block toolbar and the overall interface. Gutenberg is still sorely in need of a distraction-free UI that will enable users to ditch dedicated writing apps and embrace WordPress as their go-to app for writing.</p>\n<p>EditorsKit seems best suited as a playground for features that may or may not have widespread appeal. For example, the most recent <a href=\"https://jeffreycarandang.com/editorskit-1-7/\" rel=\"noopener noreferrer\" target=\"_blank\">1.7 release</a> enables exporting and importing blocks without the requirement of first converting them to reusable blocks. Users can click on the “block settings” icon and export as JSON on a per-block basis. It’s also possible to select multiple blocks and export them in one file.</p>\n<p>Importing blocks back into the editor is as easy as dragging and dropping the .json file. It automatically generates the blocks in an almost magical way an does not require users to navigate to the separate admin dashboard for managing reusable blocks.</p>\n<p><a href=\"https://cloudup.com/cLTgwKHjATO\"><img src=\"https://i2.wp.com/cldup.com/WTnhlb_CI9.gif?resize=627%2C353&ssl=1\" alt=\"Import json\" width=\"627\" height=\"353\" /></a></p>\n<p>Carandang is working on making the import/export work with media attachments. He is also currently working with the Gutenberg team and other contributors to bring the plugin’s <a href=\"https://github.com/WordPress/gutenberg/pull/16014\" rel=\"noopener noreferrer\" target=\"_blank\">Text and Highlight colors feature</a> to the core editor.</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, 27 Jun 2019 22:55:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: WPWeekly Episode 358 – Interview with Dan Maby, Founder of WP&UP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wptavern.com/?p=91203&preview=true&preview_id=91203\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/wpweekly-episode-358-interview-with-dan-maby-founder-of-wpup\";s: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:2475:\"<p>In this episode, <a href=\"https://www.presstitan.com/\">Malcolm Peralty</a> and I are joined by Dan Maby, Founder of WP&UP. <a href=\"https://wpandup.org/\">WP&UP</a> is a non-profit charity based in England that supports and promotes positive mental health in the WordPress Community.</p>\n<p>Dan explains why he started the charity, what he’s learned and how he manages his own mental health, and how the donation funds are spent. He also shared some startling statistics from a <a href=\"https://wptavern.com/take-the-2019-wpup-mental-health-and-well-being-survey\">recent mental health</a> survey they conducted. The results of this survey are being put into a white paper that will be published later this year.</p>\n<p>We finished up the show covering the news of the week. If you’re interested in supporting WP&UP, please <a href=\"https://wpandup.org/give/\">consider donating</a>.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/matt-mullenwegs-summer-update-at-wordcamp-europe-2019-gutenbergs-progress-and-a-preview-of-upcoming-features\">Matt Mullenweg’s Summer Update at WordCamp Europe 2019: Gutenberg’s Progress and a Preview of Upcoming Features</a></p>\n<p><a href=\"https://wptavern.com/free-event-post-status-to-live-stream-publish-online-july-8-9\">Free Event: Post Status to Live Stream Publish Online July 8-9</a></p>\n<p><a href=\"https://wptavern.com/contribution-time-sponsored-and-teams-fields-added-to-wordpress-org-user-profiles\">Contribution Time, Sponsored, and Teams Fields Added to WordPress.org User Profiles</a></p>\n<p><a href=\"https://wptavern.com/wp-engine-acquires-flywheel\">WP Engine Acquires Flywheel</a></p>\n<h2>Transcript:</h2>\n<p><a href=\"https://wptavern.com/wp-content/uploads/2019/06/Episode358Transcript.rtf\">Episode358Transcript</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 3rd 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #358:</strong><br />\n</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, 27 Jun 2019 20:53:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: The Theme Review Team Releases Two Feature Packages, an Autoloader and a Customize Section Button\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91189\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/the-theme-review-team-releases-two-feature-packages-an-autoloader-and-a-customize-section-button\";s: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:2111:\"<p>Two weeks ago, Justin Tadlock <a href=\"https://wptavern.com/justin-tadlock-proposes-idea-to-solve-common-theme-issues\">published a proposal</a> on behalf of the Theme Review Team to create a set of standardized packages that theme authors can drop-into their themes. This week, the team has released two feature packages that illustrate what the project is trying to accomplish. </p>\n\n\n\n<p>The first is an <a href=\"https://github.com/WPTRT/autoload\">Autoloader</a> that provides the means necessary for theme authors to autoload PHP classes. While <a href=\"https://getcomposer.org/\">Composer</a> is recommended, the team has created a PSR-4 compliant autoloader as an alternative for those not ready for Composer. </p>\n\n\n\n<p>“This is a foundational package that will allow you to use any other packages that we create,” Tadlock explained. “You could even use it for autoloading your own theme classes if you choose to do so (assuming they follow the <a href=\"https://www.php-fig.org/psr/psr-4/\">PSR-4 autoloading standard</a> for class and folder names).”</p>\n\n\n\n<p>The second package provides a <a href=\"https://github.com/WPTRT/customize-section-button\">Customizer Section Button</a> that enables theme authors to create a link or button that points to a URL. This feature was originally developed to allow developers a standard way to display a Pro/Upsell link within the customizer. However, the package is generic enough that developers can use it to link to any URL. </p>\n\n\n\n<p>Tadlock also provided feedback on a number of ideas that were proposed. Packages up for consideration include, Breadcrumbs, Sliders and Sections, Mobile Navigation, Color Control with Transparency, Appearance > Theme Name Page, and Standard Template Hooks. </p>\n\n\n\n<p>To read his feedback and learn more about the project, including how to get involved, read the <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">feature package update</a> and the <a href=\"https://make.wordpress.org/themes/2019/06/07/proposal-theme-feature-repositories/\">initial proposal</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jun 2019 01:01:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: Gutenberg 6.0 Adds Layout Picker to Columns Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91159\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/gutenberg-6-0-adds-layout-picker-to-columns-block\";s: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:2325:\"<p><a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 6.0</a> was released today with a major update to the Columns block. Users can now select from a set of pre-defined layouts for their columns, with additional features that address many long-standing complaints regarding the block’s usability.</p>\n<p>Although many plugins are already doing more advanced things with columns and grid layouts, WordPress core’s current implementation of the Columns block is so confusing that it is barely usable. It has a sliding control for selecting the number of columns but it is difficult to see the column boundaries. </p>\n<p>Gutenberg 6.0 gives users the ability to select from multiple pre-defined column options, which include some commonly-requested layouts with variable widths. Users can also elect to skip the layouts and start from scratch. Below is a video demo Gutenberg phase 2 lead Riad Benguella shared in the release post:</p>\n<p><div class=\"wp-video\"><a href=\"https://wptavern.com/wp-content/uploads/2019/06/12-columns.mp4\">https://wptavern.com/wp-content/uploads/2019/06/12-columns.mp4</a></div></p>\n<p>The column settings also include a sliding percentage width control, so users can further customize it, whether starting from a template or from scratch.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/Screen-Shot-2019-06-26-at-1.07.16-PM.png?ssl=1\"><img /></a></p>\n<p>In adding pre-defined layouts to columns, the Gutenberg team <a href=\"https://github.com/WordPress/gutenberg/pull/16129\" rel=\"noopener noreferrer\" target=\"_blank\">enhanced the InnerBlocks component</a>, allowing developers to extend it to create their own sets of template options to appear upon inserting a block. The Columns block serves as an example implementation of this.</p>\n<p>This release also incorporates more than a dozen smaller enhancements and fixes, including <a href=\"https://github.com/WordPress/gutenberg/pull/16020\" rel=\"noopener noreferrer\" target=\"_blank\">snackbar notice support for the widgets screen</a>. Check out the <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\" rel=\"noopener noreferrer\" target=\"_blank\">changelog</a> for a full list of changes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jun 2019 21:45:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"WPTavern: State of CSS 2019 Survey Results: Top Frameworks Rank Low in Satisfaction, JavaScript Proficiency is on the Rise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91037\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://wptavern.com/state-of-css-survey-2019-results-top-frameworks-rank-low-in-satisfaction-javascript-proficiency-is-on-the-rise\";s: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:3833:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/06/Screen-Shot-2019-06-21-at-4.31.09-PM.png?ssl=1\"><img /></a></p>\n<p>The first ever <a href=\"https://2019.stateofcss.com/\" rel=\"noopener noreferrer\" target=\"_blank\">State of CSS</a> survey results have been published. The data includes responses from more than 11,000 developers in 135 countries. Respondents identified themselves as male (84.71%), female (9.9%), non-binary/third gender (0.86%), and “prefer not to say” (2.62%).</p>\n<p>Sacha Greif and Raphaël Benitte, creators of the survey, said it’s skewed towards early adopters, since the sample size is a fairly small selection of the overall CSS developer community. Greif and Benitte also created the State of JS survey, which is where 31.5% of respondents heard about the CSS survey, so the data is also slanted towards the “back of the front-end,” developers who use JavaScript in their front-end work. They concluded that this data is a good preview of where the mainstream side of the ecosystem will be a few years from now. </p>\n<p>The majority of respondents indicated that they are fairly confident about their <a href=\"https://2019.stateofcss.com/demographics/backend-proficiency\" rel=\"noopener noreferrer\" target=\"_blank\">back-end proficiency</a>, with 62.49% identifying themselves as possessing intermediate or advanced backend skills. This trend sets the bar higher for developers who are looking to present a competitive skill-set in the CSS workforce.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/Screen-Shot-2019-06-21-at-5.10.10-PM.png?ssl=1\"><img /></a></p>\n<p>The results seem clearly bent towards the JavaScript-proficient segment of CSS developers, with a whopping 80.54% rating their <a href=\"https://2019.stateofcss.com/demographics/javascript-proficiency\" rel=\"noopener noreferrer\" target=\"_blank\">JavaScript proficiency</a> at Intermediate to Expert level.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/Screen-Shot-2019-06-25-at-8.24.13-PM.png?ssl=1\"><img /></a></p>\n<p>The summary includes a highly detailed look at different CSS-related technologies, such as preprocessors, methodologies, frameworks, and CSS-in-JS, with differently colored segments representing whether developers have favorable or negative opinions on each. </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/06/Screen-Shot-2019-06-25-at-8.33.12-PM.png?ssl=1\"><img /></a> </p>\n<p>The results contain data visualizations showing which CSS features and technologies developers know about and/or have used in their work. Flexbox (94.4%) and Grid (54.4%) are among the most widely used layout tools. The frameworks section revealed some surprising results, with a few of the lesser-known frameworks, like Tailwind, Bulma, PureCSS, and Tachyon ranking highest in interest and satisfaction. The most well-known frameworks, Bootstrap and Foundation, fall at the bottom of the satisfaction scale.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/06/Screen-Shot-2019-06-25-at-8.43.58-PM.png?ssl=1\"><img /></a></p>\n<p>These results are fairly representative of early adopters of new technologies in the CSS ecosystem, covering features and frameworks that are not yet mainstream. Greif and Benitte predict that even though CSS seems to be evolving slowly, mastering the newer technologies will become more important for developers who want to remain competitive. </p>\n<p>For a more detailed look at other areas, such as typography, interactions, animations, and even what pseudo CSS selectors and form-related selectors developers use in their work, check out the full range of results at <a href=\"https://2019.stateofcss.com/\" rel=\"noopener noreferrer\" target=\"_blank\">2019.stateofcss.com</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, 26 Jun 2019 14:05:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"HeroPress: How The WordPress Community Helped Me Face My Fears And Do It Anyway\";s:7:\"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=2898\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:210:\"https://heropress.com/essays/how-the-wordpress-community-helped-me-face-my-fears-and-do-it-anyway/#utm_source=rss&utm_medium=rss&utm_campaign=how-the-wordpress-community-helped-me-face-my-fears-and-do-it-anyway\";s: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:14240:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/06/062619-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Be ruthless about self care.\" /><h3>Your comfort zone is a muscle. If you don’t stretch it, it will shrink.</h3>\n<p>It still feels unreal. Two days ago, I was standing on a stage, sharing my expertise. And not just any stage. One of the stages of WordCamp Europe 2019 in Berlin. A conference with over 3200 registrants, over 2700 attendees. A conference room with a capacity of 1100, 60-70% full. And lots of positive feedback.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/06/yvette-sonneveld-wceu.jpg\"><img /></a></p>\n<h3>Never judge by appearances</h3>\n<p>Getting to this point hasn’t been a walk in the park. Not even remotely. Had you asked me about something like this five years ago, I would have smirked. Statistically, I am much more likely to be depressed, chronically anxious or abusing substances. You see, I have been a victim of <a href=\"https://www.medicinenet.com/bullying/article.htm#what_are_the_effects_of_bullying_what_are_the_effects_of_hazing\">(relational) bullying</a> several times during my elementary school years. I changed schools because of it, yet it happened again.</p>\n<p>Bear with me here, this is not going to be a “I feel so sorry for myself” sob story. There is lots of hope, encouragement and empowerment in this story. Yes, I have struggled with feelings of insecurity and feelings of “not being worthwhile”. And yes, every time I think I have finally dealt with it, it does pop up again in another shape or form. But every single time, I have been able to turn it around into an opportunity to grow. I may still depend a bit more on validation than average. But people who know me, will confirm that I am known to be one to encourage others.</p>\n<h3>A little bit of context</h3>\n<p>I won’t wear you out with the whole back story. Instead, let me take you back about 5 years. Me, my husband, and my two kids had been living in the Caribbean for a number of years. Unfortunately, I had hit another rough patch. I had been working with a wonderful local psychologist, but I was not getting the results I hoped for. And then it hit me: I would not be growing without intentionally seeking out opportunities to grow. So I decided to send myself out on an experiment. And, thankfully we were able to afford an experiment like that.</p>\n<h3>Being intentional about personal development</h3>\n<p>One of the goals I set, was to be able to present myself as a digital marketing expert more comfortably. And I felt that it would be easier to do this outside my local area since I was running a pattern of playing small there. So I purchased a ticket to WordCamp Miami (a short flight away). As I started to freak out about what I had done, an email came in. The organization was looking for volunteers. Perfect timing. That would help me focus on helping others rather than feeling lost and not knowing whom to talk to. Or getting all hyper from butterflying around.</p>\n<p>This turned out to be a great decision. I had never encountered a community more inviting and inclusive. I had a blast during the weekend. And even got invited over for a home-cooked dinner by one of my co-volunteers. Some first lasting friendships were born that weekend.</p>\n<p>Having this first volunteer experience under my belt landed me several volunteer gigs in the US over the following years. Not only for WordCamps, but also for a much more expensive internet marketing conferences and coaching programs.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/06/mynams-2015.jpg\"><img /></a>One of the events I got to volunteer at, was MyNAMS 2015. I was first timer, volunteer and (assistant) trainer at the same time.</p>\n<h3>Starting all over again</h3>\n<p>Then, three years ago, we moved back to The Netherlands, and I had no professional network in my home country at all. So, once our family had found a new routine, I signed up as a volunteer for WordCamp Europe in Paris (2017). That made me stretch far out of my comfort zone since about 2000 people would attend, and I did not know one single soul. Signing up as a volunteer was a no-brainer already by that time. To help myself get over some anxiety about the number of people attending, I decided to sign up for contributors day for the first time. After all, “only” some 300 people would attend that event.</p>\n<p>The friendly people at the marketing team adopted me right away and gave me something useful to do. I teamed up with another volunteer to set up several Trello boards to manage the many ongoing projects. Over the weekend I got connected to more warm, welcoming and encouraging people than I could ever imagine. Some of them noticed that I had a way of expressing myself that could point to a talent for speaking. They kept encouraging me to the point that I submitted my very first talk proposal. Looking back, I never really expected to be picked. You should have seen my face when I received the e-mail stating I had been selected…</p>\n<h3>Another leap of faith</h3>\n<p>So two months later, I was standing in front of some 50 people. At WordCamp Nijmegen, I shared my story about growing my self-confidence to a much healthier level by volunteering during WordCamps and other events. You can view the recording on <a href=\"https://wordpress.tv/2017/10/14/yvette-sonneveld-voluntourism-how-being-a-wordcamp-volunteer-gets-you-places/\">WordPress.tv</a>. I received some great feedback. This gave me the confidence to apply for the next WordCamp, this time with a topic within my field of expertise: How to create buyer persona.</p>\n<p>Over the course of 2 years, one opportunity led to another: First, I became part of the organizing team of WordCamp Utrecht and helped organize that event twice. Then, I became a team rep for the #MakeWordPress marketing team. Next, I got to lead a workshop at WordCamp Europe 2018. And as a result of all of this, I landed several freelance gigs, training virtual assistants and writing copy for a renowned WordPress agency, Level Level. Ultimately, by making myself stretch my comfort zone a bit further out every single time, I ended up landing my dream job. I’m now in charge of marketing for Level Level.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/06/WCEU2018.jpg\"><img /></a>Contributing to WordPress will help you make friends from all over the world. I warmly recommend it!</p>\n<h3>Lessons learned along the way</h3>\n<p>Do I still have my moments of not feeling enough? Totally. But let me share some of the most valuable lessons I learned along the way.</p>\n<h4>People who were never bullied have the same insecurities</h4>\n<p>Ha, you didn’t see that one coming, right? And until you are ever ready to open up about your feelings of insecurity, others will probably not feel safe sharing their feelings about it, either. Because being vulnerable IS scary. And people may abuse it. But it can be amazingly empowering, too. Blaming the bullying and staying in my ever-shrinking comfort zone would probably have been easier, but I’m so happy I ended up discovering that it turned out I was telling myself a lie.</p>\n<h4>Your comfort zone is a muscle. It is made to stretch.</h4>\n<p>This has become one of my pet peeves. Work your comfort zone like a muscle. If you don’t, it will shrink right back. You’ll keep playing small. Stretching it will be painful at first. But imagine that feeling of victory, that intense satisfaction when you look back and notice how much you have grown. Needless to say, it takes quite a bit of energy. You will be exhausted at times, and your comfort zone muscles will be sore. It’s the circle of life, after all. You will survive and grow stronger every day, which is exactly what I want for you.</p>\n<h3>Find your kind of crazy</h3>\n<p>We WordPress people, as unique as we all are, have lots in common, too. When helping my son through a rough patch several years ago, I did a lot of online research. I took a deep dive into everything from ADD to giftedness, and from visual learning to being highly sensitive. The “symptoms” of all of these are very much alike. And the biggest lesson: if you’re able to focus for a long time on something that you really enjoy, it’s not ADD. You may recognize some of these “symptoms”:</p>\n<ul>\n<li>not being able to sit still;</li>\n<li>easily distracted when working on routine matters;</li>\n<li>being able to hyperfocus when working on something that intrigues you;</li>\n<li>having a wide variety of interests;</li>\n<li>tend to get into power struggles with authoritative personalities;</li>\n<li>highly creative;</li>\n<li>mastering new skills by understanding and applying a concept rather than mastering it step by step (Once you know the concept of addition in math, for instance, it doesn’t matter whether you add 2+4 or 19574+274503. This in contrast to others who need to start with 1 digit numbers, then to 2 digit numbers etc).</li>\n</ul>\n<p>(see, <a href=\"https://www.sengifted.org/post/adhd-and-children-who-are-gifted\">https://www.sengifted.org/post/adhd-and-children-who-are-gifted</a> and <a href=\"https://www.davidsongifted.org/Search-Database/entry/A10226\">https://www.davidsongifted.org/Search-Database/entry/A10226</a> if you’d like to learn more about this.)</p>\n<p>Over the past two years, I had lots of conversations with community members, and have learned along the way that many recognize these. I think this is one of the reasons we feel so connected. But whether this sounds like you, or not at all…. I strongly recommend you to find and connect to a group of people that you resonate with and who love you for who YOU are. Encourage each other.</p>\n<h4>Be ruthless about self-care</h4>\n<p>I can see a huge difference in how I feel, both physically and mentally, depending on how well I take care of myself. Purely in simple things like eating lots of fruits and veggies. Drinking no-sugar drinks like herbal infusions and water. Getting enough sleep. Being out in nature. Exercising regularly. Hanging out with friends and family instead of working all the time. This by itself won’t get you out of a depression, but I am confident it will help improve things. It helps me from getting burned out, for sure.</p>\n<h3>If you’re employing one of us</h3>\n<p>You may be reading this and leading a team of WordPress people. And you may, or may not recognize yourself in parts of my story. Either way, I may have some valuable tips for you, too.</p>\n<h4>We’re precious. We’re valuable. And, we need more validation than average</h4>\n<p>We may not always notice that we’re burning the midnight oil. We may need you, or our co-workers to notice. We’re sprinters, not marathon runners. So we’ll have bouts of brilliance, and bouts where nothing may seem to come out of our hands. Know that. Appreciate that. And help us know that it’s ok that we’re wired like that. We may need that wee bit more of validation, of encouragement. We need to know you believe in us and that we’re valuable. And we may need a hug every once in a while.</p>\n<p>Disclaimer</p>\n<p>I’m not a psychologist. I’m just sharing what I what I learned while trying to turn my life around. Also, the highs and the lows keep coming and going. Over the past five years, though, the trend has been upwards. And getting through my lows has become easier as I have become more confident about my ability to get through.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\">\n<div class=\"rtsocial-twitter-horizontal\">\n<div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How The WordPress Community Helped Me Face My Fears And Do It Anyway\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20The%20WordPress%20Community%20Helped%20Me%20Face%20My%20Fears%20And%20Do%20It%20Anyway&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fhow-the-wordpress-community-helped-me-face-my-fears-and-do-it-anyway%2F\" rel=\"nofollow\" target=\"_blank\"></a></div>\n</div>\n<div class=\"rtsocial-fb-horizontal fb-light\">\n<div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How The WordPress Community Helped Me Face My Fears And Do It Anyway\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fhow-the-wordpress-community-helped-me-face-my-fears-and-do-it-anyway%2F\" rel=\"nofollow\" target=\"_blank\"></a></div>\n</div>\n<div class=\"rtsocial-linkedin-horizontal\">\n<div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fhow-the-wordpress-community-helped-me-face-my-fears-and-do-it-anyway%2F&title=How+The+WordPress+Community+Helped+Me+Face+My+Fears+And+Do+It+Anyway\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How The WordPress Community Helped Me Face My Fears And Do It Anyway\"></a></div>\n</div>\n<div class=\"rtsocial-pinterest-horizontal\">\n<div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/how-the-wordpress-community-helped-me-face-my-fears-and-do-it-anyway/&media=https://heropress.com/wp-content/uploads/2020/06/062619-min-150x150.jpg&description=How The WordPress Community Helped Me Face My Fears And Do It Anyway\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How The WordPress Community Helped Me Face My Fears And Do It Anyway\"></a></div>\n</div>\n<p><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/how-the-wordpress-community-helped-me-face-my-fears-and-do-it-anyway/\" title=\"How The WordPress Community Helped Me Face My Fears And Do It Anyway\"></a></div>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/how-the-wordpress-community-helped-me-face-my-fears-and-do-it-anyway/\">How The WordPress Community Helped Me Face My Fears And Do It Anyway</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jun 2019 00:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WPTavern: WP Engine Acquires Flywheel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91142\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/wp-engine-acquires-flywheel\";s: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:5552:\"<p>In a move that caught <a href=\"https://twitter.com/biancawelds/status/1143239752554037256\">some</a> <a href=\"https://twitter.com/jnovakfl/status/1143239160167370752\">people</a> by surprise, WP Engine <a href=\"https://wpengine.com/blog/wp-engine-to-acquire-flywheel/\">has announced</a> that it has reached a definitive agreement to acquire Managed WordPress host, <a href=\"https://getflywheel.com/\">Flywheel</a>. </p>\n\n\n\n<p>While financial terms of the deal were not disclosed, Heather Brunner, WP Engine’s CEO <a href=\"https://techcrunch.com/2019/06/24/wordpress-management-site-wp-engine-acquires-flywheel-as-it-moves-to-a-1b-valuation-and-ipo/\">confirmed to TechCrunch</a> that the company needed to raise a small round of funding to finance the deal. </p>\n\n\n\n<p>Dusty Davidson, Tony Noecker, and Rick Knudtson founded Flywheel in 2012 in Omaha, Nebraska. In 2012, there were already a handful of players in the Managed WordPress Hosting space but Flywheel was able to carve out a niche by focusing on Designers and Agencies. </p>\n\n\n\n<p>In 2016, Flywheel became one of the few hosting companies added to the <a href=\"https://wordpress.org/hosting/\">WordPress.org recommended hosting</a> page. However, their listing was removed a few months later without an explanation. </p>\n\n\n\n<p>Also in 2016, <a href=\"https://wptavern.com/flywheel-acquires-wordpress-local-development-tool-pressmatic\">Flywheel acquired Pressmatic</a>, a local WordPress development application for OS X from Clay Griffiths and rebranded it to Local by Flywheel. Representatives from both companies have stated that there are no plans to merge <a href=\"https://wptavern.com/wp-engine-launches-devkit-open-beta\">WP Engine Devkit</a> with Local by Flywheel.</p>\n\n\n\n<p>According to a frequently asked questions document, nothing much is changing in the foreseeable future for Flywheel customers. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Business will continue as usual! There will be no immediate changes to the Flywheel platform, plans, or experience. We’ll be spending the coming weeks and months on strategic innovation and integration planning, and are super excited to figure out how we can leverage all of our collective strengths, products, and brand assets in the best possible way. </p><cite><a href=\"https://getflywheel.com/flywheel-is-joining-wpengine/\">Acquisition FAQ</a></cite></blockquote>\n\n\n\n<p>Flywheel has generated a loyal following of happy customers over the years and some of them took to Twitter to express their concerns regarding Monday’s announcement. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Please, please, please don\'t have this be the beginning of the end! Flywheel rocks and I hope you continue to do so! I\'ve been down this acquisition road before (remember when Host Gator got bought?) and it usually doesn\'t end well.</p>— samsonmedia (@samsonmedia) <a href=\"https://twitter.com/samsonmedia/status/1143239375280594944?ref_src=twsrc%5Etfw\">June 24, 2019</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I’m sure you’ll are very excited and feel this is nothing but a positive thing but as someone who has found flywheel to be a saving grace in a sea of disappointment, I am very concerned to lose the only hosting service I ever loved. <br /><br />Especially to one i don’t… <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f615.png\" alt=\"?\" class=\"wp-smiley\" /></p>— Jay Mutzafi (@JayMutzafi) <a href=\"https://twitter.com/JayMutzafi/status/1143239802382237696?ref_src=twsrc%5Etfw\">June 24, 2019</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">There\'s a reason that I chose Flywheel over WP Engine years ago. My heart sank when I read your announcement. <br /><br />These acquisitions always end poorly for customers at some point. It will be fine for awhile, then things will change. <br /><br />Time to look for my next hosting platform.</p>— Larry Cornett (@cornett) <a href=\"https://twitter.com/cornett/status/1143247795266080768?ref_src=twsrc%5Etfw\">June 24, 2019</a></blockquote>\n</div>\n\n\n\n<p>Seeing these types of responses from customers is a testament to the level of service Flywheel provides. Many of them explained why they chose to host their clients with Flywheel over WP Engine. </p>\n\n\n\n<p>Both companies have vowed to keep customers in the loop of any potential changes to plans, services, or products. While each company will operate independently as things are sorted out, it will be interesting to see how the two companies are integrated over time and how customers respond. </p>\n\n\n\n<p>If you’re a Flywheel customer, please let us know what you think about the acquisition in the comments below. </p>\n\n\n\n<p>To learn more about the deal, check out the following links.</p>\n\n\n\n<ul><li><a href=\"https://getflywheel.com/flywheel-is-joining-wpengine/\">Flywheel is joining WP Engine!</a></li><li><a href=\"https://wpengine.com/blog/wp-engine-to-acquire-flywheel/\">WP Engine to Acquire Flywheel</a></li><li><a href=\"https://getflywheel.com/layout/big-news-flywheel-and-wpengine/\">Big news: Flywheel is joining WP Engine! From Dusty Davidson</a></li><li><a href=\"https://wpengine.com/blog/realizing-vision-to-build-most-relied-upon-dxp-for-wordpress/\">Realizing Our Vision To Build the Most Relied Upon DXP for WordPress from Heather Brunner</a></li></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:\"Tue, 25 Jun 2019 22:42:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: WordPress AMP Plugin Version 1.2 Introduces Gutenberg-powered AMP Stories 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:29:\"https://wptavern.com/?p=90892\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/wordpress-amp-plugin-version-1-2-introduces-gutenberg-powered-amp-stories-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:7959:\"<p>Google released <a href=\"https://amp-wp.org/amp-plugin-version-1-2-release/\" rel=\"noopener noreferrer\" target=\"_blank\">version 1.2</a> of its official AMP plugin for WordPress ahead of WordCamp Europe in Berlin. This release introduces a new AMP Stories editor that is powered by Gutenberg. </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/06/AMP-stories-editor.png?ssl=1\"><img /></a></p>\n<p>AMP Stories are separate from the capabilities that enable AMP for the rest of the website, and they can be used together or independently. The Stories feature has its own post type that uses the block editor and comes with custom blocks that enable the following: </p>\n<ul>\n<li>Multiple story pages can be added in a horizontal editing interface</li>\n<li>Page reordering with drag and drop</li>\n<li>Text block (the default instead of Paragraph) allows for text to automatically resize to fit the container</li>\n<li>40 font families for styling the Text block</li>\n<li>Blocks can be dragged and rotated anywhere on a page, with ability to move in front of or behind other blocks</li>\n<li>Select from blank pages or pre-made page templates</li>\n<li>Text block can have varying background color opacity</li>\n<li>Blocks on a given page are listed in a persistent table of contents (with drag and drop)</li>\n<li>Story pages can have background video or image (with focal point)</li>\n<li>Pages can have a solid background color or gradient, including opacity for overlaying background image/video</li>\n</ul>\n<p>The stories created in the editor can also be embedded in other posts and pages using the regular embed block or the Latest Stories block. </p>\n<p>Stories are a mobile-focused format that have become increasingly popular with social networking apps like Snapchat, Instagram, and Facebook. Stories on these platforms are usually created as ephemeral bits of content that are not easy to embed without using a third-party application. Google is marketing AMP stories as “visual storytelling for the open web.” </p>\n<p>“I like to position it as Web Stories,” Google Developer Relations Program Manager <a href=\"https://twitter.com/tweetythierry\" rel=\"noopener noreferrer\" target=\"_blank\">Thierry Muller</a> said. “It is powered by AMP, but there are none of the challenges developers might face when making a website AMP compatible. With Web Stories, users are now able to create stories accessible via a simple URL, content that they own and can use open source tools such as the Story editor for WordPress to create stories.”</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/06/washpo-amp-stories.jpg?ssl=1\"><img /></a>Muller said the target audience for AMP stories includes publishers, travel bloggers, food bloggers, and anyone who wants to create immersive content. Some well-known publishers, such as <a href=\"https://www.telegraph.co.uk/visual-stories/\" rel=\"noopener noreferrer\" target=\"_blank\">The Telegraph</a>, <a href=\"https://www.washingtonpost.com/pr/wp/2018/02/13/the-washington-post-launches-custom-story-presentation-with-googles-amp-stories/\" rel=\"noopener noreferrer\" target=\"_blank\">Washington Post</a>, and <a href=\"https://edition.cnn.com/ampstories\" rel=\"noopener noreferrer\" target=\"_blank\">CNN</a>, have partnered with Google as early adopters, using AMP stories to cover news and events. The Stories also show up in a carousel in mobile search results.</p>\n<p>WordPress users who want to start using the AMP plugin’s Stories feature will need to have Gutenberg 5.8+ installed, because it requires some of the newer features in the block editor that haven’t yet be merged into core. </p>\n<p>The addition of AMP Stories to the official AMP plugin may make it more appealing to those who have been hesitant to install it simply for the website capabilities. It gives the plugin another entry point with users who are more interested in the visual storytelling aspect. </p>\n<p>In a recent <a href=\"https://adactio.com/journal/15357\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> examining the web standards community’s confusion surrounding how Google Chrome seemed to be unilaterally implementing a new element called toast, Jeremy Keith made a good observation regarding developers’ skepticism about AMP.</p>\n<p>“I certainly don’t think this is a good look for Google given the debacle of AMP’s ‘my way or the highway’ rollout,” Keith said. “I know that’s a completely different team, but the external perception of Google amongst developers has been damaged by the AMP project’s anti-competitive abuse of Google’s power in search.” Google Web Advocate Das Surma lent credibility to Keith’s take on the matter, <a href=\"https://twitter.com/DasSurma/status/1141627540282494977\" rel=\"noopener noreferrer\" target=\"_blank\">saying</a> it offered “a pretty accurate representation of our intentions, but also of the problems and mistakes we made.”</p>\n<p>It’s not easy to quantitatively measure how developers’ anti-AMP sentiment has affected the adoption of Google’s official AMP plugin for WordPress, especially given the rocky start it had in the official plugin directory. XWP and Google engineers had a lot to overcome after <a href=\"https://wptavern.com/amp-for-wordpress-plugin-to-introduce-user-friendly-theme-support-settings-in-upcoming-1-0-release\" rel=\"noopener noreferrer\" target=\"_blank\">taking over the plugin’s development</a> from Automattic when <a href=\"https://wptavern.com/amp-project-turns-2-automattic-partners-with-google-to-improve-wordpress-plugin\" rel=\"noopener noreferrer\" target=\"_blank\">users began to wonder if it had been abandoned</a>. </p>\n<p>The first version of the AMP plugin was released in October 2015 and initially had 400 active installs. Over the past four years, that number has grown to more than 400,000 active installs. The plugin has had a 33% increase in its user base from December 1, 2018 (300,000+) to today (400,00+). This is likely due to some of the more user-friendly improvements that have been introduced in the past six months. Google and XWP’s involvement seems to have successfully dug the plugin out of its previous trend towards negative ratings from users who couldn’t get any support. </p>\n<p>Nevertheless, Google is still struggling with the challenge to convince WordPress users that the AMP plugin is a must-have addition to their sites. Convincing the wider WordPress ecosystem to build <a href=\"https://amp-wp.org/ecosystem/\" rel=\"noopener noreferrer\" target=\"_blank\">AMP-ready plugins and themes</a> that provide the compatibility for functionality that users’ websites rely on in order to be anything more than a basic blog. Adding AMP stories to the plugin may help to get more WordPress users on board to further explore AMPing up their websites.</p>\n<p>Approximately 410/500 issues and pull requests in version 1.2 were dedicated to the new AMP Stories feature. This release introduces the notion of “AMP experiences,” a fancy industry buzz word that divides the Stories and Website features into separate functionality. The website framework improvements include a renaming of the template modes: Native, Paired, and Classic are now Standard, Transitional, and Reader, a strategic and notably less clear way of identifying the modes that seems intended to drive users towards adopting the native AMP approach. The editor has also been updated to display a warning when a featured image is too small for Google Search’s requirements, as well as provide better block-level warnings and improvements to validation requests.</p>\n<p>Check out the <a href=\"https://github.com/ampproject/amp-wp/releases/tag/1.2.0\" rel=\"noopener noreferrer\" target=\"_blank\">v1.2 changelog</a> for a full list of everything that is new in this release.</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, 25 Jun 2019 19:06:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: WordCamp Europe 2020 to be Held in Porto, June 4-6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91060\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordcamp-europe-2020-to-be-held-in-porto-june-4-6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12251:\"<p>Another successful edition of WordCamp Europe concluded this weekend in Berlin. The event was the largest WordCamp in history, with 3,260 tickets sold and 2,734 attendees present on the ground. WCEU sold 800 more tickets than the previous year in Belgrade. Contributor Day gathered 611 attendees into 25 teams, and approximately 28% of them (169 attendees) were new WordPress contributors.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Smiling faces of awesome people at Contributor Day <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> 2019 <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f601.png\" alt=\"?\" class=\"wp-smiley\" />We had 25 teams, and 611 signed up to give back to <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> today, of which 169 said they were new contributors. Thank you! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f499.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/P7W7Ocl0lw\">pic.twitter.com/P7W7Ocl0lw</a></p>\n<p>— WordCamp Europe (@WCEurope) <a href=\"https://twitter.com/WCEurope/status/1141729922588692480?ref_src=twsrc%5Etfw\">June 20, 2019</a></p></blockquote>\n<p></p>\n<p>To cap off the conference, attendees enjoyed a lively celebration Saturday night, donning vintage outfits for an 80’s themed after party at the venue. The party included a controversial show that some attendees found <a href=\"https://twitter.com/zodiac1978/status/1142515008309538816\" rel=\"noopener noreferrer\" target=\"_blank\">offensive</a> and <a href=\"https://twitter.com/schlessera/status/1143182472303325185\" rel=\"noopener noreferrer\" target=\"_blank\">unwelcoming</a>. WCEU organizers have addressed this issue in a <a href=\"https://2019.europe.wordcamp.org/2019/06/24/after-party-apology/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a>. According to WordPress community organizer <a href=\"https://twitter.com/andmiddleton/status/1142699425871142912\" rel=\"noopener noreferrer\" target=\"_blank\">Andrea Middleton</a>, “that part of the show did not match the expectations that they had set with the venue, and was a disappointing surprise.”</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">A glimpse of swiss <a href=\"https://twitter.com/hashtag/WordCamp?src=hash&ref_src=twsrc%5Etfw\">#WordCamp</a> \'s organisers in 80ies look for the <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> after-party yesterday. With <a href=\"https://twitter.com/neverything?ref_src=twsrc%5Etfw\">@neverything</a> and <a href=\"https://twitter.com/andrew_liyanage?ref_src=twsrc%5Etfw\">@andrew_liyanage</a> <a href=\"https://twitter.com/wp_switzerland?ref_src=twsrc%5Etfw\">@wp_switzerland</a> upcoming <a href=\"https://twitter.com/hashtag/wczrh?src=hash&ref_src=twsrc%5Etfw\">#wczrh</a> and <a href=\"https://twitter.com/wpgva?ref_src=twsrc%5Etfw\">@wpgva</a> <a href=\"https://t.co/yzBgxndopK\">pic.twitter.com/yzBgxndopK</a></p>\n<p>— Patricia BT (@PatriciaBT70) <a href=\"https://twitter.com/PatriciaBT70/status/1142737968031047680?ref_src=twsrc%5Etfw\">June 23, 2019</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">For those in the US that are wondering what an sfterparty in Europe looks like.. <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a> <a href=\"https://t.co/BXZpZHyQpt\">pic.twitter.com/BXZpZHyQpt</a></p>\n<p>— Pieter Daalder (@w1zz) <a href=\"https://twitter.com/w1zz/status/1142530170622005249?ref_src=twsrc%5Etfw\">June 22, 2019</a></p></blockquote>\n<p></p>\n<p>Despite the controversial after party show, the event received mostly positive feedback and many attendees reported that it was “best WCEU” they had ever attended.</p>\n<p>In addition to breaking records as the largest WordCamp in history, organizers report that the majority of ticket holders (56%) were first time WCEU attendees. </p>\n<p>“Berlin is an amazing city and by far one of the most popular locations for remote work in Europe,” 2019 global lead Milan Ivanovic said. “When we add on top the strong German community, with WordCamps across the country and four monthly WordPress meetups in Berlin alone, it was a no brainer that we would have a sold-out event. We also had an amazing line-up of speakers with 3 tracks and 3 workshops, along with on-time information shared to our attendees.”</p>\n<h3>WordCamp Europe 2020 to be Held in Porto, Portugal</h3>\n<p>At the conclusion of the event, organizers announced that next year WCEU is coming to Porto, June 4-6. Porto is Portugal’s second largest city, known for its beautiful beaches, port wine exports, bridges, vineyards, charming cobblestone streets, and affordability. It also has a vibrant and growing WordPress community. Portugal is home to <a href=\"https://wordpress.tv/2015/07/09/ze-fontainhas-how-wordcamp-europe-came-to-be/\" rel=\"noopener noreferrer\" target=\"_blank\">Zé Fontainhas</a>, one of the original creators of WordCamp Europe. </p>\n<p></p>\n<p><a href=\"https://profiles.wordpress.org/josefreitas2/\" rel=\"noopener noreferrer\" target=\"_blank\">Jose Freitas</a>, who will be heading up the local team in Portugal, has been working with WordPress since 2008 and has been involved with the community since 2013. He said the Portuguese WordPress community has been working on its application to host WCEU for three years. </p>\n<p>“We are thrilled to have WCEU in Porto next year,” Freitas said. “Portugal is indeed a small country but we have a good WordPress community. At Porto we have had a monthly WordPress Meetup since January 2014, without failing a month. WordPress is growing quickly in Portugal and every day we have people joining our community.” </p>\n<p>The greater community is connected on Facebook through the <a href=\"https://www.facebook.com/groups/wpportugal/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress Portugal</a> group, which has more than 4,400 members.</p>\n<p>“We found that for some people, mostly beginners, it’s difficult to start using the support forums,” Freitas said. “So we made a Facebook group and people can ask questions and receive help or feedback related to their projects. Most of the users are people that made their own websites and websites for non profit organizations.”</p>\n<p>Up until now, Portugal has hosted one WordCamp per year, alternating between Porto and Lisbon locations. Following 2020, local organizers plan to host two camps per year, and WC Lisboa is expected to be scheduled for October 2020.</p>\n<p>The Porto community had formidable competition in its journey to securing the opportunity to host WCEU 2020, beating out Athens, Granada, Manchester, and Torino. Freitas attributes his team’s success to its dedication to improving Porto’s application for the past three years, following a disappointing attempt in 2016.</p>\n<p>“First it was only a dream,” Freitas said. “After, it was <em>what if…</em> We applied the first time in 2016 to WCEU 2017. We were in the final decision but the event went to Paris, as we all know. So we started right then the application to 2020.</p>\n<p>“We made it better, stronger, complete with all the new requirements. Each WCEU was getting something new and in each one we added the new thing to our documentation. We made a strict budget, with realistic numbers in all parameters. I think that was important for the people who made the selection.”</p>\n<p>WCEU 2020 sessions will be held in English. Freitas said the majority of Portuguese people have a good understanding of English and most in the WordPress community are fluent in both languages. </p>\n<p>The maximum capacity for the venue is 8,000 people. WCEU’s arrangement for 2020 allows attendance to go up to 4,000, in case the event has another record-breaking year.</p>\n<p>“We have a wonderful venue in the city center and surrounded by a garden and a balcony with amazing views of the river and part of the city,” Freitas said.</p>\n<p>WCEU 2019 local lead Bernhard Kau will be joining the 2020 team as one of the global leads to provide a smooth transition from one year to the next. Attendees can expect some of the successful aspects of the 2019 event to make a return at next year’s WCEU.</p>\n<p>“The additions of WP Cafe and Wellness at WCEU were a big success and I would love to have more space for them at WordCamp Europe 2020 in Porto,” Kau said. “There are also some other ideas helping attendees staying healthy, both physically and mentally.</p>\n<p>“As I have never been to Portugal, I am very excited to visit another country. I have met some members of the Portuguese Community on WordCamps throughout Europe and they are some of the most friendly people you can find.”</p>\n<p>For those who are considering adding WCEU 2020 in Porto to their calendars, Freitas offered a preview of what attendees can expect:</p>\n<blockquote><p>Imagine yourself… it is June, 3, 2020. There’s one day to go before WCEU.</p>\n<p>You go to the city center to know a little of the city. You walk in small and narrow streets and find that some of those have a history of more that a thousand years. You ask some directions, because you don’t want to use smartphone maps, and people are nice and even offer to take you to the place that is only 500 meters way.</p>\n<p>You go to the very old part of the city and realize that it wasn’t changed for many, many years. It was not changed because people didn’t want to and because now it’s a UNESCO World Heritage site.</p>\n<p>You sit near the river and look at the bridge designed and build by a student of Eiffel (yep, that Eiffel). The sun has made the Douro river look like silver and you finally get why the Romans gave the name of Porto (port) to the place.</p>\n<p>It’s time to lunch some tasty and delightful Portuguese food. Don’t skip the dessert. To burn some calories you’ll go to the check the venue.</p>\n<p>You pass the old Reitoria building (the place were the university principal used to work) – Porto has the biggest Portuguese university – and see a garden with trees, flowers and even some peacocks.</p>\n<p>You enter there and find the way to the venue: it looks like the top of a spaceship, like the ones in the movies. There’s a banner: “WordCamp Europe 2020.”</p>\n<p>Now you feel that you’re only a few hours away from the moment you have been waiting for. But, let’s go because you have to see other parts of the city.</p>\n<p>The next day, you join hundreds of WordPress people who are helping the community in Contributor Day. There is a lot to do before the two conference days and workshops, before visiting the sponsors area, before meeting some of the nice folks that you didn’t see since last year, before making new friends.</p>\n<p>After all, it’s possible to make new friends in an event of thousands of people.</p></blockquote>\n<p>WordCamp Europe is made possible every year by a massive team of organizers and volunteers who help keep costs low, in addition to sponsors. </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">The organising team would like to thank all of the volunteers for contributing to an amazing <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a>! <a href=\"https://t.co/1um7usNZqT\">pic.twitter.com/1um7usNZqT</a></p>\n<p>— WordCamp Europe (@WCEurope) <a href=\"https://twitter.com/WCEurope/status/1142455860683333632?ref_src=twsrc%5Etfw\">June 22, 2019</a></p></blockquote>\n<p></p>\n<p>The 2020 team put out the <a href=\"https://2020.europe.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">call for organizers</a> after announcing the host city. In the first 24 hours, the team has already received 30 applications. The deadline to apply is July 15, 2019. Calls for sponsors, volunteers, and speakers will come after organizers are selected, as the year-round work of organizing WCEU continues again for 2020.</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, 24 Jun 2019 19:20: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Contribution Time, Sponsored, and Teams Fields Added to WordPress.org User Profiles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91027\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/contribution-time-sponsored-and-teams-fields-added-to-wordpress-org-user-profiles\";s: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:2544:\"<p>A new section named Contribution <a href=\"https://make.wordpress.org/updates/2019/06/19/updates-to-wordpress-profiles-and-jobs-wordpress-net/\">has been added</a> to WordPress.org user profiles. This section contains fields that enable users to share how much time they contribute to WordPress on a weekly basis, which teams they contribute to, and whether or not those contributions are sponsored. </p>\n\n\n\n<div class=\"wp-block-image\"><img />New WordPress.org User Profile Fields</div>\n\n\n\n<p>Each field is optional and will only appear if the Hours and Teams fields are filled in. The sponsored tag will only appear next to the Contributions heading if you answer Yes to being sponsored and the other fields are filled in. </p>\n\n\n\n<p>Andrea Middleton describes these fields as a step towards a possible version one of the <a href=\"https://make.wordpress.org/updates/2018/11/05/proposal-five-for-the-future-acknowledgement-page/\">Five for the Future program</a> that was published last year. </p>\n\n\n\n<p>“I think it will also help with transparency, and might facilitate how teams set internal expectations for how much time different contributors might have to spend on a project or ongoing task,” she said. </p>\n\n\n\n<p>In addition to the profile fields, the official <a href=\"https://jobs.wordpress.net/\">WordPress Jobs Board</a> has also been updated to include a new <a href=\"https://jobs.wordpress.net/job_category/contributor/\">Contributor position</a>. The goal is to make it easier for companies to find and hire people interested in becoming sponsored contributors. </p>\n\n\n\n<p>These changes are the first iteration with plans to enhance them in the future. If you have any suggestions or ideas on improving these fields, you’re encouraged to <a href=\"https://make.wordpress.org/updates/2019/06/19/updates-to-wordpress-profiles-and-jobs-wordpress-net/\">leave a comment</a>.</p>\n\n\n\n<p>One question I have regarding potential additions is whether or not it makes sense to provide a text field where users can name the company that is sponsoring them. This may aid in transparency and avoiding conflicts of interests. </p>\n\n\n\n<p>On the other side of the coin, does it make sense for the company’s name to be public information, or should contributors only share that information with team leads or reps on a 1-on-1 basis? </p>\n\n\n\n<p>I feel as though knowing someone’s contributions are sponsored is only half of the equation. Without knowing who the sponsor is, that information is practically irrelevant. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 22 Jun 2019 01:17:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"WPTavern: Matt Mullenweg’s Summer Update at WordCamp Europe 2019: Gutenberg’s Progress and a Preview of Upcoming Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://wptavern.com/matt-mullenwegs-summer-update-at-wordcamp-europe-2019-gutenbergs-progress-and-a-preview-of-upcoming-features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11361:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/matt-wceu-2019.jpg?ssl=1\"><img /></a>image credit: <a href=\"https://www.facebook.com/WCEurope/photos/a.345903435550204/1343533289120542/\">WCEU Photography Team</a></p>\n<p>Matt Mullenweg took the stage at WordCamp Europe in Berlin this afternoon to give a summer update on the progress of the block editor. He attributed much of its continued success to the availability of the Gutenberg plugin, which allows for quick iteration and testing. More than 150,000 posts are published per day using the block editor, which Mullenweg said is “a testament to the long development period” that gave the team an opportunity to work out bugs and make it usable for a large number of people.</p>\n<p>Since its initial release, the block editor has added a host of notable improvements, including block management capabilities, a cover block with nested elements, widgets as blocks, block grouping, and snackbar style notices. </p>\n<p>Mullenweg highlighted a few beautiful and innovative examples of Gutenberg in the wild. Two projects from <a href=\"https://humanmade.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Human Made</a> showcase Gutenberg-powered designs (<a href=\"https://www.artefactgroup.com/\" rel=\"noopener noreferrer\" target=\"_blank\">artefactgroup.com</a>) and an AI integration that analyzes a user’s writing in the editor (<a href=\"https://ingenuity.siemens.com/\" rel=\"noopener noreferrer\" target=\"_blank\">ingenuity.siemens.com</a>.) </p>\n<p>Election season is ramping up in the U.S. and Gutenberg-powered sites, like <a href=\"https://hurst4delegate.com/\" rel=\"noopener noreferrer\" target=\"_blank\">hurst4delegate.com</a>, are starting to pop up. Mullenweg noted that 21/24 of the current democratic candidates for President are using WordPress for their sites. <a href=\"https://www.whitehouse.gov/\" rel=\"noopener noreferrer\" target=\"_blank\">Whitehouse.gov</a> also switched from Drupal to WordPress earlier this year. </p>\n<p>Mullenweg also gave a quick preview of some of the upcoming Gutenberg features that are currently being developed on GitHub. Most of them are still in the prototype stage. The team is creating a system to install new blocks online, which will tie into the planned block directory. Mullenweg said Blocks could become a new top-level menu item in the WordPress admin, with screens dedicated to block discovery. </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">\"A block directory is coming that will take over other “top level navigation” and brings a “playfulness” to discovering <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> blocks.” <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/wsiHcPaVuL\">pic.twitter.com/wsiHcPaVuL</a></p>\n<p>— David Bisset (@dimensionmedia) <a href=\"https://twitter.com/dimensionmedia/status/1142044607800369153?ref_src=twsrc%5Etfw\">June 21, 2019</a></p></blockquote>\n<p></p>\n<p>He showed demos of the navigation block in progress, a prototype for adding realistic motion to block movement, an experimental footnotes block, and a demo of resizing images with “snap to grid” capabilities. Mullenweg said one of the goals with Gutenberg is to “make it possible to create beautiful experiences, because that’s part of what the web needs to win.” </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">New footnotes feature being tested in <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a>. <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/b8yhn2X71w\">pic.twitter.com/b8yhn2X71w</a></p>\n<p>— David Bisset (@dimensionmedia) <a href=\"https://twitter.com/dimensionmedia/status/1142045330969640961?ref_src=twsrc%5Etfw\">June 21, 2019</a></p></blockquote>\n<p></p>\n<p>Mullenweg also gave an update on Gutenberg’s progress in the mobile apps. He said the new editor is operational but development is slow moving because the mobile engineers essentially have to duplicate all of the work that has been done by hundreds of Gutenberg contributors thus far. </p>\n<h3>Q&A Highlights Governance, Core Maintenance, and the Future of WordPress Themes</h3>\n<p>The Q&A portion of the session featured a variety of topics, ranging from an aggressive tirade about licensing and Envato, to more relevant inquiries about the future of WordPress themes. While this format of interaction has its shortcomings, it gives community members the opportunity to check on the status of issues where they have a particular interest. </p>\n<p>One attendee asked if WordPress.org plans to implement a more democratic structure for decision making. Mullenweg seemed to interpret the question as referencing a system where tens or hundreds of millions of WordPress users would participate in making decisions on features through a vote or some other form of feedback. In contrast, he said WordPress’ current approach is for leadership to try to get a sense for what the most common issues are through polls and public channels and allow those issues to help shape the project’s roadmap. </p>\n<p>Mullenweg shared that one particular issue on his mind right now is the problem of “how do I make my theme look like the demo?” He said contributors are experimenting with different types of models for making decisions that move WordPress in the direction to solve these types of problems. </p>\n<p>He said that the project’s decision making is fairly transparent, without a lot of mystery, and that the community has tons of feedback mechanisms. This is a somewhat controversial claim, as <a href=\"https://make.wordpress.org/updates/2019/04/26/5-0-release-retrospective-wrap-up/\" rel=\"noopener noreferrer\" target=\"_blank\">regular project contributors have expressed frustration with the lack of communication</a> surrounding important planning and decisions, such as release dates and project timing, as it pertained to how WordPress 5.0 landed. The community was frustrated by a lack of effective ways to communicate critical issues and complaints to project leadership. As a followup to this specific feedback, Josepha Haden, the new Executive Director of the WordPress project, has been diligent to track and communicate how leadership is working to improve communication.</p>\n<p>Another attendee asked if WordPress themes will become obsolete after Gutenberg gains more site-building capabilities. Mullenweg predicted they will always be a part of WordPress but seemed inclined to let the market decide the fate of themes.</p>\n<p>“I don’t know,” he said. “They are going to change for sure. I don’t think they ever go away.” He said he could see developers offering an array of different designs that could be used as a starting point. Although a WordPress theme has a very specific definition right now (as far as what types of files are included), Mullenweg said he can see that definition evolving over time. He said he could see themes becoming like a starter template or a library of patterns to choose from, or even a set of complex layouts that could work across different themes. </p>\n<p>“I think we’re going to decouple themes a little bit but I don’t know how or what that will look like,” Mullwenweg said. He also noted that a lot of themes right now represent a similar aesthetic, often business minimalist that use white and blue colors. Design trends have the potential to shift dramatically as Gutenberg and themes evolve to allow users more control over how their sites are designed.</p>\n<p>It is no secret that the WordPress development community is eager to switch to GitHub or another Git-based infrastructure for core development. Most of the recent feature projects have successfully matured on GitHub, with the majority of work and discussion taking place outside of Trac. One attendee asked about the possibility of moving away from Trac in the near future. Mullenweg said that this year the team that works on WordPress.org is prioritizing changes to the directory, but in the meantime anyone with Python knowledge is welcome to contribute to tweaking Trac for improvements in the interim before WordPress moves to Git-based development.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I’d love to move off of Trac as much as the next person. In the interim I’m working some cool tools to make life easier using the Elasticsearch cluster I built for it. Let me know if you want to help! <a href=\"https://t.co/E26P66ebmQ\">https://t.co/E26P66ebmQ</a> <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a></p>\n<p>— William Earnhardt (@earnjam) <a href=\"https://twitter.com/earnjam/status/1142057095044444160?ref_src=twsrc%5Etfw\">June 21, 2019</a></p></blockquote>\n<p></p>\n<p>In response to a question about blockchain technology and WordPress, Mullenweg said he has long been an enthusiast in this area and loves the idea of open source applying to money, as well as having a distributed ledger. </p>\n<p>“But I can’t think of any problem in core WordPress right now that the overhead of a blockchain would really improve,” he said. “Everything I could think of right now would probably be plugin territory.” However, he said that the <a href=\"https://wptavern.com/new-wordproof-plugin-timestamps-wordpress-content-on-the-blockchain\" rel=\"noopener noreferrer\" target=\"_blank\">WordProof plugin’s timestamping WordPress content</a> on the blockchain is among one of the best ideas he has seen for this technology so far.</p>\n<p>When asked how he plans to “balance chasing the new and shiny with all of WordPress’ existing legacy APIs,” Mullenweg said that “PHP is going to be crucial to us for many years to come.” He recognized that the project has fallen behind in maintenance with some of its older APIs but that work on Gutenberg can be done in parallel. </p>\n<p>The new triage team is currently going through all the tickets, refreshing patches, and working on taking them to resolution. Mullenweg noted that WordCamp Europe hosted the first ever triage table at its contributor day and said that this new area is ripe for contribution.</p>\n<p>The REST API, despite its broad support and noteworthy contributors, is one area that Mullenweg said has held Gutenberg back. He said it still does not have the demonstrated use that its advocates predicted when working to get it merged into core and cautioned that WordPress should always use an API first before shipping it to the world.</p>\n<p>Mullenweg concluded the Q&A by estimating that Gutenberg is only 10% of the way down the road towards solving the problems that WordPress contributors set out to tackle. He predicts that building on this initial effort will carry into the next decade.</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, 21 Jun 2019 18:48:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Free Event: Post Status to Live Stream Publish Online July 8-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:29:\"https://wptavern.com/?p=90922\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/free-event-post-status-to-live-stream-publish-online-july-8-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1674:\"<p><a href=\"https://poststatus.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Post Status</a> will be live streaming <a href=\"https://poststatus.com/publish/\" rel=\"noopener noreferrer\" target=\"_blank\">Publish Online</a> on July 8-9, 2019. The event, which is geared towards WordPress professionals, has traditionally been limited to club members. This year Post Status creator Brian Krogsgard is opening up the live stream for anyone to watch for free.</p>\n<p>“I debated so strongly on this,” Krogsgard said. “But these are great talks — valuable to the community — and I want to make them accessible.”</p>\n<p>Publish Online will feature 14 presentations from community leaders who are deeply invested in the WordPress ecosystem in one way or another. The talks are centered around WordPress core processes and vision, mixed with web business topics.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/06/Screen-Shot-2019-06-20-at-6.18.45-PM.png?ssl=1\"><img /></a></p>\n<p>Those who want to watch for free will need to <a href=\"https://poststatus.com/publish/\" rel=\"noopener noreferrer\" target=\"_blank\">register for the event</a>. Access to the live stream will be available at <a href=\"http://PostStatus.com/live\" rel=\"noopener noreferrer\" target=\"_blank\">PostStatus.com/live</a>. Post Status members will have access to all the recordings, transcripts, and audio after the event has concluded. The site is currently running an early bird special on club membership, <a href=\"https://poststatus.com/checkout/\" rel=\"noopener noreferrer\" target=\"_blank\">discounted to $79/year</a> ahead of the Publish Online event.</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, 21 Jun 2019 00:13:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: WPWeekly Episode 357 – CBD E-Commerce, XML Sitemaps, and A Preview of WCEU 2019\";s:7:\"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:59:\"https://wptavern.com/?p=90978&preview=true&preview_id=90978\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/wpweekly-episode-357-cbd-e-commerce-xml-sitemaps-and-a-preview-of-wceu-2019\";s: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:2093:\"<p>In this episode, <a href=\"https://www.presstitan.com/\">Malcom Peralty</a> and I discuss what’s new in WordPress 5.2.2, XML Sitemaps possibly landing in core, and WooCommerce clarifying its CDB seller policy. We also provide a preview of what to expect at WordCamp EU and congratulate Marcel Bootsman for successfully walking to Berlin, Germany.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\">WordPress 5.2.2</a></p>\n<p><a href=\"https://wptavern.com/wordpress-5-2-2-squashes-13-bugs\">WordPress 5.2.2 Squashes 13 Bugs</a></p>\n<p><a href=\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\">XML Sitemaps in Core?</a></p>\n<p><a href=\"https://twitter.com/WCEurope/status/1141317581195874310\">Marcel Bootsman Arrives at WCEU</a></p>\n<p><a href=\"https://www.codeinwp.com/blog/wceu-2019-event-guide/\">WordCamp EU Event Guide </a></p>\n<p><a href=\"https://twitter.com/WCEurope/status/1135886419052978176\">WordCamp EU Live Stream Link to be announced</a></p>\n<p><a href=\"https://10up.com/blog/2019/classifai-ai-machine-learning-wordpress/\">ClassifAI from 10up</a></p>\n<p><a href=\"https://docs.woocommerce.com/document/woocommerce-cbd/\">WooCommerce Clarifies its stance on stores selling CBD products</a></p>\n<h2>Transcript:</h2>\n<p><a href=\"https://wptavern.com/wp-content/uploads/2019/06/EPISODE357Transcript.rtf\">EPISODE357Transcript</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, June 26th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #357:</strong><br />\n</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, 20 Jun 2019 23:06:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Vast, Unbroken Slabs\";s:7:\"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:22:\"https://ma.tt/?p=49688\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2019/06/vast-unbroken-slabs/\";s: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:455:\"<blockquote class=\"wp-block-quote\"><p>Writing novels is hard, and requires vast, unbroken slabs of time. Four quiet hours is a resource that I can put to good use. Two slabs of time, each two hours long, might add up to the same four hours, but are not nearly as productive as an unbroken four.</p><cite>Neil Stephenson on <a href=\"https://www.nealstephenson.com/why-i-am-a-bad-correspondent.html\">Why I’m a Bad Correspondent</a></cite></blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jun 2019 19:54: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: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:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Jason Bahl Joins the Gatsby Team to Work on WPGraphQL Full-Time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=90566\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/jason-bahl-joins-the-gatsby-team-to-work-on-wpgraphql-full-time\";s: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:6498:\"<p><a href=\"https://twitter.com/jasonbahl\" rel=\"noopener noreferrer\" target=\"_blank\">Jason Bahl</a>, creator of <a href=\"https://www.wpgraphql.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL</a>, is joining the <a href=\"https://www.gatsbyjs.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby</a> team to work on WPGraphQL (and its immediate ecosystem) full-time. </p>\n<p>Gatsby, the immensely popular static site generator for React.js, lets users pull data into pages from WordPress, Drupal, Contentful, Google Docs, AirTable, markdown, and any other data sources. It is used by tens of thousands of developers and downloaded nearly 500,000 times each month.</p>\n<p>Gatsby founder Kyle Mathews created <a href=\"https://www.gatsbyjs.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby Inc</a>. as a company to further the project’s goals, and <a href=\"https://www.gatsbyjs.org/blog/2018-05-24-launching-new-gatsby-company/\" rel=\"noopener noreferrer\" target=\"_blank\">received $3.8M in seed funding</a> in May 2018. The investment is being used to build cloud services for Gatsby and improve Gatsby’s core open source software. As the company has grown, Gatsby is beginning to invest more heavily in the open source ecosystem that surrounds the project.</p>\n<p>With WordPress powering <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" rel=\"noopener noreferrer\" target=\"_blank\">34% of the top 10 million websites</a>, it’s only natural that Gatsby would look to WPGraphQL, one of the most promising projects in the WP ecosystem, for its next investment in open source. The more WordPress developers Gatsby can get using GraphQL and JavaScript, the more it benefits the greater Gatsby ecosystem.</p>\n<p>“The number of developers using Gatsby to build sites where the content is managed by WordPress is growing,” Bahl said. “The current `gatsby-source-wordpress` plugin pulls data into Gatsby using the WordPress REST API, but the REST API has a lot of pain points that are proving to be very difficult to get past.</p>\n<p>“WPGraphQL solves many of those pain points already, and has potential to solve even more. The more robust WPGraphQL is, the better it is for all JavaScript consumers, whether it be Next.js, Gridsome (a Vue static site generator) or Gatsby.”</p>\n<p>Bahl followed the Gatsby project from afar before striking up a relationship with the team through the various Slack channels where the community is active. A year and a half ago, he moved the <a href=\"http://docs.wpgraphql.com\" rel=\"noopener noreferrer\" target=\"_blank\">docs.wpgraphql.com</a> site from WordPress to Gatsby, where the content is stored in Markdown files on Github. This allows users in the community to contribute to the docs by submitting pull requests.</p>\n<p>In February 2019, Bahl gave a presentation at WordCamp Phoenix on “<a href=\"https://wordpress.tv/2019/03/08/jason-bahl-building-static-sites-with-wordpress-gatsby-and-wpgraphql/\" rel=\"noopener noreferrer\" target=\"_blank\">Building Static Sites with WordPress, Gatsby and WPGraphQL</a>” After that he saw more growth in the crossover ecosystems – more people in the Gatsby Slack asking about WordPress, and more developers in the WPGraphQL Slack asking about Gatsby.</p>\n<p>“I’ve been following all things GraphQL for a few years, so Gatsby has been on my radar for a while as Gatsby uses GraphQL to create a ‘content mesh’ where data can be pulled from many sources into one Gatsby site,” Bahl said.</p>\n<p>“The more I followed Gatsby from afar, the more intrigued I was. The development experience of Gatsby is great, especially if you enjoy React, which I do.”</p>\n<p>Bahl is active in both Slacks, on both GitHub repos, and on Twitter, helping people build Gatsby sites with WordPress and GraphQL, which is how he developed a relationship with the team.</p>\n<p>“In mid April I made it known to a few people that I would love to work on WPGraphQL full-time if I had the opportunity,” he said. “On May 30, Kyle Matthews direct messaged me on Twitter saying Gatsby is planning on investing in WordPress more and they’d love to chat. The following week I had some video calls with Kyle, Sam, and some other folks on the Gatsby team, and they made me a formal offer to join the Gatsby teams to make WPGraphQL the best it can be.”</p>\n<p>The WPGraphQL project already has a <a href=\"https://wptavern.com/wpgraphql-project-gains-momentum-with-growing-library-of-extensions-for-popular-wordpress-projects\" rel=\"noopener noreferrer\" target=\"_blank\">rapidly growing library of extensions</a> for popular WordPress plugins, despite the fact that the project has not yet reached a stable 1.0 release. Bahl’s new opportunity with the Gatsby team will enable him to work with the community’s momentum to get WPGraphQL further on its roadmap.</p>\n<p>“Working on WPGraphQL full time will allow me to work on features and bugs that I’ve not had adequate time to focus on while also maintaining a full time job,” Bahl said. </p>\n<p>“WPGraphQL is used in production by many already, but it’s still pre 1.0 because of some breaking changes I foresee but haven’t had adequate time to dedicate to addressing.”</p>\n<p>Bahl will also be available to provide better resources for the community, such as documentation, example codebases, and courses and tutorials, in addition to attending more WordCamps and other conferences, participating in podcasts, and interacting on GitHub issues, Slack, and other communication channels. </p>\n<p>“It will also provide more time to focus on conversations on whether GraphQL should be part of WordPress core (or not), and educate the community and core maintainers on the tradeoffs,” Bahl said. </p>\n<p>In hiring Bahl to work on WPGraphQL, Gatsby is making a significant investment in the WordPress community that depends on this project. The improved support and quicker pace of development should bring peace of mind to those who are already using WPGraphQL in production. </p>\n<p>“I’ll also be working closely with other members of the Gatsby team to make the experience of using Gatsby with WordPress a great experience,” Bahl said. “We have a lot of ideas about how WPGraphQL can make the Gatsby + WordPress experience a fantastic one for developers and users alike.”</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, 20 Jun 2019 19:52: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: WooCommerce.com Clarifies Its Policy on Selling CBD Products\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=90955\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/woocommerce-com-clarifies-its-policy-on-selling-cbd-products\";s: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:6948:\"<p>Last week, a member of the <a href=\"https://www.facebook.com/groups/woohelp/\">WooCommerce Help and Share Facebook</a> group who sells Cannabidiol or CBD products submitted a post that included an email exchange with WooCommerce support. </p>\n\n\n\n<p>In the exchange, the support rep explained to the store owner that when their WooCommerce.com account was connected to a WordPress.com login, it then fell under the <a href=\"https://en.support.wordpress.com/store-guidelines/\">WordPress.com store guidelines</a>.</p>\n\n\n\n<p>According to the guidelines, controlled substances (including marijuana, cannabidiol or CBD, and other cannabis-derived products) are not allowed to be sold. </p>\n\n\n\n<p>The support rep goes on to say that this included but was not limited to sites using WordPress.com, the Jetpack plugin, and any extensions from WooCommerce.com.” </p>\n\n\n\n<p>The store owner is then informed that their store will be disconnected from Automattic hosted services if they continue to sell CBD products.</p>\n\n\n\n<h2>Legal Document Becomes a Source of Confusion</h2>\n\n\n\n<p>The support rep provided the store owner with a link to the most <a href=\"https://docs.woocommerce.com/document/woocommerce-cbd/\">frequently asked questions</a> on selling CBD products using WooCommerce. </p>\n\n\n\n<p>The wording of the document made it seem as though there was a difference between downloading the plugin from the WordPress plugin directory or WooCommerce.com. It also appeared to apply limits on how the GPL licensed software could be used. Here is a cached version of the original document. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Can WooCommerce be used to sell cannabis-derived products such as CBD oil? </strong></p><p><strong>Yes</strong>, if you download the WooCommerce plugin directly from WordPress.org or install the WooCommerce plugin via the Plugins page of your site from WordPress.org.</p><p><strong>No</strong>, if you download and install the WooCommerce plugin directly from WooCommerce.com.</p><p>It is the same WooCommerce plugin, but the location of download makes a difference?<strong><br />What’s the difference?</strong> <br />The difference is ownership.</p><p>WooCommerce from <strong>WordPress.org</strong> is open-source software and is hosted through a third-party company.</p><p>WooCommerce from <strong>WooCommerce.com and WordPress.com</strong> is hosted through Automattic. Sites cannot sell cannabis-derived products if they are connected to Automattic servers, which includes and is not limited to WordPress.com, the Jetpack plugin, and any plugin or extension downloaded directly from WooCommerce.com. </p><p><strong>Can I use WooCommerce software from (x company) to sell cannabis-derived products? </strong><br />If you use open-source WooCommerce software from a third-party company, note that there may be additional limitations and regulations imposed by shipping and payment companies.</p><p><strong>Can I get support for a WooCommerce store selling CBD products? </strong><br />No, not from us at WooCommerce.com or WordPress.com.</p><p>Many of our store owners and customers reside in countries where CBD products and other cannabis-derived products are fully legalized, but the production and sale of cannabis-derived products in the US – where our company is registered – is highly regulated.</p><p>As a result, we are currently unable to offer support for any WooCommerce site that sells CBD oil or other cannabis-derived products, whether the CBD oil is over or under 0.3% THC and whether it is derived from hemp or cannabis.</p><cite>Original WooCommerce and CBD Products FAQ</cite></blockquote>\n\n\n\n<p>Taking note of the confusion, Paul Maiorana, Acting General Manager of WooCommerce, <a href=\"https://twitter.com/pmaiorana/status/1138584618846699525\">responded to the discussion</a> and admitted in the Facebook thread that the policy was not as clear as it could be. </p>\n\n\n\n<p>Earlier this week, the WooCommerce team <a href=\"https://twitter.com/pmaiorana/status/1141057173650362368\">revised the policy</a> and made it much clearer on what is and is not allowed.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Can WooCommerce be used to sell cannabis-derived products such as CBD oil?</strong></p><p>Yes, you can use WooCommerce for your site. As our software is open source, we do not limit its use. </p><p>However, while you can use the code of our WooCommerce plugin to sell products derived from cannabis and hemp, you cannot use <strong>services</strong> offered directly by Automattic to support those stores. This is the case whether the products are over or under 0.3% THC, and whether they are derived from hemp or cannabis. Automattic’s direct services include, but are not limited to, WordPress.com, WooCommerce.com, and the Jetpack plugin.</p><p>This means that you can use the open source WooCommerce plugin to sell cannabis-derived products, but you cannot:</p><p><s>Connect your site to Automattic’s servers in </s><em><s>WooCommerce > Extensions > WooCommerce.com Subscriptions</s></em><s> for automatic extension updates or at WordPress.com.</s></p><p>Use WooCommerce services that depend on a Jetpack connection, such as <a href=\"https://woocommerce.com/products/shipping/\">WooCommerce Shipping</a> or <a href=\"https://woocommerce.com/products/tax/\">WooCommerce Tax</a>. </p><p>Host your site on WordPress.com. </p><p><strong>Can I get help for my WooCommerce store?</strong><br />Yes. Our WooCommerce.com help desk can assist you with your site if you would normally qualify to receive support. You might also receive help from others in the WordPress.org forums or the WooCommerce community.</p><cite>Revised WooCommerce and CBD Products FAQ</cite></blockquote>\n\n\n\n<p>In the last two years, WooCommerce has increasingly relied on Jetpack and its connection to WordPress.com’s infrastructure to provide services. These include <a href=\"https://woocommerce.com/products/shipping/\">WooCommerce Shipping</a>, the <a href=\"https://woocommerce.com/mobile/\">WooCommerce app</a>, and <a href=\"https://blog.taxjar.com/woocommerce-services-automated-tax-calculations-powered-taxjar/\">Automated Tax Calculations</a>. In 2017, <a href=\"https://woocommerce.com/posts/wooconf-state-of-the-woo/\">Todd Wilkens made it clear</a> that WooCommerce would continue to make extensive use of Jetpack to provide cloud services.</p>\n\n\n\n<p>While the policy makes things clearer, CBD store owners will need to determine if they can live without the conveniences provided by Jetpack, WooCommerce.com, and WordPress.com. This situation is also a reminder to all store owners to double check a service’s policies before connecting any sites. </p>\n\n\n\n<h2>Updated on June 25th, 2019. </h2>\n\n\n\n<p>WooCommerce has <a href=\"https://twitter.com/pmaiorana/status/1143590019849949184\">updated its policy</a> to allow automatic updates from WooCommerce.com </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jun 2019 01:02:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Watch the Free WordCamp Europe 2019 Live Stream June 21-22\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=90487\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/watch-the-free-wordcamp-europe-2019-live-stream-june-21-22\";s: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:2026:\"<p><a href=\"https://2019.europe.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Europe 2019</a> kicks off tomorrow, June 20, with Contributor Day. If you have been following the event on Twitter, hundreds of WordPress enthusiasts and professionals have been descending upon Berlin this week in preparation for the world’s largest WordCamp. For those who cannot attend in person, WCEU will be live streaming the main conference on June 21-22 for free.</p>\n<p>Unlike previous years, no tickets or registration will be required for live stream viewers. Removing this logistical hurdle makes the conference more accessible to viewers who may want to pop in for a session or two. </p>\n<p>Matt Mullenweg will be giving an address at 2PM in Berlin on Friday, June 21, and his presentation usually includes some newsworthy announcements. Whether you’re interested in Gutenberg development, community relations, design, or business, there’s a session for a wide range of WordPress users. Those who are viewing from afar can <a href=\"https://2019.europe.wordcamp.org/schedule/\" rel=\"noopener noreferrer\" target=\"_blank\">check out the schedule</a> and plan which sessions to watch online. </p>\n<p>As it was last year, the <a href=\"https://wptavern.com/wceu-team-is-working-on-pwa-support-for-all-wordcamp-websites\" rel=\"noopener noreferrer\" target=\"_blank\">WCEU website is a Progressive Web App (PWA)</a> that allows users to favorite the talks they want to attend. Presentations last 30 minutes with 10 minutes added at the end for Q&A. There are 20 minutes scheduled in between sessions to allow attendees to change tracks or have conversations in the hallway.</p>\n<p>WordCamp Europe plans to announce the live stream link on its <a href=\"https://twitter.com/WCEurope\" rel=\"noopener noreferrer\" target=\"_blank\">Twitter account</a>. Follow the<a href=\"https://twitter.com/hashtag/WCEU?src=hash\" rel=\"noopener noreferrer\" target=\"_blank\"> #WCEU</a> hashtag to join in the conversation online.</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, 19 Jun 2019 23:20:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 19 Jul 2019 11:25:45 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 19 Jul 2019 11:15:08 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20180206170026\";}','no'),(333,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1563578745','no'),(334,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1563535545','no'),(335,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1563578745','no'),(336,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/07/people-of-wordpress-ugyen-dorji/\'>People of WordPress: Ugyen Dorji</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/all-in-one-wp-migration-7-0-patches-xss-vulnerability\'>WPTavern: All-in-One WP Migration 7.0 Patches XSS Vulnerability</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-360-cbd-and-e-commerce-with-javier-cano\'>WPTavern: WPWeekly Episode 360 – CBD and E-Commerce With Javier Cano</a></li><li><a class=\'rsswidget\' href=\'https://heropress.com/essays/history-and-future-of-kids-heroes-in-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=history-and-future-of-kids-heroes-in-wordpress\'>HeroPress: History and Future of Kids Heroes in WordPress</a></li></ul></div>','no'),(354,'category_children','a:0:{}','yes'),(372,'_transient_timeout_sow_inst[sow-post-carousel][cc163c01]','1564143192','no'),(373,'_transient_sow_inst[sow-post-carousel][cc163c01]','a:4:{s:5:\"title\";s:0:\"\";s:17:\"default_thumbnail\";i:0;s:10:\"image_size\";s:20:\"sow-carousel-default\";s:5:\"posts\";s:0:\"\";}','no'),(374,'_transient_timeout_sow_inst[sow-post-carousel][24697e92]','1564143233','no'),(375,'_transient_sow_inst[sow-post-carousel][24697e92]','a:7:{s:5:\"title\";s:0:\"\";s:17:\"default_thumbnail\";i:0;s:26:\"default_thumbnail_fallback\";s:0:\"\";s:10:\"image_size\";s:20:\"sow-carousel-default\";s:5:\"posts\";s:161:\"post_type=post&post__in=3&date_type=specific&date_query={\"after\":\"\",\"before\":\"\"}&date_query_relative={\"from\":[],\"to\":[]}&orderby=date&order=DESC&posts_per_page=5\";s:12:\"_sow_form_id\";s:27:\"319425d31b39b0bc82393785688\";s:19:\"_sow_form_timestamp\";s:13:\"1563538397967\";}','no'),(389,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1563551536','no'),(390,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4598;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:3538;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2632;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2498;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1926;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1743;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1736;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1470;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1445;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1442;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1435;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1372;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1334;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1295;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1147;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1124;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1100;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1070;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1023;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:942;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:855;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:845;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:840;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:805;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:743;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:736;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:731;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:722;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:713;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:700;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:699;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:685;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:676;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:663;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:659;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:653;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:633;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:624;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:623;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:619;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:592;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:590;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:572;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:568;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:560;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:556;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:548;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:544;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:535;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:527;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:526;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:516;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:514;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:512;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:507;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:496;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:495;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:478;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:478;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:477;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:472;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:471;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:459;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:453;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:442;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:431;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:430;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:422;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:416;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:416;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:412;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:406;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:400;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:399;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:394;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:390;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:386;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:384;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:380;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:376;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:369;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:364;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:362;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:362;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:356;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:356;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:354;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:350;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:346;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:346;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:341;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:332;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:325;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:323;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:321;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:321;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:317;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:315;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:311;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:310;}}','no'),(406,'_transient_all_the_cool_cats','2','yes'),(412,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1563546399;s:7:\"checked\";a:10:{s:14:\"corporate-zing\";s:5:\"1.0.6\";s:8:\"frontech\";s:5:\"1.1.1\";s:4:\"kyma\";s:3:\"2.6\";s:11:\"renden-dark\";s:5:\"1.0.0\";s:6:\"renden\";s:6:\"1.4.10\";s:13:\"twentyfifteen\";s:3:\"2.5\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";s:8:\"wishlist\";s:5:\"1.0.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(414,'theme_mods_frontech','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";s:0:\"\";s:12:\"header_image\";s:13:\"remove-header\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1563547676;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";}s:14:\"sidebar-widget\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"footer-widget\";a:0:{}}}}','yes'),(415,'widget_kyma_footer_contact_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(416,'widget_kyma_footer_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(417,'kyma_theme_options','a:21:{s:22:\"header_topbar_bg_color\";s:7:\"#F86923\";s:16:\"callout_bg_color\";s:7:\"#F86923\";s:21:\"slider_title_bg_color\";s:7:\"#f86923\";s:24:\"slider_subtitle_bg_color\";s:14:\"rgba(0,0,0,.4)\";s:9:\"nav_color\";s:7:\"#F86923\";s:11:\"back_to_top\";s:7:\"#F86923\";s:15:\"footer_bg_color\";s:7:\"#2f2f2f\";s:18:\"color_scheme_child\";s:6:\"orange\";s:13:\"home_sections\";a:4:{i:0;s:7:\"service\";i:1;s:9:\"portfolio\";i:2;s:4:\"blog\";i:3;s:7:\"content\";}s:19:\"home_slider_enabled\";b:1;s:19:\"home_service_column\";s:1:\"3\";s:10:\"_frontpage\";b:1;s:16:\"logo_top_spacing\";s:2:\"10\";s:12:\"headersticky\";b:0;s:13:\"contact_email\";s:17:\"info@unionems.net\";s:13:\"contact_phone\";s:14:\"(980) 993-7601\";s:19:\"social_media_header\";b:1;s:17:\"home_slider_posts\";a:1:{i:0;s:3:\"118\";}s:13:\"footer_layout\";s:1:\"4\";s:11:\"site_layout\";s:0:\"\";s:19:\"contact_info_header\";b:1;}','yes'),(418,'child_theme_option_updated','1','yes'),(429,'_site_transient_timeout_theme_roots','1563549356','no'),(430,'_site_transient_theme_roots','a:10:{s:14:\"corporate-zing\";s:7:\"/themes\";s:8:\"frontech\";s:7:\"/themes\";s:4:\"kyma\";s:7:\"/themes\";s:11:\"renden-dark\";s:7:\"/themes\";s:6:\"renden\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";s:8:\"wishlist\";s:7:\"/themes\";}','no'),(432,'theme_mods_kyma','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(433,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1563548676;s:7:\"checked\";a:8:{s:19:\"akismet/akismet.php\";s:5:\"4.1.2\";s:51:\"display-posts-shortcode/display-posts-shortcode.php\";s:5:\"3.0.2\";s:21:\"hello-dolly/hello.php\";s:5:\"1.7.2\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:6:\"2.10.6\";s:57:\"photo-video-gallery-master/photo-video-gallery-master.php\";s:5:\"1.5.2\";s:39:\"so-widgets-bundle/so-widgets-bundle.php\";s:6:\"1.15.7\";s:45:\"social-media-gallery/social-media-gallery.php\";s:5:\"1.5.1\";s:31:\"fusion-slider/fusion-slider.php\";s:5:\"1.6.2\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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:5:\"4.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:51:\"display-posts-shortcode/display-posts-shortcode.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:37:\"w.org/plugins/display-posts-shortcode\";s:4:\"slug\";s:23:\"display-posts-shortcode\";s:6:\"plugin\";s:51:\"display-posts-shortcode/display-posts-shortcode.php\";s:11:\"new_version\";s:5:\"3.0.2\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/display-posts-shortcode/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/display-posts-shortcode.3.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/display-posts-shortcode/assets/icon-256x256.jpg?rev=2006522\";s:2:\"1x\";s:76:\"https://ps.w.org/display-posts-shortcode/assets/icon-128x128.jpg?rev=2006522\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/display-posts-shortcode/assets/banner-1544x500.jpg?rev=2006522\";s:2:\"1x\";s:78:\"https://ps.w.org/display-posts-shortcode/assets/banner-772x250.jpg?rev=2006522\";}s:11:\"banners_rtl\";a:0:{}}s:21:\"hello-dolly/hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:21:\"hello-dolly/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:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"siteorigin-panels/siteorigin-panels.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/siteorigin-panels\";s:4:\"slug\";s:17:\"siteorigin-panels\";s:6:\"plugin\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:11:\"new_version\";s:6:\"2.10.6\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/siteorigin-panels/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/siteorigin-panels.2.10.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-256x256.png?rev=1044755\";s:2:\"1x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-128x128.png?rev=1044755\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/siteorigin-panels/assets/banner-772x250.jpg?rev=1044755\";}s:11:\"banners_rtl\";a:0:{}}s:57:\"photo-video-gallery-master/photo-video-gallery-master.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/photo-video-gallery-master\";s:4:\"slug\";s:26:\"photo-video-gallery-master\";s:6:\"plugin\";s:57:\"photo-video-gallery-master/photo-video-gallery-master.php\";s:11:\"new_version\";s:5:\"1.5.2\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/photo-video-gallery-master/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/photo-video-gallery-master.1.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/photo-video-gallery-master/assets/icon-256x256.png?rev=1447131\";s:2:\"1x\";s:79:\"https://ps.w.org/photo-video-gallery-master/assets/icon-128x128.png?rev=1292727\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/photo-video-gallery-master/assets/banner-772x250.png?rev=1292680\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"so-widgets-bundle/so-widgets-bundle.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/so-widgets-bundle\";s:4:\"slug\";s:17:\"so-widgets-bundle\";s:6:\"plugin\";s:39:\"so-widgets-bundle/so-widgets-bundle.php\";s:11:\"new_version\";s:6:\"1.15.7\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/so-widgets-bundle/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/so-widgets-bundle.1.15.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/so-widgets-bundle/assets/icon-256x256.png?rev=1044942\";s:2:\"1x\";s:70:\"https://ps.w.org/so-widgets-bundle/assets/icon-128x128.png?rev=1044942\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/so-widgets-bundle/assets/banner-772x250.jpg?rev=1044942\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"social-media-gallery/social-media-gallery.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/social-media-gallery\";s:4:\"slug\";s:20:\"social-media-gallery\";s:6:\"plugin\";s:45:\"social-media-gallery/social-media-gallery.php\";s:11:\"new_version\";s:5:\"1.5.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/social-media-gallery/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/social-media-gallery.1.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/social-media-gallery/assets/icon-256x256.png?rev=1447102\";s:2:\"1x\";s:73:\"https://ps.w.org/social-media-gallery/assets/icon-128x128.png?rev=1447102\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/social-media-gallery/assets/banner-772x250.png?rev=1445965\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"fusion-slider/fusion-slider.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/fusion-slider\";s:4:\"slug\";s:13:\"fusion-slider\";s:6:\"plugin\";s:31:\"fusion-slider/fusion-slider.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/fusion-slider/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/fusion-slider.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/fusion-slider/assets/icon-256x256.png?rev=1751818\";s:2:\"1x\";s:66:\"https://ps.w.org/fusion-slider/assets/icon-128x128.png?rev=1751818\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/fusion-slider/assets/banner-772x250.png?rev=1751818\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(436,'_site_transient_timeout_kirki_googlefonts_cache','1563552258','no'),(437,'_site_transient_kirki_googlefonts_cache','a:915:{s:7:\"ABeeZee\";a:3:{s:5:\"label\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Abel\";a:3:{s:5:\"label\";s:4:\"Abel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Abhaya Libre\";a:3:{s:5:\"label\";s:12:\"Abhaya Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Abril Fatface\";a:3:{s:5:\"label\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Aclonica\";a:3:{s:5:\"label\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Acme\";a:3:{s:5:\"label\";s:4:\"Acme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Actor\";a:3:{s:5:\"label\";s:5:\"Actor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Adamina\";a:3:{s:5:\"label\";s:7:\"Adamina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Advent Pro\";a:3:{s:5:\"label\";s:10:\"Advent Pro\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Aguafina Script\";a:3:{s:5:\"label\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Akronim\";a:3:{s:5:\"label\";s:7:\"Akronim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aladin\";a:3:{s:5:\"label\";s:6:\"Aladin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Aldrich\";a:3:{s:5:\"label\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Alef\";a:3:{s:5:\"label\";s:4:\"Alef\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Alegreya\";a:3:{s:5:\"label\";s:8:\"Alegreya\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alegreya SC\";a:3:{s:5:\"label\";s:11:\"Alegreya SC\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alegreya Sans\";a:3:{s:5:\"label\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Alegreya Sans SC\";a:3:{s:5:\"label\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Aleo\";a:3:{s:5:\"label\";s:4:\"Aleo\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Alex Brush\";a:3:{s:5:\"label\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Alfa Slab One\";a:3:{s:5:\"label\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Alice\";a:3:{s:5:\"label\";s:5:\"Alice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Alike\";a:3:{s:5:\"label\";s:5:\"Alike\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alike Angular\";a:3:{s:5:\"label\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Allan\";a:3:{s:5:\"label\";s:5:\"Allan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Allerta\";a:3:{s:5:\"label\";s:7:\"Allerta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Allerta Stencil\";a:3:{s:5:\"label\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Allura\";a:3:{s:5:\"label\";s:6:\"Allura\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Almendra\";a:3:{s:5:\"label\";s:8:\"Almendra\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Almendra Display\";a:3:{s:5:\"label\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Almendra SC\";a:3:{s:5:\"label\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Amarante\";a:3:{s:5:\"label\";s:8:\"Amarante\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Amaranth\";a:3:{s:5:\"label\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Amatic SC\";a:3:{s:5:\"label\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Amethysta\";a:3:{s:5:\"label\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amiko\";a:3:{s:5:\"label\";s:5:\"Amiko\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Amiri\";a:3:{s:5:\"label\";s:5:\"Amiri\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amita\";a:3:{s:5:\"label\";s:5:\"Amita\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Anaheim\";a:3:{s:5:\"label\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Andada\";a:3:{s:5:\"label\";s:6:\"Andada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Andika\";a:3:{s:5:\"label\";s:6:\"Andika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Angkor\";a:3:{s:5:\"label\";s:6:\"Angkor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Annie Use Your Telescope\";a:3:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Anonymous Pro\";a:3:{s:5:\"label\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Antic\";a:3:{s:5:\"label\";s:5:\"Antic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Antic Didone\";a:3:{s:5:\"label\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Antic Slab\";a:3:{s:5:\"label\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Anton\";a:3:{s:5:\"label\";s:5:\"Anton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Arapey\";a:3:{s:5:\"label\";s:6:\"Arapey\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Arbutus\";a:3:{s:5:\"label\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Arbutus Slab\";a:3:{s:5:\"label\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Architects Daughter\";a:3:{s:5:\"label\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Archivo\";a:3:{s:5:\"label\";s:7:\"Archivo\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Archivo Black\";a:3:{s:5:\"label\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Archivo Narrow\";a:3:{s:5:\"label\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Aref Ruqaa\";a:3:{s:5:\"label\";s:10:\"Aref Ruqaa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Arima Madurai\";a:3:{s:5:\"label\";s:13:\"Arima Madurai\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Arimo\";a:3:{s:5:\"label\";s:5:\"Arimo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Arizonia\";a:3:{s:5:\"label\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Armata\";a:3:{s:5:\"label\";s:6:\"Armata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Arsenal\";a:3:{s:5:\"label\";s:7:\"Arsenal\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Artifika\";a:3:{s:5:\"label\";s:8:\"Artifika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arvo\";a:3:{s:5:\"label\";s:4:\"Arvo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arya\";a:3:{s:5:\"label\";s:4:\"Arya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asap\";a:3:{s:5:\"label\";s:4:\"Asap\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Asap Condensed\";a:3:{s:5:\"label\";s:14:\"Asap Condensed\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asar\";a:3:{s:5:\"label\";s:4:\"Asar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Asset\";a:3:{s:5:\"label\";s:5:\"Asset\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Assistant\";a:3:{s:5:\"label\";s:9:\"Assistant\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Astloch\";a:3:{s:5:\"label\";s:7:\"Astloch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Asul\";a:3:{s:5:\"label\";s:4:\"Asul\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Athiti\";a:3:{s:5:\"label\";s:6:\"Athiti\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Atma\";a:3:{s:5:\"label\";s:4:\"Atma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Atomic Age\";a:3:{s:5:\"label\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aubrey\";a:3:{s:5:\"label\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Audiowide\";a:3:{s:5:\"label\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Autour One\";a:3:{s:5:\"label\";s:10:\"Autour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Average\";a:3:{s:5:\"label\";s:7:\"Average\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Average Sans\";a:3:{s:5:\"label\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Averia Gruesa Libre\";a:3:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Averia Libre\";a:3:{s:5:\"label\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Averia Sans Libre\";a:3:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Averia Serif Libre\";a:3:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"B612\";a:3:{s:5:\"label\";s:4:\"B612\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"B612 Mono\";a:3:{s:5:\"label\";s:9:\"B612 Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Bad Script\";a:3:{s:5:\"label\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Bahiana\";a:3:{s:5:\"label\";s:7:\"Bahiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bai Jamjuree\";a:3:{s:5:\"label\";s:12:\"Bai Jamjuree\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Baloo\";a:3:{s:5:\"label\";s:5:\"Baloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Baloo Bhai\";a:3:{s:5:\"label\";s:10:\"Baloo Bhai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Bhaijaan\";a:3:{s:5:\"label\";s:14:\"Baloo Bhaijaan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Baloo Bhaina\";a:3:{s:5:\"label\";s:12:\"Baloo Bhaina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Chettan\";a:3:{s:5:\"label\";s:13:\"Baloo Chettan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Baloo Da\";a:3:{s:5:\"label\";s:8:\"Baloo Da\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Baloo Paaji\";a:3:{s:5:\"label\";s:11:\"Baloo Paaji\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Baloo Tamma\";a:3:{s:5:\"label\";s:11:\"Baloo Tamma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Tammudu\";a:3:{s:5:\"label\";s:13:\"Baloo Tammudu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Baloo Thambi\";a:3:{s:5:\"label\";s:12:\"Baloo Thambi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Balthazar\";a:3:{s:5:\"label\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bangers\";a:3:{s:5:\"label\";s:7:\"Bangers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barlow\";a:3:{s:5:\"label\";s:6:\"Barlow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Barlow Condensed\";a:3:{s:5:\"label\";s:16:\"Barlow Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Barlow Semi Condensed\";a:3:{s:5:\"label\";s:21:\"Barlow Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Barrio\";a:3:{s:5:\"label\";s:6:\"Barrio\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Basic\";a:3:{s:5:\"label\";s:5:\"Basic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Battambang\";a:3:{s:5:\"label\";s:10:\"Battambang\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Baumans\";a:3:{s:5:\"label\";s:7:\"Baumans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bayon\";a:3:{s:5:\"label\";s:5:\"Bayon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Belgrano\";a:3:{s:5:\"label\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bellefair\";a:3:{s:5:\"label\";s:9:\"Bellefair\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Belleza\";a:3:{s:5:\"label\";s:7:\"Belleza\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"BenchNine\";a:3:{s:5:\"label\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Bentham\";a:3:{s:5:\"label\";s:7:\"Bentham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Berkshire Swash\";a:3:{s:5:\"label\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Bevan\";a:3:{s:5:\"label\";s:5:\"Bevan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bigelow Rules\";a:3:{s:5:\"label\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bigshot One\";a:3:{s:5:\"label\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bilbo\";a:3:{s:5:\"label\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Bilbo Swash Caps\";a:3:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"BioRhyme\";a:3:{s:5:\"label\";s:8:\"BioRhyme\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"BioRhyme Expanded\";a:3:{s:5:\"label\";s:17:\"BioRhyme Expanded\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Biryani\";a:3:{s:5:\"label\";s:7:\"Biryani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Bitter\";a:3:{s:5:\"label\";s:6:\"Bitter\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Black And White Picture\";a:3:{s:5:\"label\";s:23:\"Black And White Picture\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Black Han Sans\";a:3:{s:5:\"label\";s:14:\"Black Han Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Black Ops One\";a:3:{s:5:\"label\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bokor\";a:3:{s:5:\"label\";s:5:\"Bokor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Bonbon\";a:3:{s:5:\"label\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Boogaloo\";a:3:{s:5:\"label\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Bowlby One\";a:3:{s:5:\"label\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bowlby One SC\";a:3:{s:5:\"label\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Brawler\";a:3:{s:5:\"label\";s:7:\"Brawler\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Bree Serif\";a:3:{s:5:\"label\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Bubblegum Sans\";a:3:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bubbler One\";a:3:{s:5:\"label\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Buda\";a:3:{s:5:\"label\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:0;s:3:\"300\";}s:8:\"category\";s:7:\"display\";}s:7:\"Buenard\";a:3:{s:5:\"label\";s:7:\"Buenard\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bungee\";a:3:{s:5:\"label\";s:6:\"Bungee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Bungee Hairline\";a:3:{s:5:\"label\";s:15:\"Bungee Hairline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bungee Inline\";a:3:{s:5:\"label\";s:13:\"Bungee Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Bungee Outline\";a:3:{s:5:\"label\";s:14:\"Bungee Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Shade\";a:3:{s:5:\"label\";s:12:\"Bungee Shade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Butcherman\";a:3:{s:5:\"label\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Butterfly Kids\";a:3:{s:5:\"label\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cabin\";a:3:{s:5:\"label\";s:5:\"Cabin\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Cabin Condensed\";a:3:{s:5:\"label\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Cabin Sketch\";a:3:{s:5:\"label\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Caesar Dressing\";a:3:{s:5:\"label\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Cagliostro\";a:3:{s:5:\"label\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cairo\";a:3:{s:5:\"label\";s:5:\"Cairo\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Calligraffitti\";a:3:{s:5:\"label\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Cambay\";a:3:{s:5:\"label\";s:6:\"Cambay\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cambo\";a:3:{s:5:\"label\";s:5:\"Cambo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Candal\";a:3:{s:5:\"label\";s:6:\"Candal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cantarell\";a:3:{s:5:\"label\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Cantata One\";a:3:{s:5:\"label\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cantora One\";a:3:{s:5:\"label\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Capriola\";a:3:{s:5:\"label\";s:8:\"Capriola\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cardo\";a:3:{s:5:\"label\";s:5:\"Cardo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Carme\";a:3:{s:5:\"label\";s:5:\"Carme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Carrois Gothic\";a:3:{s:5:\"label\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Carrois Gothic SC\";a:3:{s:5:\"label\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Carter One\";a:3:{s:5:\"label\";s:10:\"Carter One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Catamaran\";a:3:{s:5:\"label\";s:9:\"Catamaran\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Caudex\";a:3:{s:5:\"label\";s:6:\"Caudex\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Caveat\";a:3:{s:5:\"label\";s:6:\"Caveat\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Caveat Brush\";a:3:{s:5:\"label\";s:12:\"Caveat Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Cedarville Cursive\";a:3:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Ceviche One\";a:3:{s:5:\"label\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Chakra Petch\";a:3:{s:5:\"label\";s:12:\"Chakra Petch\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Changa\";a:3:{s:5:\"label\";s:6:\"Changa\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Changa One\";a:3:{s:5:\"label\";s:10:\"Changa One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chango\";a:3:{s:5:\"label\";s:6:\"Chango\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Charm\";a:3:{s:5:\"label\";s:5:\"Charm\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Charmonman\";a:3:{s:5:\"label\";s:10:\"Charmonman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Chathura\";a:3:{s:5:\"label\";s:8:\"Chathura\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Chau Philomene One\";a:3:{s:5:\"label\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Chela One\";a:3:{s:5:\"label\";s:9:\"Chela One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Chelsea Market\";a:3:{s:5:\"label\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chenla\";a:3:{s:5:\"label\";s:6:\"Chenla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Cherry Cream Soda\";a:3:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Cherry Swash\";a:3:{s:5:\"label\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Chewy\";a:3:{s:5:\"label\";s:5:\"Chewy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chicle\";a:3:{s:5:\"label\";s:6:\"Chicle\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Chivo\";a:3:{s:5:\"label\";s:5:\"Chivo\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Chonburi\";a:3:{s:5:\"label\";s:8:\"Chonburi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cinzel\";a:3:{s:5:\"label\";s:6:\"Cinzel\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cinzel Decorative\";a:3:{s:5:\"label\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Clicker Script\";a:3:{s:5:\"label\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Coda\";a:3:{s:5:\"label\";s:4:\"Coda\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Coda Caption\";a:3:{s:5:\"label\";s:12:\"Coda Caption\";s:8:\"variants\";a:1:{i:0;s:3:\"800\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Codystar\";a:3:{s:5:\"label\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Coiny\";a:3:{s:5:\"label\";s:5:\"Coiny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Combo\";a:3:{s:5:\"label\";s:5:\"Combo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comfortaa\";a:3:{s:5:\"label\";s:9:\"Comfortaa\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Coming Soon\";a:3:{s:5:\"label\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Concert One\";a:3:{s:5:\"label\";s:11:\"Concert One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Condiment\";a:3:{s:5:\"label\";s:9:\"Condiment\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Content\";a:3:{s:5:\"label\";s:7:\"Content\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Contrail One\";a:3:{s:5:\"label\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Convergence\";a:3:{s:5:\"label\";s:11:\"Convergence\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Cookie\";a:3:{s:5:\"label\";s:6:\"Cookie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Copse\";a:3:{s:5:\"label\";s:5:\"Copse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Corben\";a:3:{s:5:\"label\";s:6:\"Corben\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Cormorant\";a:3:{s:5:\"label\";s:9:\"Cormorant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Cormorant Garamond\";a:3:{s:5:\"label\";s:18:\"Cormorant Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Cormorant Infant\";a:3:{s:5:\"label\";s:16:\"Cormorant Infant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Cormorant SC\";a:3:{s:5:\"label\";s:12:\"Cormorant SC\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Unicase\";a:3:{s:5:\"label\";s:17:\"Cormorant Unicase\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Upright\";a:3:{s:5:\"label\";s:17:\"Cormorant Upright\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Courgette\";a:3:{s:5:\"label\";s:9:\"Courgette\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Cousine\";a:3:{s:5:\"label\";s:7:\"Cousine\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:8:\"Coustard\";a:3:{s:5:\"label\";s:8:\"Coustard\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Covered By Your Grace\";a:3:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Crafty Girls\";a:3:{s:5:\"label\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Creepster\";a:3:{s:5:\"label\";s:9:\"Creepster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Crete Round\";a:3:{s:5:\"label\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Crimson Text\";a:3:{s:5:\"label\";s:12:\"Crimson Text\";s:8:\"variants\";a:6:{i:0;s:3:\"600\";i:1;s:9:\"600italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Croissant One\";a:3:{s:5:\"label\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Crushed\";a:3:{s:5:\"label\";s:7:\"Crushed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cuprum\";a:3:{s:5:\"label\";s:6:\"Cuprum\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cute Font\";a:3:{s:5:\"label\";s:9:\"Cute Font\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cutive\";a:3:{s:5:\"label\";s:6:\"Cutive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cutive Mono\";a:3:{s:5:\"label\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:6:\"Damion\";a:3:{s:5:\"label\";s:6:\"Damion\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Dancing Script\";a:3:{s:5:\"label\";s:14:\"Dancing Script\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Dangrek\";a:3:{s:5:\"label\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"David Libre\";a:3:{s:5:\"label\";s:11:\"David Libre\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Dawning of a New Day\";a:3:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Days One\";a:3:{s:5:\"label\";s:8:\"Days One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dekko\";a:3:{s:5:\"label\";s:5:\"Dekko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Delius\";a:3:{s:5:\"label\";s:6:\"Delius\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Delius Swash Caps\";a:3:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Delius Unicase\";a:3:{s:5:\"label\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Della Respira\";a:3:{s:5:\"label\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Denk One\";a:3:{s:5:\"label\";s:8:\"Denk One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Devonshire\";a:3:{s:5:\"label\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Dhurjati\";a:3:{s:5:\"label\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Didact Gothic\";a:3:{s:5:\"label\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Diplomata\";a:3:{s:5:\"label\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Diplomata SC\";a:3:{s:5:\"label\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Do Hyeon\";a:3:{s:5:\"label\";s:8:\"Do Hyeon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dokdo\";a:3:{s:5:\"label\";s:5:\"Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Domine\";a:3:{s:5:\"label\";s:6:\"Domine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Donegal One\";a:3:{s:5:\"label\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Doppio One\";a:3:{s:5:\"label\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dorsa\";a:3:{s:5:\"label\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dosis\";a:3:{s:5:\"label\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Dr Sugiyama\";a:3:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Duru Sans\";a:3:{s:5:\"label\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Dynalight\";a:3:{s:5:\"label\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"EB Garamond\";a:3:{s:5:\"label\";s:11:\"EB Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Eagle Lake\";a:3:{s:5:\"label\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"East Sea Dokdo\";a:3:{s:5:\"label\";s:14:\"East Sea Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Eater\";a:3:{s:5:\"label\";s:5:\"Eater\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Economica\";a:3:{s:5:\"label\";s:9:\"Economica\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Eczar\";a:3:{s:5:\"label\";s:5:\"Eczar\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"El Messiri\";a:3:{s:5:\"label\";s:10:\"El Messiri\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Electrolize\";a:3:{s:5:\"label\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Elsie\";a:3:{s:5:\"label\";s:5:\"Elsie\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Elsie Swash Caps\";a:3:{s:5:\"label\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Emblema One\";a:3:{s:5:\"label\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Emilys Candy\";a:3:{s:5:\"label\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Encode Sans\";a:3:{s:5:\"label\";s:11:\"Encode Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Encode Sans Condensed\";a:3:{s:5:\"label\";s:21:\"Encode Sans Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Encode Sans Expanded\";a:3:{s:5:\"label\";s:20:\"Encode Sans Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Encode Sans Semi Condensed\";a:3:{s:5:\"label\";s:26:\"Encode Sans Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Encode Sans Semi Expanded\";a:3:{s:5:\"label\";s:25:\"Encode Sans Semi Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Engagement\";a:3:{s:5:\"label\";s:10:\"Engagement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Englebert\";a:3:{s:5:\"label\";s:9:\"Englebert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Enriqueta\";a:3:{s:5:\"label\";s:9:\"Enriqueta\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Erica One\";a:3:{s:5:\"label\";s:9:\"Erica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Esteban\";a:3:{s:5:\"label\";s:7:\"Esteban\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Euphoria Script\";a:3:{s:5:\"label\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ewert\";a:3:{s:5:\"label\";s:5:\"Ewert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Exo\";a:3:{s:5:\"label\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Exo 2\";a:3:{s:5:\"label\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Expletus Sans\";a:3:{s:5:\"label\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fahkwang\";a:3:{s:5:\"label\";s:8:\"Fahkwang\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Fanwood Text\";a:3:{s:5:\"label\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Farsan\";a:3:{s:5:\"label\";s:6:\"Farsan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fascinate\";a:3:{s:5:\"label\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Fascinate Inline\";a:3:{s:5:\"label\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Faster One\";a:3:{s:5:\"label\";s:10:\"Faster One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fasthand\";a:3:{s:5:\"label\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Fauna One\";a:3:{s:5:\"label\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Faustina\";a:3:{s:5:\"label\";s:8:\"Faustina\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Federant\";a:3:{s:5:\"label\";s:8:\"Federant\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Federo\";a:3:{s:5:\"label\";s:6:\"Federo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Felipa\";a:3:{s:5:\"label\";s:6:\"Felipa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Fenix\";a:3:{s:5:\"label\";s:5:\"Fenix\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Finger Paint\";a:3:{s:5:\"label\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fira Mono\";a:3:{s:5:\"label\";s:9:\"Fira Mono\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Sans\";a:3:{s:5:\"label\";s:9:\"Fira Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Fira Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Fira Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Fira Sans Extra Condensed\";a:3:{s:5:\"label\";s:25:\"Fira Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Fjalla One\";a:3:{s:5:\"label\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fjord One\";a:3:{s:5:\"label\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Flamenco\";a:3:{s:5:\"label\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Flavors\";a:3:{s:5:\"label\";s:7:\"Flavors\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Fondamento\";a:3:{s:5:\"label\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Fontdiner Swanky\";a:3:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Forum\";a:3:{s:5:\"label\";s:5:\"Forum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Francois One\";a:3:{s:5:\"label\";s:12:\"Francois One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Frank Ruhl Libre\";a:3:{s:5:\"label\";s:16:\"Frank Ruhl Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Freckle Face\";a:3:{s:5:\"label\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Fredericka the Great\";a:3:{s:5:\"label\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Fredoka One\";a:3:{s:5:\"label\";s:11:\"Fredoka One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Freehand\";a:3:{s:5:\"label\";s:8:\"Freehand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Fresca\";a:3:{s:5:\"label\";s:6:\"Fresca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Frijole\";a:3:{s:5:\"label\";s:7:\"Frijole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fruktur\";a:3:{s:5:\"label\";s:7:\"Fruktur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fugaz One\";a:3:{s:5:\"label\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"GFS Didot\";a:3:{s:5:\"label\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"GFS Neohellenic\";a:3:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gabriela\";a:3:{s:5:\"label\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Gaegu\";a:3:{s:5:\"label\";s:5:\"Gaegu\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Gafata\";a:3:{s:5:\"label\";s:6:\"Gafata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Galada\";a:3:{s:5:\"label\";s:6:\"Galada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Galdeano\";a:3:{s:5:\"label\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Galindo\";a:3:{s:5:\"label\";s:7:\"Galindo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gamja Flower\";a:3:{s:5:\"label\";s:12:\"Gamja Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Gentium Basic\";a:3:{s:5:\"label\";s:13:\"Gentium Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Gentium Book Basic\";a:3:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:3:\"Geo\";a:3:{s:5:\"label\";s:3:\"Geo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Geostar\";a:3:{s:5:\"label\";s:7:\"Geostar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Geostar Fill\";a:3:{s:5:\"label\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Germania One\";a:3:{s:5:\"label\";s:12:\"Germania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gidugu\";a:3:{s:5:\"label\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gilda Display\";a:3:{s:5:\"label\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Give You Glory\";a:3:{s:5:\"label\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Glass Antiqua\";a:3:{s:5:\"label\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Glegoo\";a:3:{s:5:\"label\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Gloria Hallelujah\";a:3:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Goblin One\";a:3:{s:5:\"label\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Gochi Hand\";a:3:{s:5:\"label\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Gorditas\";a:3:{s:5:\"label\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Gothic A1\";a:3:{s:5:\"label\";s:9:\"Gothic A1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Goudy Bookletter 1911\";a:3:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Graduate\";a:3:{s:5:\"label\";s:8:\"Graduate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Grand Hotel\";a:3:{s:5:\"label\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Gravitas One\";a:3:{s:5:\"label\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Great Vibes\";a:3:{s:5:\"label\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Griffy\";a:3:{s:5:\"label\";s:6:\"Griffy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gruppo\";a:3:{s:5:\"label\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Gudea\";a:3:{s:5:\"label\";s:5:\"Gudea\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gugi\";a:3:{s:5:\"label\";s:4:\"Gugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Gurajada\";a:3:{s:5:\"label\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Habibi\";a:3:{s:5:\"label\";s:6:\"Habibi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Halant\";a:3:{s:5:\"label\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Hammersmith One\";a:3:{s:5:\"label\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanalei\";a:3:{s:5:\"label\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Hanalei Fill\";a:3:{s:5:\"label\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Handlee\";a:3:{s:5:\"label\";s:7:\"Handlee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hanuman\";a:3:{s:5:\"label\";s:7:\"Hanuman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Happy Monkey\";a:3:{s:5:\"label\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Harmattan\";a:3:{s:5:\"label\";s:9:\"Harmattan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Headland One\";a:3:{s:5:\"label\";s:12:\"Headland One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Heebo\";a:3:{s:5:\"label\";s:5:\"Heebo\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Henny Penny\";a:3:{s:5:\"label\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Herr Von Muellerhoff\";a:3:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Hi Melody\";a:3:{s:5:\"label\";s:9:\"Hi Melody\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Hind\";a:3:{s:5:\"label\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Hind Guntur\";a:3:{s:5:\"label\";s:11:\"Hind Guntur\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Hind Madurai\";a:3:{s:5:\"label\";s:12:\"Hind Madurai\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Siliguri\";a:3:{s:5:\"label\";s:13:\"Hind Siliguri\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Vadodara\";a:3:{s:5:\"label\";s:13:\"Hind Vadodara\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Holtwood One SC\";a:3:{s:5:\"label\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Homemade Apple\";a:3:{s:5:\"label\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Homenaje\";a:3:{s:5:\"label\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"IBM Plex Mono\";a:3:{s:5:\"label\";s:13:\"IBM Plex Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"IBM Plex Sans\";a:3:{s:5:\"label\";s:13:\"IBM Plex Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"IBM Plex Sans Condensed\";a:3:{s:5:\"label\";s:23:\"IBM Plex Sans Condensed\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"IBM Plex Serif\";a:3:{s:5:\"label\";s:14:\"IBM Plex Serif\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell DW Pica\";a:3:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell DW Pica SC\";a:3:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"IM Fell Double Pica\";a:3:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"IM Fell Double Pica SC\";a:3:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell English\";a:3:{s:5:\"label\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell English SC\";a:3:{s:5:\"label\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell French Canon\";a:3:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell French Canon SC\";a:3:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell Great Primer\";a:3:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell Great Primer SC\";a:3:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Iceberg\";a:3:{s:5:\"label\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Iceland\";a:3:{s:5:\"label\";s:7:\"Iceland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Imprima\";a:3:{s:5:\"label\";s:7:\"Imprima\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inconsolata\";a:3:{s:5:\"label\";s:11:\"Inconsolata\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Inder\";a:3:{s:5:\"label\";s:5:\"Inder\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Indie Flower\";a:3:{s:5:\"label\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inika\";a:3:{s:5:\"label\";s:5:\"Inika\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Inknut Antiqua\";a:3:{s:5:\"label\";s:14:\"Inknut Antiqua\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Irish Grover\";a:3:{s:5:\"label\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Istok Web\";a:3:{s:5:\"label\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Italiana\";a:3:{s:5:\"label\";s:8:\"Italiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Italianno\";a:3:{s:5:\"label\";s:9:\"Italianno\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Itim\";a:3:{s:5:\"label\";s:4:\"Itim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Jacques Francois\";a:3:{s:5:\"label\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Jacques Francois Shadow\";a:3:{s:5:\"label\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Jaldi\";a:3:{s:5:\"label\";s:5:\"Jaldi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Jim Nightshade\";a:3:{s:5:\"label\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Jockey One\";a:3:{s:5:\"label\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Jolly Lodger\";a:3:{s:5:\"label\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Jomhuria\";a:3:{s:5:\"label\";s:8:\"Jomhuria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Josefin Sans\";a:3:{s:5:\"label\";s:12:\"Josefin Sans\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Josefin Slab\";a:3:{s:5:\"label\";s:12:\"Josefin Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Joti One\";a:3:{s:5:\"label\";s:8:\"Joti One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Jua\";a:3:{s:5:\"label\";s:3:\"Jua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Judson\";a:3:{s:5:\"label\";s:6:\"Judson\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Julee\";a:3:{s:5:\"label\";s:5:\"Julee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Julius Sans One\";a:3:{s:5:\"label\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Junge\";a:3:{s:5:\"label\";s:5:\"Junge\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jura\";a:3:{s:5:\"label\";s:4:\"Jura\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Just Another Hand\";a:3:{s:5:\"label\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Just Me Again Down Here\";a:3:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"K2D\";a:3:{s:5:\"label\";s:3:\"K2D\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kadwa\";a:3:{s:5:\"label\";s:5:\"Kadwa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kalam\";a:3:{s:5:\"label\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Kameron\";a:3:{s:5:\"label\";s:7:\"Kameron\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kanit\";a:3:{s:5:\"label\";s:5:\"Kanit\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kantumruy\";a:3:{s:5:\"label\";s:9:\"Kantumruy\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karla\";a:3:{s:5:\"label\";s:5:\"Karla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karma\";a:3:{s:5:\"label\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Katibeh\";a:3:{s:5:\"label\";s:7:\"Katibeh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kaushan Script\";a:3:{s:5:\"label\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Kavivanar\";a:3:{s:5:\"label\";s:9:\"Kavivanar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kavoon\";a:3:{s:5:\"label\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kdam Thmor\";a:3:{s:5:\"label\";s:10:\"Kdam Thmor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Keania One\";a:3:{s:5:\"label\";s:10:\"Keania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kelly Slab\";a:3:{s:5:\"label\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kenia\";a:3:{s:5:\"label\";s:5:\"Kenia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khand\";a:3:{s:5:\"label\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Khmer\";a:3:{s:5:\"label\";s:5:\"Khmer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khula\";a:3:{s:5:\"label\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Kirang Haerang\";a:3:{s:5:\"label\";s:14:\"Kirang Haerang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Kite One\";a:3:{s:5:\"label\";s:8:\"Kite One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Knewave\";a:3:{s:5:\"label\";s:7:\"Knewave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"KoHo\";a:3:{s:5:\"label\";s:4:\"KoHo\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kodchasan\";a:3:{s:5:\"label\";s:9:\"Kodchasan\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kosugi\";a:3:{s:5:\"label\";s:6:\"Kosugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Kosugi Maru\";a:3:{s:5:\"label\";s:11:\"Kosugi Maru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kotta One\";a:3:{s:5:\"label\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Koulen\";a:3:{s:5:\"label\";s:6:\"Koulen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kranky\";a:3:{s:5:\"label\";s:6:\"Kranky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kreon\";a:3:{s:5:\"label\";s:5:\"Kreon\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Kristi\";a:3:{s:5:\"label\";s:6:\"Kristi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Krona One\";a:3:{s:5:\"label\";s:9:\"Krona One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Krub\";a:3:{s:5:\"label\";s:4:\"Krub\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kumar One\";a:3:{s:5:\"label\";s:9:\"Kumar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Kumar One Outline\";a:3:{s:5:\"label\";s:17:\"Kumar One Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kurale\";a:3:{s:5:\"label\";s:6:\"Kurale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"La Belle Aurore\";a:3:{s:5:\"label\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Laila\";a:3:{s:5:\"label\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Lakki Reddy\";a:3:{s:5:\"label\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lalezar\";a:3:{s:5:\"label\";s:7:\"Lalezar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lancelot\";a:3:{s:5:\"label\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lateef\";a:3:{s:5:\"label\";s:6:\"Lateef\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lato\";a:3:{s:5:\"label\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"League Script\";a:3:{s:5:\"label\";s:13:\"League Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Leckerli One\";a:3:{s:5:\"label\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ledger\";a:3:{s:5:\"label\";s:6:\"Ledger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Lekton\";a:3:{s:5:\"label\";s:6:\"Lekton\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Lemon\";a:3:{s:5:\"label\";s:5:\"Lemon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lemonada\";a:3:{s:5:\"label\";s:8:\"Lemonada\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Libre Barcode 128\";a:3:{s:5:\"label\";s:17:\"Libre Barcode 128\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Libre Barcode 128 Text\";a:3:{s:5:\"label\";s:22:\"Libre Barcode 128 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Libre Barcode 39\";a:3:{s:5:\"label\";s:16:\"Libre Barcode 39\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Libre Barcode 39 Extended\";a:3:{s:5:\"label\";s:25:\"Libre Barcode 39 Extended\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:30:\"Libre Barcode 39 Extended Text\";a:3:{s:5:\"label\";s:30:\"Libre Barcode 39 Extended Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Libre Barcode 39 Text\";a:3:{s:5:\"label\";s:21:\"Libre Barcode 39 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Libre Baskerville\";a:3:{s:5:\"label\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Libre Franklin\";a:3:{s:5:\"label\";s:14:\"Libre Franklin\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Life Savers\";a:3:{s:5:\"label\";s:11:\"Life Savers\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Lilita One\";a:3:{s:5:\"label\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Lily Script One\";a:3:{s:5:\"label\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Limelight\";a:3:{s:5:\"label\";s:9:\"Limelight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Linden Hill\";a:3:{s:5:\"label\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lobster\";a:3:{s:5:\"label\";s:7:\"Lobster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Lobster Two\";a:3:{s:5:\"label\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Londrina Outline\";a:3:{s:5:\"label\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Shadow\";a:3:{s:5:\"label\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Sketch\";a:3:{s:5:\"label\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Londrina Solid\";a:3:{s:5:\"label\";s:14:\"Londrina Solid\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Lora\";a:3:{s:5:\"label\";s:4:\"Lora\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Love Ya Like A Sister\";a:3:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Loved by the King\";a:3:{s:5:\"label\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Lovers Quarrel\";a:3:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Luckiest Guy\";a:3:{s:5:\"label\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lusitana\";a:3:{s:5:\"label\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lustria\";a:3:{s:5:\"label\";s:7:\"Lustria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"M PLUS 1p\";a:3:{s:5:\"label\";s:9:\"M PLUS 1p\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Rounded 1c\";a:3:{s:5:\"label\";s:17:\"M PLUS Rounded 1c\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Macondo\";a:3:{s:5:\"label\";s:7:\"Macondo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Macondo Swash Caps\";a:3:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mada\";a:3:{s:5:\"label\";s:4:\"Mada\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Magra\";a:3:{s:5:\"label\";s:5:\"Magra\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Maiden Orange\";a:3:{s:5:\"label\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Maitree\";a:3:{s:5:\"label\";s:7:\"Maitree\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Major Mono Display\";a:3:{s:5:\"label\";s:18:\"Major Mono Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"Mako\";a:3:{s:5:\"label\";s:4:\"Mako\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mali\";a:3:{s:5:\"label\";s:4:\"Mali\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mallanna\";a:3:{s:5:\"label\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mandali\";a:3:{s:5:\"label\";s:7:\"Mandali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manuale\";a:3:{s:5:\"label\";s:7:\"Manuale\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marcellus\";a:3:{s:5:\"label\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marcellus SC\";a:3:{s:5:\"label\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marck Script\";a:3:{s:5:\"label\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Margarine\";a:3:{s:5:\"label\";s:9:\"Margarine\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Markazi Text\";a:3:{s:5:\"label\";s:12:\"Markazi Text\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marko One\";a:3:{s:5:\"label\";s:9:\"Marko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Marmelad\";a:3:{s:5:\"label\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Martel\";a:3:{s:5:\"label\";s:6:\"Martel\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Martel Sans\";a:3:{s:5:\"label\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Marvel\";a:3:{s:5:\"label\";s:6:\"Marvel\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mate\";a:3:{s:5:\"label\";s:4:\"Mate\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Mate SC\";a:3:{s:5:\"label\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Maven Pro\";a:3:{s:5:\"label\";s:9:\"Maven Pro\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"McLaren\";a:3:{s:5:\"label\";s:7:\"McLaren\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Meddon\";a:3:{s:5:\"label\";s:6:\"Meddon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"MedievalSharp\";a:3:{s:5:\"label\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Medula One\";a:3:{s:5:\"label\";s:10:\"Medula One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Meera Inimai\";a:3:{s:5:\"label\";s:12:\"Meera Inimai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Megrim\";a:3:{s:5:\"label\";s:6:\"Megrim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Meie Script\";a:3:{s:5:\"label\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Merienda\";a:3:{s:5:\"label\";s:8:\"Merienda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merienda One\";a:3:{s:5:\"label\";s:12:\"Merienda One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merriweather\";a:3:{s:5:\"label\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Merriweather Sans\";a:3:{s:5:\"label\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Metal\";a:3:{s:5:\"label\";s:5:\"Metal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metal Mania\";a:3:{s:5:\"label\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Metamorphous\";a:3:{s:5:\"label\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metrophobic\";a:3:{s:5:\"label\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Michroma\";a:3:{s:5:\"label\";s:8:\"Michroma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Milonga\";a:3:{s:5:\"label\";s:7:\"Milonga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Miltonian\";a:3:{s:5:\"label\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Miltonian Tattoo\";a:3:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mina\";a:3:{s:5:\"label\";s:4:\"Mina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Miniver\";a:3:{s:5:\"label\";s:7:\"Miniver\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Miriam Libre\";a:3:{s:5:\"label\";s:12:\"Miriam Libre\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Mirza\";a:3:{s:5:\"label\";s:5:\"Mirza\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Miss Fajardose\";a:3:{s:5:\"label\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Mitr\";a:3:{s:5:\"label\";s:4:\"Mitr\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Modak\";a:3:{s:5:\"label\";s:5:\"Modak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Modern Antiqua\";a:3:{s:5:\"label\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Mogra\";a:3:{s:5:\"label\";s:5:\"Mogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Molengo\";a:3:{s:5:\"label\";s:7:\"Molengo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Molle\";a:3:{s:5:\"label\";s:5:\"Molle\";s:8:\"variants\";a:1:{i:0;s:6:\"italic\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Monda\";a:3:{s:5:\"label\";s:5:\"Monda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Monofett\";a:3:{s:5:\"label\";s:8:\"Monofett\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Monoton\";a:3:{s:5:\"label\";s:7:\"Monoton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Monsieur La Doulaise\";a:3:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Montaga\";a:3:{s:5:\"label\";s:7:\"Montaga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Montez\";a:3:{s:5:\"label\";s:6:\"Montez\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Montserrat\";a:3:{s:5:\"label\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Montserrat Alternates\";a:3:{s:5:\"label\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Montserrat Subrayada\";a:3:{s:5:\"label\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Moul\";a:3:{s:5:\"label\";s:4:\"Moul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Moulpali\";a:3:{s:5:\"label\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Mountains of Christmas\";a:3:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mouse Memoirs\";a:3:{s:5:\"label\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Mr Bedfort\";a:3:{s:5:\"label\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mr Dafoe\";a:3:{s:5:\"label\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Mr De Haviland\";a:3:{s:5:\"label\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Mrs Saint Delafield\";a:3:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mrs Sheppards\";a:3:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Mukta\";a:3:{s:5:\"label\";s:5:\"Mukta\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Mahee\";a:3:{s:5:\"label\";s:11:\"Mukta Mahee\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Malar\";a:3:{s:5:\"label\";s:11:\"Mukta Malar\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Vaani\";a:3:{s:5:\"label\";s:11:\"Mukta Vaani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Muli\";a:3:{s:5:\"label\";s:4:\"Muli\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Mystery Quest\";a:3:{s:5:\"label\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"NTR\";a:3:{s:5:\"label\";s:3:\"NTR\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Nanum Brush Script\";a:3:{s:5:\"label\";s:18:\"Nanum Brush Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Nanum Gothic\";a:3:{s:5:\"label\";s:12:\"Nanum Gothic\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Nanum Gothic Coding\";a:3:{s:5:\"label\";s:19:\"Nanum Gothic Coding\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Nanum Myeongjo\";a:3:{s:5:\"label\";s:14:\"Nanum Myeongjo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Nanum Pen Script\";a:3:{s:5:\"label\";s:16:\"Nanum Pen Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neucha\";a:3:{s:5:\"label\";s:6:\"Neucha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neuton\";a:3:{s:5:\"label\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"New Rocker\";a:3:{s:5:\"label\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"News Cycle\";a:3:{s:5:\"label\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Niconne\";a:3:{s:5:\"label\";s:7:\"Niconne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Niramit\";a:3:{s:5:\"label\";s:7:\"Niramit\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nixie One\";a:3:{s:5:\"label\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Nobile\";a:3:{s:5:\"label\";s:6:\"Nobile\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nokora\";a:3:{s:5:\"label\";s:6:\"Nokora\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Norican\";a:3:{s:5:\"label\";s:7:\"Norican\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Nosifer\";a:3:{s:5:\"label\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Notable\";a:3:{s:5:\"label\";s:7:\"Notable\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Nothing You Could Do\";a:3:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Noticia Text\";a:3:{s:5:\"label\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Noto Sans\";a:3:{s:5:\"label\";s:9:\"Noto Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans JP\";a:3:{s:5:\"label\";s:12:\"Noto Sans JP\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans KR\";a:3:{s:5:\"label\";s:12:\"Noto Sans KR\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans SC\";a:3:{s:5:\"label\";s:12:\"Noto Sans SC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans TC\";a:3:{s:5:\"label\";s:12:\"Noto Sans TC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Serif\";a:3:{s:5:\"label\";s:10:\"Noto Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif JP\";a:3:{s:5:\"label\";s:13:\"Noto Serif JP\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif KR\";a:3:{s:5:\"label\";s:13:\"Noto Serif KR\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif SC\";a:3:{s:5:\"label\";s:13:\"Noto Serif SC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif TC\";a:3:{s:5:\"label\";s:13:\"Noto Serif TC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Nova Cut\";a:3:{s:5:\"label\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Flat\";a:3:{s:5:\"label\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Mono\";a:3:{s:5:\"label\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Nova Oval\";a:3:{s:5:\"label\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Nova Round\";a:3:{s:5:\"label\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Script\";a:3:{s:5:\"label\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Slim\";a:3:{s:5:\"label\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Square\";a:3:{s:5:\"label\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Numans\";a:3:{s:5:\"label\";s:6:\"Numans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nunito\";a:3:{s:5:\"label\";s:6:\"Nunito\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Nunito Sans\";a:3:{s:5:\"label\";s:11:\"Nunito Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Odor Mean Chey\";a:3:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Offside\";a:3:{s:5:\"label\";s:7:\"Offside\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Old Standard TT\";a:3:{s:5:\"label\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Oldenburg\";a:3:{s:5:\"label\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Oleo Script\";a:3:{s:5:\"label\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Oleo Script Swash Caps\";a:3:{s:5:\"label\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Open Sans\";a:3:{s:5:\"label\";s:9:\"Open Sans\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Open Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oranienbaum\";a:3:{s:5:\"label\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Orbitron\";a:3:{s:5:\"label\";s:8:\"Orbitron\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Oregano\";a:3:{s:5:\"label\";s:7:\"Oregano\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Orienta\";a:3:{s:5:\"label\";s:7:\"Orienta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Original Surfer\";a:3:{s:5:\"label\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oswald\";a:3:{s:5:\"label\";s:6:\"Oswald\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Over the Rainbow\";a:3:{s:5:\"label\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Overlock\";a:3:{s:5:\"label\";s:8:\"Overlock\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Overlock SC\";a:3:{s:5:\"label\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Overpass\";a:3:{s:5:\"label\";s:8:\"Overpass\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Overpass Mono\";a:3:{s:5:\"label\";s:13:\"Overpass Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:3:\"Ovo\";a:3:{s:5:\"label\";s:3:\"Ovo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Oxygen\";a:3:{s:5:\"label\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oxygen Mono\";a:3:{s:5:\"label\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Mono\";a:3:{s:5:\"label\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Sans\";a:3:{s:5:\"label\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"PT Sans Caption\";a:3:{s:5:\"label\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"PT Sans Narrow\";a:3:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"PT Serif\";a:3:{s:5:\"label\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"PT Serif Caption\";a:3:{s:5:\"label\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pacifico\";a:3:{s:5:\"label\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Padauk\";a:3:{s:5:\"label\";s:6:\"Padauk\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Palanquin\";a:3:{s:5:\"label\";s:9:\"Palanquin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palanquin Dark\";a:3:{s:5:\"label\";s:14:\"Palanquin Dark\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Pangolin\";a:3:{s:5:\"label\";s:8:\"Pangolin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Paprika\";a:3:{s:5:\"label\";s:7:\"Paprika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Parisienne\";a:3:{s:5:\"label\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Passero One\";a:3:{s:5:\"label\";s:11:\"Passero One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Passion One\";a:3:{s:5:\"label\";s:11:\"Passion One\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Pathway Gothic One\";a:3:{s:5:\"label\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Patrick Hand\";a:3:{s:5:\"label\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Patrick Hand SC\";a:3:{s:5:\"label\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Pattaya\";a:3:{s:5:\"label\";s:7:\"Pattaya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Patua One\";a:3:{s:5:\"label\";s:9:\"Patua One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Pavanam\";a:3:{s:5:\"label\";s:7:\"Pavanam\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Paytone One\";a:3:{s:5:\"label\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Peddana\";a:3:{s:5:\"label\";s:7:\"Peddana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Peralta\";a:3:{s:5:\"label\";s:7:\"Peralta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Permanent Marker\";a:3:{s:5:\"label\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Petit Formal Script\";a:3:{s:5:\"label\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Petrona\";a:3:{s:5:\"label\";s:7:\"Petrona\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Philosopher\";a:3:{s:5:\"label\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Piedra\";a:3:{s:5:\"label\";s:6:\"Piedra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Pinyon Script\";a:3:{s:5:\"label\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Pirata One\";a:3:{s:5:\"label\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Plaster\";a:3:{s:5:\"label\";s:7:\"Plaster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Play\";a:3:{s:5:\"label\";s:4:\"Play\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Playball\";a:3:{s:5:\"label\";s:8:\"Playball\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Playfair Display\";a:3:{s:5:\"label\";s:16:\"Playfair Display\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Playfair Display SC\";a:3:{s:5:\"label\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Podkova\";a:3:{s:5:\"label\";s:7:\"Podkova\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Poiret One\";a:3:{s:5:\"label\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Poller One\";a:3:{s:5:\"label\";s:10:\"Poller One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Poly\";a:3:{s:5:\"label\";s:4:\"Poly\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pompiere\";a:3:{s:5:\"label\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Pontano Sans\";a:3:{s:5:\"label\";s:12:\"Pontano Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Poor Story\";a:3:{s:5:\"label\";s:10:\"Poor Story\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Poppins\";a:3:{s:5:\"label\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Sans\";a:3:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Slab\";a:3:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Pragati Narrow\";a:3:{s:5:\"label\";s:14:\"Pragati Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Prata\";a:3:{s:5:\"label\";s:5:\"Prata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Preahvihear\";a:3:{s:5:\"label\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Press Start 2P\";a:3:{s:5:\"label\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Pridi\";a:3:{s:5:\"label\";s:5:\"Pridi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Princess Sofia\";a:3:{s:5:\"label\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Prociono\";a:3:{s:5:\"label\";s:8:\"Prociono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Prompt\";a:3:{s:5:\"label\";s:6:\"Prompt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Prosto One\";a:3:{s:5:\"label\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Proza Libre\";a:3:{s:5:\"label\";s:11:\"Proza Libre\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Puritan\";a:3:{s:5:\"label\";s:7:\"Puritan\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Purple Purse\";a:3:{s:5:\"label\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Quando\";a:3:{s:5:\"label\";s:6:\"Quando\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Quantico\";a:3:{s:5:\"label\";s:8:\"Quantico\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Quattrocento\";a:3:{s:5:\"label\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Quattrocento Sans\";a:3:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Questrial\";a:3:{s:5:\"label\";s:9:\"Questrial\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Quicksand\";a:3:{s:5:\"label\";s:9:\"Quicksand\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Quintessential\";a:3:{s:5:\"label\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Qwigley\";a:3:{s:5:\"label\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Racing Sans One\";a:3:{s:5:\"label\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Radley\";a:3:{s:5:\"label\";s:6:\"Radley\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Rajdhani\";a:3:{s:5:\"label\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rakkas\";a:3:{s:5:\"label\";s:6:\"Rakkas\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Raleway\";a:3:{s:5:\"label\";s:7:\"Raleway\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Raleway Dots\";a:3:{s:5:\"label\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Ramabhadra\";a:3:{s:5:\"label\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Ramaraja\";a:3:{s:5:\"label\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Rambla\";a:3:{s:5:\"label\";s:6:\"Rambla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Rammetto One\";a:3:{s:5:\"label\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Ranchers\";a:3:{s:5:\"label\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Rancho\";a:3:{s:5:\"label\";s:6:\"Rancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ranga\";a:3:{s:5:\"label\";s:5:\"Ranga\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Rasa\";a:3:{s:5:\"label\";s:4:\"Rasa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rationale\";a:3:{s:5:\"label\";s:9:\"Rationale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Ravi Prakash\";a:3:{s:5:\"label\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Redressed\";a:3:{s:5:\"label\";s:9:\"Redressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Reem Kufi\";a:3:{s:5:\"label\";s:9:\"Reem Kufi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reenie Beanie\";a:3:{s:5:\"label\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Revalia\";a:3:{s:5:\"label\";s:7:\"Revalia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rhodium Libre\";a:3:{s:5:\"label\";s:13:\"Rhodium Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Ribeye\";a:3:{s:5:\"label\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Ribeye Marrow\";a:3:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Righteous\";a:3:{s:5:\"label\";s:9:\"Righteous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Risque\";a:3:{s:5:\"label\";s:6:\"Risque\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Roboto\";a:3:{s:5:\"label\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Roboto Condensed\";a:3:{s:5:\"label\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Mono\";a:3:{s:5:\"label\";s:11:\"Roboto Mono\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Roboto Slab\";a:3:{s:5:\"label\";s:11:\"Roboto Slab\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rochester\";a:3:{s:5:\"label\";s:9:\"Rochester\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Rock Salt\";a:3:{s:5:\"label\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rokkitt\";a:3:{s:5:\"label\";s:7:\"Rokkitt\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Romanesco\";a:3:{s:5:\"label\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Ropa Sans\";a:3:{s:5:\"label\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rosario\";a:3:{s:5:\"label\";s:7:\"Rosario\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Rosarivo\";a:3:{s:5:\"label\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Rouge Script\";a:3:{s:5:\"label\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Rozha One\";a:3:{s:5:\"label\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Rubik\";a:3:{s:5:\"label\";s:5:\"Rubik\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Rubik Mono One\";a:3:{s:5:\"label\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Ruda\";a:3:{s:5:\"label\";s:4:\"Ruda\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rufina\";a:3:{s:5:\"label\";s:6:\"Rufina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Ruge Boogie\";a:3:{s:5:\"label\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ruluko\";a:3:{s:5:\"label\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Rum Raisin\";a:3:{s:5:\"label\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Ruslan Display\";a:3:{s:5:\"label\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Russo One\";a:3:{s:5:\"label\";s:9:\"Russo One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ruthie\";a:3:{s:5:\"label\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Rye\";a:3:{s:5:\"label\";s:3:\"Rye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sacramento\";a:3:{s:5:\"label\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Sahitya\";a:3:{s:5:\"label\";s:7:\"Sahitya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sail\";a:3:{s:5:\"label\";s:4:\"Sail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Saira\";a:3:{s:5:\"label\";s:5:\"Saira\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Saira Condensed\";a:3:{s:5:\"label\";s:15:\"Saira Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Saira Extra Condensed\";a:3:{s:5:\"label\";s:21:\"Saira Extra Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Saira Semi Condensed\";a:3:{s:5:\"label\";s:20:\"Saira Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Salsa\";a:3:{s:5:\"label\";s:5:\"Salsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sanchez\";a:3:{s:5:\"label\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sancreek\";a:3:{s:5:\"label\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sansita\";a:3:{s:5:\"label\";s:7:\"Sansita\";s:8:\"variants\";a:8:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"800\";i:3;s:9:\"800italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Sarabun\";a:3:{s:5:\"label\";s:7:\"Sarabun\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarala\";a:3:{s:5:\"label\";s:6:\"Sarala\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarina\";a:3:{s:5:\"label\";s:6:\"Sarina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Sarpanch\";a:3:{s:5:\"label\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Satisfy\";a:3:{s:5:\"label\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Sawarabi Gothic\";a:3:{s:5:\"label\";s:15:\"Sawarabi Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sawarabi Mincho\";a:3:{s:5:\"label\";s:15:\"Sawarabi Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Scada\";a:3:{s:5:\"label\";s:5:\"Scada\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Scheherazade\";a:3:{s:5:\"label\";s:12:\"Scheherazade\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Schoolbell\";a:3:{s:5:\"label\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Scope One\";a:3:{s:5:\"label\";s:9:\"Scope One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Seaweed Script\";a:3:{s:5:\"label\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Secular One\";a:3:{s:5:\"label\";s:11:\"Secular One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Sedgwick Ave\";a:3:{s:5:\"label\";s:12:\"Sedgwick Ave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sedgwick Ave Display\";a:3:{s:5:\"label\";s:20:\"Sedgwick Ave Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Sevillana\";a:3:{s:5:\"label\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Seymour One\";a:3:{s:5:\"label\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Shadows Into Light\";a:3:{s:5:\"label\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Shadows Into Light Two\";a:3:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Shanti\";a:3:{s:5:\"label\";s:6:\"Shanti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Share\";a:3:{s:5:\"label\";s:5:\"Share\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Share Tech\";a:3:{s:5:\"label\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Share Tech Mono\";a:3:{s:5:\"label\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Shojumaru\";a:3:{s:5:\"label\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Short Stack\";a:3:{s:5:\"label\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Shrikhand\";a:3:{s:5:\"label\";s:9:\"Shrikhand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Siemreap\";a:3:{s:5:\"label\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sigmar One\";a:3:{s:5:\"label\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Signika\";a:3:{s:5:\"label\";s:7:\"Signika\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Signika Negative\";a:3:{s:5:\"label\";s:16:\"Signika Negative\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Simonetta\";a:3:{s:5:\"label\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{i:0;s:3:\"900\";i:1;s:9:\"900italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sintony\";a:3:{s:5:\"label\";s:7:\"Sintony\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Sirin Stencil\";a:3:{s:5:\"label\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Six Caps\";a:3:{s:5:\"label\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Skranji\";a:3:{s:5:\"label\";s:7:\"Skranji\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Slabo 13px\";a:3:{s:5:\"label\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Slabo 27px\";a:3:{s:5:\"label\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Slackey\";a:3:{s:5:\"label\";s:7:\"Slackey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smokum\";a:3:{s:5:\"label\";s:6:\"Smokum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smythe\";a:3:{s:5:\"label\";s:6:\"Smythe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sniglet\";a:3:{s:5:\"label\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Snippet\";a:3:{s:5:\"label\";s:7:\"Snippet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Snowburst One\";a:3:{s:5:\"label\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sofadi One\";a:3:{s:5:\"label\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Sofia\";a:3:{s:5:\"label\";s:5:\"Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Song Myung\";a:3:{s:5:\"label\";s:10:\"Song Myung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sonsie One\";a:3:{s:5:\"label\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Sorts Mill Goudy\";a:3:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Source Code Pro\";a:3:{s:5:\"label\";s:15:\"Source Code Pro\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:15:\"Source Sans Pro\";a:3:{s:5:\"label\";s:15:\"Source Sans Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Source Serif Pro\";a:3:{s:5:\"label\";s:16:\"Source Serif Pro\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Space Mono\";a:3:{s:5:\"label\";s:10:\"Space Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Special Elite\";a:3:{s:5:\"label\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Spectral\";a:3:{s:5:\"label\";s:8:\"Spectral\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Spectral SC\";a:3:{s:5:\"label\";s:11:\"Spectral SC\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Spicy Rice\";a:3:{s:5:\"label\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Spinnaker\";a:3:{s:5:\"label\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Spirax\";a:3:{s:5:\"label\";s:6:\"Spirax\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Squada One\";a:3:{s:5:\"label\";s:10:\"Squada One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Sree Krushnadevaraya\";a:3:{s:5:\"label\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sriracha\";a:3:{s:5:\"label\";s:8:\"Sriracha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Srisakdi\";a:3:{s:5:\"label\";s:8:\"Srisakdi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Staatliches\";a:3:{s:5:\"label\";s:11:\"Staatliches\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Stalemate\";a:3:{s:5:\"label\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Stalinist One\";a:3:{s:5:\"label\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Stardos Stencil\";a:3:{s:5:\"label\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Stint Ultra Condensed\";a:3:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Stint Ultra Expanded\";a:3:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stoke\";a:3:{s:5:\"label\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Strait\";a:3:{s:5:\"label\";s:6:\"Strait\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Stylish\";a:3:{s:5:\"label\";s:7:\"Stylish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Sue Ellen Francisco\";a:3:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Suez One\";a:3:{s:5:\"label\";s:8:\"Suez One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Sumana\";a:3:{s:5:\"label\";s:6:\"Sumana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Sunflower\";a:3:{s:5:\"label\";s:9:\"Sunflower\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sunshiney\";a:3:{s:5:\"label\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Supermercado One\";a:3:{s:5:\"label\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sura\";a:3:{s:5:\"label\";s:4:\"Sura\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Suranna\";a:3:{s:5:\"label\";s:7:\"Suranna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Suravaram\";a:3:{s:5:\"label\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Suwannaphum\";a:3:{s:5:\"label\";s:11:\"Suwannaphum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Swanky and Moo Moo\";a:3:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Syncopate\";a:3:{s:5:\"label\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Tajawal\";a:3:{s:5:\"label\";s:7:\"Tajawal\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Tangerine\";a:3:{s:5:\"label\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Taprom\";a:3:{s:5:\"label\";s:6:\"Taprom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Tauri\";a:3:{s:5:\"label\";s:5:\"Tauri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Taviraj\";a:3:{s:5:\"label\";s:7:\"Taviraj\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Teko\";a:3:{s:5:\"label\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Telex\";a:3:{s:5:\"label\";s:5:\"Telex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Tenali Ramakrishna\";a:3:{s:5:\"label\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tenor Sans\";a:3:{s:5:\"label\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Text Me One\";a:3:{s:5:\"label\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Thasadith\";a:3:{s:5:\"label\";s:9:\"Thasadith\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"The Girl Next Door\";a:3:{s:5:\"label\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Tienne\";a:3:{s:5:\"label\";s:6:\"Tienne\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tillana\";a:3:{s:5:\"label\";s:7:\"Tillana\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Timmana\";a:3:{s:5:\"label\";s:7:\"Timmana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Tinos\";a:3:{s:5:\"label\";s:5:\"Tinos\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Titan One\";a:3:{s:5:\"label\";s:9:\"Titan One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Titillium Web\";a:3:{s:5:\"label\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:6:\"italic\";i:10;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Trade Winds\";a:3:{s:5:\"label\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trirong\";a:3:{s:5:\"label\";s:7:\"Trirong\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trocchi\";a:3:{s:5:\"label\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trochut\";a:3:{s:5:\"label\";s:7:\"Trochut\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trykker\";a:3:{s:5:\"label\";s:7:\"Trykker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Tulpen One\";a:3:{s:5:\"label\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Ubuntu\";a:3:{s:5:\"label\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Ubuntu Condensed\";a:3:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Ubuntu Mono\";a:3:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Ultra\";a:3:{s:5:\"label\";s:5:\"Ultra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Uncial Antiqua\";a:3:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Underdog\";a:3:{s:5:\"label\";s:8:\"Underdog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Unica One\";a:3:{s:5:\"label\";s:9:\"Unica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"UnifrakturCook\";a:3:{s:5:\"label\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:0;s:3:\"700\";}s:8:\"category\";s:7:\"display\";}s:18:\"UnifrakturMaguntia\";a:3:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Unkempt\";a:3:{s:5:\"label\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Unlock\";a:3:{s:5:\"label\";s:6:\"Unlock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Unna\";a:3:{s:5:\"label\";s:4:\"Unna\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"VT323\";a:3:{s:5:\"label\";s:5:\"VT323\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Vampiro One\";a:3:{s:5:\"label\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Varela\";a:3:{s:5:\"label\";s:6:\"Varela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Varela Round\";a:3:{s:5:\"label\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Vast Shadow\";a:3:{s:5:\"label\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Vesper Libre\";a:3:{s:5:\"label\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Vibur\";a:3:{s:5:\"label\";s:5:\"Vibur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Vidaloka\";a:3:{s:5:\"label\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Viga\";a:3:{s:5:\"label\";s:4:\"Viga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Voces\";a:3:{s:5:\"label\";s:5:\"Voces\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Volkhov\";a:3:{s:5:\"label\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Vollkorn\";a:3:{s:5:\"label\";s:8:\"Vollkorn\";s:8:\"variants\";a:8:{i:0;s:3:\"600\";i:1;s:9:\"600italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Vollkorn SC\";a:3:{s:5:\"label\";s:11:\"Vollkorn SC\";s:8:\"variants\";a:4:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Voltaire\";a:3:{s:5:\"label\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Waiting for the Sunrise\";a:3:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wallpoet\";a:3:{s:5:\"label\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Walter Turncoat\";a:3:{s:5:\"label\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Warnes\";a:3:{s:5:\"label\";s:6:\"Warnes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wellfleet\";a:3:{s:5:\"label\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wendy One\";a:3:{s:5:\"label\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Wire One\";a:3:{s:5:\"label\";s:8:\"Wire One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Work Sans\";a:3:{s:5:\"label\";s:9:\"Work Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Yanone Kaffeesatz\";a:3:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:4:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Yantramanav\";a:3:{s:5:\"label\";s:11:\"Yantramanav\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yatra One\";a:3:{s:5:\"label\";s:9:\"Yatra One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yellowtail\";a:3:{s:5:\"label\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Yeon Sung\";a:3:{s:5:\"label\";s:9:\"Yeon Sung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yeseva One\";a:3:{s:5:\"label\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yesteryear\";a:3:{s:5:\"label\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Yrsa\";a:3:{s:5:\"label\";s:4:\"Yrsa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"ZCOOL KuaiLe\";a:3:{s:5:\"label\";s:12:\"ZCOOL KuaiLe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"ZCOOL QingKe HuangYou\";a:3:{s:5:\"label\";s:21:\"ZCOOL QingKe HuangYou\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"ZCOOL XiaoWei\";a:3:{s:5:\"label\";s:13:\"ZCOOL XiaoWei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Zeyada\";a:3:{s:5:\"label\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Zilla Slab\";a:3:{s:5:\"label\";s:10:\"Zilla Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Zilla Slab Highlight\";a:3:{s:5:\"label\";s:20:\"Zilla Slab Highlight\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}}','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=315 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,4,'_wp_attached_file','2019/07/espresso.jpg'),(3,4,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/07/espresso.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"espresso-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"espresso-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"espresso-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"espresso-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"espresso-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(4,4,'_starter_content_theme','twentyseventeen'),(5,4,'_customize_draft_post_name','espresso'),(6,5,'_wp_attached_file','2019/07/sandwich.jpg'),(7,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/07/sandwich.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"sandwich-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"sandwich-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"sandwich-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"sandwich-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"sandwich-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(8,5,'_starter_content_theme','twentyseventeen'),(9,5,'_customize_draft_post_name','sandwich'),(10,6,'_wp_attached_file','2019/07/coffee.jpg'),(11,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:18:\"2019/07/coffee.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"coffee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"coffee-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"coffee-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"coffee-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:18:\"coffee-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(12,6,'_starter_content_theme','twentyseventeen'),(13,6,'_customize_draft_post_name','coffee'),(14,7,'_customize_draft_post_name','home'),(15,7,'_customize_changeset_uuid','21c386f5-ce4e-4bc1-881d-3c745e70b204'),(16,8,'_thumbnail_id','5'),(17,8,'_customize_draft_post_name','about'),(18,8,'_customize_changeset_uuid','21c386f5-ce4e-4bc1-881d-3c745e70b204'),(19,9,'_thumbnail_id','4'),(20,9,'_customize_draft_post_name','contact'),(21,9,'_customize_changeset_uuid','21c386f5-ce4e-4bc1-881d-3c745e70b204'),(22,10,'_thumbnail_id','6'),(23,10,'_customize_draft_post_name','blog'),(24,10,'_customize_changeset_uuid','21c386f5-ce4e-4bc1-881d-3c745e70b204'),(25,11,'_thumbnail_id','4'),(26,11,'_customize_draft_post_name','a-homepage-section'),(27,11,'_customize_changeset_uuid','21c386f5-ce4e-4bc1-881d-3c745e70b204'),(29,13,'_wp_attached_file','2019/07/espresso-1.jpg'),(30,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2019/07/espresso-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"espresso-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"espresso-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"espresso-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"espresso-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"espresso-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(31,13,'_starter_content_theme','twentyseventeen'),(32,13,'_customize_draft_post_name','espresso'),(33,14,'_wp_attached_file','2019/07/sandwich-1.jpg'),(34,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2019/07/sandwich-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sandwich-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"sandwich-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"sandwich-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"sandwich-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"sandwich-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(35,14,'_starter_content_theme','twentyseventeen'),(36,14,'_customize_draft_post_name','sandwich'),(37,15,'_wp_attached_file','2019/07/coffee-1.jpg'),(38,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/07/coffee-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"coffee-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"coffee-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"coffee-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"coffee-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"coffee-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(39,15,'_starter_content_theme','twentyseventeen'),(40,15,'_customize_draft_post_name','coffee'),(41,16,'_customize_draft_post_name','home'),(42,16,'_customize_changeset_uuid','f86798a5-a480-4a42-a4a9-aff6dea5924e'),(43,17,'_thumbnail_id','14'),(44,17,'_customize_draft_post_name','about'),(45,17,'_customize_changeset_uuid','f86798a5-a480-4a42-a4a9-aff6dea5924e'),(46,18,'_thumbnail_id','13'),(47,18,'_customize_draft_post_name','contact'),(48,18,'_customize_changeset_uuid','f86798a5-a480-4a42-a4a9-aff6dea5924e'),(49,19,'_thumbnail_id','15'),(50,19,'_customize_draft_post_name','blog'),(51,19,'_customize_changeset_uuid','f86798a5-a480-4a42-a4a9-aff6dea5924e'),(52,20,'_thumbnail_id','13'),(53,20,'_customize_draft_post_name','a-homepage-section'),(54,20,'_customize_changeset_uuid','f86798a5-a480-4a42-a4a9-aff6dea5924e'),(55,21,'_edit_lock','1563458796:1'),(56,22,'_wp_attached_file','2019/07/Ambulances.jpg'),(57,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2019/07/Ambulances.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Ambulances-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Ambulances-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Ambulances-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Ambulances-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"Ambulances-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1411039907\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00043802014892685\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(58,23,'_wp_attached_file','2019/07/cropped-Ambulances.jpg'),(59,23,'_wp_attachment_context','custom-logo'),(60,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2019/07/cropped-Ambulances.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-Ambulances-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"cropped-Ambulances-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"cropped-Ambulances-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"cropped-Ambulances-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:30:\"cropped-Ambulances-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(61,24,'_wp_attached_file','2019/07/43590366_2230157113888557_1421806360214896640_o-1.jpg'),(62,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1361;s:4:\"file\";s:61:\"2019/07/43590366_2230157113888557_1421806360214896640_o-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"43590366_2230157113888557_1421806360214896640_o-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"43590366_2230157113888557_1421806360214896640_o-1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"43590366_2230157113888557_1421806360214896640_o-1-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"43590366_2230157113888557_1421806360214896640_o-1-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:63:\"43590366_2230157113888557_1421806360214896640_o-1-2000x1200.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:61:\"43590366_2230157113888557_1421806360214896640_o-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(63,24,'_wp_attachment_is_custom_background','wishlist'),(64,25,'_wp_attached_file','2019/07/espresso-2.jpg'),(65,25,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2019/07/espresso-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"espresso-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"espresso-2-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"espresso-2-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"espresso-2-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"espresso-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(66,25,'_starter_content_theme','twentyseventeen'),(67,25,'_customize_draft_post_name','espresso'),(68,26,'_wp_attached_file','2019/07/sandwich-2.jpg'),(69,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2019/07/sandwich-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sandwich-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"sandwich-2-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"sandwich-2-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"sandwich-2-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"sandwich-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(70,26,'_starter_content_theme','twentyseventeen'),(71,26,'_customize_draft_post_name','sandwich'),(72,27,'_wp_attached_file','2019/07/coffee-2.jpg'),(73,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/07/coffee-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"coffee-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"coffee-2-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"coffee-2-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"coffee-2-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"coffee-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(74,27,'_starter_content_theme','twentyseventeen'),(75,27,'_customize_draft_post_name','coffee'),(76,28,'_customize_draft_post_name','home'),(77,28,'_customize_changeset_uuid','ac91d3c9-c8a5-4768-be61-daa6e577a3d5'),(78,29,'_thumbnail_id','26'),(79,29,'_customize_draft_post_name','about'),(80,29,'_customize_changeset_uuid','ac91d3c9-c8a5-4768-be61-daa6e577a3d5'),(81,30,'_thumbnail_id','25'),(82,30,'_customize_draft_post_name','contact'),(83,30,'_customize_changeset_uuid','ac91d3c9-c8a5-4768-be61-daa6e577a3d5'),(84,31,'_thumbnail_id','27'),(85,31,'_customize_draft_post_name','blog'),(86,31,'_customize_changeset_uuid','ac91d3c9-c8a5-4768-be61-daa6e577a3d5'),(87,32,'_thumbnail_id','25'),(88,32,'_customize_draft_post_name','a-homepage-section'),(89,32,'_customize_changeset_uuid','ac91d3c9-c8a5-4768-be61-daa6e577a3d5'),(90,21,'_customize_restore_dismissed','1'),(91,12,'_customize_restore_dismissed','1'),(92,34,'_wp_attached_file','2019/07/32926050_2107185312852405_7600840221147529216_o.jpg'),(93,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:59:\"2019/07/32926050_2107185312852405_7600840221147529216_o.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"32926050_2107185312852405_7600840221147529216_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"32926050_2107185312852405_7600840221147529216_o-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"32926050_2107185312852405_7600840221147529216_o-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"32926050_2107185312852405_7600840221147529216_o-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:61:\"32926050_2107185312852405_7600840221147529216_o-2000x1200.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:59:\"32926050_2107185312852405_7600840221147529216_o-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(94,35,'_wp_attached_file','2019/07/52835930_2307494119488189_6393935680619151360_n.jpg'),(95,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2019/07/52835930_2307494119488189_6393935680619151360_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"52835930_2307494119488189_6393935680619151360_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"52835930_2307494119488189_6393935680619151360_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:59:\"52835930_2307494119488189_6393935680619151360_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(96,36,'_wp_attached_file','2019/07/43706451_2230157123888556_1022464308237303808_o.jpg'),(97,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1361;s:4:\"file\";s:59:\"2019/07/43706451_2230157123888556_1022464308237303808_o.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"43706451_2230157123888556_1022464308237303808_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"43706451_2230157123888556_1022464308237303808_o-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"43706451_2230157123888556_1022464308237303808_o-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"43706451_2230157123888556_1022464308237303808_o-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:61:\"43706451_2230157123888556_1022464308237303808_o-2000x1200.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:59:\"43706451_2230157123888556_1022464308237303808_o-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(98,37,'_wp_attached_file','2019/07/44745980_2230156997221902_3470045958388056064_o.jpg'),(99,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2016;s:6:\"height\";i:1512;s:4:\"file\";s:59:\"2019/07/44745980_2230156997221902_3470045958388056064_o.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"44745980_2230156997221902_3470045958388056064_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"44745980_2230156997221902_3470045958388056064_o-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"44745980_2230156997221902_3470045958388056064_o-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"44745980_2230156997221902_3470045958388056064_o-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:61:\"44745980_2230156997221902_3470045958388056064_o-2000x1200.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:59:\"44745980_2230156997221902_3470045958388056064_o-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(100,38,'_wp_attached_file','2019/07/44766271_2230156970555238_6911022749188096000_o.jpg'),(101,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1361;s:4:\"file\";s:59:\"2019/07/44766271_2230156970555238_6911022749188096000_o.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"44766271_2230156970555238_6911022749188096000_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"44766271_2230156970555238_6911022749188096000_o-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"44766271_2230156970555238_6911022749188096000_o-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"44766271_2230156970555238_6911022749188096000_o-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:61:\"44766271_2230156970555238_6911022749188096000_o-2000x1200.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:59:\"44766271_2230156970555238_6911022749188096000_o-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(102,39,'_wp_attached_file','2019/07/66222427_2266567216746338_6111108575189270528_o.jpg'),(103,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1511;s:6:\"height\";i:2015;s:4:\"file\";s:59:\"2019/07/66222427_2266567216746338_6111108575189270528_o.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"66222427_2266567216746338_6111108575189270528_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"66222427_2266567216746338_6111108575189270528_o-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"66222427_2266567216746338_6111108575189270528_o-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"66222427_2266567216746338_6111108575189270528_o-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:61:\"66222427_2266567216746338_6111108575189270528_o-1511x1200.jpg\";s:5:\"width\";i:1511;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:59:\"66222427_2266567216746338_6111108575189270528_o-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(104,40,'_wp_attached_file','2019/07/66440388_2266567276746332_6715234388667269120_o.jpg'),(105,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2019/07/66440388_2266567276746332_6715234388667269120_o.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"66440388_2266567276746332_6715234388667269120_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"66440388_2266567276746332_6715234388667269120_o-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"66440388_2266567276746332_6715234388667269120_o-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"66440388_2266567276746332_6715234388667269120_o-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:59:\"66440388_2266567276746332_6715234388667269120_o-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(106,41,'_edit_lock','1563540899:1'),(107,2,'_edit_lock','1563497706:1'),(108,33,'_customize_restore_dismissed','1'),(127,47,'_wp_trash_meta_status','publish'),(128,47,'_wp_trash_meta_time','1563460171'),(129,48,'_wp_trash_meta_status','publish'),(130,48,'_wp_trash_meta_time','1563460569'),(131,49,'_wp_attached_file','2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1.jpg'),(132,49,'_wp_attachment_context','custom-header'),(133,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:200;s:4:\"file\";s:69:\"2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1.jpg\";s:5:\"sizes\";a:22:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:68:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-1024x128.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"sc-testimonial\";a:4:{s:4:\"file\";s:67:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-53x53.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:53;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/2\";a:4:{s:4:\"file\";s:70:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-1140x200.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:70:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-1140x200.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:70:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-1140x200.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:70:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-1140x200.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-570x200.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/4\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-570x142.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-570x200.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-570x200.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-570x200.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-380x200.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/5\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-380x152.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-380x200.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-3/4\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-380x200.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-285x200.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-3/4\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-285x200.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:24;}'),(136,50,'_edit_lock','1563460658:1'),(137,50,'_wp_trash_meta_status','publish'),(138,50,'_wp_trash_meta_time','1563460677'),(139,51,'_edit_lock','1563462780:1'),(140,51,'_customize_restore_dismissed','1'),(141,52,'_edit_lock','1563465936:1'),(142,52,'_customize_restore_dismissed','1'),(143,53,'_edit_lock','1563464289:1'),(144,53,'_customize_restore_dismissed','1'),(145,54,'_wp_trash_meta_status','publish'),(146,54,'_wp_trash_meta_time','1563463786'),(147,55,'_edit_lock','1563463887:1'),(148,55,'_wp_trash_meta_status','publish'),(149,55,'_wp_trash_meta_time','1563463900'),(150,56,'_wp_trash_meta_status','publish'),(151,56,'_wp_trash_meta_time','1563464154'),(152,57,'_edit_lock','1563464321:1'),(153,57,'_wp_trash_meta_status','publish'),(154,57,'_wp_trash_meta_time','1563464358'),(155,59,'_menu_item_type','custom'),(156,59,'_menu_item_menu_item_parent','0'),(157,59,'_menu_item_object_id','59'),(158,59,'_menu_item_object','custom'),(159,59,'_menu_item_target',''),(160,59,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(161,59,'_menu_item_xfn',''),(162,59,'_menu_item_url','http://006aa70.netsolhost.com/wordpress1'),(163,60,'_menu_item_type','post_type'),(164,60,'_menu_item_menu_item_parent','0'),(165,60,'_menu_item_object_id','41'),(166,60,'_menu_item_object','page'),(167,60,'_menu_item_target',''),(168,60,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(169,60,'_menu_item_xfn',''),(170,60,'_menu_item_url',''),(171,61,'_menu_item_type','post_type'),(172,61,'_menu_item_menu_item_parent','0'),(173,61,'_menu_item_object_id','2'),(174,61,'_menu_item_object','page'),(175,61,'_menu_item_target',''),(176,61,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(177,61,'_menu_item_xfn',''),(178,61,'_menu_item_url',''),(179,58,'_wp_trash_meta_status','publish'),(180,58,'_wp_trash_meta_time','1563465030'),(181,2,'_edit_last','1'),(182,84,'_wp_trash_meta_status','publish'),(183,84,'_wp_trash_meta_time','1563472310'),(184,85,'_wp_trash_meta_status','publish'),(185,85,'_wp_trash_meta_time','1563472378'),(186,86,'_wp_trash_meta_status','publish'),(187,86,'_wp_trash_meta_time','1563472632'),(188,87,'_wp_trash_meta_status','publish'),(189,87,'_wp_trash_meta_time','1563472717'),(190,88,'_edit_last','1'),(191,88,'_edit_lock','1563497365:1'),(192,88,'_wp_page_template','default'),(193,89,'panels_data','a:3:{s:7:\"widgets\";a:0:{}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(194,88,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:10:{s:10:\"map_center\";a:1:{s:4:\"name\";s:29:\"1403 Dove st. Monroe NC 28112\";}s:8:\"settings\";a:13:{s:8:\"map_type\";s:6:\"static\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"480\";s:15:\"destination_url\";s:8:\"post: 88\";s:4:\"zoom\";d:12;s:11:\"mobile_zoom\";d:12;s:16:\"gesture_handling\";s:6:\"greedy\";s:14:\"fallback_image\";i:0;s:19:\"fallback_image_size\";s:4:\"full\";s:24:\"so_field_container_state\";s:4:\"open\";s:10:\"new_window\";b:0;s:18:\"disable_default_ui\";b:0;s:13:\"keep_centered\";b:0;}s:7:\"markers\";a:7:{s:16:\"marker_at_center\";b:1;s:11:\"marker_icon\";i:0;s:12:\"info_display\";s:5:\"click\";s:13:\"info_multiple\";b:1;s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"markers_draggable\";b:0;s:16:\"marker_positions\";a:0:{}}s:6:\"styles\";a:5:{s:12:\"style_method\";s:6:\"normal\";s:15:\"styled_map_name\";s:0:\"\";s:19:\"raw_json_map_styles\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"custom_map_styles\";a:0:{}}s:10:\"directions\";a:9:{s:6:\"origin\";s:0:\"\";s:11:\"destination\";s:0:\"\";s:11:\"travel_mode\";s:7:\"driving\";s:24:\"so_field_container_state\";s:6:\"closed\";s:14:\"avoid_highways\";b:0;s:11:\"avoid_tolls\";b:0;s:17:\"preserve_viewport\";b:0;s:9:\"waypoints\";a:0:{}s:18:\"optimize_waypoints\";b:0;}s:12:\"_sow_form_id\";s:27:\"121805d30c09e1a3a2459336664\";s:19:\"_sow_form_timestamp\";s:13:\"1563497457161\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Widget_GoogleMap_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"fd4f11f4-d1e0-482f-b4f1-03079968ca80\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:22:\"so_sidebar_emulator_id\";s:22:\"sow-google-map-8810000\";s:11:\"option_name\";s:21:\"widget_sow-google-map\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(195,90,'panels_data','a:3:{s:7:\"widgets\";a:0:{}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(196,91,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:10:{s:10:\"map_center\";a:1:{s:4:\"name\";s:29:\"1403 Dove st. Monroe NC 28112\";}s:8:\"settings\";a:13:{s:8:\"map_type\";s:11:\"interactive\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"480\";s:15:\"destination_url\";s:0:\"\";s:4:\"zoom\";d:12;s:11:\"mobile_zoom\";d:12;s:16:\"gesture_handling\";s:6:\"greedy\";s:14:\"fallback_image\";i:0;s:19:\"fallback_image_size\";s:4:\"full\";s:24:\"so_field_container_state\";s:4:\"open\";s:10:\"new_window\";b:0;s:18:\"disable_default_ui\";b:0;s:13:\"keep_centered\";b:0;}s:7:\"markers\";a:7:{s:16:\"marker_at_center\";b:1;s:11:\"marker_icon\";i:0;s:12:\"info_display\";s:5:\"click\";s:13:\"info_multiple\";b:1;s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"markers_draggable\";b:0;s:16:\"marker_positions\";a:0:{}}s:6:\"styles\";a:5:{s:12:\"style_method\";s:6:\"normal\";s:15:\"styled_map_name\";s:0:\"\";s:19:\"raw_json_map_styles\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"custom_map_styles\";a:0:{}}s:10:\"directions\";a:9:{s:6:\"origin\";s:0:\"\";s:11:\"destination\";s:0:\"\";s:11:\"travel_mode\";s:7:\"driving\";s:24:\"so_field_container_state\";s:6:\"closed\";s:14:\"avoid_highways\";b:0;s:11:\"avoid_tolls\";b:0;s:17:\"preserve_viewport\";b:0;s:9:\"waypoints\";a:0:{}s:18:\"optimize_waypoints\";b:0;}s:12:\"_sow_form_id\";s:27:\"121805d30c09e1a3a2459336664\";s:19:\"_sow_form_timestamp\";s:13:\"1563476149136\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Widget_GoogleMap_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"fd4f11f4-d1e0-482f-b4f1-03079968ca80\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:22:\"so_sidebar_emulator_id\";s:22:\"sow-google-map-9110000\";s:11:\"option_name\";s:21:\"widget_sow-google-map\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(197,92,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:10:{s:10:\"map_center\";a:1:{s:4:\"name\";s:29:\"1403 Dove st. Monroe NC 28112\";}s:8:\"settings\";a:13:{s:8:\"map_type\";s:11:\"interactive\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"480\";s:15:\"destination_url\";s:0:\"\";s:4:\"zoom\";d:12;s:11:\"mobile_zoom\";d:12;s:16:\"gesture_handling\";s:6:\"greedy\";s:14:\"fallback_image\";i:0;s:19:\"fallback_image_size\";s:4:\"full\";s:24:\"so_field_container_state\";s:4:\"open\";s:10:\"new_window\";b:0;s:18:\"disable_default_ui\";b:0;s:13:\"keep_centered\";b:0;}s:7:\"markers\";a:7:{s:16:\"marker_at_center\";b:1;s:11:\"marker_icon\";i:0;s:12:\"info_display\";s:5:\"click\";s:13:\"info_multiple\";b:1;s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"markers_draggable\";b:0;s:16:\"marker_positions\";a:0:{}}s:6:\"styles\";a:5:{s:12:\"style_method\";s:6:\"normal\";s:15:\"styled_map_name\";s:0:\"\";s:19:\"raw_json_map_styles\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"custom_map_styles\";a:0:{}}s:10:\"directions\";a:9:{s:6:\"origin\";s:0:\"\";s:11:\"destination\";s:0:\"\";s:11:\"travel_mode\";s:7:\"driving\";s:24:\"so_field_container_state\";s:6:\"closed\";s:14:\"avoid_highways\";b:0;s:11:\"avoid_tolls\";b:0;s:17:\"preserve_viewport\";b:0;s:9:\"waypoints\";a:0:{}s:18:\"optimize_waypoints\";b:0;}s:12:\"_sow_form_id\";s:27:\"121805d30c09e1a3a2459336664\";s:19:\"_sow_form_timestamp\";s:13:\"1563476149136\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Widget_GoogleMap_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"fd4f11f4-d1e0-482f-b4f1-03079968ca80\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:22:\"so_sidebar_emulator_id\";s:22:\"sow-google-map-8810000\";s:11:\"option_name\";s:21:\"widget_sow-google-map\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(198,93,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:10:{s:10:\"map_center\";a:1:{s:4:\"name\";s:29:\"1403 Dove st. Monroe NC 28112\";}s:8:\"settings\";a:13:{s:8:\"map_type\";s:6:\"static\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"480\";s:15:\"destination_url\";s:8:\"post: 88\";s:4:\"zoom\";d:12;s:11:\"mobile_zoom\";d:12;s:16:\"gesture_handling\";s:6:\"greedy\";s:14:\"fallback_image\";i:0;s:19:\"fallback_image_size\";s:4:\"full\";s:24:\"so_field_container_state\";s:4:\"open\";s:10:\"new_window\";b:0;s:18:\"disable_default_ui\";b:0;s:13:\"keep_centered\";b:0;}s:7:\"markers\";a:7:{s:16:\"marker_at_center\";b:1;s:11:\"marker_icon\";i:0;s:12:\"info_display\";s:5:\"click\";s:13:\"info_multiple\";b:1;s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"markers_draggable\";b:0;s:16:\"marker_positions\";a:0:{}}s:6:\"styles\";a:5:{s:12:\"style_method\";s:6:\"normal\";s:15:\"styled_map_name\";s:0:\"\";s:19:\"raw_json_map_styles\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"custom_map_styles\";a:0:{}}s:10:\"directions\";a:9:{s:6:\"origin\";s:0:\"\";s:11:\"destination\";s:0:\"\";s:11:\"travel_mode\";s:7:\"driving\";s:24:\"so_field_container_state\";s:6:\"closed\";s:14:\"avoid_highways\";b:0;s:11:\"avoid_tolls\";b:0;s:17:\"preserve_viewport\";b:0;s:9:\"waypoints\";a:0:{}s:18:\"optimize_waypoints\";b:0;}s:12:\"_sow_form_id\";s:27:\"121805d30c09e1a3a2459336664\";s:19:\"_sow_form_timestamp\";s:13:\"1563497457161\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Widget_GoogleMap_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"fd4f11f4-d1e0-482f-b4f1-03079968ca80\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:22:\"so_sidebar_emulator_id\";s:22:\"sow-google-map-9310000\";s:11:\"option_name\";s:21:\"widget_sow-google-map\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(199,94,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:10:{s:10:\"map_center\";a:1:{s:4:\"name\";s:29:\"1403 Dove st. Monroe NC 28112\";}s:8:\"settings\";a:13:{s:8:\"map_type\";s:6:\"static\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"480\";s:15:\"destination_url\";s:8:\"post: 88\";s:4:\"zoom\";d:12;s:11:\"mobile_zoom\";d:12;s:16:\"gesture_handling\";s:6:\"greedy\";s:14:\"fallback_image\";i:0;s:19:\"fallback_image_size\";s:4:\"full\";s:24:\"so_field_container_state\";s:4:\"open\";s:10:\"new_window\";b:0;s:18:\"disable_default_ui\";b:0;s:13:\"keep_centered\";b:0;}s:7:\"markers\";a:7:{s:16:\"marker_at_center\";b:1;s:11:\"marker_icon\";i:0;s:12:\"info_display\";s:5:\"click\";s:13:\"info_multiple\";b:1;s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"markers_draggable\";b:0;s:16:\"marker_positions\";a:0:{}}s:6:\"styles\";a:5:{s:12:\"style_method\";s:6:\"normal\";s:15:\"styled_map_name\";s:0:\"\";s:19:\"raw_json_map_styles\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";s:17:\"custom_map_styles\";a:0:{}}s:10:\"directions\";a:9:{s:6:\"origin\";s:0:\"\";s:11:\"destination\";s:0:\"\";s:11:\"travel_mode\";s:7:\"driving\";s:24:\"so_field_container_state\";s:6:\"closed\";s:14:\"avoid_highways\";b:0;s:11:\"avoid_tolls\";b:0;s:17:\"preserve_viewport\";b:0;s:9:\"waypoints\";a:0:{}s:18:\"optimize_waypoints\";b:0;}s:12:\"_sow_form_id\";s:27:\"121805d30c09e1a3a2459336664\";s:19:\"_sow_form_timestamp\";s:13:\"1563497457161\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Widget_GoogleMap_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"fd4f11f4-d1e0-482f-b4f1-03079968ca80\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:22:\"so_sidebar_emulator_id\";s:22:\"sow-google-map-8810000\";s:11:\"option_name\";s:21:\"widget_sow-google-map\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(200,3,'_edit_last','1'),(201,3,'_edit_lock','1563537294:1'),(204,98,'_edit_last','1'),(205,98,'_edit_lock','1563537276:1'),(208,100,'_edit_last','1'),(209,100,'_edit_lock','1563537310:1'),(212,102,'_edit_last','1'),(213,102,'_edit_lock','1563537235:1'),(242,41,'_wp_page_template',''),(243,106,'_edit_lock','1563537608:1'),(244,106,'_wp_trash_meta_status','publish'),(245,106,'_wp_trash_meta_time','1563537614'),(246,115,'_edit_last','1'),(247,115,'_wp_page_template','template-archive.php'),(248,115,'_edit_lock','1563538486:1'),(249,115,'_wp_trash_meta_status','publish'),(250,115,'_wp_trash_meta_time','1563538678'),(251,115,'_wp_desired_post_slug','115-2'),(252,88,'_wp_trash_meta_status','publish'),(253,88,'_wp_trash_meta_time','1563538678'),(254,88,'_wp_desired_post_slug','draft'),(255,118,'_edit_last','1'),(256,118,'_edit_lock','1563542349:1'),(257,118,'_wp_page_template',''),(258,119,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:9:{s:5:\"title\";s:0:\"\";s:8:\"template\";s:16:\"content-page.php\";s:5:\"posts\";s:144:\"post_type=post&post__in=3&date_type=specific&date_query={\"after\":\"\",\"before\":\"\"}&date_query_relative={\"from\":[],\"to\":[]}&orderby=date&order=DESC\";s:12:\"_sow_form_id\";s:27:\"104765d31b539ab464260292858\";s:19:\"_sow_form_timestamp\";s:13:\"1563538771168\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f7eb6d6a-579c-45da-a4d8-57e3f5ad26fc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:4:\"more\";b:0;s:22:\"so_sidebar_emulator_id\";s:35:\"siteorigin-panels-postloop-11910000\";s:11:\"option_name\";s:33:\"widget_siteorigin-panels-postloop\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(260,120,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:9:{s:5:\"title\";s:0:\"\";s:8:\"template\";s:16:\"content-page.php\";s:5:\"posts\";s:144:\"post_type=post&post__in=3&date_type=specific&date_query={\"after\":\"\",\"before\":\"\"}&date_query_relative={\"from\":[],\"to\":[]}&orderby=date&order=DESC\";s:12:\"_sow_form_id\";s:27:\"104765d31b539ab464260292858\";s:19:\"_sow_form_timestamp\";s:13:\"1563538771168\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f7eb6d6a-579c-45da-a4d8-57e3f5ad26fc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:4:\"more\";b:0;s:22:\"so_sidebar_emulator_id\";s:35:\"siteorigin-panels-postloop-11810000\";s:11:\"option_name\";s:33:\"widget_siteorigin-panels-postloop\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(261,121,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:9:{s:5:\"title\";s:0:\"\";s:8:\"template\";s:11:\"content.php\";s:5:\"posts\";s:190:\"post_type=post&post__in=3&date_type=specific&date_query={\"after\":\"\",\"before\":\"\"}&date_query_relative={\"from\":{\"value\":0,\"unit\":\"days\"},\"to\":{\"value\":0,\"unit\":\"days\"}}&orderby=date&order=DESC\";s:12:\"_sow_form_id\";s:27:\"104765d31b539ab464260292858\";s:19:\"_sow_form_timestamp\";s:13:\"1563538821450\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f7eb6d6a-579c-45da-a4d8-57e3f5ad26fc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:4:\"more\";b:0;s:22:\"so_sidebar_emulator_id\";s:35:\"siteorigin-panels-postloop-12110000\";s:11:\"option_name\";s:33:\"widget_siteorigin-panels-postloop\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(262,122,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:9:{s:5:\"title\";s:0:\"\";s:8:\"template\";s:11:\"content.php\";s:5:\"posts\";s:190:\"post_type=post&post__in=3&date_type=specific&date_query={\"after\":\"\",\"before\":\"\"}&date_query_relative={\"from\":{\"value\":0,\"unit\":\"days\"},\"to\":{\"value\":0,\"unit\":\"days\"}}&orderby=date&order=DESC\";s:12:\"_sow_form_id\";s:27:\"104765d31b539ab464260292858\";s:19:\"_sow_form_timestamp\";s:13:\"1563538821450\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f7eb6d6a-579c-45da-a4d8-57e3f5ad26fc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:4:\"more\";b:0;s:22:\"so_sidebar_emulator_id\";s:35:\"siteorigin-panels-postloop-11810000\";s:11:\"option_name\";s:33:\"widget_siteorigin-panels-postloop\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(263,123,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:9:{s:5:\"title\";s:0:\"\";s:8:\"template\";s:18:\"content-search.php\";s:4:\"more\";b:1;s:5:\"posts\";s:190:\"post_type=post&post__in=3&date_type=specific&date_query={\"after\":\"\",\"before\":\"\"}&date_query_relative={\"from\":{\"value\":0,\"unit\":\"days\"},\"to\":{\"value\":0,\"unit\":\"days\"}}&orderby=date&order=DESC\";s:12:\"_sow_form_id\";s:27:\"104765d31b539ab464260292858\";s:19:\"_sow_form_timestamp\";s:13:\"1563538857851\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f7eb6d6a-579c-45da-a4d8-57e3f5ad26fc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:22:\"so_sidebar_emulator_id\";s:35:\"siteorigin-panels-postloop-12310000\";s:11:\"option_name\";s:33:\"widget_siteorigin-panels-postloop\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(264,124,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:9:{s:5:\"title\";s:0:\"\";s:8:\"template\";s:18:\"content-search.php\";s:4:\"more\";b:1;s:5:\"posts\";s:190:\"post_type=post&post__in=3&date_type=specific&date_query={\"after\":\"\",\"before\":\"\"}&date_query_relative={\"from\":{\"value\":0,\"unit\":\"days\"},\"to\":{\"value\":0,\"unit\":\"days\"}}&orderby=date&order=DESC\";s:12:\"_sow_form_id\";s:27:\"104765d31b539ab464260292858\";s:19:\"_sow_form_timestamp\";s:13:\"1563538857851\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f7eb6d6a-579c-45da-a4d8-57e3f5ad26fc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:22:\"so_sidebar_emulator_id\";s:35:\"siteorigin-panels-postloop-11810000\";s:11:\"option_name\";s:33:\"widget_siteorigin-panels-postloop\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(265,125,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:9:{s:5:\"title\";s:0:\"\";s:8:\"template\";s:18:\"content-single.php\";s:4:\"more\";b:1;s:5:\"posts\";s:190:\"post_type=_all&post__in=3&date_type=specific&date_query={\"after\":\"\",\"before\":\"\"}&date_query_relative={\"from\":{\"value\":0,\"unit\":\"days\"},\"to\":{\"value\":0,\"unit\":\"days\"}}&orderby=date&order=DESC\";s:12:\"_sow_form_id\";s:27:\"104765d31b539ab464260292858\";s:19:\"_sow_form_timestamp\";s:13:\"1563538930750\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f7eb6d6a-579c-45da-a4d8-57e3f5ad26fc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:22:\"so_sidebar_emulator_id\";s:35:\"siteorigin-panels-postloop-12510000\";s:11:\"option_name\";s:33:\"widget_siteorigin-panels-postloop\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(266,126,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:9:{s:5:\"title\";s:0:\"\";s:8:\"template\";s:18:\"content-single.php\";s:4:\"more\";b:1;s:5:\"posts\";s:190:\"post_type=_all&post__in=3&date_type=specific&date_query={\"after\":\"\",\"before\":\"\"}&date_query_relative={\"from\":{\"value\":0,\"unit\":\"days\"},\"to\":{\"value\":0,\"unit\":\"days\"}}&orderby=date&order=DESC\";s:12:\"_sow_form_id\";s:27:\"104765d31b539ab464260292858\";s:19:\"_sow_form_timestamp\";s:13:\"1563538930750\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f7eb6d6a-579c-45da-a4d8-57e3f5ad26fc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:22:\"so_sidebar_emulator_id\";s:35:\"siteorigin-panels-postloop-11810000\";s:11:\"option_name\";s:33:\"widget_siteorigin-panels-postloop\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(267,130,'_edit_lock','1563541236:1'),(268,130,'_customize_restore_dismissed','1'),(269,135,'_menu_item_type','taxonomy'),(270,135,'_menu_item_menu_item_parent','0'),(271,135,'_menu_item_object_id','4'),(272,135,'_menu_item_object','category'),(273,135,'_menu_item_target',''),(274,135,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(275,135,'_menu_item_xfn',''),(276,135,'_menu_item_url',''),(277,134,'_wp_trash_meta_status','publish'),(278,134,'_wp_trash_meta_time','1563543392'),(279,136,'_wp_trash_meta_status','publish'),(280,136,'_wp_trash_meta_time','1563545333'),(281,137,'_edit_lock','1563545435:1'),(282,137,'_wp_trash_meta_status','publish'),(283,137,'_wp_trash_meta_time','1563545443'),(284,138,'_edit_lock','1563545660:1'),(285,139,'_wp_attached_file','2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-1.jpg'),(286,139,'_wp_attachment_context','custom-logo'),(287,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:39;s:4:\"file\";s:71:\"2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-1-150x39.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"kyma_recent_widget_thumb\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-1-90x39.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(288,140,'_wp_attached_file','2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-2.jpg'),(289,140,'_wp_attachment_context','custom-header'),(290,140,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1168;s:6:\"height\";i:252;s:4:\"file\";s:71:\"2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:71:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-300x65.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:71:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-768x166.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:72:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-1024x221.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"kyma_home_post_image\";a:4:{s:4:\"file\";s:71:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-360x231.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"kyma_related_post_thumb\";a:4:{s:4:\"file\";s:71:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-265x170.jpg\";s:5:\"width\";i:265;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"kyma_home_post_thumb\";a:4:{s:4:\"file\";s:71:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-334x215.jpg\";s:5:\"width\";i:334;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"kyma_home_post_full_thumb\";a:4:{s:4:\"file\";s:71:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-456x252.jpg\";s:5:\"width\";i:456;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"kyma_single_post_image\";a:4:{s:4:\"file\";s:71:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-835x252.jpg\";s:5:\"width\";i:835;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"kyma_single_post_full\";a:4:{s:4:\"file\";s:72:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-1140x252.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"kyma_recent_widget_thumb\";a:4:{s:4:\"file\";s:69:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"kyma_home_port_thumb\";a:4:{s:4:\"file\";s:71:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-360x252.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:71:\"cropped-43590366_2230157113888557_1421806360214896640_o-1-2-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:24;}'),(291,140,'_wp_attachment_custom_header_last_used_frontech','1563545675'),(292,140,'_wp_attachment_is_custom_header','frontech'),(293,138,'_wp_trash_meta_status','publish'),(294,138,'_wp_trash_meta_time','1563545675'),(295,141,'_edit_lock','1563546238:1'),(296,141,'_wp_trash_meta_status','publish'),(297,141,'_wp_trash_meta_time','1563546273'),(298,142,'_edit_lock','1563546298:1'),(299,142,'_wp_trash_meta_status','publish'),(300,142,'_wp_trash_meta_time','1563546322'),(301,143,'_edit_lock','1563546681:1'),(302,143,'_wp_trash_meta_status','publish'),(303,143,'_wp_trash_meta_time','1563546713'),(304,144,'_edit_lock','1563547807:1'),(305,144,'_wp_trash_meta_status','publish'),(306,144,'_wp_trash_meta_time','1563547824'),(307,145,'_edit_last','1'),(308,145,'_edit_lock','1563548216:1'),(309,145,'_thumbnail_id','24'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=149 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,'2018-02-06 17:51:13','2018-02-06 17:51:13','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-02-06 17:51:13','2018-02-06 17:51:13','',0,'http://006aa70.netsolhost.com/wordpress1/?p=1',0,'post','',1),(2,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','<!-- wp:table {\"align\":\"left\",\"className\":\"is-style-regular\"} -->\n<table class=\"wp-block-table alignleft is-style-regular\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:table -->','Contact Us','','draft','closed','closed','','contact-us','','','2019-07-18 18:38:24','2019-07-18 18:38:24','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=2',0,'page','',0),(3,1,'2019-07-19 11:38:53','2019-07-19 11:38:53','Origination in 1985, Union Emergency Medical Services is managed by Atrium Health, one of the largest and most progressive healthcare systmes in the country. We are the primary 911 service provider for the nearly 245,000 citizens of union County, and average over 21,000 requests for service per year. Each ambulance is staffed with at least one Paramedic and one EMT.\n\nOur goal is to arrive on the scene of emergency calls in less that 15 anywhere within the 640 square miles of Union County. We meet or exceed this goal 90 percent of the time with an average response time of 7.7 minutes. Our more that 175 teammates work together to make this happen.\n\nWe also provide non-emergency transport, medical standby and large events, Tactical Paramedics to Union County Sheriff\'s Department SWAT and community education to schools and civic groups.','About Us','','publish','open','open','','about-us','','','2019-07-19 11:57:15','2019-07-19 11:57:15','',0,'http://006aa70.netsolhost.com/wordpress1/?p=3',0,'post','',0),(4,1,'2019-07-18 13:57:01','0000-00-00 00:00:00','','Espresso','','auto-draft','open','closed','','','','','2019-07-18 13:53:57','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/espresso.jpg',0,'attachment','image/jpeg',0),(5,1,'2019-07-18 13:57:01','0000-00-00 00:00:00','','Sandwich','','auto-draft','open','closed','','','','','2019-07-18 13:53:59','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/sandwich.jpg',0,'attachment','image/jpeg',0),(6,1,'2019-07-18 13:57:01','0000-00-00 00:00:00','','Coffee','','auto-draft','open','closed','','','','','2019-07-18 13:54:01','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/coffee.jpg',0,'attachment','image/jpeg',0),(7,1,'2019-07-18 13:57:01','0000-00-00 00:00:00','Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.','Home','','auto-draft','closed','closed','','','','','2019-07-18 13:54:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=7',0,'page','',0),(8,1,'2019-07-18 13:57:01','0000-00-00 00:00:00','You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.','About','','auto-draft','closed','closed','','','','','2019-07-18 13:54:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=8',0,'page','',0),(9,1,'2019-07-18 13:57:01','0000-00-00 00:00:00','This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.','Contact','','auto-draft','closed','closed','','','','','2019-07-18 13:54:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=9',0,'page','',0),(10,1,'2019-07-18 13:57:01','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2019-07-18 13:54:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=10',0,'page','',0),(11,1,'2019-07-18 13:57:01','0000-00-00 00:00:00','This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.','A homepage section','','auto-draft','closed','closed','','','','','2019-07-18 13:54:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=11',0,'page','',0),(12,1,'2019-07-18 13:57:01','0000-00-00 00:00:00','{\n \"widget_text[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6IkZpbmQgVXMiO3M6NDoidGV4dCI7czoxNjg6IjxzdHJvbmc+QWRkcmVzczwvc3Ryb25nPgoxMjMgTWFpbiBTdHJlZXQKTmV3IFlvcmssIE5ZIDEwMDAxCgo8c3Ryb25nPkhvdXJzPC9zdHJvbmc+Ck1vbmRheSZtZGFzaDtGcmlkYXk6IDk6MDBBTSZuZGFzaDs1OjAwUE0KU2F0dXJkYXkgJmFtcDsgU3VuZGF5OiAxMTowMEFNJm5kYXNoOzM6MDBQTSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"Find Us\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"064f1a434be345a38cb7733e7f6d0090\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"widget_search[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"8f48a3be8ff814e36ec0b785b94f9788\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"widget_text[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czo4NToiVGhpcyBtYXkgYmUgYSBnb29kIHBsYWNlIHRvIGludHJvZHVjZSB5b3Vyc2VsZiBhbmQgeW91ciBzaXRlIG9yIGluY2x1ZGUgc29tZSBjcmVkaXRzLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ba2a3b878fd3bb12b972dda9695e3f01\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"sidebars_widgets[sidebar-1]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-2\",\n \"search-3\",\n \"text-3\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"widget_text[4]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6IkZpbmQgVXMiO3M6NDoidGV4dCI7czoxNjg6IjxzdHJvbmc+QWRkcmVzczwvc3Ryb25nPgoxMjMgTWFpbiBTdHJlZXQKTmV3IFlvcmssIE5ZIDEwMDAxCgo8c3Ryb25nPkhvdXJzPC9zdHJvbmc+Ck1vbmRheSZtZGFzaDtGcmlkYXk6IDk6MDBBTSZuZGFzaDs1OjAwUE0KU2F0dXJkYXkgJmFtcDsgU3VuZGF5OiAxMTowMEFNJm5kYXNoOzM6MDBQTSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"Find Us\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"064f1a434be345a38cb7733e7f6d0090\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"sidebars_widgets[sidebar-2]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"widget_text[5]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czo4NToiVGhpcyBtYXkgYmUgYSBnb29kIHBsYWNlIHRvIGludHJvZHVjZSB5b3Vyc2VsZiBhbmQgeW91ciBzaXRlIG9yIGluY2x1ZGUgc29tZSBjcmVkaXRzLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ba2a3b878fd3bb12b972dda9695e3f01\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"widget_search[4]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"8f48a3be8ff814e36ec0b785b94f9788\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"sidebars_widgets[sidebar-3]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-5\",\n \"search-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10,\n 11\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Top Menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://006aa70.netsolhost.com/wordpress1/\",\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 8,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"About\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu_item[-3]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 10,\n \"position\": 2,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu_item[-4]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 9,\n \"position\": 3,\n \"nav_menu_term_id\": -1,\n \"title\": \"Contact\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"twentyseventeen::nav_menu_locations[top]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Social Links Menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu_item[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Yelp\",\n \"url\": \"https://www.yelp.com\",\n \"position\": 0,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu_item[-6]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Facebook\",\n \"url\": \"https://www.facebook.com/wordpress\",\n \"position\": 1,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu_item[-7]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Twitter\",\n \"url\": \"https://twitter.com/wordpress\",\n \"position\": 2,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu_item[-8]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Instagram\",\n \"url\": \"https://www.instagram.com/explore/tags/wordcamp/\",\n \"position\": 3,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"nav_menu_item[-9]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Email\",\n \"url\": \"mailto:wordpress@example.com\",\n \"position\": 4,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"twentyseventeen::nav_menu_locations[social]\": {\n \"starter_content\": true,\n \"value\": -5,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 7,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 10,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"twentyseventeen::panel_1\": {\n \"starter_content\": true,\n \"value\": 11,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"twentyseventeen::panel_2\": {\n \"starter_content\": true,\n \"value\": 8,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"twentyseventeen::panel_3\": {\n \"starter_content\": true,\n \"value\": 10,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"twentyseventeen::panel_4\": {\n \"starter_content\": true,\n \"value\": 9,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:54:03\"\n },\n \"old_sidebars_widgets_data\": {\n \"value\": {\n \"wp_inactive_widgets\": [],\n \"sidebar-1\": [\n \"text-2\",\n \"search-3\",\n \"text-3\"\n ],\n \"sidebar-2\": [\n \"text-4\"\n ],\n \"sidebar-3\": [\n \"text-5\",\n \"search-4\"\n ]\n },\n \"type\": \"global_variable\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:01\"\n }\n}','','','auto-draft','closed','closed','','21c386f5-ce4e-4bc1-881d-3c745e70b204','','','2019-07-18 13:57:01','2019-07-18 13:57:01','',0,'http://006aa70.netsolhost.com/wordpress1/?p=12',0,'customize_changeset','',0),(13,1,'2019-07-18 14:06:36','0000-00-00 00:00:00','','Espresso','','auto-draft','open','closed','','','','','2019-07-18 13:57:49','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/espresso-1.jpg',0,'attachment','image/jpeg',0),(14,1,'2019-07-18 14:06:36','0000-00-00 00:00:00','','Sandwich','','auto-draft','open','closed','','','','','2019-07-18 13:57:50','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/sandwich-1.jpg',0,'attachment','image/jpeg',0),(15,1,'2019-07-18 14:06:36','0000-00-00 00:00:00','','Coffee','','auto-draft','open','closed','','','','','2019-07-18 13:57:52','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/coffee-1.jpg',0,'attachment','image/jpeg',0),(16,1,'2019-07-18 14:06:36','0000-00-00 00:00:00','Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.','Home','','auto-draft','closed','closed','','','','','2019-07-18 13:57:54','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=16',0,'page','',0),(17,1,'2019-07-18 14:06:36','0000-00-00 00:00:00','You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.','About','','auto-draft','closed','closed','','','','','2019-07-18 13:57:54','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=17',0,'page','',0),(18,1,'2019-07-18 14:06:36','0000-00-00 00:00:00','This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.','Contact','','auto-draft','closed','closed','','','','','2019-07-18 13:57:54','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=18',0,'page','',0),(19,1,'2019-07-18 14:06:36','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2019-07-18 13:57:54','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=19',0,'page','',0),(20,1,'2019-07-18 14:06:36','0000-00-00 00:00:00','This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.','A homepage section','','auto-draft','closed','closed','','','','','2019-07-18 13:57:54','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=20',0,'page','',0),(21,1,'2019-07-18 14:06:36','0000-00-00 00:00:00','{\n \"widget_text[6]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6IkZpbmQgVXMiO3M6NDoidGV4dCI7czoxNjg6IjxzdHJvbmc+QWRkcmVzczwvc3Ryb25nPgoxMjMgTWFpbiBTdHJlZXQKTmV3IFlvcmssIE5ZIDEwMDAxCgo8c3Ryb25nPkhvdXJzPC9zdHJvbmc+Ck1vbmRheSZtZGFzaDtGcmlkYXk6IDk6MDBBTSZuZGFzaDs1OjAwUE0KU2F0dXJkYXkgJmFtcDsgU3VuZGF5OiAxMTowMEFNJm5kYXNoOzM6MDBQTSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"Find Us\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"064f1a434be345a38cb7733e7f6d0090\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"widget_search[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"8f48a3be8ff814e36ec0b785b94f9788\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"widget_text[7]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czo4NToiVGhpcyBtYXkgYmUgYSBnb29kIHBsYWNlIHRvIGludHJvZHVjZSB5b3Vyc2VsZiBhbmQgeW91ciBzaXRlIG9yIGluY2x1ZGUgc29tZSBjcmVkaXRzLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ba2a3b878fd3bb12b972dda9695e3f01\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"sidebars_widgets[sidebar-1]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-6\",\n \"search-3\",\n \"text-7\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"widget_text[8]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6IkZpbmQgVXMiO3M6NDoidGV4dCI7czoxNjg6IjxzdHJvbmc+QWRkcmVzczwvc3Ryb25nPgoxMjMgTWFpbiBTdHJlZXQKTmV3IFlvcmssIE5ZIDEwMDAxCgo8c3Ryb25nPkhvdXJzPC9zdHJvbmc+Ck1vbmRheSZtZGFzaDtGcmlkYXk6IDk6MDBBTSZuZGFzaDs1OjAwUE0KU2F0dXJkYXkgJmFtcDsgU3VuZGF5OiAxMTowMEFNJm5kYXNoOzM6MDBQTSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"Find Us\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"064f1a434be345a38cb7733e7f6d0090\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"sidebars_widgets[sidebar-2]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-8\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"widget_text[9]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czo4NToiVGhpcyBtYXkgYmUgYSBnb29kIHBsYWNlIHRvIGludHJvZHVjZSB5b3Vyc2VsZiBhbmQgeW91ciBzaXRlIG9yIGluY2x1ZGUgc29tZSBjcmVkaXRzLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ba2a3b878fd3bb12b972dda9695e3f01\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"widget_search[4]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"8f48a3be8ff814e36ec0b785b94f9788\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"sidebars_widgets[sidebar-3]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-9\",\n \"search-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 13,\n 14,\n 15,\n 16,\n 17,\n 18,\n 19,\n 20\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Top Menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://006aa70.netsolhost.com/wordpress1/\",\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 17,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"About\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu_item[-3]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 19,\n \"position\": 2,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu_item[-4]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 18,\n \"position\": 3,\n \"nav_menu_term_id\": -1,\n \"title\": \"Contact\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"twentyseventeen::nav_menu_locations[top]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Social Links Menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu_item[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Yelp\",\n \"url\": \"https://www.yelp.com\",\n \"position\": 0,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu_item[-6]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Facebook\",\n \"url\": \"https://www.facebook.com/wordpress\",\n \"position\": 1,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu_item[-7]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Twitter\",\n \"url\": \"https://twitter.com/wordpress\",\n \"position\": 2,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu_item[-8]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Instagram\",\n \"url\": \"https://www.instagram.com/explore/tags/wordcamp/\",\n \"position\": 3,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"nav_menu_item[-9]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Email\",\n \"url\": \"mailto:wordpress@example.com\",\n \"position\": 4,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"twentyseventeen::nav_menu_locations[social]\": {\n \"starter_content\": true,\n \"value\": -5,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 16,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 19,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"twentyseventeen::panel_1\": {\n \"starter_content\": true,\n \"value\": 20,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"twentyseventeen::panel_2\": {\n \"starter_content\": true,\n \"value\": 17,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"twentyseventeen::panel_3\": {\n \"starter_content\": true,\n \"value\": 19,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"twentyseventeen::panel_4\": {\n \"starter_content\": true,\n \"value\": 18,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:57:54\"\n },\n \"old_sidebars_widgets_data\": {\n \"value\": {\n \"wp_inactive_widgets\": [],\n \"sidebar-1\": [\n \"text-6\",\n \"search-3\",\n \"text-7\"\n ],\n \"sidebar-2\": [\n \"text-8\"\n ],\n \"sidebar-3\": [\n \"text-9\",\n \"search-4\"\n ]\n },\n \"type\": \"global_variable\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 13:58:53\"\n },\n \"blogname\": {\n \"value\": \"Union Emergency Medical Services\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:03:36\"\n },\n \"blogdescription\": {\n \"value\": \"Paving The Way Forward For Health, Hope, and Healing\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:03:36\"\n },\n \"wishlist::theme_options[site_identity]\": {\n \"value\": \"title-text\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:03:36\"\n },\n \"wishlist::custom_logo\": {\n \"value\": 23,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:04:36\"\n },\n \"wishlist::background_image\": {\n \"value\": \"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43590366_2230157113888557_1421806360214896640_o-1.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:05:36\"\n },\n \"wishlist::background_position_x\": {\n \"value\": \"center\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:05:36\"\n },\n \"wishlist::background_position_y\": {\n \"value\": \"top\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:05:36\"\n },\n \"wishlist::background_size\": {\n \"value\": \"contain\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:06:36\"\n },\n \"wishlist::background_repeat\": {\n \"value\": \"no-repeat\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:06:36\"\n },\n \"wishlist::background_attachment\": {\n \"value\": \"scroll\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:06:36\"\n }\n}','','','auto-draft','closed','closed','','f86798a5-a480-4a42-a4a9-aff6dea5924e','','','2019-07-18 14:06:36','2019-07-18 14:06:36','',0,'http://006aa70.netsolhost.com/wordpress1/?p=21',0,'customize_changeset','',0),(22,1,'2019-07-18 14:03:57','2019-07-18 14:03:57','','Ambulances','','inherit','open','closed','','ambulances','','','2019-07-18 14:03:57','2019-07-18 14:03:57','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/Ambulances.jpg',0,'attachment','image/jpeg',0),(23,1,'2019-07-18 14:04:17','2019-07-18 14:04:17','http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/cropped-Ambulances.jpg','cropped-Ambulances.jpg','','inherit','open','closed','','cropped-ambulances-jpg','','','2019-07-18 14:04:17','2019-07-18 14:04:17','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/cropped-Ambulances.jpg',0,'attachment','image/jpeg',0),(24,1,'2019-07-18 14:04:59','2019-07-18 14:04:59','','43590366_2230157113888557_1421806360214896640_o (1)','','inherit','open','closed','','43590366_2230157113888557_1421806360214896640_o-1','','','2019-07-18 14:04:59','2019-07-18 14:04:59','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43590366_2230157113888557_1421806360214896640_o-1.jpg',0,'attachment','image/jpeg',0),(25,1,'2019-07-18 14:07:03','0000-00-00 00:00:00','','Espresso','','auto-draft','open','closed','','','','','2019-07-18 14:06:57','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/espresso-2.jpg',0,'attachment','image/jpeg',0),(26,1,'2019-07-18 14:07:03','0000-00-00 00:00:00','','Sandwich','','auto-draft','open','closed','','','','','2019-07-18 14:06:59','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/sandwich-2.jpg',0,'attachment','image/jpeg',0),(27,1,'2019-07-18 14:07:03','0000-00-00 00:00:00','','Coffee','','auto-draft','open','closed','','','','','2019-07-18 14:07:00','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/coffee-2.jpg',0,'attachment','image/jpeg',0),(28,1,'2019-07-18 14:07:03','0000-00-00 00:00:00','Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.','Home','','auto-draft','closed','closed','','','','','2019-07-18 14:07:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=28',0,'page','',0),(29,1,'2019-07-18 14:07:03','0000-00-00 00:00:00','You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.','About','','auto-draft','closed','closed','','','','','2019-07-18 14:07:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=29',0,'page','',0),(30,1,'2019-07-18 14:07:03','0000-00-00 00:00:00','This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.','Contact','','auto-draft','closed','closed','','','','','2019-07-18 14:07:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=30',0,'page','',0),(31,1,'2019-07-18 14:07:03','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2019-07-18 14:07:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=31',0,'page','',0),(32,1,'2019-07-18 14:07:03','0000-00-00 00:00:00','This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.','A homepage section','','auto-draft','closed','closed','','','','','2019-07-18 14:07:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=32',0,'page','',0),(33,1,'2019-07-18 14:07:03','0000-00-00 00:00:00','{\n \"widget_text[6]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6IkZpbmQgVXMiO3M6NDoidGV4dCI7czoxNjg6IjxzdHJvbmc+QWRkcmVzczwvc3Ryb25nPgoxMjMgTWFpbiBTdHJlZXQKTmV3IFlvcmssIE5ZIDEwMDAxCgo8c3Ryb25nPkhvdXJzPC9zdHJvbmc+Ck1vbmRheSZtZGFzaDtGcmlkYXk6IDk6MDBBTSZuZGFzaDs1OjAwUE0KU2F0dXJkYXkgJmFtcDsgU3VuZGF5OiAxMTowMEFNJm5kYXNoOzM6MDBQTSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"Find Us\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"064f1a434be345a38cb7733e7f6d0090\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"widget_search[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"8f48a3be8ff814e36ec0b785b94f9788\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"widget_text[7]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czo4NToiVGhpcyBtYXkgYmUgYSBnb29kIHBsYWNlIHRvIGludHJvZHVjZSB5b3Vyc2VsZiBhbmQgeW91ciBzaXRlIG9yIGluY2x1ZGUgc29tZSBjcmVkaXRzLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ba2a3b878fd3bb12b972dda9695e3f01\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"sidebars_widgets[sidebar-1]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-6\",\n \"search-3\",\n \"text-7\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"widget_text[8]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6IkZpbmQgVXMiO3M6NDoidGV4dCI7czoxNjg6IjxzdHJvbmc+QWRkcmVzczwvc3Ryb25nPgoxMjMgTWFpbiBTdHJlZXQKTmV3IFlvcmssIE5ZIDEwMDAxCgo8c3Ryb25nPkhvdXJzPC9zdHJvbmc+Ck1vbmRheSZtZGFzaDtGcmlkYXk6IDk6MDBBTSZuZGFzaDs1OjAwUE0KU2F0dXJkYXkgJmFtcDsgU3VuZGF5OiAxMTowMEFNJm5kYXNoOzM6MDBQTSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"Find Us\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"064f1a434be345a38cb7733e7f6d0090\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"sidebars_widgets[sidebar-2]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-8\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"widget_text[9]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czo4NToiVGhpcyBtYXkgYmUgYSBnb29kIHBsYWNlIHRvIGludHJvZHVjZSB5b3Vyc2VsZiBhbmQgeW91ciBzaXRlIG9yIGluY2x1ZGUgc29tZSBjcmVkaXRzLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ba2a3b878fd3bb12b972dda9695e3f01\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"widget_search[4]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"8f48a3be8ff814e36ec0b785b94f9788\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"sidebars_widgets[sidebar-3]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-9\",\n \"search-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 25,\n 26,\n 27,\n 28,\n 29,\n 30,\n 31,\n 32\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Top Menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://006aa70.netsolhost.com/wordpress1/\",\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 29,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"About\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu_item[-3]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 31,\n \"position\": 2,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu_item[-4]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 30,\n \"position\": 3,\n \"nav_menu_term_id\": -1,\n \"title\": \"Contact\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"twentyseventeen::nav_menu_locations[top]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Social Links Menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu_item[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Yelp\",\n \"url\": \"https://www.yelp.com\",\n \"position\": 0,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu_item[-6]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Facebook\",\n \"url\": \"https://www.facebook.com/wordpress\",\n \"position\": 1,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu_item[-7]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Twitter\",\n \"url\": \"https://twitter.com/wordpress\",\n \"position\": 2,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu_item[-8]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Instagram\",\n \"url\": \"https://www.instagram.com/explore/tags/wordcamp/\",\n \"position\": 3,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"nav_menu_item[-9]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Email\",\n \"url\": \"mailto:wordpress@example.com\",\n \"position\": 4,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"twentyseventeen::nav_menu_locations[social]\": {\n \"starter_content\": true,\n \"value\": -5,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 28,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 31,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"twentyseventeen::panel_1\": {\n \"starter_content\": true,\n \"value\": 32,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"twentyseventeen::panel_2\": {\n \"starter_content\": true,\n \"value\": 29,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"twentyseventeen::panel_3\": {\n \"starter_content\": true,\n \"value\": 31,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n },\n \"twentyseventeen::panel_4\": {\n \"starter_content\": true,\n \"value\": 30,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:07:03\"\n }\n}','','','auto-draft','closed','closed','','ac91d3c9-c8a5-4768-be61-daa6e577a3d5','','','2019-07-18 14:07:03','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?p=33',0,'customize_changeset','',0),(34,1,'2019-07-18 14:13:25','2019-07-18 14:13:25','','32926050_2107185312852405_7600840221147529216_o','','inherit','open','closed','','32926050_2107185312852405_7600840221147529216_o','','','2019-07-18 14:13:25','2019-07-18 14:13:25','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/32926050_2107185312852405_7600840221147529216_o.jpg',0,'attachment','image/jpeg',0),(35,1,'2019-07-18 14:13:31','2019-07-18 14:13:31','','52835930_2307494119488189_6393935680619151360_n','','inherit','open','closed','','52835930_2307494119488189_6393935680619151360_n','','','2019-07-18 14:13:31','2019-07-18 14:13:31','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/52835930_2307494119488189_6393935680619151360_n.jpg',0,'attachment','image/jpeg',0),(36,1,'2019-07-18 14:13:38','2019-07-18 14:13:38','','43706451_2230157123888556_1022464308237303808_o','','inherit','open','closed','','43706451_2230157123888556_1022464308237303808_o','','','2019-07-18 14:13:38','2019-07-18 14:13:38','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43706451_2230157123888556_1022464308237303808_o.jpg',0,'attachment','image/jpeg',0),(37,1,'2019-07-18 14:13:47','2019-07-18 14:13:47','','About Us','Union EMS is the exclusive provider of emergency medical services in Union County NC','inherit','open','closed','','44745980_2230156997221902_3470045958388056064_o','','','2019-07-18 14:19:19','2019-07-18 14:19:19','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/44745980_2230156997221902_3470045958388056064_o.jpg',0,'attachment','image/jpeg',0),(38,1,'2019-07-18 14:13:54','2019-07-18 14:13:54','','44766271_2230156970555238_6911022749188096000_o','','inherit','open','closed','','44766271_2230156970555238_6911022749188096000_o','','','2019-07-18 14:13:54','2019-07-18 14:13:54','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/44766271_2230156970555238_6911022749188096000_o.jpg',0,'attachment','image/jpeg',0),(39,1,'2019-07-18 14:14:02','2019-07-18 14:14:02','','66222427_2266567216746338_6111108575189270528_o','','inherit','open','closed','','66222427_2266567216746338_6111108575189270528_o','','','2019-07-18 14:14:02','2019-07-18 14:14:02','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/66222427_2266567216746338_6111108575189270528_o.jpg',0,'attachment','image/jpeg',0),(40,1,'2019-07-18 14:14:07','2019-07-18 14:14:07','','66440388_2266567276746332_6715234388667269120_o','','inherit','open','closed','','66440388_2266567276746332_6715234388667269120_o','','','2019-07-18 14:14:07','2019-07-18 14:14:07','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/66440388_2266567276746332_6715234388667269120_o.jpg',0,'attachment','image/jpeg',0),(41,1,'2019-07-18 14:14:41','2019-07-18 14:14:41','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"About us\",\"panels_info\":{\"class\":\"WP_Widget_Calendar\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"271631a6-65f8-4d77-bca5-6b886408ae1c\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\",\"cell_alignment\":\"flex-start\"}}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','About Us','','publish','closed','closed','','about-us','','','2019-07-19 12:14:48','2019-07-19 12:14:48','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=41',0,'page','',0),(42,1,'2019-07-18 14:20:53','2019-07-18 14:20:53','<!-- wp:media-text {\"mediaId\":37,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/44745980_2230156997221902_3470045958388056064_o-1024x768.jpg\" alt=\"\" class=\"wp-image-37\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Union EMS is the exclusive provider of emergency medical services in Union County NC.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->','About Us','','inherit','closed','closed','','41-revision-v1','','','2019-07-18 14:20:53','2019-07-18 14:20:53','',41,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/41-revision-v1/',0,'revision','',0),(43,1,'2019-07-18 14:21:38','2019-07-18 14:21:38','<!-- wp:media-text {\"mediaId\":37,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/44745980_2230156997221902_3470045958388056064_o-1024x768.jpg\" alt=\"\" class=\"wp-image-37\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:list -->\n<ul><li>Union EMS is the exclusive provider of emergency medical services in Union County NC.</li></ul>\n<!-- /wp:list --></div></div>\n<!-- /wp:media-text -->','About Us','','inherit','closed','closed','','41-revision-v1','','','2019-07-18 14:21:38','2019-07-18 14:21:38','',41,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/41-revision-v1/',0,'revision','',0),(47,1,'2019-07-18 14:29:31','2019-07-18 14:29:31','{\n \"old_sidebars_widgets_data\": {\n \"value\": {\n \"wp_inactive_widgets\": [],\n \"sidebar-1\": [\n \"search-2\",\n \"recent-posts-2\",\n \"recent-comments-2\",\n \"archives-2\",\n \"categories-2\",\n \"meta-2\"\n ],\n \"sidebar-2\": [],\n \"sidebar-3\": []\n },\n \"type\": \"global_variable\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:29:31\"\n },\n \"wishlist::nav_menu_locations[menu-1]\": {\n \"value\": 2,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:29:31\"\n },\n \"wishlist::nav_menu_locations[social]\": {\n \"value\": 0,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:29:31\"\n }\n}','','','trash','closed','closed','','23e594d3-e46d-4968-8800-944a051156fa','','','2019-07-18 14:29:31','2019-07-18 14:29:31','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/23e594d3-e46d-4968-8800-944a051156fa/',0,'customize_changeset','',0),(48,1,'2019-07-18 14:36:09','2019-07-18 14:36:09','{\n \"blogname\": {\n \"value\": \"Union Emergency Medical Services\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:36:09\"\n },\n \"blogdescription\": {\n \"value\": \"Paving The Way Forward for Health, Hope and Healing\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:36:09\"\n },\n \"renden::header_textcolor\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:36:09\"\n }\n}','','','trash','closed','closed','','c691832f-4f4a-47c5-b272-0670331f3848','','','2019-07-18 14:36:09','2019-07-18 14:36:09','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/c691832f-4f4a-47c5-b272-0670331f3848/',0,'customize_changeset','',0),(49,1,'2019-07-18 14:36:45','2019-07-18 14:36:45','','cropped-43590366_2230157113888557_1421806360214896640_o-1.jpg','','inherit','open','closed','','cropped-43590366_2230157113888557_1421806360214896640_o-1-jpg','','','2019-07-18 14:36:45','2019-07-18 14:36:45','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1.jpg',0,'attachment','image/jpeg',0),(50,1,'2019-07-18 14:37:57','2019-07-18 14:37:57','{\n \"renden::header_image\": {\n \"value\": \"remove-header\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:37:15\"\n },\n \"renden::header_image_data\": {\n \"value\": \"remove-header\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:37:15\"\n },\n \"show_on_front\": {\n \"value\": \"posts\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:37:57\"\n },\n \"page_on_front\": {\n \"value\": \"0\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 14:37:57\"\n }\n}','','','trash','closed','closed','','82df76e8-a4e7-406c-9a64-57739216dfd1','','','2019-07-18 14:37:57','2019-07-18 14:37:57','',0,'http://006aa70.netsolhost.com/wordpress1/?p=50',0,'customize_changeset','',0),(51,1,'2019-07-18 15:03:23','0000-00-00 00:00:00','{\n \"renden::thinkup_redux_variables[thinkup_general_logoswitch]\": {\n \"value\": \"option2\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:03:23\"\n },\n \"renden::thinkup_redux_variables[thinkup_general_layout]\": {\n \"value\": \"option1\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:03:23\"\n }\n}','','','auto-draft','closed','closed','','2f962f6b-0f2b-4983-969f-c23a5ed1c279','','','2019-07-18 15:03:23','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?p=51',0,'customize_changeset','',0),(52,1,'2019-07-18 15:15:06','0000-00-00 00:00:00','{\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:15:06\"\n }\n}','','','auto-draft','closed','closed','','2e0c07ad-3b45-4399-8d8c-c13ebb3c7af3','','','2019-07-18 15:15:06','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?p=52',0,'customize_changeset','',0),(53,1,'2019-07-18 15:18:20','0000-00-00 00:00:00','{\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:18:20\"\n },\n \"renden::thinkup_redux_variables[thinkup_homepage_sectionswitch]\": {\n \"value\": \"1\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:18:20\"\n }\n}','','','auto-draft','closed','closed','','2a8f59ae-0cb4-42d8-b590-6b0d96b9f680','','','2019-07-18 15:18:20','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?p=53',0,'customize_changeset','',0),(54,1,'2019-07-18 15:29:46','2019-07-18 15:29:46','{\n \"renden::thinkup_redux_variables[thinkup_homepage_sectionswitch]\": {\n \"value\": \"1\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:29:46\"\n }\n}','','','trash','closed','closed','','a8b246cc-852d-4010-b8f7-1e5d7522020b','','','2019-07-18 15:29:46','2019-07-18 15:29:46','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/a8b246cc-852d-4010-b8f7-1e5d7522020b/',0,'customize_changeset','',0),(55,1,'2019-07-18 15:31:40','2019-07-18 15:31:40','{\n \"renden::thinkup_redux_variables[thinkup_homepage_section1_image]\": {\n \"value\": {\n \"url\": \"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43706451_2230157123888556_1022464308237303808_o.jpg\",\n \"id\": \"36\",\n \"height\": \"1361\",\n \"width\": \"2048\",\n \"thumbnail\": \"\"\n },\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:30:41\"\n },\n \"renden::thinkup_redux_variables[thinkup_homepage_section1_title]\": {\n \"value\": \"911 Response\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:30:41\"\n },\n \"renden::thinkup_redux_variables[thinkup_homepage_section1_desc]\": {\n \"value\": \"Union EMS provides Paramedic response to all emergency requests for service.\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:31:40\"\n }\n}','','','trash','closed','closed','','c1e23e4a-5c5b-4221-933f-aa9a73dd6ea4','','','2019-07-18 15:31:40','2019-07-18 15:31:40','',0,'http://006aa70.netsolhost.com/wordpress1/?p=55',0,'customize_changeset','',0),(56,1,'2019-07-18 15:35:54','2019-07-18 15:35:54','{\n \"renden::thinkup_redux_variables[thinkup_homepage_section1_link]\": {\n \"value\": \"41\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:35:54\"\n }\n}','','','trash','closed','closed','','04d1d8b7-fd11-449e-8b53-2197415d0091','','','2019-07-18 15:35:54','2019-07-18 15:35:54','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/04d1d8b7-fd11-449e-8b53-2197415d0091/',0,'customize_changeset','',0),(57,1,'2019-07-18 15:39:18','2019-07-18 15:39:18','{\n \"renden::thinkup_redux_variables[thinkup_homepage_layout]\": {\n \"value\": \"option1\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:38:29\"\n },\n \"renden::thinkup_redux_variables[thinkup_homepage_sliderswitch]\": {\n \"value\": \"option1\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:38:29\"\n },\n \"renden::thinkup_redux_variables[thinkup_homepage_sliderpresetwidth]\": {\n \"value\": \"1\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:38:29\"\n },\n \"renden::thinkup_redux_variables[thinkup_homepage_sliderpreset]\": {\n \"value\": [\n {\n \"slide_title\": \"Union EMS\",\n \"slide_description\": \"Paving The Way Forward For Health, Hope, and Healing\",\n \"slide_url\": \"\",\n \"slide_sort\": \"0\",\n \"slide_image_id\": \"24\",\n \"slide_image_url\": \"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43590366_2230157113888557_1421806360214896640_o-1.jpg\",\n \"slide_image_height\": \"1361\",\n \"slide_image_width\": \"2048\",\n \"slide_image_thumb\": \"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/43590366_2230157113888557_1421806360214896640_o-1-150x150.jpg\"\n }\n ],\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:39:18\"\n }\n}','','','trash','closed','closed','','ec2141ae-a19e-4863-bee7-4af2e1509a3f','','','2019-07-18 15:39:18','2019-07-18 15:39:18','',0,'http://006aa70.netsolhost.com/wordpress1/?p=57',0,'customize_changeset','',0),(58,1,'2019-07-18 15:50:29','2019-07-18 15:50:29','{\n \"renden::nav_menu_locations[header_menu]\": {\n \"value\": -80469868,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:50:29\"\n },\n \"nav_menu[-80469868]\": {\n \"value\": {\n \"name\": \"Main\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:50:29\"\n },\n \"nav_menu_item[-1012924026]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://006aa70.netsolhost.com/wordpress1\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": -80469868,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:50:29\"\n },\n \"nav_menu_item[-147122997]\": {\n \"value\": {\n \"object_id\": 41,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"About Us\",\n \"url\": \"http://006aa70.netsolhost.com/wordpress1/about-us/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"nav_menu_term_id\": -80469868,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:50:29\"\n },\n \"nav_menu_item[-25039724]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Sample Page\",\n \"url\": \"http://006aa70.netsolhost.com/wordpress1/sample-page/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": -80469868,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 15:50:29\"\n }\n}','','','trash','closed','closed','','698f15cb-29da-4aa9-add4-63e39ce0de94','','','2019-07-18 15:50:29','2019-07-18 15:50:29','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/698f15cb-29da-4aa9-add4-63e39ce0de94/',0,'customize_changeset','',0),(59,1,'2019-07-18 15:50:29','2019-07-18 15:50:29','','Home','','publish','closed','closed','','home','','','2019-07-18 15:50:29','2019-07-18 15:50:29','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/home/',1,'nav_menu_item','',0),(60,1,'2019-07-18 15:50:30','2019-07-18 15:50:30',' ','','','publish','closed','closed','','60','','','2019-07-18 15:50:30','2019-07-18 15:50:30','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/60/',2,'nav_menu_item','',0),(61,1,'2019-07-18 15:50:30','2019-07-18 15:50:30',' ','','','publish','closed','closed','','61','','','2019-07-18 15:50:30','2019-07-18 15:50:30','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/61/',3,'nav_menu_item','',0),(63,1,'2019-07-18 17:09:43','2019-07-18 17:09:43','<!-- 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:table -->\n<table class=\"wp-block-table\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>(800) 814-5339</td></tr><tr><td>Chief: Bryan Edwarads</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://006aa70.netsolhost.com/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:09:43','2019-07-18 17:09:43','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(64,1,'2019-07-18 17:13:27','2019-07-18 17:13:27','<!-- wp:table -->\n<table class=\"wp-block-table\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>(800) 814-5339</td></tr><tr><td>Chief: Bryan Edwarads</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://006aa70.netsolhost.com/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:13:27','2019-07-18 17:13:27','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(65,1,'2019-07-18 17:15:09','2019-07-18 17:15:09','<!-- wp:table {\"hasFixedLayout\":true,\"className\":\"is-style-stripes\"} -->\n<table class=\"wp-block-table has-fixed-layout is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>(800) 814-5339</td></tr><tr><td>Chief: Bryan Edwarads</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://006aa70.netsolhost.com/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:15:09','2019-07-18 17:15:09','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(66,1,'2019-07-18 17:15:41','2019-07-18 17:15:41','<!-- wp:table {\"hasFixedLayout\":true,\"align\":\"left\",\"className\":\"is-style-stripes\"} -->\n<table class=\"wp-block-table alignleft has-fixed-layout is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>(800) 814-5339</td></tr><tr><td>Chief: Bryan Edwarads</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://006aa70.netsolhost.com/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:15:41','2019-07-18 17:15:41','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(68,1,'2019-07-18 17:17:21','2019-07-18 17:17:21','<!-- wp:table {\"hasFixedLayout\":true,\"align\":\"center\",\"className\":\"is-style-stripes\"} -->\n<table class=\"wp-block-table aligncenter has-fixed-layout is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>(800) 814-5339</td></tr><tr><td>Chief: Bryan Edwarads</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://006aa70.netsolhost.com/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:17:21','2019-07-18 17:17:21','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(69,1,'2019-07-18 17:18:23','2019-07-18 17:18:23','<!-- wp:table {\"align\":\"center\",\"className\":\"is-style-stripes\"} -->\n<table class=\"wp-block-table aligncenter is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>(800) 814-5339</td></tr><tr><td>Chief: Bryan Edwarads</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://006aa70.netsolhost.com/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:18:23','2019-07-18 17:18:23','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(70,1,'2019-07-18 17:22:38','2019-07-18 17:22:38','<!-- wp:table {\"align\":\"center\",\"className\":\"alignleft is-style-stripes\"} -->\n<table class=\"wp-block-table alignleft is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>(800) 814-5339</td></tr><tr><td>Chief: Bryan Edwarads</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://006aa70.netsolhost.com/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:22:38','2019-07-18 17:22:38','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(71,1,'2019-07-18 17:23:03','2019-07-18 17:23:03','<!-- wp:html -->\n<table class=\"wp-block-table aligncenter is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>(800) 814-5339</td></tr><tr><td>Chief: Bryan Edwarads</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td></tr></tbody></table>\n<!-- /wp:html -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://006aa70.netsolhost.com/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:23:03','2019-07-18 17:23:03','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(72,1,'2019-07-18 17:29:48','2019-07-18 17:29:48','<!-- wp:table -->\n<table class=\"wp-block-table\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:table -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:29:48','2019-07-18 17:29:48','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(73,1,'2019-07-18 17:30:04','2019-07-18 17:30:04','<!-- wp:table {\"className\":\"is-style-stripes\"} -->\n<table class=\"wp-block-table is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:table -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:30:04','2019-07-18 17:30:04','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(74,1,'2019-07-18 17:31:40','2019-07-18 17:31:40','<!-- wp:table {\"align\":\"left\",\"className\":\"is-style-stripes\"} -->\n<table class=\"wp-block-table alignleft is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:table -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:31:40','2019-07-18 17:31:40','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(75,1,'2019-07-18 17:32:02','2019-07-18 17:32:02','<!-- wp:table {\"align\":\"center\",\"className\":\"is-style-stripes\"} -->\n<table class=\"wp-block-table aligncenter is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:table -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:32:02','2019-07-18 17:32:02','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(76,1,'2019-07-18 17:33:08','2019-07-18 17:33:08','<!-- wp:table {\"align\":\"center\",\"className\":\"is-style-stripes\"} -->\n<table class=\"wp-block-table is-style-stripes\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:table -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:33:08','2019-07-18 17:33:08','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(77,1,'2019-07-18 17:41:39','2019-07-18 17:41:39','<!-- wp:html -->\n<table class=\"wp-block-table is-style-stripes\"><tbody textalign=\"left\"><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:html -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:41:39','2019-07-18 17:41:39','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(78,1,'2019-07-18 17:42:59','2019-07-18 17:42:59','<!-- wp:html -->\n<table class=\"wp-block-table is-style-stripes\"><tbody text-align=\"left\"><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:html -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:42:59','2019-07-18 17:42:59','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(79,1,'2019-07-18 17:43:36','2019-07-18 17:43:36','<!-- wp:html -->\n<table class=\"wp-block-table is-style-stripes\" text-align=\"left\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:html -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:43:36','2019-07-18 17:43:36','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(80,1,'2019-07-18 17:44:03','2019-07-18 17:44:03','<!-- wp:html -->\n<table class=\"wp-block-table is-style-stripes\"><tbody><tr text-align=\"left\"><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:html -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:44:03','2019-07-18 17:44:03','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(81,1,'2019-07-18 17:44:28','2019-07-18 17:44:28','<!-- wp:html -->\n<table class=\"wp-block-table is-style-stripes\"><tbody><tr><td text-align=\"left\">Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:html -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:44:28','2019-07-18 17:44:28','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(82,1,'2019-07-18 17:49:16','2019-07-18 17:49:16','<!-- wp:table {\"className\":\"is-style-regular\"} -->\n<table class=\"wp-block-table is-style-regular\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:table -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:49:16','2019-07-18 17:49:16','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(83,1,'2019-07-18 17:49:50','2019-07-18 17:49:50','<!-- wp:table {\"align\":\"left\",\"className\":\"is-style-regular\"} -->\n<table class=\"wp-block-table alignleft is-style-regular\"><tbody><tr><td>Name</td><td>Phone Type</td><td>Number</td></tr><tr><td>EMS Billing</td><td>Customer Service</td><td>800-814-5339</td></tr><tr><td>Chief: Bryan Edwards</td><td>Office</td><td>980-993-7604</td></tr><tr><td>Deputy Chief - Operations: Jeff Peterson</td><td>Office</td><td>980-993-7602</td></tr><tr><td>Deputy Chief - Education:</td><td>Office</td><td></td></tr><tr><td>Logistics Supervisor: Scott Russell</td><td>Office</td><td>980-993-7610</td></tr><tr><td>Shift Operations Supervisors</td><td>Office</td><td>980-993-7611</td></tr><tr><td></td><td>Cell</td><td>704-288-6124</td></tr><tr><td></td><td>Cell</td><td>704-288-6129</td></tr><tr><td>Asst. Training - Education: Sandy Mills</td><td>Office</td><td>980-993-7615</td></tr><tr><td>Community Paramedicine Program</td><td></td><td></td></tr><tr><td>Patient Navigator: Donna Little</td><td>Office</td><td>980-993-7655</td></tr></tbody></table>\n<!-- /wp:table -->','Contact Us','','inherit','closed','closed','','2-revision-v1','','','2019-07-18 17:49:50','2019-07-18 17:49:50','',2,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/2-revision-v1/',0,'revision','',0),(84,1,'2019-07-18 17:51:50','2019-07-18 17:51:50','{\n \"old_sidebars_widgets_data\": {\n \"value\": {\n \"wp_inactive_widgets\": [\n \"text-2\",\n \"text-3\",\n \"text-4\",\n \"text-5\"\n ],\n \"sidebar-1\": [\n \"search-2\",\n \"recent-posts-2\",\n \"recent-comments-2\",\n \"archives-2\",\n \"categories-2\",\n \"meta-2\"\n ],\n \"footer-w1\": [],\n \"footer-w2\": [],\n \"footer-w3\": [],\n \"footer-w4\": [],\n \"footer-w5\": [],\n \"footer-w6\": [],\n \"sub-footer-w1\": [],\n \"sub-footer-w2\": []\n },\n \"type\": \"global_variable\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 17:51:50\"\n },\n \"wishlist::nav_menu_locations[menu-1]\": {\n \"value\": 3,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 17:51:50\"\n },\n \"wishlist::nav_menu_locations[social]\": {\n \"value\": 0,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 17:51:50\"\n }\n}','','','trash','closed','closed','','ea0a1755-a6a5-4fe1-84b6-8839df48b0d2','','','2019-07-18 17:51:50','2019-07-18 17:51:50','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/ea0a1755-a6a5-4fe1-84b6-8839df48b0d2/',0,'customize_changeset','',0),(85,1,'2019-07-18 17:52:58','2019-07-18 17:52:58','{\n \"show_on_front\": {\n \"value\": \"posts\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 17:52:58\"\n },\n \"page_on_front\": {\n \"value\": \"41\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 17:52:58\"\n }\n}','','','trash','closed','closed','','59da1e1d-f152-4eb0-a48e-dda7483fe790','','','2019-07-18 17:52:58','2019-07-18 17:52:58','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/59da1e1d-f152-4eb0-a48e-dda7483fe790/',0,'customize_changeset','',0),(86,1,'2019-07-18 17:57:12','2019-07-18 17:57:12','{\n \"corporate-zing::corporate_zing_show_slider\": {\n \"value\": \"yes\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 17:57:12\"\n },\n \"corporate-zing::corporate_zing_header_type\": {\n \"value\": \"owl\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 17:57:12\"\n },\n \"corporate-zing::corporate_zing_slider_cat\": {\n \"value\": \"1\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 17:57:12\"\n }\n}','','','trash','closed','closed','','ecf7d7ef-1aec-4aea-b1b6-4949c56f2298','','','2019-07-18 17:57:12','2019-07-18 17:57:12','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/ecf7d7ef-1aec-4aea-b1b6-4949c56f2298/',0,'customize_changeset','',0),(87,1,'2019-07-18 17:58:37','2019-07-18 17:58:37','{\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-18 17:58:37\"\n }\n}','','','trash','closed','closed','','ec8f23d8-d221-4d8a-ba38-44586ccf8a46','','','2019-07-18 17:58:37','2019-07-18 17:58:37','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/ec8f23d8-d221-4d8a-ba38-44586ccf8a46/',0,'customize_changeset','',0),(88,1,'2019-07-18 18:47:43','2019-07-18 18:47:43','<div id=\"pl-88\" class=\"panel-layout\" ><div id=\"pg-88-0\" class=\"panel-grid panel-no-style\" data-style=\"{"background_image_attachment":false,"background_display":"tile","cell_alignment":"flex-start"}\" ><div id=\"pgc-88-0-0\" class=\"panel-grid-cell panel-grid-cell-mobile-last\" data-weight=\"0.5\" ><div id=\"panel-88-0-0-0\" class=\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Widget_GoogleMap_Widget\"]<input type=\"hidden\" value=\"{"instance":{"map_center":{"name":"1403 Dove st. Monroe NC 28112"},"settings":{"map_type":"static","width":"640","height":"480","destination_url":"post: 88","zoom":12,"mobile_zoom":12,"gesture_handling":"greedy","fallback_image":0,"fallback_image_size":"full","so_field_container_state":"open","new_window":false,"disable_default_ui":false,"keep_centered":false},"markers":{"marker_at_center":true,"marker_icon":0,"info_display":"click","info_multiple":true,"so_field_container_state":"closed","markers_draggable":false,"marker_positions":[]},"styles":{"style_method":"normal","styled_map_name":"","raw_json_map_styles":"","so_field_container_state":"closed","custom_map_styles":[]},"directions":{"origin":"","destination":"","travel_mode":"driving","so_field_container_state":"closed","avoid_highways":false,"avoid_tolls":false,"preserve_viewport":false,"waypoints":[],"optimize_waypoints":false},"_sow_form_id":"121805d30c09e1a3a2459336664","_sow_form_timestamp":"1563497457161","so_sidebar_emulator_id":"sow-google-map-8810000","option_name":"widget_sow-google-map"},"args":{"before_widget":"<div id=\\"panel-88-0-0-0\\" class=\\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div><div id=\"pgc-88-0-1\" class=\"panel-grid-cell panel-grid-cell-empty\" data-weight=\"0.5\" ></div></div></div>','Draft','','trash','closed','closed','','draft__trashed','','','2019-07-19 12:17:58','2019-07-19 12:17:58','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=88',0,'page','',0),(89,1,'2019-07-18 18:47:22','2019-07-18 18:47:22','<div id=\"pl-88\" class=\"panel-layout\" ><div id=\"pg-88-0\" class=\"panel-grid panel-no-style\" data-style=\"{"background_image_attachment":false,"background_display":"tile","cell_alignment":"flex-start"}\" ><div id=\"pgc-88-0-0\" class=\"panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last\" data-weight=\"0.5\" ></div><div id=\"pgc-88-0-1\" class=\"panel-grid-cell panel-grid-cell-empty\" data-weight=\"0.5\" ></div></div></div>','Draft','','inherit','closed','closed','','88-revision-v1','','','2019-07-18 18:47:22','2019-07-18 18:47:22','',88,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/88-revision-v1/',0,'revision','',0),(90,1,'2019-07-18 18:57:22','2019-07-18 18:57:22','<div id=\"pl-88\" class=\"panel-layout\" ><div id=\"pg-88-0\" class=\"panel-grid panel-no-style\" data-style=\"{"background_image_attachment":false,"background_display":"tile","cell_alignment":"flex-start"}\" ><div id=\"pgc-88-0-0\" class=\"panel-grid-cell panel-grid-cell-mobile-last\" data-weight=\"0.5\" ><div id=\"panel-88-0-0-0\" class=\"so-panel widget widget_sow-editor panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" ><div class=\"so-widget-sow-editor so-widget-sow-editor-base\">\n<div class=\"siteorigin-widget-tinymce textwidget\">\n </div>\n</div></div></div><div id=\"pgc-88-0-1\" class=\"panel-grid-cell panel-grid-cell-empty\" data-weight=\"0.5\" ></div></div></div>','Draft','','inherit','closed','closed','','88-autosave-v1','','','2019-07-18 18:57:22','2019-07-18 18:57:22','',88,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/88-autosave-v1/',0,'revision','',0),(91,1,'2019-07-18 18:56:07','2019-07-18 18:56:07','<div id=\"pl-88\" class=\"panel-layout\" ><div id=\"pg-88-0\" class=\"panel-grid panel-no-style\" data-style=\"{"background_image_attachment":false,"background_display":"tile","cell_alignment":"flex-start"}\" ><div id=\"pgc-88-0-0\" class=\"panel-grid-cell panel-grid-cell-mobile-last\" data-weight=\"0.5\" ><div id=\"panel-88-0-0-0\" class=\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Widget_GoogleMap_Widget\"]<input type=\"hidden\" value=\"{"instance":{"map_center":{"name":"1403 Dove st. Monroe NC 28112"},"settings":{"map_type":"interactive","width":"640","height":"480","destination_url":"","zoom":12,"mobile_zoom":12,"gesture_handling":"greedy","fallback_image":0,"fallback_image_size":"full","so_field_container_state":"open","new_window":false,"disable_default_ui":false,"keep_centered":false},"markers":{"marker_at_center":true,"marker_icon":0,"info_display":"click","info_multiple":true,"so_field_container_state":"closed","markers_draggable":false,"marker_positions":[]},"styles":{"style_method":"normal","styled_map_name":"","raw_json_map_styles":"","so_field_container_state":"closed","custom_map_styles":[]},"directions":{"origin":"","destination":"","travel_mode":"driving","so_field_container_state":"closed","avoid_highways":false,"avoid_tolls":false,"preserve_viewport":false,"waypoints":[],"optimize_waypoints":false},"_sow_form_id":"121805d30c09e1a3a2459336664","_sow_form_timestamp":"1563476149136","so_sidebar_emulator_id":"sow-google-map-9110000","option_name":"widget_sow-google-map"},"args":{"before_widget":"<div id=\\"panel-88-0-0-0\\" class=\\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div><div id=\"pgc-88-0-1\" class=\"panel-grid-cell panel-grid-cell-empty\" data-weight=\"0.5\" ></div></div></div>','Draft','','inherit','closed','closed','','88-revision-v1','','','2019-07-18 18:56:07','2019-07-18 18:56:07','',88,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/88-revision-v1/',0,'revision','',0),(92,1,'2019-07-18 18:56:07','2019-07-18 18:56:07','<div id=\"pl-88\" class=\"panel-layout\" ><div id=\"pg-88-0\" class=\"panel-grid panel-no-style\" data-style=\"{"background_image_attachment":false,"background_display":"tile","cell_alignment":"flex-start"}\" ><div id=\"pgc-88-0-0\" class=\"panel-grid-cell panel-grid-cell-mobile-last\" data-weight=\"0.5\" ><div id=\"panel-88-0-0-0\" class=\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Widget_GoogleMap_Widget\"]<input type=\"hidden\" value=\"{"instance":{"map_center":{"name":"1403 Dove st. Monroe NC 28112"},"settings":{"map_type":"interactive","width":"640","height":"480","destination_url":"","zoom":12,"mobile_zoom":12,"gesture_handling":"greedy","fallback_image":0,"fallback_image_size":"full","so_field_container_state":"open","new_window":false,"disable_default_ui":false,"keep_centered":false},"markers":{"marker_at_center":true,"marker_icon":0,"info_display":"click","info_multiple":true,"so_field_container_state":"closed","markers_draggable":false,"marker_positions":[]},"styles":{"style_method":"normal","styled_map_name":"","raw_json_map_styles":"","so_field_container_state":"closed","custom_map_styles":[]},"directions":{"origin":"","destination":"","travel_mode":"driving","so_field_container_state":"closed","avoid_highways":false,"avoid_tolls":false,"preserve_viewport":false,"waypoints":[],"optimize_waypoints":false},"_sow_form_id":"121805d30c09e1a3a2459336664","_sow_form_timestamp":"1563476149136","so_sidebar_emulator_id":"sow-google-map-8810000","option_name":"widget_sow-google-map"},"args":{"before_widget":"<div id=\\"panel-88-0-0-0\\" class=\\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div><div id=\"pgc-88-0-1\" class=\"panel-grid-cell panel-grid-cell-empty\" data-weight=\"0.5\" ></div></div></div>','Draft','','inherit','closed','closed','','88-revision-v1','','','2019-07-18 18:56:07','2019-07-18 18:56:07','',88,'http://006aa70.netsolhost.com/wordpress1/2019/07/18/88-revision-v1/',0,'revision','',0),(93,1,'2019-07-19 00:51:10','2019-07-19 00:51:10','<div id=\"pl-88\" class=\"panel-layout\" ><div id=\"pg-88-0\" class=\"panel-grid panel-no-style\" data-style=\"{"background_image_attachment":false,"background_display":"tile","cell_alignment":"flex-start"}\" ><div id=\"pgc-88-0-0\" class=\"panel-grid-cell panel-grid-cell-mobile-last\" data-weight=\"0.5\" ><div id=\"panel-88-0-0-0\" class=\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Widget_GoogleMap_Widget\"]<input type=\"hidden\" value=\"{"instance":{"map_center":{"name":"1403 Dove st. Monroe NC 28112"},"settings":{"map_type":"static","width":"640","height":"480","destination_url":"post: 88","zoom":12,"mobile_zoom":12,"gesture_handling":"greedy","fallback_image":0,"fallback_image_size":"full","so_field_container_state":"open","new_window":false,"disable_default_ui":false,"keep_centered":false},"markers":{"marker_at_center":true,"marker_icon":0,"info_display":"click","info_multiple":true,"so_field_container_state":"closed","markers_draggable":false,"marker_positions":[]},"styles":{"style_method":"normal","styled_map_name":"","raw_json_map_styles":"","so_field_container_state":"closed","custom_map_styles":[]},"directions":{"origin":"","destination":"","travel_mode":"driving","so_field_container_state":"closed","avoid_highways":false,"avoid_tolls":false,"preserve_viewport":false,"waypoints":[],"optimize_waypoints":false},"_sow_form_id":"121805d30c09e1a3a2459336664","_sow_form_timestamp":"1563497457161","so_sidebar_emulator_id":"sow-google-map-9310000","option_name":"widget_sow-google-map"},"args":{"before_widget":"<div id=\\"panel-88-0-0-0\\" class=\\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div><div id=\"pgc-88-0-1\" class=\"panel-grid-cell panel-grid-cell-empty\" data-weight=\"0.5\" ></div></div></div>','Draft','','inherit','closed','closed','','88-revision-v1','','','2019-07-19 00:51:11','2019-07-19 00:51:11','',88,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/88-revision-v1/',0,'revision','',0),(94,1,'2019-07-19 00:51:11','2019-07-19 00:51:11','<div id=\"pl-88\" class=\"panel-layout\" ><div id=\"pg-88-0\" class=\"panel-grid panel-no-style\" data-style=\"{"background_image_attachment":false,"background_display":"tile","cell_alignment":"flex-start"}\" ><div id=\"pgc-88-0-0\" class=\"panel-grid-cell panel-grid-cell-mobile-last\" data-weight=\"0.5\" ><div id=\"panel-88-0-0-0\" class=\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Widget_GoogleMap_Widget\"]<input type=\"hidden\" value=\"{"instance":{"map_center":{"name":"1403 Dove st. Monroe NC 28112"},"settings":{"map_type":"static","width":"640","height":"480","destination_url":"post: 88","zoom":12,"mobile_zoom":12,"gesture_handling":"greedy","fallback_image":0,"fallback_image_size":"full","so_field_container_state":"open","new_window":false,"disable_default_ui":false,"keep_centered":false},"markers":{"marker_at_center":true,"marker_icon":0,"info_display":"click","info_multiple":true,"so_field_container_state":"closed","markers_draggable":false,"marker_positions":[]},"styles":{"style_method":"normal","styled_map_name":"","raw_json_map_styles":"","so_field_container_state":"closed","custom_map_styles":[]},"directions":{"origin":"","destination":"","travel_mode":"driving","so_field_container_state":"closed","avoid_highways":false,"avoid_tolls":false,"preserve_viewport":false,"waypoints":[],"optimize_waypoints":false},"_sow_form_id":"121805d30c09e1a3a2459336664","_sow_form_timestamp":"1563497457161","so_sidebar_emulator_id":"sow-google-map-8810000","option_name":"widget_sow-google-map"},"args":{"before_widget":"<div id=\\"panel-88-0-0-0\\" class=\\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div><div id=\"pgc-88-0-1\" class=\"panel-grid-cell panel-grid-cell-empty\" data-weight=\"0.5\" ></div></div></div>','Draft','','inherit','closed','closed','','88-revision-v1','','','2019-07-19 00:51:11','2019-07-19 00:51:11','',88,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/88-revision-v1/',0,'revision','',0),(95,1,'2019-07-19 11:28:52','2019-07-19 11:28:52','Origination in 1985, Union Emergency Medical Services is managed by Atrium Health, one of the largest and most progressive healthcare systmes in the country. We are the primary 911 service provider for the nearly 245,000 citizens of union County, and average over 21,000 requests for service per year. Each ambulance is staffed with at least one Paramedic and one EMT.','About Us','','inherit','closed','closed','','3-revision-v1','','','2019-07-19 11:28:52','2019-07-19 11:28:52','',3,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/3-revision-v1/',0,'revision','',0),(96,1,'2019-07-19 11:28:52','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-07-19 11:28:52','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?p=96',0,'post','',0),(97,1,'2019-07-19 11:38:53','2019-07-19 11:38:53','Origination in 1985, Union Emergency Medical Services is managed by Atrium Health, one of the largest and most progressive healthcare systmes in the country. We are the primary 911 service provider for the nearly 245,000 citizens of union County, and average over 21,000 requests for service per year. Each ambulance is staffed with at least one Paramedic and one EMT.\n\nOur goal is to arrive on the scene of emergency calls in less that 15 anywhere within the 640 square miles of Union County. We meet or exceed this goal 90 percent of the time with an average response time of 7.7 minutes. Our more that 175 teammates work together to make this happen.\n\nWe also provide non-emergency transport, medical standby and large events, Tactical Paramedics to Union County Sheriff\'s Department SWAT and community education to schools and civic groups.','About Us','','inherit','closed','closed','','3-revision-v1','','','2019-07-19 11:38:53','2019-07-19 11:38:53','',3,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/3-revision-v1/',0,'revision','',0),(98,1,'2019-07-19 11:43:32','2019-07-19 11:43:32','To achieve our goal of demonstrating excellence, Union EMS is constantly researching the latest clinical trends in emergency medicine.\n\nFor example, we use:\n<ul>\n <li>Cardiac monitors with the latest technology that goes far beyond just measuring the electrical activity of the heart, allowing our team ot measure carbon dioxide levels, keep track of many aspects of the patient\'s condition and other clinical functions.</li>\n <li>Electronic patient care reporting.</li>\n <li>Continuous monitoring of system performance by data collection, quality improvement, quality assurance and proactive medical oversight.</li>\n <li>The latest, industry-leader level medical procedures and scope-of-practice techniques and protocols.</li>\n</ul>','Excellence In Action','','publish','open','open','','excellence-in-action','','','2019-07-19 11:56:57','2019-07-19 11:56:57','',0,'http://006aa70.netsolhost.com/wordpress1/?p=98',0,'post','',0),(99,1,'2019-07-19 11:43:32','2019-07-19 11:43:32','To achieve our goal of demonstrating excellence, Union EMS is constantly researching the latest clinical trends in emergency medicine.\r\n\r\nFor example, we use:\r\n<ul>\r\n <li>Cardiac monitors with the latest technology that goes far beyond just measuring the electrical activity of the heart, allowing our team ot measure carbon dioxide levels, keep track of many aspects of the patient\'s condition and other clinical functions.</li>\r\n <li>Electronic patient care reporting.</li>\r\n <li>Continuous monitoring of system performance by data collection, quality improvement, quality assurance and proactive medical oversight.</li>\r\n <li>The latest, industry-leader level medical procedures and scope-of-practice techniques and protocols.</li>\r\n</ul>','Excellence In Action','','inherit','closed','closed','','98-revision-v1','','','2019-07-19 11:43:32','2019-07-19 11:43:32','',98,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/98-revision-v1/',0,'revision','',0),(100,1,'2019-07-19 11:46:07','2019-07-19 11:46:07','Union EMS realizes that community involvement is vital to our success. We ar committed to giving back to our communities by providing EMS teams for:\n<ul>\n <li>Events requiring medical coverage</li>\n <li>Community Paramedicine</li>\n <li>Community/Educational events</li>\n <li>EMS Boy Scouts of America Explorer Post</li>\n <li>Sports medicine teams</li>\n <li>Honor Guard</li>\n <li>Special Response Team</li>\n</ul>','Giving Back','','publish','open','open','','giving-back','','','2019-07-19 11:56:36','2019-07-19 11:56:36','',0,'http://006aa70.netsolhost.com/wordpress1/?p=100',0,'post','',0),(101,1,'2019-07-19 11:46:07','2019-07-19 11:46:07','Union EMS realizes that community involvement is vital to our success. We ar committed to giving back to our communities by providing EMS teams for:\r\n<ul>\r\n <li>Events requiring medical coverage</li>\r\n <li>Community Paramedicine</li>\r\n <li>Community/Educational events</li>\r\n <li>EMS Boy Scouts of America Explorer Post</li>\r\n <li>Sports medicine teams</li>\r\n <li>Honor Guard</li>\r\n <li>Special Response Team</li>\r\n</ul>','Giving Back','','inherit','closed','closed','','100-revision-v1','','','2019-07-19 11:46:07','2019-07-19 11:46:07','',100,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/100-revision-v1/',0,'revision','',0),(102,1,'2019-07-19 11:51:10','2019-07-19 11:51:10','Do you want to work in an EMS system that features a widde variety of demographics and call types? Do you like the idea of progressive patient care protocols with a high level of autonomy and responsibility?\n\nUnion EMS offers all this and more:\n\nCompetive salary and an excellent benefits package including health insurance, dental insurance, 401K, paid holidays, vacation and sick time.\n\nMinimum requirements include current North Carolina certification/credentialing as an EMT-Paramedic and active driver\'s license with clean driving record. National Registry is a plus.\n\nFor more information, go to <a href=\"http://Careers.AtriumHealth.org\">Careers.AtruimHealth.org</a>','DO YOU WANT TO WORK FOR US?','','publish','open','open','','do-you-want-to-work-for-us','','','2019-07-19 11:56:10','2019-07-19 11:56:10','',0,'http://006aa70.netsolhost.com/wordpress1/?p=102',0,'post','',0),(103,1,'2019-07-19 11:51:10','2019-07-19 11:51:10','Do you want to work in an EMS system that features a widde variety of demographics and call types? Do you like the idea of progressive patient care protocols with a high level of autonomy and responsibility?\r\n\r\nUnion EMS offers all this and more:\r\n\r\nCompetive salary and an excellent benefits package including health insurance, dental insurance, 401K, paid holidays, vacation and sick time.\r\n\r\nMinimum requirements include current North Carolina certification/credentialing as an EMT-Paramedic and active driver\'s license with clean driving record. National Registry is a plus.\r\n\r\nFor more information, go to <a href=\"http://006aa70.netsolhost.com/wordpress1/wp-admin/_wp_link_placeholder\">Careers.AtruimHealth.org</a>','DO YOU WANT TO WORK FOR US?','','inherit','closed','closed','','102-revision-v1','','','2019-07-19 11:51:10','2019-07-19 11:51:10','',102,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/102-revision-v1/',0,'revision','',0),(104,1,'2019-07-19 11:52:11','2019-07-19 11:52:11','Do you want to work in an EMS system that features a widde variety of demographics and call types? Do you like the idea of progressive patient care protocols with a high level of autonomy and responsibility?\n\nUnion EMS offers all this and more:\n\nCompetive salary and an excellent benefits package including health insurance, dental insurance, 401K, paid holidays, vacation and sick time.\n\nMinimum requirements include current North Carolina certification/credentialing as an EMT-Paramedic and active driver\'s license with clean driving record. National Registry is a plus.\n\nFor more information, go to <a href=\"http://Careers.AtriumHealth.org\">Careers.AtruimHealth.org</a>','DO YOU WANT TO WORK FOR US?','','inherit','closed','closed','','102-revision-v1','','','2019-07-19 11:52:11','2019-07-19 11:52:11','',102,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/102-revision-v1/',0,'revision','',0),(105,1,'2019-07-19 11:58:51','2019-07-19 11:58:51','','About Us','','inherit','closed','closed','','41-revision-v1','','','2019-07-19 11:58:51','2019-07-19 11:58:51','',41,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/41-revision-v1/',0,'revision','',0),(106,1,'2019-07-19 12:00:14','2019-07-19 12:00:14','{\n \"page_on_front\": {\n \"value\": \"0\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 12:00:08\"\n },\n \"renden::thinkup_redux_variables[thinkup_homepage_section1_link]\": {\n \"value\": \"41\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 12:00:08\"\n }\n}','','','trash','closed','closed','','8e03f3ce-4875-437b-aff9-1ca112f3dfe6','','','2019-07-19 12:00:14','2019-07-19 12:00:14','',0,'http://006aa70.netsolhost.com/wordpress1/?p=106',0,'customize_changeset','',0),(108,1,'2019-07-19 12:04:09','2019-07-19 12:04:09','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"number\":5,\"panels_info\":{\"class\":\"WP_Widget_Recent_Posts\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"be53fbd0-3689-4093-b34e-e9c9fa274b72\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}},\"show_date\":false}],\"grids\":[{\"cells\":1,\"style\":[]}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','About Us','','inherit','closed','closed','','41-revision-v1','','','2019-07-19 12:04:09','2019-07-19 12:04:09','',41,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/41-revision-v1/',0,'revision','',0),(109,1,'2019-07-19 12:06:23','2019-07-19 12:06:23','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"template\":\"content-page.php\",\"posts\":\"post_type=post\\u0026date_type=specific\\u0026date_query={\\u0022after\\u0022:\\u0022\\u0022,\\u0022before\\u0022:\\u0022\\u0022}\\u0026date_query_relative={\\u0022from\\u0022:[],\\u0022to\\u0022:[]}\\u0026orderby=date\\u0026order=DESC\",\"_sow_form_id\":\"166525d31b21d5b7f8496798641\",\"_sow_form_timestamp\":\"\",\"panels_info\":{\"class\":\"SiteOrigin_Panels_Widgets_PostLoop\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"11d48fcd-fffc-4d4d-b8ce-5025dcd69569\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}},\"more\":false}],\"grids\":[{\"cells\":1,\"style\":[]}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','About Us','','inherit','closed','closed','','41-revision-v1','','','2019-07-19 12:06:23','2019-07-19 12:06:23','',41,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/41-revision-v1/',0,'revision','',0),(110,1,'2019-07-19 12:08:33','2019-07-19 12:08:33','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"panels_info\":{\"class\":\"WP_Widget_Archives\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"412941ba-2336-4e01-b1b6-dfa4b557c1f6\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}},\"count\":0,\"dropdown\":0}],\"grids\":[{\"cells\":1,\"style\":[]}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','About Us','','inherit','closed','closed','','41-revision-v1','','','2019-07-19 12:08:33','2019-07-19 12:08:33','',41,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/41-revision-v1/',0,'revision','',0),(111,1,'2019-07-19 12:11:36','2019-07-19 12:11:36','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"sortby\":\"post_title\",\"exclude\":\"\",\"panels_info\":{\"class\":\"WP_Widget_Pages\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"c3b87117-4055-4d9e-b16b-88ea3498216c\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}}},{\"type\":\"title\",\"panels_info\":{\"class\":\"SiteOrigin_Panels_Widgets_PostContent\",\"grid\":0,\"cell\":0,\"id\":1,\"widget_id\":\"6bb0dcdc-ec68-4173-aaa0-e0ddc9538f17\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}}}],\"grids\":[{\"cells\":1,\"style\":[]}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','About Us','','inherit','closed','closed','','41-revision-v1','','','2019-07-19 12:11:36','2019-07-19 12:11:36','',41,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/41-revision-v1/',0,'revision','',0),(113,1,'2019-07-19 12:13:33','2019-07-19 12:13:33','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"default_thumbnail\":0,\"default_thumbnail_fallback\":\"\",\"image_size\":\"sow-carousel-default\",\"posts\":\"post_type=post\\u0026post__in=3\\u0026date_type=specific\\u0026date_query={\\u0022after\\u0022:\\u0022\\u0022,\\u0022before\\u0022:\\u0022\\u0022}\\u0026date_query_relative={\\u0022from\\u0022:[],\\u0022to\\u0022:[]}\\u0026orderby=date\\u0026order=DESC\\u0026posts_per_page=5\",\"_sow_form_id\":\"319425d31b39b0bc82393785688\",\"_sow_form_timestamp\":\"1563538397967\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_PostCarousel_Widget\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"17ce5ecc-4c62-435f-847a-29430d214693\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}}}],\"grids\":[{\"cells\":1,\"style\":[]}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','About Us','','inherit','closed','closed','','41-revision-v1','','','2019-07-19 12:13:33','2019-07-19 12:13:33','',41,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/41-revision-v1/',0,'revision','',0),(114,1,'2019-07-19 12:14:48','2019-07-19 12:14:48','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"About us\",\"panels_info\":{\"class\":\"WP_Widget_Calendar\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"271631a6-65f8-4d77-bca5-6b886408ae1c\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\",\"cell_alignment\":\"flex-start\"}}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','About Us','','inherit','closed','closed','','41-revision-v1','','','2019-07-19 12:14:48','2019-07-19 12:14:48','',41,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/41-revision-v1/',0,'revision','',0),(115,1,'2019-07-19 12:16:27','2019-07-19 12:16:27','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"template\":\"content-page.php\",\"posts\":\"post_type=post\\u0026post__in=3\\u0026date_type=specific\\u0026date_query={\\u0022after\\u0022:\\u0022\\u0022,\\u0022before\\u0022:\\u0022\\u0022}\\u0026date_query_relative={\\u0022from\\u0022:[],\\u0022to\\u0022:[]}\\u0026orderby=date\\u0026order=DESC\\u0026posts_per_page=5\",\"_sow_form_id\":\"78615d31b4af42f35141719518\",\"_sow_form_timestamp\":\"1563538624997\",\"panels_info\":{\"class\":\"SiteOrigin_Panels_Widgets_PostLoop\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"09ab553a-1e3c-46ca-a9de-086c0b41f234\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}},\"more\":false}],\"grids\":[{\"cells\":1,\"style\":[]}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','','','trash','closed','closed','','115-2__trashed','','','2019-07-19 12:17:58','2019-07-19 12:17:58','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=115',0,'page','',0),(116,1,'2019-07-19 12:16:27','2019-07-19 12:16:27','','','','inherit','closed','closed','','115-revision-v1','','','2019-07-19 12:16:27','2019-07-19 12:16:27','',115,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/115-revision-v1/',0,'revision','',0),(117,1,'2019-07-19 12:17:09','2019-07-19 12:17:09','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"template\":\"content-page.php\",\"posts\":\"post_type=post\\u0026post__in=3\\u0026date_type=specific\\u0026date_query={\\u0022after\\u0022:\\u0022\\u0022,\\u0022before\\u0022:\\u0022\\u0022}\\u0026date_query_relative={\\u0022from\\u0022:[],\\u0022to\\u0022:[]}\\u0026orderby=date\\u0026order=DESC\\u0026posts_per_page=5\",\"_sow_form_id\":\"78615d31b4af42f35141719518\",\"_sow_form_timestamp\":\"1563538624997\",\"panels_info\":{\"class\":\"SiteOrigin_Panels_Widgets_PostLoop\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"09ab553a-1e3c-46ca-a9de-086c0b41f234\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}},\"more\":false}],\"grids\":[{\"cells\":1,\"style\":[]}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','','','inherit','closed','closed','','115-revision-v1','','','2019-07-19 12:17:09','2019-07-19 12:17:09','',115,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/115-revision-v1/',0,'revision','',0),(118,1,'2019-07-19 12:19:54','2019-07-19 12:19:54','<!-- wp:paragraph -->\n<p> [display-posts include_excerpt=\"true\" ]</p>\n<!-- /wp:paragraph -->','TEST','','publish','closed','closed','','test','','','2019-07-19 13:21:32','2019-07-19 13:21:32','',0,'http://006aa70.netsolhost.com/wordpress1/?page_id=118',0,'page','',0),(119,1,'2019-07-19 12:19:54','2019-07-19 12:19:54','<div id=\"pl-118\" class=\"panel-layout\" ><div id=\"pg-118-0\" class=\"panel-grid panel-no-style\" ><div id=\"pgc-118-0-0\" class=\"panel-grid-cell\" data-weight=\"1\" ><div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Panels_Widgets_PostLoop\"]<input type=\"hidden\" value=\"{"instance":{"title":"","template":"content-page.php","posts":"post_type=post&post__in=3&date_type=specific&date_query={\\"after\\":\\"\\",\\"before\\":\\"\\"}&date_query_relative={\\"from\\":[],\\"to\\":[]}&orderby=date&order=DESC","_sow_form_id":"104765d31b539ab464260292858","_sow_form_timestamp":"1563538771168","more":false,"so_sidebar_emulator_id":"siteorigin-panels-postloop-11910000","option_name":"widget_siteorigin-panels-postloop"},"args":{"before_widget":"<div id=\\"panel-118-0-0-0\\" class=\\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div></div></div>','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:19:54','2019-07-19 12:19:54','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(120,1,'2019-07-19 12:19:54','2019-07-19 12:19:54','<div id=\"pl-118\" class=\"panel-layout\" ><div id=\"pg-118-0\" class=\"panel-grid panel-no-style\" ><div id=\"pgc-118-0-0\" class=\"panel-grid-cell\" data-weight=\"1\" ><div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Panels_Widgets_PostLoop\"]<input type=\"hidden\" value=\"{"instance":{"title":"","template":"content-page.php","posts":"post_type=post&post__in=3&date_type=specific&date_query={\\"after\\":\\"\\",\\"before\\":\\"\\"}&date_query_relative={\\"from\\":[],\\"to\\":[]}&orderby=date&order=DESC","_sow_form_id":"104765d31b539ab464260292858","_sow_form_timestamp":"1563538771168","more":false,"so_sidebar_emulator_id":"siteorigin-panels-postloop-11810000","option_name":"widget_siteorigin-panels-postloop"},"args":{"before_widget":"<div id=\\"panel-118-0-0-0\\" class=\\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div></div></div>','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:19:54','2019-07-19 12:19:54','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(121,1,'2019-07-19 12:20:28','2019-07-19 12:20:28','<div id=\"pl-118\" class=\"panel-layout\" ><div id=\"pg-118-0\" class=\"panel-grid panel-no-style\" ><div id=\"pgc-118-0-0\" class=\"panel-grid-cell\" data-weight=\"1\" ><div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Panels_Widgets_PostLoop\"]<input type=\"hidden\" value=\"{"instance":{"title":"","template":"content.php","posts":"post_type=post&post__in=3&date_type=specific&date_query={\\"after\\":\\"\\",\\"before\\":\\"\\"}&date_query_relative={\\"from\\":{\\"value\\":0,\\"unit\\":\\"days\\"},\\"to\\":{\\"value\\":0,\\"unit\\":\\"days\\"}}&orderby=date&order=DESC","_sow_form_id":"104765d31b539ab464260292858","_sow_form_timestamp":"1563538821450","more":false,"so_sidebar_emulator_id":"siteorigin-panels-postloop-12110000","option_name":"widget_siteorigin-panels-postloop"},"args":{"before_widget":"<div id=\\"panel-118-0-0-0\\" class=\\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div></div></div>','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:20:28','2019-07-19 12:20:28','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(122,1,'2019-07-19 12:20:29','2019-07-19 12:20:29','<div id=\"pl-118\" class=\"panel-layout\" ><div id=\"pg-118-0\" class=\"panel-grid panel-no-style\" ><div id=\"pgc-118-0-0\" class=\"panel-grid-cell\" data-weight=\"1\" ><div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Panels_Widgets_PostLoop\"]<input type=\"hidden\" value=\"{"instance":{"title":"","template":"content.php","posts":"post_type=post&post__in=3&date_type=specific&date_query={\\"after\\":\\"\\",\\"before\\":\\"\\"}&date_query_relative={\\"from\\":{\\"value\\":0,\\"unit\\":\\"days\\"},\\"to\\":{\\"value\\":0,\\"unit\\":\\"days\\"}}&orderby=date&order=DESC","_sow_form_id":"104765d31b539ab464260292858","_sow_form_timestamp":"1563538821450","more":false,"so_sidebar_emulator_id":"siteorigin-panels-postloop-11810000","option_name":"widget_siteorigin-panels-postloop"},"args":{"before_widget":"<div id=\\"panel-118-0-0-0\\" class=\\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div></div></div>','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:20:29','2019-07-19 12:20:29','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(123,1,'2019-07-19 12:21:02','2019-07-19 12:21:02','<div id=\"pl-118\" class=\"panel-layout\" ><div id=\"pg-118-0\" class=\"panel-grid panel-no-style\" ><div id=\"pgc-118-0-0\" class=\"panel-grid-cell\" data-weight=\"1\" ><div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Panels_Widgets_PostLoop\"]<input type=\"hidden\" value=\"{"instance":{"title":"","template":"content-search.php","more":true,"posts":"post_type=post&post__in=3&date_type=specific&date_query={\\"after\\":\\"\\",\\"before\\":\\"\\"}&date_query_relative={\\"from\\":{\\"value\\":0,\\"unit\\":\\"days\\"},\\"to\\":{\\"value\\":0,\\"unit\\":\\"days\\"}}&orderby=date&order=DESC","_sow_form_id":"104765d31b539ab464260292858","_sow_form_timestamp":"1563538857851","so_sidebar_emulator_id":"siteorigin-panels-postloop-12310000","option_name":"widget_siteorigin-panels-postloop"},"args":{"before_widget":"<div id=\\"panel-118-0-0-0\\" class=\\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div></div></div>','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:21:02','2019-07-19 12:21:02','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(124,1,'2019-07-19 12:21:02','2019-07-19 12:21:02','<div id=\"pl-118\" class=\"panel-layout\" ><div id=\"pg-118-0\" class=\"panel-grid panel-no-style\" ><div id=\"pgc-118-0-0\" class=\"panel-grid-cell\" data-weight=\"1\" ><div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Panels_Widgets_PostLoop\"]<input type=\"hidden\" value=\"{"instance":{"title":"","template":"content-search.php","more":true,"posts":"post_type=post&post__in=3&date_type=specific&date_query={\\"after\\":\\"\\",\\"before\\":\\"\\"}&date_query_relative={\\"from\\":{\\"value\\":0,\\"unit\\":\\"days\\"},\\"to\\":{\\"value\\":0,\\"unit\\":\\"days\\"}}&orderby=date&order=DESC","_sow_form_id":"104765d31b539ab464260292858","_sow_form_timestamp":"1563538857851","so_sidebar_emulator_id":"siteorigin-panels-postloop-11810000","option_name":"widget_siteorigin-panels-postloop"},"args":{"before_widget":"<div id=\\"panel-118-0-0-0\\" class=\\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div></div></div>','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:21:02','2019-07-19 12:21:02','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(125,1,'2019-07-19 12:22:19','2019-07-19 12:22:19','<div id=\"pl-118\" class=\"panel-layout\" ><div id=\"pg-118-0\" class=\"panel-grid panel-no-style\" ><div id=\"pgc-118-0-0\" class=\"panel-grid-cell\" data-weight=\"1\" ><div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Panels_Widgets_PostLoop\"]<input type=\"hidden\" value=\"{"instance":{"title":"","template":"content-single.php","more":true,"posts":"post_type=_all&post__in=3&date_type=specific&date_query={\\"after\\":\\"\\",\\"before\\":\\"\\"}&date_query_relative={\\"from\\":{\\"value\\":0,\\"unit\\":\\"days\\"},\\"to\\":{\\"value\\":0,\\"unit\\":\\"days\\"}}&orderby=date&order=DESC","_sow_form_id":"104765d31b539ab464260292858","_sow_form_timestamp":"1563538930750","so_sidebar_emulator_id":"siteorigin-panels-postloop-12510000","option_name":"widget_siteorigin-panels-postloop"},"args":{"before_widget":"<div id=\\"panel-118-0-0-0\\" class=\\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div></div></div>','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:22:19','2019-07-19 12:22:19','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(126,1,'2019-07-19 12:22:19','2019-07-19 12:22:19','<div id=\"pl-118\" class=\"panel-layout\" ><div id=\"pg-118-0\" class=\"panel-grid panel-no-style\" ><div id=\"pgc-118-0-0\" class=\"panel-grid-cell\" data-weight=\"1\" ><div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" >[siteorigin_widget class=\"SiteOrigin_Panels_Widgets_PostLoop\"]<input type=\"hidden\" value=\"{"instance":{"title":"","template":"content-single.php","more":true,"posts":"post_type=_all&post__in=3&date_type=specific&date_query={\\"after\\":\\"\\",\\"before\\":\\"\\"}&date_query_relative={\\"from\\":{\\"value\\":0,\\"unit\\":\\"days\\"},\\"to\\":{\\"value\\":0,\\"unit\\":\\"days\\"}}&orderby=date&order=DESC","_sow_form_id":"104765d31b539ab464260292858","_sow_form_timestamp":"1563538930750","so_sidebar_emulator_id":"siteorigin-panels-postloop-11810000","option_name":"widget_siteorigin-panels-postloop"},"args":{"before_widget":"<div id=\\"panel-118-0-0-0\\" class=\\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\" data-index=\\"0\\" data-style=\\"{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}\\" >","after_widget":"<\\/div>","before_title":"<h3 class=\\"widget-title\\">","after_title":"<\\/h3>","widget_id":"widget-0-0-0"}}\" />[/siteorigin_widget]</div></div></div></div>','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:22:19','2019-07-19 12:22:19','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(127,1,'2019-07-19 12:26:29','2019-07-19 12:26:29','<div id=\"pl-118\" class=\"panel-layout\">\n<div id=\"pg-118-0\" class=\"panel-grid panel-no-style\">\n<div id=\"pgc-118-0-0\" class=\"panel-grid-cell\" data-weight=\"1\">\n<div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{\" background_image_attachment>[siteorigin_widget class=\"SiteOrigin_Panels_Widgets_PostLoop\"]<input type=\"hidden\" value=\"{\" instance id=\"\\\" panel-118-0-0-0 class=\"\\\" so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child data-index=\"\\\" data-style=\"\\\">\",\"after_widget\":\"\",\"before_title\":\"\n<div id=\"panel-118-0-0-0\" class=\"so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\" data-index=\"0\" data-style=\"{\" background_image_attachment>\n<h3 class=\"\\\" widget-title>\",\"after_title\":\"\",\"widget_id\":\"widget-0-0-0\"}}\"></h3>[/siteorigin_widget]\n\n</div>\n</div>\n</div>\n</div>\n</div>','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:26:29','2019-07-19 12:26:29','',118,'https://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(128,1,'2019-07-19 12:55:05','2019-07-19 12:55:05','<!-- wp:paragraph -->\n<p>[display-posts]</p>\n<!-- /wp:paragraph -->','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:55:05','2019-07-19 12:55:05','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(129,1,'2019-07-19 12:56:06','2019-07-19 12:56:06','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"panels_info\":{\"class\":\"WP_Widget_Categories\",\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"dd1a5714-1266-4dbb-bb28-ab1e339cb042\",\"style\":{\"background_image_attachment\":false,\"background_display\":\"tile\"}},\"count\":0,\"hierarchical\":0,\"dropdown\":0}],\"grids\":[{\"cells\":1,\"style\":[]}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":[]}]}} /-->','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 12:56:06','2019-07-19 12:56:06','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(130,1,'2019-07-19 12:59:40','0000-00-00 00:00:00','{\n \"renden::thinkup_redux_variables[thinkup_general_fixedlayoutswitch]\": {\n \"value\": \"off\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 12:59:40\"\n }\n}','','','auto-draft','closed','closed','','ca2b1c46-175d-42b1-a6df-28c4a3f2d96a','','','2019-07-19 12:59:40','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?p=130',0,'customize_changeset','',0),(131,1,'2019-07-19 13:18:51','2019-07-19 13:18:51','<!-- wp:paragraph -->\n<p>[display-posts]</p>\n<!-- /wp:paragraph -->','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 13:18:51','2019-07-19 13:18:51','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(132,1,'2019-07-19 13:21:07','2019-07-19 13:21:07','<!-- wp:paragraph -->\n<p> display-posts include_excerpt=\"true\" </p>\n<!-- /wp:paragraph -->','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 13:21:07','2019-07-19 13:21:07','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(133,1,'2019-07-19 13:21:32','2019-07-19 13:21:32','<!-- wp:paragraph -->\n<p> [display-posts include_excerpt=\"true\" ]</p>\n<!-- /wp:paragraph -->','TEST','','inherit','closed','closed','','118-revision-v1','','','2019-07-19 13:21:32','2019-07-19 13:21:32','',118,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/118-revision-v1/',0,'revision','',0),(134,1,'2019-07-19 13:36:32','2019-07-19 13:36:32','{\n \"renden::nav_menu_locations[pre_header_menu]\": {\n \"value\": 0,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 13:36:32\"\n },\n \"nav_menu_item[-1533362179]\": {\n \"value\": {\n \"object_id\": 4,\n \"object\": \"category\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"taxonomy\",\n \"title\": \"About Us\",\n \"url\": \"http://006aa70.netsolhost.com/wordpress1/category/about-us/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"nav_menu_term_id\": 3,\n \"_invalid\": false,\n \"type_label\": \"Category\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 13:36:32\"\n }\n}','','','trash','closed','closed','','3ac5c6ea-c207-4b8a-9660-fd3d62b0054f','','','2019-07-19 13:36:32','2019-07-19 13:36:32','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/3ac5c6ea-c207-4b8a-9660-fd3d62b0054f/',0,'customize_changeset','',0),(135,1,'2019-07-19 13:36:32','2019-07-19 13:36:32',' ','','','publish','closed','closed','','135','','','2019-07-19 13:36:32','2019-07-19 13:36:32','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/135/',4,'nav_menu_item','',0),(136,1,'2019-07-19 14:08:53','2019-07-19 14:08:53','{\n \"kyma_theme_options[home_sections]\": {\n \"value\": [\n \"service\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:08:53\"\n }\n}','','','trash','closed','closed','','24e47529-a4fe-4438-a470-2f6476e2ded5','','','2019-07-19 14:08:53','2019-07-19 14:08:53','',0,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/24e47529-a4fe-4438-a470-2f6476e2ded5/',0,'customize_changeset','',0),(137,1,'2019-07-19 14:10:43','2019-07-19 14:10:43','{\n \"kyma_theme_options[home_slider_enabled]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:10:35\"\n },\n \"kyma_theme_options[home_service_column]\": {\n \"value\": \"3\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:10:35\"\n }\n}','','','trash','closed','closed','','dbd94ddc-ba84-4427-bffc-38c906bddcfa','','','2019-07-19 14:10:43','2019-07-19 14:10:43','',0,'http://006aa70.netsolhost.com/wordpress1/?p=137',0,'customize_changeset','',0),(138,1,'2019-07-19 14:14:35','2019-07-19 14:14:35','{\n \"kyma_theme_options[_frontpage]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:12:38\"\n },\n \"kyma_theme_options[header_topbar_bg_color]\": {\n \"value\": \"#F86923\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:12:38\"\n },\n \"kyma_theme_options[nav_color]\": {\n \"value\": \"#F86923\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:12:38\"\n },\n \"kyma_theme_options[logo_top_spacing]\": {\n \"value\": \"10\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:12:38\"\n },\n \"kyma_theme_options[back_to_top]\": {\n \"value\": \"#F86923\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:12:38\"\n },\n \"kyma_theme_options[slider_title_bg_color]\": {\n \"value\": \"#F86923\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:12:38\"\n },\n \"kyma_theme_options[callout_bg_color]\": {\n \"value\": \"#F86923\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:12:38\"\n },\n \"kyma_theme_options[color_scheme_child]\": {\n \"value\": \"orange\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:12:38\"\n },\n \"frontech::custom_logo\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:13:38\"\n },\n \"frontech::header_image\": {\n \"value\": \"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-2.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:13:38\"\n },\n \"frontech::header_image_data\": {\n \"value\": {\n \"url\": \"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-2.jpg\",\n \"thumbnail_url\": \"http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-2.jpg\",\n \"timestamp\": 1563545614107,\n \"attachment_id\": 140,\n \"width\": 1168,\n \"height\": 252\n },\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:13:38\"\n },\n \"kyma_theme_options[headersticky]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:14:35\"\n }\n}','','','trash','closed','closed','','f27c54bc-9b5f-460a-a0ee-66c265ac94d6','','','2019-07-19 14:14:35','2019-07-19 14:14:35','',0,'http://006aa70.netsolhost.com/wordpress1/?p=138',0,'customize_changeset','',0),(139,1,'2019-07-19 14:12:48','2019-07-19 14:12:48','http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-1.jpg','cropped-43590366_2230157113888557_1421806360214896640_o-1-1.jpg','','inherit','open','closed','','cropped-43590366_2230157113888557_1421806360214896640_o-1-1-jpg','','','2019-07-19 14:12:48','2019-07-19 14:12:48','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-1.jpg',0,'attachment','image/jpeg',0),(140,1,'2019-07-19 14:13:33','2019-07-19 14:13:33','','cropped-43590366_2230157113888557_1421806360214896640_o-1-2.jpg','','inherit','open','closed','','cropped-43590366_2230157113888557_1421806360214896640_o-1-2-jpg','','','2019-07-19 14:13:33','2019-07-19 14:13:33','',0,'http://006aa70.netsolhost.com/wordpress1/wp-content/uploads/2019/07/cropped-43590366_2230157113888557_1421806360214896640_o-1-2.jpg',0,'attachment','image/jpeg',0),(141,1,'2019-07-19 14:24:33','2019-07-19 14:24:33','{\n \"kyma_theme_options[contact_email]\": {\n \"value\": \"info@unionems.net\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:23:50\"\n },\n \"kyma_theme_options[contact_phone]\": {\n \"value\": \"(980) 993-7601\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:23:50\"\n },\n \"kyma_theme_options[social_media_header]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:23:50\"\n },\n \"frontech::header_image\": {\n \"value\": \"remove-header\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:24:33\"\n },\n \"frontech::header_image_data\": {\n \"value\": \"remove-header\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:24:33\"\n }\n}','','','trash','closed','closed','','0fac9e9f-995f-4db4-891c-080cfa59ea6a','','','2019-07-19 14:24:33','2019-07-19 14:24:33','',0,'http://006aa70.netsolhost.com/wordpress1/?p=141',0,'customize_changeset','',0),(142,1,'2019-07-19 14:25:22','2019-07-19 14:25:22','{\n \"kyma_theme_options[home_slider_posts]\": {\n \"value\": [\n \"41\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:24:49\"\n },\n \"kyma_theme_options[home_slider_enabled]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:25:22\"\n }\n}','','','trash','closed','closed','','e742f4a2-4df0-4ffa-b02b-f2bc3d338de4','','','2019-07-19 14:25:22','2019-07-19 14:25:22','',0,'http://006aa70.netsolhost.com/wordpress1/?p=142',0,'customize_changeset','',0),(143,1,'2019-07-19 14:31:53','2019-07-19 14:31:53','{\n \"show_on_front\": {\n \"value\": \"posts\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:28:43\"\n },\n \"kyma_theme_options[headersticky]\": {\n \"value\": false,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:28:43\"\n },\n \"kyma_theme_options[footer_layout]\": {\n \"value\": \"4\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:28:43\"\n },\n \"kyma_theme_options[site_layout]\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:28:43\"\n },\n \"kyma_theme_options[home_sections]\": {\n \"value\": [\n \"service\",\n \"portfolio\",\n \"blog\",\n \"content\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:30:42\"\n },\n \"kyma_theme_options[home_slider_posts]\": {\n \"value\": [\n \"118\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:31:53\"\n }\n}','','','trash','closed','closed','','da7a3414-35e4-4cbe-93f8-5ac078586908','','','2019-07-19 14:31:53','2019-07-19 14:31:53','',0,'http://006aa70.netsolhost.com/wordpress1/?p=143',0,'customize_changeset','',0),(144,1,'2019-07-19 14:50:24','2019-07-19 14:50:24','{\n \"show_on_front\": {\n \"value\": \"posts\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:49:25\"\n },\n \"kyma_theme_options[_frontpage]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:49:25\"\n },\n \"kyma_theme_options[contact_info_header]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:49:25\"\n },\n \"kyma_theme_options[logo_top_spacing]\": {\n \"value\": \"10\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:49:25\"\n },\n \"kyma_theme_options[home_slider_enabled]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 14:50:24\"\n }\n}','','','trash','closed','closed','','dec38232-0d8a-43fc-8146-722d4eefc2c1','','','2019-07-19 14:50:24','2019-07-19 14:50:24','',0,'http://006aa70.netsolhost.com/wordpress1/?p=144',0,'customize_changeset','',0),(145,1,'2019-07-19 14:55:46','2019-07-19 14:55:46','<!-- wp:paragraph -->\n<p>This is a test Post</p>\n<!-- /wp:paragraph -->','Slider 1','','publish','open','open','','slider-1','','','2019-07-19 14:56:05','2019-07-19 14:56:05','',0,'http://006aa70.netsolhost.com/wordpress1/?p=145',0,'post','',0),(146,1,'2019-07-19 14:55:46','2019-07-19 14:55:46','','Slider 1','','inherit','closed','closed','','145-revision-v1','','','2019-07-19 14:55:46','2019-07-19 14:55:46','',145,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/145-revision-v1/',0,'revision','',0),(147,1,'2019-07-19 14:56:05','2019-07-19 14:56:05','<!-- wp:paragraph -->\n<p>This is a test Post</p>\n<!-- /wp:paragraph -->','Slider 1','','inherit','closed','closed','','145-revision-v1','','','2019-07-19 14:56:05','2019-07-19 14:56:05','',145,'http://006aa70.netsolhost.com/wordpress1/2019/07/19/145-revision-v1/',0,'revision','',0),(148,1,'2019-07-19 15:01:15','0000-00-00 00:00:00','{\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 15:01:15\"\n },\n \"kyma_theme_options[home_slider_enabled]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 15:01:15\"\n },\n \"kyma_theme_options[slider_text_length]\": {\n \"value\": \"8\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 15:01:15\"\n },\n \"kyma_theme_options[home_slider_effect]\": {\n \"value\": \"backSlide\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-07-19 15:01:15\"\n }\n}','','','auto-draft','closed','closed','','e81770e5-53bd-4f24-8e1e-b830e2a9886f','','','2019-07-19 15:01:15','0000-00-00 00:00:00','',0,'http://006aa70.netsolhost.com/wordpress1/?p=148',0,'customize_changeset','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0),(3,4,0),(59,3,0),(60,3,0),(61,3,0),(98,4,0),(100,4,0),(102,4,0),(135,3,0),(145,1,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=6 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,2),(3,3,'nav_menu','',0,4),(4,4,'category','',0,4),(5,5,'category','',0,0); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=6 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),(3,'Main','main',0),(4,'About Us','about-us',0),(5,'Community Paramedicine','communityu-paramedicine',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=27 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','joeyhendrix'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'default_password_nag',''),(16,1,'show_welcome_panel','1'),(17,1,'session_tokens','a:9:{s:64:\"b49b7309fb55d5de30688901d029456fc3fd35f5d14edeb24677f5c8edf42b02\";a:4:{s:10:\"expiration\";i:1563630271;s:2:\"ip\";s:13:\"208.69.133.72\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1563457471;}s:64:\"455b7e1edab99aae7c1018397c71d2539d6799a571c828bf93bd7dd1e7580b29\";a:4:{s:10:\"expiration\";i:1563630525;s:2:\"ip\";s:13:\"50.111.93.149\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1563457725;}s:64:\"82171f240d27369b04d3cfd514fca97e378eaeb498fd4cbc36460989e9838626\";a:4:{s:10:\"expiration\";i:1563630811;s:2:\"ip\";s:13:\"208.69.133.72\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1563458011;}s:64:\"9ee531c9c581ce5165bbfcf0d4651d6f7a9c3b05e215835a02569f13a6522ef5\";a:4:{s:10:\"expiration\";i:1563637508;s:2:\"ip\";s:13:\"50.111.93.149\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1563464708;}s:64:\"110ef54bc25025568827d2f1e17be74e6bd187b1d0b5f057428e23fb0fcc0c18\";a:4:{s:10:\"expiration\";i:1563642061;s:2:\"ip\";s:13:\"50.111.93.149\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1563469261;}s:64:\"0c611e2c2533011a3a04bc9ff62f8872a48e38cea21c5e568cb163aab97aebfc\";a:4:{s:10:\"expiration\";i:1563669637;s:2:\"ip\";s:12:\"206.74.82.41\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1563496837;}s:64:\"c916d6296d1685cf8e9139ddda909faea71f088693d4bbffb8f4119ebf9923db\";a:4:{s:10:\"expiration\";i:1563708340;s:2:\"ip\";s:13:\"208.69.133.72\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1563535540;}s:64:\"da170564bbe55c5bb7e9a0240f2d0b96fb4baf28cbcf213556bf07136be11c9d\";a:4:{s:10:\"expiration\";i:1563714827;s:2:\"ip\";s:13:\"208.69.133.72\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1563542027;}s:64:\"27cfd1c811f9f58345534301e2d17e5d6bf1b5b828e0ebb02c9396e9cad7588d\";a:4:{s:10:\"expiration\";i:1563721414;s:2:\"ip\";s:13:\"208.69.133.72\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1563548614;}}'),(18,1,'wp_dashboard_quick_press_last_post_id','96'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"208.69.133.0\";}'),(20,1,'wp_user-settings','libraryContent=browse&hidetb=1&siteorigin_panels_setting_tab=welcome&editor=html'),(21,1,'wp_user-settings-time','1563538790'),(22,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\";}'),(23,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(24,1,'nav_menu_recently_edited','2'),(25,1,'so_panels_directory_enabled','1'),(26,1,'teasers_dismissed','a:2:{s:10:\"sow-editor\";b:1;s:14:\"sow-google-map\";b:1;}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'joeyhendrix','b78955475556b51c5d86e7eee6d354f6','joeyhendrix','joey@hendrixdata.com','','2018-02-06 17:51:13','',0,'joeyhendrix'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_006aa70_0' -- /*!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 2019-07-19 11:21:18