0byt3m1n1
Path:
/
data
/
19
/
1
/
4
/
106
/
1982758
/
meta
/
2166445
/
mysql.backup
/
[
Home
]
File: 1_02f0eb3_0.mysqlcluster16.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster16 Database: 1_02f0eb3_0 -- ------------------------------------------------------ -- Server version 5.6.42-84.2-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=180 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://ufbvi.org/wordpress1','yes'),(2,'home','http://ufbvi.org/wordpress1','yes'),(3,'blogname','wordpress1','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','tony@ufbvi.org','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:90:{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:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=25&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s: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:0:{}','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','','no'),(40,'template','star','yes'),(41,'stylesheet','star','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','43764','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','page','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:9:{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;i:6;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:7;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:8;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:9;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;}}','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','28','yes'),(84,'page_on_front','25','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:4:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:3;a:1:{s:5:\"title\";s:6:\"Search\";}i:4;a:1:{s:5:\"title\";s:6:\"Search\";}}','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:10:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:6:\"text-2\";i:4;s:6:\"text-3\";i:5;s:6:\"text-4\";i:6;s:6:\"text-5\";i:7;s:12:\"categories-2\";i:8;s:14:\"recent-posts-2\";i:9;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:5:{i:0;s:6:\"text-6\";i:1;s:8:\"search-3\";i:2;s:6:\"text-7\";i:3;s:6:\"text-9\";i:4;s:8:\"search-4\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-8\";}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:5:{i:1550183468;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:1550209875;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:1550262680;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:1550264581;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:7:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:3:\"top\";i:2;s:6:\"social\";i:3;}s:7:\"panel_1\";i:29;s:7:\"panel_2\";i:26;s:7:\"panel_3\";i:28;s:7:\"panel_4\";i:27;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1550180260;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:6:\"text-6\";i:1;s:8:\"search-3\";i:2;s:6:\"text-7\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-8\";}s:9:\"sidebar-3\";a:2:{i:0;s:6:\"text-9\";i:1;s:8:\"search-4\";}}}}','yes'),(124,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:14:\"tony@ufbvi.org\";s:7:\"version\";s:5:\"4.9.9\";s:9:\"timestamp\";i:1550174942;}','no'),(126,'_site_transient_timeout_browser_e0b7751b8040fb7c8de50ddf95d10645','1550781083','no'),(127,'_site_transient_browser_e0b7751b8040fb7c8de50ddf95d10645','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"64.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(129,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1550219487','no'),(130,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','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:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s: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:34:\"\n Fri, 08 Feb 2019 03:58:52 +0000 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.2-alpha-44746\";s:7:\"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:31:\"WordPress 5.1 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/02/wordpress-5-1-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, 08 Feb 2019 02:22:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=6577\";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:365:\"The first release candidate for WordPress 5.1 is now available! This is an important milestone, as the release date for WordPress 5.1 draws near. “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.1 is scheduled […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Gary Pendergast\";s: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:4874:\"\n<p>The first release candidate for WordPress 5.1 is now available!</p>\n\n\n\n<p>This is an important milestone, as the release date for WordPress 5.1 draws near. “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.1 is <a href=\"https://make.wordpress.org/core/5-1/\">scheduled to be released</a> on <strong>Thursday, February 21</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.1 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 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.1-RC1.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<h2>What’s in WordPress 5.1?</h2>\n\n\n\n<p>Inspired by Archie Bell & The Drells, WordPress’s theme for 2019 is to “tighten up”, and WordPress 5.1 focussed on exactly that.</p>\n\n\n\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\'youtube-player\' type=\'text/html\' width=\'632\' height=\'386\' src=\'https://www.youtube.com/embed/Wro3bqi4Eb8?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe>\n</div></figure>\n\n\n\n<p>With security and speed in mind, this release introduces WordPress’s first <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">Site Health</a> features. WordPress will start showing notices to administrators of sites that run long-outdated versions of PHP, which is the programming language that powers WordPress.</p>\n\n\n\n<p>Furthermore, when installing new plugins, WordPress’s Site Health features will check whether a plugin requires a version of PHP incompatible with your site. If so, WordPress will prevent you from installing that plugin.</p>\n\n\n\n<p>The new block editor has kept improving since its introduction in WordPress 5.0. Most significantly, WordPress 5.1 includes solid performance improvements within the editor. The editor should feel a little quicker to start, and typing should feel smoother. There are more features and performance improvements planned in upcoming WordPress releases, you can check them out in the <a href=\"https://wordpress.org/plugins/gutenberg\">Gutenberg plugin</a>.</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.1 and update the <em>Tested up to</em> version in the readme to 5.1. 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 WordPress 5.1 Field Guide has also been published, which goes into the details of the major changes.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"vJJstvskLt\"><a href=\"https://make.wordpress.org/core/2019/02/08/wordpress-5-1-field-guide/\">WordPress 5.1 Field Guide</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" src=\"https://make.wordpress.org/core/2019/02/08/wordpress-5-1-field-guide/embed/#?secret=vJJstvskLt\" data-secret=\"vJJstvskLt\" width=\"600\" height=\"338\" title=\"“WordPress 5.1 Field Guide” — Make WordPress Core\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\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.1 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>This is my release<br> candidate. There are many<br> like it. This is mine.</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:\"6577\";s: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:36:\"The Month in WordPress: January 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:71:\"https://wordpress.org/news/2019/02/the-month-in-wordpress-january-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, 04 Feb 2019 09:17: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: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=6575\";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:381:\"The momentum from December’s WordPress 5.0 release was maintained through January with some big announcements and significant updates. Read on to find out what happened in the WordPress project last month. WordPress Leadership Grows In a milestone announcement this month, WordPress project lead, Matt Mullenweg (@matt), named two individuals who are coming on board 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: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:4627:\"\n<p>The momentum from December’s WordPress 5.0 release was maintained through January with some big announcements and significant updates. Read on to find out what happened in the WordPress project last month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress Leadership Grows</h2>\n\n\n\n<p>In a milestone announcement this month, WordPress project lead, Matt Mullenweg (<a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a>), <a href=\"https://make.wordpress.org/updates/2019/01/16/expanding-wordpress-leadership/\">named two individuals</a> who are coming on board to expand the leadership team of the project.<br></p>\n\n\n\n<p>As Executive Director, Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) will oversee <a href=\"https://make.wordpress.org/\">all the contribution teams</a> across the project. As Marketing & Communications Lead, Joost de Valk (<a href=\'https://profiles.wordpress.org/joostdevalk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joostdevalk</a>) will lead <a href=\"https://make.wordpress.org/marketing/\">the Marketing team</a> and generally oversee improvements to WordPress.org.<br></p>\n\n\n\n<p>Both Josepha and Joost have contributed to the WordPress project for many years and will certainly have a much larger impact going forward in their new roles.</p>\n\n\n\n<h2>WordPress 5.1 Development Continues</h2>\n\n\n\n<p>Immediately after the 5.0 release of WordPress, work started on version 5.1 with <a href=\"https://make.wordpress.org/core/tag/5-1/\">some highly anticipated new features</a> coming out in <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-1/\">the first beta release</a>. Since then, the <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-2/\">second</a> and <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-3/\">third</a> betas have been made available.<br></p>\n\n\n\n<p>One of the core updates in this release — <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">a feature to improve the way in which WordPress handles PHP errors</a> — has <a href=\"https://make.wordpress.org/core/2019/01/30/wordpress-5-1-beta-3-delay/\">been pushed back</a> to version 5.2 due to unforeseen issues that would have caused significant delays to the 5.1 release.<br></p>\n\n\n\n<p>Want to get involved in testing or building WordPress Core? You can install <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</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<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The WordPress Coding Standards team <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/2.0.0\">released version 2.0</a> this month.</li><li>In her new role as Executive Director, Josepha Haden <a href=\"https://make.wordpress.org/updates/2019/01/21/our-strengths-and-challenges/\">looks at what contributors need</a> to help support them more effectively.</li><li>Approximately 2,300 tickets in the Core bug tracker <a href=\"https://make.wordpress.org/core/2019/01/14/follow-up-on-recent-trac-bulk-edit/\">were closed</a> in a large bulk edit this month due to their inactivity over the last two years.</li><li>Autocomplete for usernames has been added to <a href=\"https://wordpress.org/support/forums/\">the WordPress Support Forums</a>, making it much easier to communicate directly with individuals.</li><li><a href=\"https://make.wordpress.org/core/tag/gutenberg/\">Work continues on the Gutenberg project</a>, expanding into more areas of the WordPress dashboard.</li><li>Since the new <a href=\"https://wordpress.org/support/\">WordPress Support portal</a> release in December, <a href=\"https://make.wordpress.org/docs/2019/01/28/summary-for-docs-team-meeting-28-january-2019/\">work has been ongoing</a> to improve its features and complete the content migration.</li><li>The Plugin Review team has published <a href=\"https://make.wordpress.org/plugins/2019/01/28/reminder-about-behavior/\">an important reminder about behavior</a> in the Plugin Directory and support forums.</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:\"6575\";s: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: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:20:\"WordPress 5.1 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Jan 2019 03:34: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: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=6566\";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:344:\"WordPress 5.1 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. There are two ways to test the WordPress 5.1 beta: try the WordPress Beta Testerplugin (you’ll want to select the “bleeding […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Gary Pendergast\";s: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:3754:\"\n<p>WordPress 5.1 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 beta: 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.1-beta3.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.1 is slated for release on <a href=\"https://make.wordpress.org/core/5-1/\">February 21</a>, and we need your help to get there!</p>\n\n\n\n<h2>Site Health Check</h2>\n\n\n\n<p>One of the features originally slated for WordPress 5.1—the PHP error protection handler—will target WordPress 5.2 instead. Some potential security issues were discovered in the implementation: rather than risk releasing insecure code, the team decided to pull it out of WordPress 5.1. The work in <a href=\"https://core.trac.wordpress.org/ticket/46130\">#46130</a> is showing good progress towards addressing the security concerns, if you’d like to follow development progress on this feature.</p>\n\n\n\n<h2>Additional Changes</h2>\n\n\n\n<p>A handful of smaller bugs have also been fixed in this release, including:</p>\n\n\n\n<ul><li>TinyMCE has been upgraded to version 4.9.2 (<a href=\"https://core.trac.wordpress.org/ticket/46094\">#46094</a>).</li><li>The block editor has had a couple of bugs fixed (<a href=\"https://core.trac.wordpress.org/ticket/46137\">#46137</a>).</li><li>A few differences in behaviour between the classic block and the classic editor have been fixed (<a href=\"https://core.trac.wordpress.org/ticket/46062\">#46062</a>, <a href=\"https://core.trac.wordpress.org/ticket/46071\">#46071</a>, <a href=\"https://core.trac.wordpress.org/ticket/46085\">#46085</a>).</li><li>When adding <code>rel</code> attributes to links, ensure the value isn’t empty (<a href=\"https://core.trac.wordpress.org/ticket/45352\">#45352</a>), and that it works as expected with customizer changesets (<a href=\"https://core.trac.wordpress.org/ticket/45292\">#45292</a>).</li></ul>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.1 has many changes aimed at polishing the developer experience. To keep you informed, we publish <a href=\"https://make.wordpress.org/core/tag/5-1+dev-notes/\">developers’ notes</a> on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> throughout the release cycle. Subscribe to the Make WordPress Core blog for updates over the coming weeks, detailing other changes in 5.1 that you should be aware of.</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> The beta 2 release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#soft-freeze\">soft string freeze</a> point of the 5.1 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>In just a few weeks<br> WordPress Five-One will be here.<br> Your testing helps us!</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:\"6566\";s: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: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:20:\"WordPress 5.1 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Jan 2019 01:01: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: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=6550\";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:312:\"WordPress 5.1 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. There are two ways to test the WordPress 5.1 beta: try the WordPress Beta Tester plugin (you’ll want 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:15:\"Gary Pendergast\";s: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:4592:\"\n<p>WordPress 5.1 Beta 2 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 beta: 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.1-beta2.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.1 is slated for release on <a href=\"https://make.wordpress.org/core/5-1/\">February 21</a>, and we need your help to get there!</p>\n\n\n\n<p>Over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=01%2F11%2F2019..&milestone=5.1&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">110 tickets have been closed</a> since <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-1/\">beta 1</a>, many of which are documentation and testing suite improvements. Here are the major changes and bug fixes:</p>\n\n\n\n<ul><li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=01%2F11%2F2019..01%2F22%2F2019&focuses=!~docs&keywords=~servehappy&milestone=5.1&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Several refinements and bug fixes</a> related to the Site Health project have been made.</li><li>The <code>pre_render_block</code> and <code>render_block_data</code> filters have been introduced allowing plugins to override block attribute values (<a href=\"https://core.trac.wordpress.org/ticket/45451\">#45451</a>, dev note coming soon).</li><li><code>get_template_part()</code> will now return a value indicating whether a template file was found and loaded (<a href=\"https://core.trac.wordpress.org/ticket/40969\">#40969</a>).</li><li>A notice will now be triggered when developers incorrectly register REST API endpoints (related <a href=\"https://make.wordpress.org/core/2019/01/11/new-rest-api-notice-in-5-1/\">dev note</a>).</li><li>Bulk editing posts will no longer unintentionally change a post’s post format (<a href=\"https://core.trac.wordpress.org/ticket/44914\">#44914</a>)</li><li>Twemoji has been updated to the latest version, 11.2.0 (<a href=\"https://core.trac.wordpress.org/ticket/45133\">#45133</a>).</li><li>A bug preventing the Custom Fields meta box from being enabled has been fixed (#<a href=\"https://core.trac.wordpress.org/ticket/46028\">46028</a>).</li><li>The treatment of <code>orderby</code> values for <code>post__in</code>, <code>post_parent__in</code>, and <code>post_name__in</code> has been standardized (<a href=\"https://core.trac.wordpress.org/ticket/38034\">#38034</a>).</li><li>When updating language packs, old language packs are now correctly deleted to avoid filling up disk space (<a href=\"https://core.trac.wordpress.org/ticket/45468\">#45468</a>).</li></ul>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.1 has many changes aimed at polishing the developer experience. To keep you informed, we publish <a href=\"https://make.wordpress.org/core/tag/5-1+dev-notes/\">developers notes</a> on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> throughout the release cycle. Subscribe to the Make WordPress Core blog for updates over the coming weeks, detailing other changes in 5.1 that you should be aware of.</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> The beta 2 release als marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#soft-freeze\">soft string freeze</a> point of the 5.1 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>Do you enjoy bugs?<br> I don’t. So, we fixed them all.<br> Well, not all. But close.</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:\"6550\";s: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:20:\"WordPress 5.1 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Jan 2019 00:58: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: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=6540\";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:350:\"WordPress 5.1 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. There are two ways to test the WordPress 5.1 beta: try the WordPress Beta Tester plugin (you’ll want to select the “bleeding […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Gary Pendergast\";s: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:4178:\"\n<p>WordPress 5.1 Beta 1 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 beta: 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.1-beta1.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.1 is slated for release on <a href=\"https://make.wordpress.org/core/5-1/\">February 21</a>, and we need your help to get there. Here are some of the big items to test so we can find as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Site Health Check</h2>\n\n\n\n<p>Site Health Check is an ongoing project aimed at improving the stability and performance of the entire WordPress ecosystem. The first phase of this project is included in WordPress 5.1. For the first time, WordPress will catch and pause the problem code, so you can log in to your Dashboard and see what the problem is (<a href=\"https://core.trac.wordpress.org/ticket/44458\">#44458</a>). Before, you’d have to FTP in to your files or get in touch with your host.</p>\n\n\n\n<p>Additionally, in April 2019, <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">WordPress’ will increase its minimum supported PHP version to 5.6</a>. To help you check if you’re prepared for this change, WordPress 5.1 will show you a warning and help you upgrade your version of PHP, if necessary.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<ul><li>The Cron system can now be more easily replaced with a custom cron handler (<a href=\"https://core.trac.wordpress.org/ticket/32656\">#32656</a>).</li><li>When starting cron under PHP-FPM, the connection will return a response immediately, even for long running cron jobs (<a href=\"https://make.wordpress.org/core/2019/01/09/cron-improvements-with-php-fpm-in-wordpress-5-1/\">dev note</a>).</li><li><code>WP_DEBUG_LOG</code> can be set to a custom log location (<a href=\"https://core.trac.wordpress.org/ticket/18391\">#18391</a>).</li><li>Introduced the <code>wp_blogmeta</code> table (<a href=\"https://core.trac.wordpress.org/ticket/37923\">#37923</a>).</li><li>Added <code>LIKE</code> support to <code>meta_key</code> comparisons in <code>WP_Meta_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/42409\">#42409</a>).</li></ul>\n\n\n\n<p>There have been <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.1&group=resolution&col=id&col=summary&col=component&col=owner&col=type&col=priority&col=version&order=priority\">over 360 tickets closed</a> in WordPress 5.1, with numerous small bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for more developer notes (which are <a href=\"https://make.wordpress.org/core/tag/5-1+dev-notes/\">assigned</a> the <code>dev-notes</code> tag) in the coming weeks detailing other changes in 5.1 that you should be aware of.</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><strong><em>If you think you’ve found a bug</em></strong><em>, you can post to the </em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em>Alpha/Beta area</em></a><em> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, </em><a href=\"https://make.wordpress.org/core/reports/\"><em>file one on WordPress Trac</em></a><em>, where you can also find </em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Miss my haiku?<br>I will have plenty for you<br>in the coming weeks.</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:\"6540\";s: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:35:\"WordPress 5.0.3 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/01/wordpress-5-0-3-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Jan 2019 18:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6530\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"WordPress 5.0.3 is now available! 5.0.3 is a maintenance release that includes 37 bug fixes and 7 performance updates. The focus of this release was fine-tuning the new block editor, and fixing any major bugs or regressions. Here are a few of the highlights: 15 block editor related bug fixes and improvements have been added […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4616:\"\n<p>WordPress 5.0.3 is now available!</p>\n\n\n\n<p>5.0.3 is a maintenance release that includes 37 bug fixes and 7 performance updates. The focus of this release was fine-tuning the new block editor, and fixing any major bugs or regressions.</p>\n\n\n\n<p>Here are a few of the highlights:</p>\n\n\n\n<ul><li>15 block editor related bug fixes and improvements have been added to bundled themes. Make sure to update these for an improved block editing experience.</li><li><a href=\"https://core.trac.wordpress.org/query?status=closed&component=I18N&milestone=5.0.3&group=component&order=priority\">2 block editor related internationalization (I18N) bugs</a> have been fixed</li><li>Users with JavaScript disabled <a href=\"https://core.trac.wordpress.org/ticket/45453\">now see a notice</a> when attempting to use the block editor.</li><li>A few <a href=\"https://core.trac.wordpress.org/ticket/44770\">PHP</a> <a href=\"https://core.trac.wordpress.org/ticket/44809\">errors</a> in the Customizer have been fixed.</li><li>Some <a href=\"https://core.trac.wordpress.org/ticket/45615\">issues uploading common file types</a>, like CSVs, have been fixed.</li></ul>\n\n\n\n<p>For a full list of changes, please consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.0.3&group=component\">list of tickets on Trac</a>, <a href=\"https://core.trac.wordpress.org/log/branches/5.0?action=stop_on_copy&mode=stop_on_copy&rev=44522&stop_rev=44342&limit=100&sfp_email=&sfph_mail=\">changelog</a>, or read a <a href=\"https://make.wordpress.org/core/?p=36158\">more technical summary</a> on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/download/\">download WordPress 5.0.3</a> or visit Dashboard → Updates on your site and click <em>Update Now</em>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 5.0.3:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/kloon/\">Gerhard Potgieter</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Grzegorz (Greg) Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jobthomas/\">Job</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/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mmaumio/\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/panchen/\">panchen</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rickalee/\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</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:\"6530\";s: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:37:\"The Month in WordPress: December 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2019/01/the-month-in-wordpress-december-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Jan 2019 09:18: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: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=6527\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:361:\"New features, a big event, and important announcements marked December as a milestone month for the WordPress community. Release of WordPress 5.0 On December 6 WordPress 5.0 was released. This release includes the much anticipated new block editor as the default editing experience. While some users have chosen to continue using the Classic Editor on […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:3518:\"\n<p>New features, a big event, and important announcements marked December as a milestone month for the WordPress community. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Release of WordPress 5.0</h2>\n\n\n\n<p>On December 6 <a href=\"https://wordpress.org/news/2018/12/bebo/\">WordPress 5.0 was released</a>. This release includes the much anticipated new block editor as the default editing experience. While some users have chosen to continue using the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> on their sites, many site owners have quickly upgraded to this latest version.<br></p>\n\n\n\n<p>Two security and maintenance releases came out over the course of the month, with <a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\">the latest update</a> providing a huge boost to performance and stability.<br></p>\n\n\n\n<p>The new version of WordPress comes a new default theme: <a href=\"https://wordpress.org/themes/twentynineteen/\">Twenty Nineteen</a>. This theme is designed to highlight how the block editor can be used.<br></p>\n\n\n\n<p>Want to get involved in developing 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>Gutenberg Phase 2</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2018/12/08/gutenberg-phase-2/\">The next phase of Gutenberg</a> is being decided, starting with widgets, which will make it easier for users to customize their sites. This will be done with features being added to the Gutenberg plugin.<br></p>\n\n\n\n<p>Want to get involved in develop the future of the WordPress dashboard? 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>9 Projects for 2019</h2>\n\n\n\n<p>WordPress co-founder Matt Mullenweg outlined <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">9 projects for the year 2019</a>. These projects range from creating a block for navigations menus, porting all existing widgets into blocks, forming a triage team to tackle open issues on Trac and more.<br></p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2018/12/17/status-update-porting-widgets-to-blocks/\">status update</a> for porting existing widgets to blocks has been posted by Mel Choyce.</p>\n\n\n\n<h2>WordCamp US 2019 Dates announced</h2>\n\n\n\n<p><a href=\"https://2019.us.wordcamp.org/2018/12/12/wordcamp-us-2019-announcing-our-dates/\">WordCamp US 2019</a> will be held during Nov. 1-3, 2019, in St Louis, Missouri. It will be one of our largest events of the year and will feature Matt Mullenweg’s annual State of the Word address.<br></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>v1.2.1 of the WordPress Coding Standards library <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.2.1\">has been released</a>.</li><li>A few revisions <a href=\"https://make.wordpress.org/core/2018/12/18/proposed-revisions-to-javascript-coding-standards/\">have been proposed</a> for the WordPress JavaScript coding standards.</li></ul>\n\n\n\n<p><em>If you have a story we should consider including 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:\"6527\";s: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:35:\"WordPress 5.0.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/2018/12/wordpress-5-0-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:\"Wed, 19 Dec 2018 23:47:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6509\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"WordPress 5.0.2 is now available! 5.0.2 is a maintenance release that addresses 73 bugs. The primary focus of this release was performance improvements in the block editor: the cumulated performance gains make it 330% faster for a post with 200 blocks. Here are a few of the additional highlights: 45 total Block Editor improvements are […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s: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:4695:\"\n<p>WordPress 5.0.2 is now available!</p>\n\n\n\n<p>5.0.2 is a maintenance release that addresses 73 bugs. The primary focus of this release was performance improvements in the block editor: the cumulated performance gains make it 330% faster for a post with 200 blocks.</p>\n\n\n\n<p>Here are a few of the additional highlights:</p>\n\n\n\n<ul><li>45 total Block Editor improvements are included (14 performance enhancements & 31 bug fixes).</li><li><a href=\"https://core.trac.wordpress.org/query?component=Bundled+Theme&milestone=5.0.2&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">17 Block Editor related bugs</a> have been fixed across all of the bundled themes.</li><li>Some <a href=\"https://core.trac.wordpress.org/query?component=I18N&milestone=5.0.2&col=id&col=summary&col=status&col=owner&col=type&col=priority&col=milestone&order=priority\">internationalization (i18n) issues</a> related to script loading have also been fixed.</li></ul>\n\n\n\n<p>For a full list of changes, please consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.0.2&group=component\">list of tickets on Trac</a> or the <a href=\"https://core.trac.wordpress.org/log/branches/5.0?action=stop_on_copy&mode=stop_on_copy&rev=44339&stop_rev=44183&limit=100&sfp_email=&sfph_mail=\">changelog</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/download/\">download WordPress 5.0.2</a> or visit Dashboard → Updates and click <em>Update Now</em>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 5.0.2:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/babaevan/\">Alexander Babaev</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/jdtrower/\">David Trower</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/edpittol/\">Eduardo Pittol</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/greg-raven/\">Greg Raven</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">gziolo</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">iCaleb</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/khleomix/\">khleomix</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/mihaivalentin/\">mihaivalentin</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/more/\"></a><a href=\"https://profiles.wordpress.org/mmaumio/\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pratikthink/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/strategio/\">strategio</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/torontodigits/\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/volodymyrkolesnykov/\">volodymyrkolesnykov</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/ze3kr/\">ze3kr</a>, and <a href=\"https://profiles.wordpress.org/mypacecreator/\">のむらけい</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:\"6509\";s: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: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:\"WordCamp US 2019 dates announced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2018/12/wordcamp-us-2019-dates-announced/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 19:47:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6496\";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:\"Save the date! The next WordCamp US will be held on November 1-3, 2019, in beautiful St Louis, Missouri. One of our largest events of the year, WordCamp US is a great chance to connect with WordPress enthusiasts from around the world. This is also the event that features Matt Mullenweg’s annual State of the […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s: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:705:\"\n<p>Save the date! <a href=\"https://2019.us.wordcamp.org/2018/12/12/wordcamp-us-2019-announcing-our-dates/\">The next WordCamp US</a> will be held on November 1-3, 2019, in beautiful <a href=\"https://2018.us.wordcamp.org/2018/06/15/matt-mullenweg-announces-st-louis-as-wordcamp-us-2019-2020-host-city/\">St Louis, Missouri</a>. One of our largest events of the year, WordCamp US is a great chance to connect with WordPress enthusiasts from around the world. This is also the event that features Matt Mullenweg’s annual <a href=\"https://www.youtube.com/watch?v=r5b-N2RmxS8\">State of the Word</a> address. </p>\n\n\n\n<p>We’d love to see you in St. Louis next year, so mark your calendar now!<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:\"6496\";s: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:32:\"WordPress 5.0.1 Security 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:68:\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-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:\"Thu, 13 Dec 2018 03:13:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6498\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:374:\"WordPress 5.0.1 is now available. This is a security release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. Plugin authors are encouraged to read the 5.0.1 developer notes for information on backwards-compatibility. WordPress versions 5.0 and earlier are affected by the following bugs, which are fixed in version […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Ian Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4799:\"\n<p>WordPress 5.0.1 is now available. This is a <strong>security release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>Plugin authors are encouraged to <a href=\"https://make.wordpress.org/core/2018/12/13/backwards-compatibility-breaks-in-5-0-1/\">read the 5.0.1 developer notes</a> for information on backwards-compatibility.</p>\n\n\n\n<p>WordPress versions 5.0 and earlier are affected by the following bugs, which are fixed in version 5.0.1. Updated versions of WordPress 4.9 and older releases are also available, for users who have not yet updated to 5.0.</p>\n\n\n\n<ul><li><a href=\"https://ripstech.com\">Karim El Ouerghemmi</a> discovered that authors could alter meta data to delete files that they weren’t authorized to.</li><li>Simon Scannell of <a href=\"https://blog.ripstech.com\">RIPS Technologies</a> discovered that authors could create posts of unauthorized post types with specially crafted input.</li><li><a href=\"https://twitter.com/_s_n_t\">Sam Thomas</a> discovered that contributors could craft meta data in a way that resulted in PHP object injection. </li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> discovered that contributors could edit new comments from higher-privileged users, potentially leading to a cross-site scripting vulnerability.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> also discovered that specially crafted URL inputs could lead to a cross-site scripting vulnerability in some circumstances. WordPress itself was not affected, but plugins could be in some situations. </li><li><a href=\"https://yoast.com/\">Team Yoast</a> discovered that the user activation screen could be indexed by search engines in some uncommon configurations, leading to exposure of email addresses, and in some rare cases, default generated passwords.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> and <a href=\"https://medium.com/websec\">Slavco</a> discovered that authors on Apache-hosted sites could upload specifically crafted files that bypass MIME verification, leading to a cross-site scripting vulnerability. </li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 5.0.1</a>, or venture over to <code>Dashboard → Updates</code> and click <code>Update Now</code>. Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>In addition to the security researchers mentioned above, thank you to everyone who contributed to WordPress 5.0.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron Campbell</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry Abrahamson</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/darthhexx/\">David Newman</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">Demitrious Kelly</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/hnotess/\">Hannah Notess</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</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/chanthaboune\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mo Jangda</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, and <a href=\"https://twitter.com/p_valentyn\">Valentyn Pylypchuk</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:\"6498\";s: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:\"Thu, 14 Feb 2019 20:30:42 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, 08 Feb 2019 03:58:52 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20180206180026\";}','no'),(131,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1550219487','no'),(132,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1550176287','no'),(133,'_site_transient_timeout_community-events-fa9746e18e23f17d6a273545239c4c3a','1550219487','no'),(134,'_site_transient_community-events-fa9746e18e23f17d6a273545239c4c3a','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"67.161.213.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:33:\"Get Help With Your WordPress Site\";s:3:\"url\";s:59:\"https://www.meetup.com/WordPress-Websites/events/257307795/\";s:6:\"meetup\";s:28:\"West Jordan WordPress Meetup\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Websites/\";s:4:\"date\";s:19:\"2019-02-26 10:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"West Jordan, UT, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.609485999999997;s:9:\"longitude\";d:-111.939735;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:33:\"Get Help With Your WordPress Site\";s:3:\"url\";s:59:\"https://www.meetup.com/WordPress-Websites/events/257307800/\";s:6:\"meetup\";s:28:\"West Jordan WordPress Meetup\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Websites/\";s:4:\"date\";s:19:\"2019-03-26 10:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"West Jordan, UT, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.609485999999997;s:9:\"longitude\";d:-111.939735;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:33:\"Get Help With Your WordPress Site\";s:3:\"url\";s:59:\"https://www.meetup.com/WordPress-Websites/events/258085076/\";s:6:\"meetup\";s:28:\"West Jordan WordPress Meetup\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Websites/\";s:4:\"date\";s:19:\"2019-04-23 10:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"West Jordan, UT, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.609485999999997;s:9:\"longitude\";d:-111.939735;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:33:\"Get Help With Your WordPress Site\";s:3:\"url\";s:62:\"https://www.meetup.com/WordPress-Websites/events/vbxhmnyzhblc/\";s:6:\"meetup\";s:28:\"West Jordan WordPress Meetup\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Websites/\";s:4:\"date\";s:19:\"2019-05-28 10:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"West Jordan, UT, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.609485999999997;s:9:\"longitude\";d:-111.939735;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:33:\"Get Help With Your WordPress Site\";s:3:\"url\";s:62:\"https://www.meetup.com/WordPress-Websites/events/vbxhmnyzjbhc/\";s:6:\"meetup\";s:28:\"West Jordan WordPress Meetup\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Websites/\";s:4:\"date\";s:19:\"2019-06-25 10:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"West Jordan, UT, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.609485999999997;s:9:\"longitude\";d:-111.939735;}}}}','no'),(135,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1550219487','no'),(136,'_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:114:\"WPTavern: Matt Mullenweg Publishes TED Talk on the Future of Work, Prepares to Launch New Distributed.blog Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87306\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://wptavern.com/matt-mullenweg-publishes-ted-talk-on-the-future-of-work-prepares-to-launch-new-distributed-blog-website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3617:\"<p>Matt Mullenweg is teasing out a new website at <a href=\"https://distributed.blog/\" rel=\"noopener\" target=\"_blank\">distributed.blog</a> with the tagline “The future of work is here.” It’s not clear yet whether subscribers to the mystery blog will be on board for blog posts, a new podcast, or a book promotion, but the site has piqued curiosity.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">This should be fun… (take 2 with working form) <a href=\"https://t.co/RpAfb8jvg5\">https://t.co/RpAfb8jvg5</a></p>\n<p>— Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1095843491077214208?ref_src=twsrc%5Etfw\">February 14, 2019</a></p></blockquote>\n<p></p>\n<p>Mullenweg recently recorded a talk for TED’s new video series, <a href=\"https://www.facebook.com/watch/?v=294277961234005\" rel=\"noopener\" target=\"_blank\">The Way We Work</a>. Over the past 14 years since founding Automattic, he has become an expert and an industry advocate for distributed work, having grown the company to more than 800 employees. In the video he said he prefers the term “distributed” over “remote,” as remote implies there are some people who are central and some who are not.</p>\n\n<div class=\"wp-block-embed__wrapper\">\n<div id=\"fb-root\"></div>\n<p>&version;</p>\n<div class=\"fb-video\">\n<blockquote cite=\"https://www.facebook.com/TEDsTheWayWeWork/videos/294277961234005/\" class=\"fb-xfbml-parse-ignore\"><p><a href=\"https://www.facebook.com/TEDsTheWayWeWork/videos/294277961234005/\">Why Working from Home Is Better for Business</a></p>\n<p>This company is so dedicated to remote working that they literally don't have an office. Here's why a \"distributed\" workforce is better for business — and employees:</p>\n<p>Posted by <a href=\"https://www.facebook.com/TEDsTheWayWeWork/\">The Way We Work</a> on Monday, January 14, 2019</p></blockquote>\n</div>\n</div>\n\n<p>When I first started working as a developer from home in 2008, many of my friends and family didn’t believe I had “a real job.” People would often say things like, “Remind me what it is that you do at home all day…?” Sometimes I would even receive honest questions from incredulous friends, asking, “Why don’t you go find a real job?” The culture of remote and distributed work is still not widely understood 11 years later but it is slowly improving.</p>\n<p>“I think a distributed work force is the most effective way to build a company,” Mullenweg said. “The key is that you have to approach it consciously. I believe that talent and intelligence are equally distributed throughout the world but opportunity is not.” Large tech companies, along with more traditional style companies, still struggle to get on board with this way of working. </p>\n<p>Mullenweg’s TED talk explains a few advantages of distributed work. He also anticipates responses from managers in traditional work environments, who might say, “Sure, that may work for all you fancy tech folks but not for us.” Mullenweg outlines a few tips for getting started, such as documenting everything, increasing communication online, and experimenting with collaboration tools. </p>\n<p>Automattic was the first WordPress company to operate a completely distributed workforce. Many other product companies, hosts, and agencies have followed suit. Remote and distributed teams have now become so common in the WordPress ecosystem that many who have experienced this way of working can never return to their old way of life.</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, 14 Feb 2019 19:02: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:\"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: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:82:\"WPTavern: WPBrigade Patches Critical Vulnerability in Simple Social Buttons Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87279\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/wpbrigade-patches-critical-vulnerability-in-simple-social-buttons-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1750:\"<p><a href=\"https://wpbrigade.com\" rel=\"noopener\" target=\"_blank\">WPBrigade</a>, the developers behind the <a href=\"https://wordpress.org/plugins/simple-social-buttons/\" rel=\"noopener\" target=\"_blank\">Simple Social Buttons</a> plugin, have patched a critical privilege escalation vulnerability. The security issue was discovered by the team at WebARX. Developer and researcher Luka Šikić summarized the vulnerability in a <a href=\"https://www.webarxsecurity.com/wordpress-plugin-simple-social-buttons/\" rel=\"noopener\" target=\"_blank\">post</a> published this week:</p>\n<blockquote><p>Improper application design flow, chained with lack of permission check resulted in privilege escalation and unauthorized actions in WordPress installation allowing non-admin users, even subscriber user type to modify WordPress installation options from the wp_options table.</p></blockquote>\n<p>Simple Social Buttons is a plugin that makes it easy for users to add social buttons to posts, pages, archives, and, popups, fly-ins, and custom post types. More than 40,000 users have the free version of the plugin active on their sites. A commercial version is also available through the developer’s website.</p>\n<p>The plugin’s authors released version 2.0.22 the day after WebARX disclosed the vulnerability, but some site owners and agencies may not have heard about the security issue. Not everyone checks for updates automatically or even once per month. WPBrigade has not yet alerted users to the vulnerability on their blog or Twitter account. The only mention is in the plugin’s changelog, which states: “Enhancement: Fix security issue.” Users who see an update notice in their dashboards are advised to update immediately.</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, 14 Feb 2019 06:04:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:99:\"WPTavern: WPWeekly Episode 345 – The Relationship Between Corporate Cash and Open Source Software\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87276&preview=true&preview_id=87276\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/wpweekly-episode-345-the-relationship-between-corporate-cash-and-open-source-software\";s: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:2844:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss a <a href=\"https://mor10.com/on-the-corporate-takeover-of-the-cathedral-and-the-bazaar/\">thought-provoking post</a> published by Morten Rand-Hendriksen that takes a deep look at equity in open source software. Morten suggests that the mantra of <em>decisions are made by those who show up</em> be changed to <em>decisions are made by those who <strong>can afford</strong> to show up</em>.</p>\n<p>We talk about the relationship and influence money from businesses can have on open source software, especially if they’re employing someone to contribute to that project full-time. We discuss the pros and cons of financial contributions and whether or not WordPress could fall victim to progressing only at the whims of corporate sponsors.</p>\n<p>Near the end of the show, John provides an overview of what’s new in Sugar Calendar 2.0.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://twitter.com/benUNC/status/1092778708174286848\">PetersenMediaGroup is Relaunched </a></p>\n<p><a href=\"https://www.petersenmediagroup.com/\">https://www.petersenmediagroup.com/</a></p>\n<p><a href=\"https://make.wordpress.org/core/2019/02/08/wordpress-5-1-field-guide/\">WordPress 5.1 Field Guide</a></p>\n<p><a href=\"https://wptavern.com/gutenberg-5-0-adds-new-rss-block-amazon-kindle-embed-block-and-focalpointpicker-component\">Gutenberg 5.0 Adds New RSS Block, Amazon Kindle Embed Block, and FocalPointPicker Component</a></p>\n<p><a href=\"https://wptavern.com/gutenberg-blocks-design-library-offers-pre-built-page-designs-using-existing-core-blocks\">Gutenberg Blocks Design Library Offers Pre-Built Page Designs Using Existing Core Blocks</a></p>\n<p><a href=\"https://www.seroundtable.com/google-search-console-notifications-to-remove-google-plus-27107.html\">Google+ is shutting down in April with some APIs shutting down in March</a></p>\n<p><a href=\"https://sugarcalendar.com/version-2-0-beta-1-now-available-for-testing/\">Sugar Calendar 2.0 Beta Released</a></p>\n<p>The <a href=\"https://wordpress.org/plugins/dark-mode/\">Dark Mode plugin</a> developed by Daniel James is no longer a featured plugin.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 20th 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 #345:</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:\"Wed, 13 Feb 2019 23:09: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: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:65:\"WPTavern: Ultimate Blocks Plugin Adds Schema-Enabled Review 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=87262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/ultimate-blocks-plugin-adds-schema-enabled-review-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:2191:\"<p><a href=\"https://ultimateblocks.io/\">Ultimate Blocks</a>, one of the many Gutenberg block collections that have sprouted up, launched before WordPress 5.0 with eight blocks. The collection has since doubled in size, adding features like accordions, social sharing buttons, tabbed content, a progress bar, and star-ratings. Many block collections are loosely organized around serving a specific user demographic. This one is aimed at bloggers and marketers.</p>\n\n\n\n<p>Ultimate Blocks’ latest release includes Reviews, a new Gutenberg block that is unique to this plugin. It allows users to easily add rows of review criteria and will automatically calculate the cumulative star rating. Users can also edit the title of the review, author name, review summary, and call-to-action button.</p>\n\n\n\n<img />\n\n\n\n<p>One of the most interesting features of the plugin is that it is schema-enabled, which means that the reviews use a standard <a href=\"https://schema.org/\">schema for structured data</a> that can be easily read by applications like Google, Microsoft, Pinterest, and others. For example, when Google finds a schema-enabled review, it can display it as a rich <a href=\"https://developers.google.com/search/docs/data-types/review-snippet\">review snippet</a> with stars and other summary info. These snippets may appear in search results or in Google Knowledge Cards.</p>\n\n\n\n<p>It’s important to clarify that this block is for the site owner to write their own reviews. It’s not a block that adds a frontend form for visitors to leave reviews. It’s more useful for site owners who want a nice way to display their own reviews for books, movies, restaurants, or any other type of information.</p>\n\n\n\n<p>After testing the plugin, I was impressed by how the star rating calculations all work live inside Gutenberg while setting up the block. The back and frontend styles also match fairly well. The Reviews block is generic enough to be used for virtually any type of review a user wants to display. It would even more useful if the author expanded it to support frontend review submissions, which would allow users to create their own community review 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:\"Wed, 13 Feb 2019 20:34:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:108:\"WPTavern: Speaker Applications Now Open for 2nd Annual JavaScript for WordPress Conference, July 11-13, 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:29:\"https://wptavern.com/?p=87220\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/speaker-applications-now-open-for-2nd-annual-javascript-for-wordpress-conference-july-11-13-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:2477:\"<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>Last year Zac Gordon organized a free virtual <a href=\"https://javascriptforwp.com/conference/\" rel=\"noopener\" target=\"_blank\">JavaScript for WordPress conference</a> and the event drew 1,200 live attendees. With attendance numbers higher than most WordPress conferences and hundreds more views on the videos published afterwards, Gordon considered it a success and committed to organize another event this year.</p>\n<p>The next edition is set for July 11-13, 2019, and has been expanded to feature three free days of talks, workshops, and contribution focused on JavaScript and WordPress. The goal for the event’s contributor day is to improve Gutenberg documentation. Applications for speakers and sponsors are now open and attendees can reserve their seats by signing up on the event’s <a href=\"https://javascriptforwp.com/conference/\" rel=\"noopener\" target=\"_blank\">website</a>.</p>\n<p>“The conference aims to cover intermediate and advanced topics (not so much beginner),” Gordon said. “Most of the talks are about latest trends of how JS and WP can be used together. Accessibility is really important, as is diversity in speakers. I’d love to have more folks share about cool things they do at work.” He said topics like headless WP, Gatsby, React, state management, Gutenberg, and blockchain are a few examples that seem to be popular in this space right now. Testing and internationalization are two topics that still need speakers.</p>\n<p>Gordon teaches both beginner and more advanced <a href=\"https://javascriptforwp.com/\" rel=\"noopener\" target=\"_blank\">courses</a> on JavaScript and Gutenberg development, giving him a unique window into the landscape of JavaScript education. After Gutenberg made its way into core, Gordon said folks “finally have a tangible reason to learn JavaScript.” </p>\n<p>“Also, I think folks are finding it easier than first thought,” he said. “A lot of folks have taken my Gutenberg Development Course with zero React or tooling experience and that served as a good introduction to it all.</p>\n<p>“At first Matt said, ‘Learn JavaScript Deeply.’ But at the last WCUS he said, ‘Learn Blocks Deeply.’ Luckily, I think it is becoming easier to learn what we need to know with JS and React and tools to get by.”</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, 13 Feb 2019 03:39: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:\"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:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: WordCamp Nordic to Host Workshop for Kids on March 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wordcamp-nordic-to-host-workshop-for-kids-on-march-7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4786:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/02/kids-workshop-belgrade.jpg?ssl=1\"><img /></a>photo credit: Ivan Gatić</p>\n<p><a href=\"https://2019.nordic.wordcamp.org/\" rel=\"noopener\" target=\"_blank\">WordCamp Nordic</a>, a new regional WordCamp taking place in Helsinki, is just 23 days away. Organizers have <a href=\"https://2019.nordic.wordcamp.org/sessions/\" rel=\"noopener\" target=\"_blank\">published a list of 26 speakers and their sessions</a> this week. Topics include content design, entrepreneurship, security, leveraging AMP, WooCommerce, internationalization, Gutenberg, and general WordPress development.</p>\n<p>The event’s organizers are also embracing a growing trend of hosting a kids’ camp alongside the WordCamp to introduce younger attendees to the software. WordCamp Nordic is planning a <a href=\"https://2019.nordic.wordcamp.org/contributor-day/wordpress-workshop-for-kids/\" rel=\"noopener\" target=\"_blank\">free WordPress workshop for 20 kids</a> aged 8-14 that will be held Thursday, March 7, from 13:00 to 17:00. It will run at the same time and in the same venue as the WordCamp’s Contributor Day. Attendees will learn how to set up their own WordPress websites, choose a theme, and learn how to add text, galleries, videos, and other elements to the their sites.</p>\n<p>WordPress veteran Petya Raykovska is leading the kids’ workshop. She has <a href=\"http://petya.in/wordpress-workshop-for-kids-an-organiser-kit/\" rel=\"noopener\" target=\"_blank\">led similar workshops all over the world</a>, first in Bangkok 2017, followed by events in Belgrade, Sofia, Varna, and other locations. Demand for the kids’ workshops has grown in the past two years and Raykovska started receiving requests from other European WordCamp organizers to lead events at their camps. As a result, she has created an <a href=\"https://paper.dropbox.com/doc/WordPress-Workshop-for-Kids-organiser-kit-kxmOjjycWysa3jFYoaBTv\" rel=\"noopener\" target=\"_blank\">organizer kit</a> for others wanting to host their own WordPress workshops for kids.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Thank you to all the kids workshop volunteers at <a href=\"https://twitter.com/hashtag/WCSOF?src=hash&ref_src=twsrc%5Etfw\">#WCSOF</a> and to all the kids who created their first <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> sites today. You rock! <img src=\"https://s.w.org/images/core/emoji/11/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f64c-1f3fb.png\" alt=\"??\" class=\"wp-smiley\" /> <a href=\"https://t.co/qaT3l7VSSL\">pic.twitter.com/qaT3l7VSSL</a></p>\n<p>— Petya Raykovska (@petyeah) <a href=\"https://twitter.com/petyeah/status/929704157560393729?ref_src=twsrc%5Etfw\">November 12, 2017</a></p></blockquote>\n<p></p>\n<h3>WordPress can be a gateway to the open web for the next generation</h3>\n<p>Workshops for kids are starting to become more common at WordCamps, as there is a growing demographic of WordPress users with children and technology is more accessible than ever before. <a href=\"https://2019.miami.wordcamp.org/kids/\" rel=\"noopener\" target=\"_blank\">WordCamp Miami</a> and <a href=\"https://central.wordcamp.org/news/2011/02/10/wordpress-for-kids/\" rel=\"noopener\" target=\"_blank\">WordCamp Phoenix</a> were some of the first camps to offer kids’ workshops and since then <a href=\"https://wptavern.com/wordcamp-st-louis-mo-march-14th-15-will-have-a-kids-camp\" rel=\"noopener\" target=\"_blank\">St. Louis</a>, <a href=\"https://2018.capetown.wordcamp.org/2018/09/11/youth-camp/\" rel=\"noopener\" target=\"_blank\">Cape Town</a>, and many other WordPress communities have hosted their own.</p>\n<p>These workshops are important events that will foster the next generation of bloggers, business owners, and contributors to WordPress. Facebook (and soon to be Snapchat) is widely regarded as an “app for old people” and its <a href=\"https://www.newsweek.com/facebook-officially-old-people-803196\" rel=\"noopener\" target=\"_blank\">users under the age of 24 are rapidly declining</a>. WordPress is in a better position, because an influx of older users doesn’t affect the overall experience of the app the same way. However, if WordPress usage isn’t growing among the school age population, it is in danger of suffering the same fate as Facebook – becoming an application that will live and die with its current generation of users. Onboarding new young WordPressers doesn’t just help to ensure the software’s future but it also gives kids a tool that can help them find their place on the open web, a home for their content that will outlast all the ephemeral social networking apps. </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, 12 Feb 2019 23:38:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:98:\"WPTavern: Gutenberg Blocks Design Library Offers Pre-Built Page Designs Using Existing Core Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87200\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/gutenberg-blocks-design-library-offers-pre-built-page-designs-using-existing-core-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2845:\"<p><a href=\"https://wordpress.org/plugins/design/\">Gutenberg Blocks Design Library</a> is a new plugin that provides pre-built page designs, including demo content, using only the default core blocks that come with WordPress. The free version comes with 50 different designs that users can import from the growing Gutenberg Blocks Design Library. These include simple designs for all kinds of page building items, such as text with images, columns with headers, call-to-action sections, team member listings, testimonials, contact page layouts, and more.</p>\n\n\n\n<img />\n\n\n\n<p>The plugin is fully compatible with other Gutenberg themes and plugins, since it simply adds styles to existing core blocks. It can be used in combination with block collections, such as Atomic Blocks, Editor Blocks, CoBlocks, Caxton, Kadence, GhostKit, WooCommerce blocks, and many others.</p>\n\n\n\n<p>There are a few major advantages to this approach. Simply adding styles to core blocks means that the plugin doesn’t introduce a bunch of new blocks for users to scroll through in the block inserter. It also ensures data portability. If a user ends up deactivating and removing the plugin for any reason, the content is still there in the default block design.</p>\n\n\n\n<p>Although Gutenberg Blocks Design Library is compatible with any WordPress theme that works with the new editor, the appearance of the the pre-made designs vary somewhat across themes. I tested various blocks with different themes and found that it seems to adapt to the active theme’s look and feel. This can be a positive feature or a negative one if the user is hoping for the designs to match the demo exactly.</p>\n\n\n\n<p>After installing the plugin, the design library is available by toggling the carrot icon in the menu at the top of the editor. The user is then prompted to import 50 free designs.</p>\n\n\n\n<p>The creators of the Gutenberg Blocks Design Library have also built a commercial subscription service to sell “<a href=\"https://wpdesignhub.com/pro/\">pro designs</a>.” Pricing during the beta period starts at $9/year for a single site. The company aims to have 1,000 commercial designs available to subscribers by November 2019. They plan to release new designs every other week.</p>\n\n\n\n<p>The Gutenberg Blocks Design Library is helpful for users who don’t need the more advanced capabilities of a full-featured page builder plugin but still want some simple, pre-built page elements. The placeholder content makes it easy for users to know where to insert their own content. It is much more intuitive than importing an XML file for demo content. This plugin is a great example of the interesting new product opportunities that Gutenberg has introduced by replacing tools that previously might have been built with widgets or cumbersome shortcodes.</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, 11 Feb 2019 21:55:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:106:\"WPTavern: Open Source Initiative Calls Organizations to Reaffirm Support for Its Definition of Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87165\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/open-source-initiative-calls-organizations-to-reaffirm-support-for-its-definition-of-open-source\";s: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:5611:\"<p>The Open Source Initiative (OSI) took a strong, unequivocal stance on its <a href=\"https://opensource.org/osd-annotated\" rel=\"noopener\" target=\"_blank\">definition of open source</a> this week, encouraging organizations to sign a <a href=\"https://opensource.org/node/966\" rel=\"noopener\" target=\"_blank\">public affirmation</a> of its role in maintaining and stewarding the definition. The organization has been instrumental in combatting issues caused by license proliferation, as many open source licenses cannot be legally combined and this can be detrimental to the open source ecosystem.</p>\n<p>The affirmation published this week explains the need for a standard definition of open source: </p>\n<blockquote><p>Without this single, standard definition of “open source,” software development as we know it would not be possible. There is no trust in a world where anyone can invent their own definition for open source, and without trust there is no community, no collaboration, and no innovation.</p></blockquote>\n<p>Recent controversy surrounding Redis Labs licensing some of its modules under the <a href=\"https://redislabs.com/community/commons-clause/\" rel=\"noopener\" target=\"_blank\">Apache 2.0 modified with a Commons Clause</a> has highlighted the need for an authoritative definition of open source. Salil Deshpande, who helped create the Commons Clause (written by open-source lawyer <a href=\"https://heathermeeker.com/\" rel=\"noopener\" target=\"_blank\">Heather Meeker</a>), wrote an <a href=\"https://techcrunch.com/2018/11/29/the-crusade-against-open-source-abuse/\" rel=\"noopener\" target=\"_blank\">article</a> for TechCrunch two months ago about how he perceives large cloud infrastructure providers, such as AWS in this case, to be a threat to the viability of open source. He explained why he and collaborators commissioned the Commons Clause:</p>\n<blockquote><p>We wished to define a license that prevents cloud infrastructure providers from running certain software as a commercial service, while at the same time making that software effectively open source for everyone else, i.e. everyone not running that software as a commercial service.</p>\n<p>With our first proposal, Commons Clause, we took the most straightforward approach: we constructed one clause, which can be added to any liberal open-source license, preventing the licensee from “Selling” the software — where “Selling” includes running it as a commercial service. (Selling other software made with Commons Clause software is allowed, of course.) Applying Commons Clause transitions a project from open source to source-available.</p></blockquote>\n<p>In referencing MongoDB’s <a href=\"https://www.mongodb.com/licensing/server-side-public-license\" rel=\"noopener\" target=\"_blank\">Server Side Public License (SSPL)</a>, Deshpande questioned the authority and relevance of OSI:</p>\n<blockquote><p>OSI, which has somehow anointed itself as the body that will “decide” whether a license is open source, has a habit of myopically debating what’s open source and what’s not. With the submission of SSPL to OSI, MongoDB has put the ball in OSI’s court to either step up and help solve an industry problem, or put their heads back in the sand.</p></blockquote>\n<p>The Commons Clause, which has no chance of being approved by OSI, was a reaction to cloud-based services making a profit from open source software without contributing much back to the software’s creators. This is a common issue encountered by maintainers of popular open source projects. However, the Commons Clause isn’t a good solution for this problem, because it effectively neuters open source software, removing the vital freedoms identified in the open source definition, including free distribution and no discrimination against a specific field of endeavor. OSI President Simon Phipps called the Commons Clause an “abrogation of software freedom” after Redis changed its license.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Redis just went proprietary, which sucks.<a href=\"https://t.co/CfIN99Cz5q\">https://t.co/CfIN99Cz5q</a></p>\n<p>No, this is not just \"a limitation concerning fair use\", it is an abrogation of software freedom.</p>\n<p>— Simon Phipps (@webmink) <a href=\"https://twitter.com/webmink/status/1032016976170967040?ref_src=twsrc%5Etfw\">August 21, 2018</a></p></blockquote>\n<p></p>\n<p>In light of these recent conversations, OSI is calling organizations to band together in recognition of its authority to maintain a single, standard definition of open source:</p>\n<blockquote><p>Recently there have been efforts to undermine the integrity of open source by claiming there is no need for a single, authoritative definition. These efforts are motivated by the interests of a few rather than the benefit of all, and are at odds with the principles that have so demonstratively served us well in the past decades. If allowed to continue, these efforts will erode the trust of both users and contributors, and hinder the innovation that is enabled by open source software, just as surely as having multiple definitions of a kilogram would erode and undermine commerce.</p></blockquote>\n<p>OSI reached out first to its <a href=\"https://opensource.org/affiliates\" rel=\"noopener\" target=\"_blank\">Affiliate Members</a>, which includes the WordPress open source project, but not all members have responded in time for the publication of the post this week. The organization is still welcoming new signatories and will add more names to the list as it receives them.</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, 09 Feb 2019 00:18: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: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:119:\"WPTavern: YoastCon Overshadowed by Twitter Storm: Joost de Valk, SEO Industry Leaders Called Out for Objectifying Women\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87084\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://wptavern.com/yoastcon-overshadowed-by-twitter-storm-joost-de-valk-seo-industry-leaders-called-out-for-objectifying-women\";s: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:9849:\"<p>The third edition of <a href=\"https://yoast.com/yoastcon/\" rel=\"noopener\" target=\"_blank\">YoastCon</a> kicked off today in Nijmegen, the Netherlands, but for those following remotely the conference has been overshadowed by a discussion that erupted on the <a href=\"https://twitter.com/hashtag/YoastCon\" rel=\"noopener\" target=\"_blank\">#yoastcon</a> hashtag prior to the event. Several parties began circulating tweets and unsavory videos involving Joost de Valk, for which he has since publicly apologized.</p>\n<p>The story was complicated and confusing to follow, as many of these decade-old tweets were deleted and the videos made private by the websites that are hosting them. The parties who were publishing screenshots from archive.org alleged that de Valk was sexually harassing women in the SEO industry.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/yoast?ref_src=twsrc%5Etfw\">@yoast</a> can scrub <a href=\"https://twitter.com/jdevalk?ref_src=twsrc%5Etfw\">@jdevalk</a> history of thirsty sexual harassment tweets but The Wayback Machine knows all. If it\'s not harassment why was it deleted yesterday? <a href=\"https://twitter.com/hashtag/YoastCon?src=hash&ref_src=twsrc%5Etfw\">#YoastCon</a> <a href=\"https://t.co/amctSWHqEw\">pic.twitter.com/amctSWHqEw</a></p>\n<p>— Dan Leibson (@DanLeibson) <a href=\"https://twitter.com/DanLeibson/status/1093186880927977472?ref_src=twsrc%5Etfw\">February 6, 2019</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Looks like somebody whose name rhymes with toast has been busy deleting tweets ahead of <a href=\"https://twitter.com/hashtag/YoastCon?src=hash&ref_src=twsrc%5Etfw\">#YoastCon</a> … wonder if any of them are in <a href=\"https://t.co/7s6vq2FNXD\">https://t.co/7s6vq2FNXD</a>? <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f35e.png\" alt=\"?\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f62d.png\" alt=\"?\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f921.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/Oi7uAexukv\">pic.twitter.com/Oi7uAexukv</a></p>\n<p>— David Cohen (@explorionary) <a href=\"https://twitter.com/explorionary/status/1093186660546809857?ref_src=twsrc%5Etfw\">February 6, 2019</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">No seriously, fucking don’t try and excuse behaviour like this. (9/41) <a href=\"https://t.co/DoK1zOl3p2\">pic.twitter.com/DoK1zOl3p2</a></p>\n<p>— Tom Rayner (@tjprayner) <a href=\"https://twitter.com/tjprayner/status/1093500855771426816?ref_src=twsrc%5Etfw\">February 7, 2019</a></p></blockquote>\n<p></p>\n<p>One of the women to whom some of the tweets were directed has publicly stated that she did not perceive them as harassment and that the tweets were taken out of context.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Hi. I didn\'t want to do this but now I have to. The tweets you\'re reading were sent to me from <a href=\"https://twitter.com/jdevalk?ref_src=twsrc%5Etfw\">@jdevalk</a> when SEO Twitter was smaller, more close-knit, and frankly, dumber. It wasn\'t harassment. It was friends being stupid. Calling it more is unfair and out of context. <a href=\"https://twitter.com/hashtag/yoastcon?src=hash&ref_src=twsrc%5Etfw\">#yoastcon</a></p>\n<p>— Lisa Barone (@LisaBarone) <a href=\"https://twitter.com/LisaBarone/status/1093260184133210112?ref_src=twsrc%5Etfw\">February 6, 2019</a></p></blockquote>\n<p></p>\n<p>de Valk responded yesterday with a public apology, acknowledging the tweets and videos. </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I think and act differently now, though I know that doesn\'t change the past. If anyone felt harmed by this: I\'m truly sorry.</p>\n<p>— Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1093253924256137217?ref_src=twsrc%5Etfw\">February 6, 2019</a></p></blockquote>\n<p></p>\n<p>He also provided a statement to the Tavern with more context on the after party videos. </p>\n<p>“The videos are of an event I’ve attended over the last decade called SEOktoberfest, which is an SEO conference at Oktoberfest,” de Valk said. “I’m honestly ashamed of those videos when I see them now… It looks bad and I wouldn’t behave like that now, but I don’t think anything I did myself at those events was ever out of line.” </p>\n<p>Marieke van de Rakt, who recently took on the role of CEO of Yoast, said she thought the tweets were brought to public attention in retaliation for the company announcing a project to empower women working at Yoast. de Valk left the CEO role to focus on product development at Yoast and his new role of <a href=\"https://wptavern.com/wordpress-names-josepha-haden-new-executive-director-joost-de-valk-marketing-and-communications-lead\" rel=\"noopener\" target=\"_blank\">Marketing and Communications Lead at WordPress.org</a>.</p>\n<blockquote><p>I feel like it started after I was announced CEO and later on talked about a project to empower women working at Yoast. I got some really upsetting tweets. After that it started focusing on #yoastcon. It seems like they want to show the hypocrisy in our statements about women. I never spoke at SEO events before, though I have been to SEOktoberfest. It felt totally welcoming back then. That being said, the pictures and movies aren’t something I particularly enjoy watching. I do think they’re bad, but also a bit out of context. The environment at Yoast is nothing like that. And although my husband likes to party (as do I), I feel he’s always been a strong believer in equal rights and opportunities. I think we all make mistakes and learn from them. At Yoast, we’re really trying to improve inequality with both the diversity fund and my empowerment project.</p></blockquote>\n<p>For those watching the #yoastcon hashtag, the way the situation unfolded it almost seemed like a coordinated personal attack on de Valk, especially given how the SEOktoberfest videos were spliced together with the YoastCon promotional videos. <a href=\"https://twitter.com/explorionary\" rel=\"noopener\" target=\"_blank\">David Cohen</a>, a Philadelphia-based Digital Marketing Director who previously worked at a large SEO agency, started the conversation by publishing de Valk’s old tweets that he had found years ago when researching Yoast and its founder.</p>\n<p>“As far as the tweets from Joost are concerned, I’ve known about them since 2014,” Cohen said. “I just never knew what to do with them or how to proceed questioning why that behavior was perfectly acceptable for him.</p>\n<p>“As far as the harassment and abuse in the SEO industry, particularly at the SEO conferences, I’ve known about this since 2011 after seeing it firsthand while working at a large SEO agency in Philly, Seer Interactive.”</p>\n<p>Cohen said that he began publicly criticizing people he calls “SEO celebs” in 2014, for “saying they are against the SEO harassment and abuse, claiming to be ‘male feminists,’ yet knowingly covering up the abuse and enabling the abusers who happen to also be their friends, peers, colleagues, etc.”</p>\n<p>While the discussion on the #yoastcon hashtag seems centered around de Valk’s admitted indiscretions, Cohen said his objective in publicizing the old tweets goes beyond de Valk. He’s calling out other leaders in the industry who he alleges have harassed and abused women for years. </p>\n<p>“This started a solo mission to take action as a messenger of questions for the group of SEOs most prominent figures who hold the power of influence over the industry about the 10+ year ongoing issue of alleged harassment and abuse of women in the SEO world, particularly at SEO conferences between 2009 and 2012 era.”</p>\n<p>Cohen said the timing with YoastCon was “a mission looking for direct and public answers on this topic once and for all while they were all gathered together at the event.” He began tweeting about these issues well before the event and was using the #yoastcon hashtag to call out other SEO industry leaders for the past few months. </p>\n<p>When asked about his motive, Cohen said he simply wants answers from de Valk, Rand Fishkin, his wife Geraldine, John Doherty, Martin MacDonald, Marcus Tandler, and others regarding what he perceives to be hypocrisy in the SEO industry.</p>\n<p>“Why has it been totally cool for the SEO celebs, rock stars, ninjas, and conference speakers to be misogynists, to objectify and sexualize women, to hire Playmates for their SEO events, and to engage in behavior that would easily be classified as ‘toxic masculinity?\'” Cohen said. He claims that industry leaders have been covering up harassment and abuse that they have known about and have refused to help the women who have been abused. Cohen and several others who have been circulating the tweets claim that victims of this abuse have been contacting them to share their stories but have not yet gone public with them.</p>\n<p>“I chose to act on this now because I wanted answers to two questions from specific people: 1. Do you know of alleged harassment or abuse because someone went to you directly and told their story? And if so, did you refuse to use your power and influence to help them at the risk of your own professional and personal interests?” Cohen said.</p>\n<p>“As for Joost, going with the ‘if I offended anyone’ apology approach is empty and lacks personal accountability for behaviors that are completely misaligned with words. He had to respond publicly. But the question remains open – why?”</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, 08 Feb 2019 04:42: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: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:41:\"Dev Blog: WordPress 5.1 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6577\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/02/wordpress-5-1-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3950:\"<p>The first release candidate for WordPress 5.1 is now available!</p>\n\n\n\n<p>This is an important milestone, as the release date for WordPress 5.1 draws near. “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.1 is <a href=\"https://make.wordpress.org/core/5-1/\">scheduled to be released</a> on <strong>Thursday, February 21</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.1 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 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.1-RC1.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<h2>What’s in WordPress 5.1?</h2>\n\n\n\n<p>Inspired by Archie Bell & The Drells, WordPress’s theme for 2019 is to “tighten up”, and WordPress 5.1 focussed on exactly that.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>With security and speed in mind, this release introduces WordPress’s first <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">Site Health</a> features. WordPress will start showing notices to administrators of sites that run long-outdated versions of PHP, which is the programming language that powers WordPress.</p>\n\n\n\n<p>Furthermore, when installing new plugins, WordPress’s Site Health features will check whether a plugin requires a version of PHP incompatible with your site. If so, WordPress will prevent you from installing that plugin.</p>\n\n\n\n<p>The new block editor has kept improving since its introduction in WordPress 5.0. Most significantly, WordPress 5.1 includes solid performance improvements within the editor. The editor should feel a little quicker to start, and typing should feel smoother. There are more features and performance improvements planned in upcoming WordPress releases, you can check them out in the <a href=\"https://wordpress.org/plugins/gutenberg\">Gutenberg plugin</a>.</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.1 and update the <em>Tested up to</em> version in the readme to 5.1. 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 WordPress 5.1 Field Guide has also been published, which goes into the details of the major changes.</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/02/08/wordpress-5-1-field-guide/\">WordPress 5.1 Field Guide</a></blockquote>\n</div>\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.1 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>This is my release<br /> candidate. There are many<br /> like it. This is mine.</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, 08 Feb 2019 02:22: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:15:\"Gary Pendergast\";s: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:101:\"WPTavern: Gutenberg 5.0 Adds New RSS Block, Amazon Kindle Embed Block, and FocalPointPicker Component\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87075\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://wptavern.com/gutenberg-5-0-adds-new-rss-block-amazon-kindle-embed-block-and-focalpointpicker-component\";s: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:2675:\"<p><a href=\"https://make.wordpress.org/core/2019/02/06/whats-new-in-gutenberg-6th-february/\" rel=\"noopener\" target=\"_blank\">Version 5.0</a> of the Gutenberg plugin was released yesterday with a new RSS block. Riad Benguella, the project’s technical lead for phase 2, published a demo of the block and its settings. Users can set the number of items displayed and also toggle on/off the author, date, and excerpt.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/02/rss-block.gif?ssl=1\"><img /></a></p>\n<p>RSS is still relevant today as one of the linchpins of the open web and Gutenberg makes it possible to easily place a feed inside a post or page. (This feature was previously limited to widgetized areas.) The creation of this block is part of a larger effort to <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\" rel=\"noopener\" target=\"_blank\">port all of WordPress’ existing core widgets over to blocks</a>.</p>\n<p>Version 5.0 also introduces a new <a href=\"https://github.com/WordPress/gutenberg/pull/13510\" rel=\"noopener\" target=\"_blank\">Amazon Kindle embed block</a>, providing an <a href=\"https://www.amazon.com/b?ie=UTF8&node=13489836011\" rel=\"noopener\" target=\"_blank\">instant preview</a> from an Amazon Kindle URL. WordPress already has oembed support of Amazon Kindle URLs but it was missing from the Embeds section of the accordion in the block inserter.</p>\n<p>One of the most exciting additions in this release is a new <a href=\"https://github.com/WordPress/gutenberg/pull/10925\" rel=\"noopener\" target=\"_blank\">FocalPointPicker for the Cover block</a>. It allows users to visually select the ideal center point of an image and returns it as a pair of coordinates that are converted into ‘background-position’ attributes. The result is that the user has more control over how the image is cropped. This feature solves so many problems users have experienced in cropping and displaying images in their WordPress themes and content. The FocalPointPicker was created as a reusable component so that developers can use it to build other blocks with the same capabilities, providing an experience that is consistent with core.</p>\n<p><a href=\"https://cloudup.com/cV33J4yy5Il\"><img src=\"https://i1.wp.com/cldup.com/aJ-h5zq4wa.gif?resize=627%2C423&ssl=1\" alt=\"Focal point picker\" width=\"627\" height=\"423\" /></a></p>\n<p>The changes included in Gutenberg 5.0 are immediately available for those running the plugin on their sites but only for WordPress 5.0+. This release drops support for earlier versions of WordPress. The updates in Gutenberg 5.0 are planned to be rolled into WordPress 5.2.</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, 07 Feb 2019 18:32:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:48:\"Post Status: Building Multidots, with Anil Gupta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=55213\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/building-multidots-with-anil-gupta/\";s: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:1562:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard.</p>\n<p>In this episode of Draft, I talk to Anil Gupta, the founder of <a href=\"https://www.multidots.com/\">Multidots</a>. Multidots is a 100+ person company, and Anil has established a very people-first environment there. We discuss his journey and what he’s learned about building a company.</p>\n<p>I met Anil at <a href=\"https://cabopress.com/\">CaboPress</a>. We had a great chat there, and we did again at WordCamp US, where we recorded this episode. Anil has a great story and a lot of insight. I hope you enjoy it.</p>\n<p></p>\n<h3>Sponsor: Jilt</h3>\n<p><a href=\"https://jilt.com/?utm_source=Post+Status&utm_medium=banner&utm_campaign=Post+Status+Sponsorship\">Jilt</a> offers powerful email marketing built for eCommerce. Join thousands of stores that have already earned tens of millions of dollars extra sales using Jilt. <a href=\"https://jilt.com/?utm_source=Post+Status&utm_medium=banner&utm_campaign=Post+Status+Sponsorship\">Try Jilt for free</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, 07 Feb 2019 17:04: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:15:\"Brian Krogsgard\";s: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:52:\"WPTavern: Transcript of WordPress Weekly Episode 344\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87083\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/transcript-of-wordpress-weekly-episode-344\";s: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:2214:\"<p>Based on requests from listeners, I purchased a transcription of episode 344 of WordPress Weekly where we discussed the <a href=\"https://wpgovernance.com/\">WordPress Governance Project</a>. I purchased the transcription from <a href=\"http://rev.com/\">Rev</a>, a well-known service devoted to captions, subtitles, and audio transcriptions.</p>\n\n\n\n<p>For an 87 minute podcast, the turn-around time was 25 hours and cost $87. The transcription came out better than I expected considering the way I speak. </p>\n\n\n\n<p>The following is a sample of the conversation that took place during the show.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The WordPress Governance Project is an effort that we booted up to surface all the conversations that are happening behind the scenes around WordPress Governance. If you’ve been around the WordPress Project for more than a couple of months, you would know there’s a lot of ongoing conversations internally in the community around who makes decisions, how are decisions made, who are the leaders, who appoints leaders, where is the direction going and who decides on the direction of this project and so on and so on.</p><p>And both Rachel and I have been part of this community for awhile and we’ve seen these conversations crop up repeatedly, and they never go anywhere, but they are really important conversations. And here’s a need in our community to surface those conversations because we are in a position now where we need to start acting, taking on the responsibility of being 34.7% of the web and actually using that responsibility for something other than just saying it as a marketing campaign.</p><cite>Morten Rand-Hendriksen </cite></blockquote>\n\n\n\n<p>The transcript is in .txt format for maximum compatibility and includes the speaker’s names. </p>\n\n\n\n<div class=\"wp-block-file\"><a href=\"https://wptavern.com/wp-content/uploads/2019/02/EPISODE-344-Introduction-to-the-WordPress-Governance-Project.txt\">EPISODE-344-Introduction-to-the-WP-Governance-Project</a><a href=\"https://wptavern.com/wp-content/uploads/2019/02/EPISODE-344-Introduction-to-the-WordPress-Governance-Project.txt\" 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:\"Wed, 06 Feb 2019 23:04:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"HeroPress: WordPress Saved My Life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=2679\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://heropress.com/essays/wordpress-saved-my-life/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-saved-my-life\";s: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:11264:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/02/020619-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"I am thankful for WordPress because without it, I\'m really not sure I would have been able to live a decent life.\" /><p>This probably is the first time I will be telling my story because I have always lived a fairly secret live.</p>\n<p>I am from Nigeria where I was born and still live in. I know we are all stereotyped as scammers and thieves but trust me, a lot of us own and operate legit (online) businesses. Just like in every country, there are good and bad people and we are no exception.</p>\n<p>I had a great childhood. Everything was fine and rosy until I lost my Dad which meant I had to shoulder the responsibility of my family as the first child. I manage to finish secondary school and was awarded the best Math student.</p>\n<h3>Introduction to The Internet / Web</h3>\n<p>Back then in secondary school, I had a rich friend who owned a Nokia phone (that could browse the internet) he brings to class which he uses to play games and do fun stuff online even though we weren’t allowed to bring nor use a phone in the class. (Funny right? :D)</p>\n<p>I have always been a football lover (called soccer in the U.S). I still play very well and support Chelsea FC. So each time I have the opportunity to use his phone, I always visit Goal.com to read football news especially concerning my team Chelsea FC of England.</p>\n<p>Being a very inquisitive person, I wanted to learn how the web works as well as have my own website. I was able to buy a Nokia 3120 classic phone via the menial jobs I did after school.</p>\n<p><img class=\"aligncenter size-full wp-image-2681\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/02/img2.jpg\" alt=\"Nokia 3120\" width=\"413\" height=\"500\" /></p>\n<p>I visited Google and search how to create my <a href=\"https://en.wikipedia.org/wiki/Wireless_Application_Protocol\">wapsite</a>. We refer to mobile phones optimized sites as “wapsite”. The result of my search were filled with site builders like xtgem.com and wapzan.com.</p>\n<p>I chose the xtgem.com and discovered I needed an email address to sign up. Didn’t know what that means so I googled it and eventually created a Yahoo email address. Finally registered and built my first website. Sadly, the site is no longer online but I was able to get a screenshot of the site thanks to <a href=\"https://web.archive.org/\">Wayback Machine</a>.</p>\n<p><img class=\"aligncenter size-large wp-image-2680\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/02/img1-786x1024.png\" alt=\"WAPsite built by Collins\" width=\"786\" height=\"1024\" /></p>\n<p>I had to learn HTML and CSS from <a href=\"https://www.w3schools.com/\">w3schools</a> to build the site and it came out well didn’t it?</p>\n<p>I later moved on to wapka.mobi site builder which allows you to build dynamic websites such as a social network or forum using its own programming language called “wapka tags”. I was able to build a <a href=\"https://web.archive.org/web/20120915021200/http:/www.wapden.net:80/index.html\">community/forum</a>, <a href=\"https://web.archive.org/web/20121211011719/http:/www.smsbag.tk:80/index.html\">sms collection</a> and a <a href=\"https://web.archive.org/web/20121029021153/http:/www.wapbooks.tk:80/index.html\">file sharing</a> site.</p>\n<p>I later came across <a href=\"http://www.simplemachines.org/\">simple machine forum</a> and <a href=\"https://mybb.com/\">MyBB</a>, I learned them deeply and used them to build forums and community sites for interested people.</p>\n<h3>Meeting WordPress</h3>\n<p>I came across a Facebook group called BloggersLab and discovered I could make money blogging. Two prominent platform at the time to create a blog was Blogger.com and WordPress. I chose WordPress because WordPress blogs were always pretty.</p>\n<p>From my savings, I bought the cheapest hosting plan from a local web hosting here in Nigeria and installed WordPress using Softaculous included in cPanel and started writing wapka.mobi tutorials. See <a href=\"https://w3guy.com/?s=wapka\">https://w3guy.com/?s=wapka</a>.</p>\n<blockquote><p>I did all this with my Nokia phone.</p></blockquote>\n<p>Here’s how I publish a new post: first I write it on a notebook before publishing on my blog. I was also building mobile sites for people for small amount of money.</p>\n<p>I couldn’t go to the university because of my precarious financial situation. I continue to do menial jobs during the day and started learning PHP in the evenings and at night using my mobile phone via w3schools.com. I later was able to get a cheap old IBM Thinkpad laptop which I used in getting eBooks from torrent sites because I couldn’t afford them at the time and also to practice coding. Mind you, I was also blogging about the stuff I was learning on w3guy.com</p>\n<p>I later took up a job teaching children at a school primarily because I got tired of the menial jobs and wanted to earn enough to take care of my internet data plan. After a while, I became fairly proficient in PHP and even took up a job to build a school management system which was really slow and ugly.</p>\n<h3>WordPress Saved My Life</h3>\n<p>I needed to start making money with the PHP, HTML & CSS skill I had because my blog wasn’t making any money via AdSense. I think I got to the $100 payout on my second year of blogging.</p>\n<p>I came across a post on Sitepoint.com that they were looking for writers. I applied and got in. I started writing PHP and WordPress development tutorials and got paid few hundreds of dollars per article. In Nigeria, that’s quite a lot of money. I was able to improve the life and well-being of my family and I. I also wrote for Smashing Magazine, Designmodo, Tuts+ and Hongkiat.</p>\n<p>I later got admission into a polytechnic to study computer science and decided to stop writing and try to make and sell WordPress plugins for a living.</p>\n<p>I discovered my tutorial on <a href=\"https://designmodo.com/wordpress-custom-login/\">building custom login</a> form on Designmodo was popular with lots of comment so I decided to make a plugin out of it. That was how my first premium plugin <a href=\"https://profilepress.net/\">ProfilePress</a> was born. I wanted to sell it on Codecanyon but it was rejected so I decided to sell it myself. It was and still hard doing development and marketing at the same time.</p>\n<blockquote><p>Thankfully, after a year, it started making enough revenue for me to live pretty comfortably here in Nigeria because the cost of living here is little.</p></blockquote>\n<p>Few years later, I came across a payment processing library for PHP called <a href=\"https://github.com/thephpleague/omnipay\">Omnipay</a> which included support for many payment providers like Stripe, PayPal. I use 2Checkout as my payment gateway to sell my plugins via EDD and discovered the driver for 2Checkout in Omnipay was old and unsupported so <a href=\"https://github.com/collizo4sky/omnipay-2checkout\">I built one</a>. I figured I could make money building EDD and WooCommerce payment gateways base on the Omnipay and I did and place them on Codecanyon for sale. They didn’t do well sales wise and I had to stop selling them and moved the 2Checkout gateway for WooCommerce to <a href=\"https://omnipay.io/\">omnipay.io</a>. I have since built an EDD Paddle gateway which I now sell alongside.</p>\n<p>My latest product is <a href=\"https://mailoptin.io/\">MailOptin</a>, a WordPress optin form and automated newsletter plugin. I initially built it for my own need. I figured there might be interest in it so I made a free version and a paid version.</p>\n<p>I currently live on the revenue from my plugins.</p>\n<h3>Wrap Up</h3>\n<p>I am thankful for WordPress because without it, I’m really not sure I would have been able to live a decent life. Who knows what would have become of me.</p>\n<p>I am also thankful for the community. I have made lots of friends that has been very supportive and helpful in my journey.</p>\n<p>If you live in a third world country like myself and going through hardship, I hope my story will inspire you to be great.</p>\n<blockquote><p>I tell people, life won’t give you what you want. You demand from life what you want. You make these demands by being determined and never giving up on your dreams and aspiration.</p></blockquote>\n<p>If you are poor perhaps because you came from a humble and poor background, it is not your fault. You can’t go back in time to change things. I implore you to be strong, determined and hustle hard.</p>\n<p>I will end with this story.</p>\n<p>Two guys had become shipwrecked and were directionless-ly drifting on the vast ocean, desperately holding onto a wooden plank.</p>\n<p>A big ship comes along. Elated, one of the guys let’s go of the plank and makes a bold move, using his last strength to reach the ship.</p>\n<p>The other guy holds the plank and tells himself: “God will save me.”</p>\n<p>A few days later he died and is sent to heaven.</p>\n<p>In heaven, he angrily asks God: “Why didn’t you save me?”</p>\n<p>“I sent you a boat you idiot.”</p>\n<p>No one is coming to save you. You are all alone. It’s up to you to change your fortune.</p>\n<p>Do nothing, be nothing.</p>\n<p>La fin.</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: WordPress Saved My Life\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20Saved%20My%20Life&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-saved-my-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress Saved My Life\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-saved-my-life%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%2Fwordpress-saved-my-life%2F&title=WordPress+Saved+My+Life\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress Saved My Life\"></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/wordpress-saved-my-life/&media=https://heropress.com/wp-content/uploads/2019/02/020619-150x150.jpg&description=WordPress Saved My Life\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress Saved My Life\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-saved-my-life/\" title=\"WordPress Saved My Life\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-saved-my-life/\">WordPress Saved My Life</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, 06 Feb 2019 08:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Collins Agbonghama\";s: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:59:\"WPTavern: Sending Positive Vibes to Alex Viper007Bond Mills\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87067\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/sending-positive-vibes-to-alex-viper007bond-mills\";s: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:1083:\"<p>Alex Mills, the author of several plugins, including the popular <a href=\"https://alex.blog/wordpress-plugins/regenerate-thumbnails/\">Regenerate Thumbnails</a> plugin, <a href=\"https://alex.blog/2019/02/03/pretty-bad-news-on-the-cancer-front/\">published an update</a> on his fight with cancer and it’s not looking too good. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The blood test had been showing a fraction of a percent and then later 3%. That was obviously trending in the wrong direction but the hope was increasing <a href=\"https://en.wikipedia.org/wiki/Ponatinib\">my special medication</a> would keep things in check. It didn’t.</p><p>The bone marrow biopsy came back at a spotty 20% (amounts varied by area). This is not good at all as it means the leukemia has morphed into yet some other form that my donor immune system is having trouble keeping in check, either due to a change or being overwhelmed.</p><cite>Alex Mill</cite></blockquote>\n\n\n\n<p>Please join me in sending positive thoughts and vibes to Alex as his battle against Leukemia ramps up. </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, 04 Feb 2019 23:53:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:46:\"Dev Blog: The Month in WordPress: January 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=6575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/02/the-month-in-wordpress-january-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:4635:\"<p>The momentum from December’s WordPress 5.0 release was maintained through January with some big announcements and significant updates. Read on to find out what happened in the WordPress project last month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress Leadership Grows</h2>\n\n\n\n<p>In a milestone announcement this month, WordPress project lead, Matt Mullenweg (<a href=\"https://profiles.wordpress.org/matt/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>matt</a>), <a href=\"https://make.wordpress.org/updates/2019/01/16/expanding-wordpress-leadership/\">named two individuals</a> who are coming on board to expand the leadership team of the project.<br /></p>\n\n\n\n<p>As Executive Director, Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>) will oversee <a href=\"https://make.wordpress.org/\">all the contribution teams</a> across the project. As Marketing & Communications Lead, Joost de Valk (<a href=\"https://profiles.wordpress.org/joostdevalk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joostdevalk</a>) will lead <a href=\"https://make.wordpress.org/marketing/\">the Marketing team</a> and generally oversee improvements to WordPress.org.<br /></p>\n\n\n\n<p>Both Josepha and Joost have contributed to the WordPress project for many years and will certainly have a much larger impact going forward in their new roles.</p>\n\n\n\n<h2>WordPress 5.1 Development Continues</h2>\n\n\n\n<p>Immediately after the 5.0 release of WordPress, work started on version 5.1 with <a href=\"https://make.wordpress.org/core/tag/5-1/\">some highly anticipated new features</a> coming out in <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-1/\">the first beta release</a>. Since then, the <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-2/\">second</a> and <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-3/\">third</a> betas have been made available.<br /></p>\n\n\n\n<p>One of the core updates in this release — <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">a feature to improve the way in which WordPress handles PHP errors</a> — has <a href=\"https://make.wordpress.org/core/2019/01/30/wordpress-5-1-beta-3-delay/\">been pushed back</a> to version 5.2 due to unforeseen issues that would have caused significant delays to the 5.1 release.<br /></p>\n\n\n\n<p>Want to get involved in testing or building WordPress Core? You can install <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</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<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The WordPress Coding Standards team <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/2.0.0\">released version 2.0</a> this month.</li><li>In her new role as Executive Director, Josepha Haden <a href=\"https://make.wordpress.org/updates/2019/01/21/our-strengths-and-challenges/\">looks at what contributors need</a> to help support them more effectively.</li><li>Approximately 2,300 tickets in the Core bug tracker <a href=\"https://make.wordpress.org/core/2019/01/14/follow-up-on-recent-trac-bulk-edit/\">were closed</a> in a large bulk edit this month due to their inactivity over the last two years.</li><li>Autocomplete for usernames has been added to <a href=\"https://wordpress.org/support/forums/\">the WordPress Support Forums</a>, making it much easier to communicate directly with individuals.</li><li><a href=\"https://make.wordpress.org/core/tag/gutenberg/\">Work continues on the Gutenberg project</a>, expanding into more areas of the WordPress dashboard.</li><li>Since the new <a href=\"https://wordpress.org/support/\">WordPress Support portal</a> release in December, <a href=\"https://make.wordpress.org/docs/2019/01/28/summary-for-docs-team-meeting-28-january-2019/\">work has been ongoing</a> to improve its features and complete the content migration.</li><li>The Plugin Review team has published <a href=\"https://make.wordpress.org/plugins/2019/01/28/reminder-about-behavior/\">an important reminder about behavior</a> in the Plugin Directory and support forums.</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>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Feb 2019 09:17: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: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: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:71:\"Akismet: Version 4.1.1 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"http://blog.akismet.com/?p=2034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2019/01/31/version-4-1-1-of-the-akismet-wordpress-plugin-is-now-available/\";s: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:853:\"<p>Version 4.1.1 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:</p>\n\n\n\n<ul><li>We updated the “Setup Akismet” notice so that it resizes to fit all screen sizes.</li><li>We improved the Akismet settings page so the “Save Changes” button is only highlighted when a change has been made.</li><li>We fixed a bug that could have been causing the count of spam comments displayed on the dashboard to be up to an hour old rather than the current count.</li></ul>\n\n\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</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, 31 Jan 2019 18:56:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s: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:30:\"Dev Blog: WordPress 5.1 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6566\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3756:\"<p>WordPress 5.1 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 beta: 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.1-beta3.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.1 is slated for release on <a href=\"https://make.wordpress.org/core/5-1/\">February 21</a>, and we need your help to get there!</p>\n\n\n\n<h2>Site Health Check</h2>\n\n\n\n<p>One of the features originally slated for WordPress 5.1—the PHP error protection handler—will target WordPress 5.2 instead. Some potential security issues were discovered in the implementation: rather than risk releasing insecure code, the team decided to pull it out of WordPress 5.1. The work in <a href=\"https://core.trac.wordpress.org/ticket/46130\">#46130</a> is showing good progress towards addressing the security concerns, if you’d like to follow development progress on this feature.</p>\n\n\n\n<h2>Additional Changes</h2>\n\n\n\n<p>A handful of smaller bugs have also been fixed in this release, including:</p>\n\n\n\n<ul><li>TinyMCE has been upgraded to version 4.9.2 (<a href=\"https://core.trac.wordpress.org/ticket/46094\">#46094</a>).</li><li>The block editor has had a couple of bugs fixed (<a href=\"https://core.trac.wordpress.org/ticket/46137\">#46137</a>).</li><li>A few differences in behaviour between the classic block and the classic editor have been fixed (<a href=\"https://core.trac.wordpress.org/ticket/46062\">#46062</a>, <a href=\"https://core.trac.wordpress.org/ticket/46071\">#46071</a>, <a href=\"https://core.trac.wordpress.org/ticket/46085\">#46085</a>).</li><li>When adding <code>rel</code> attributes to links, ensure the value isn’t empty (<a href=\"https://core.trac.wordpress.org/ticket/45352\">#45352</a>), and that it works as expected with customizer changesets (<a href=\"https://core.trac.wordpress.org/ticket/45292\">#45292</a>).</li></ul>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.1 has many changes aimed at polishing the developer experience. To keep you informed, we publish <a href=\"https://make.wordpress.org/core/tag/5-1+dev-notes/\">developers’ notes</a> on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> throughout the release cycle. Subscribe to the Make WordPress Core blog for updates over the coming weeks, detailing other changes in 5.1 that you should be aware of.</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> The beta 2 release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#soft-freeze\">soft string freeze</a> point of the 5.1 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>In just a few weeks<br /> WordPress Five-One will be here.<br /> Your testing helps us!</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Jan 2019 03:34: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:15:\"Gary Pendergast\";s: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:22:\"Matt: 39 Books in 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48954\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2019/01/39-books-in-2018/\";s: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:4667:\"<p>Here’s what I read in 2018, in chronological order of when I finished it, <a href=\"https://ma.tt/2019/01/thirty-five/\">as promised in my birthday post</a>. I’ve highlighted a few in bold but in general I was pretty satisfied with almost all of my book choices this year. I’ve put a lot more time into the “deciding what to read” phase of things, and have also had some great help from friends there, and have been trying to balance and alternate titles that have stood the test of time and newer au courant books.</p>\n\n\n\n<ol><li><a href=\"https://www.amazon.com/dp/B00XB1P4RE\">Hot Seat: The Startup CEO Guidebook by Dan Shapiro</a></li><li><a href=\"https://www.amazon.com/dp/0061148520\">The Unbearable Lightness of Being by Milan Kundera (audio)</a></li><li><a href=\"https://www.amazon.com/dp/B00PWX7T18/\">A Higher Standard by Ann E. Dunwoody</a></li><li><a href=\"https://www.amazon.com/dp/B0739PYQSS\">Extreme Ownership by Jocko Willink and Leif Babin (audio)</a></li><li><a href=\"https://www.amazon.com/dp/B0018ZDAUS/\">The Boat by Nam Le</a></li><li><a href=\"https://www.amazon.com/dp/B07D6NJW22/\">Charlotte’s Web by E. B. White</a></li><li><a href=\"https://www.amazon.com/dp/B014OISVU4/\"><strong>Nonviolent Communication by Marshall B. Rosenberg</strong></a></li><li>How to Say Goodbye by Wendy Macnaughton</li><li><a href=\"https://www.amazon.com/dp/B00BBXJH2C\">When Things Fall Apart by Pema Chödrön</a></li><li><a href=\"https://www.amazon.com/dp/B01HMXRU82/\">Soul of an Octopus by Sy Montgomery</a></li><li><a href=\"https://www.amazon.com/dp/1578645018/\"><strong>Poor Charlie’s Almanack by Charlie Munger and Peter Kaufman</strong></a></li><li><a href=\"https://www.amazon.com/dp/B004EPYWII/\">Sam the Cat by Matthew Klam</a></li><li><a href=\"https://www.amazon.com/gp/product/B07D2JJ54Z/\">The Prophet by Kahlil Gibran</a></li><li><a href=\"https://www.amazon.com/dp/B00X2F7NRI/\">The Vegetarian by Han Kang</a></li><li><a href=\"https://www.amazon.com/dp/B00TBKYK60/\"><strong>The Paper Menagerie by Ken Liu</strong></a></li><li><a href=\"https://www.amazon.com/gp/product/B06XZSNB3W/\">After On: A Novel of Silicon Valley by Rob Reid</a></li><li><a href=\"https://www.amazon.com/dp/B015D3X0YG/\">The Conquest of Happiness by Bertrand Russell</a></li><li><a href=\"https://www.amazon.com/dp/B073XC5MTY/\">How to Write an Autobiographical Novel by Alexander Chee</a></li><li><a href=\"https://www.amazon.com/dp/B00XUYQUZ2/\"><strong>Ficciones by Jorge Luis Borges</strong></a></li><li><a href=\"https://www.amazon.com/dp/B00SI0B8XC/\">Black Box Thinking by Matthew Syed</a></li><li><a href=\"https://www.amazon.com/dp/B00BBPVYUS/\">Darkness Visible by William Styron</a></li><li><a href=\"https://www.amazon.com/dp/B075PVZLMV/\">Tin Man by Sarah Winman</a></li><li><a href=\"https://www.amazon.com/dp/B00ICN066A/\"><strong>Sapiens by Yuval Noah Harari</strong></a></li><li><a href=\"https://www.amazon.com/dp/B01A6EQFZ8/\">Let My People Go Surfing by Yvon Chouinard</a></li><li><a href=\"https://www.amazon.com/dp/B01GZY28JA/\">Pachinko by Min Jin Lee</a></li><li><a href=\"https://www.amazon.com/dp/B01BBQ33VE/\">Homo Deus by Yuval Noah Harari</a></li><li><a href=\"https://www.amazon.com/dp/B008GUIEYU/\"><strong>The Lessons of History by Will & Ariel Durant</strong></a></li><li><a href=\"https://www.amazon.com/dp/B0048EKOP0/\"><strong>Stories of Your Life and Others by Ted Chiang</strong></a></li><li><a href=\"https://www.amazon.com/dp/B073P53DVL/\">So You Want to Talk About Race by Ijeoma Oluo</a></li><li><a href=\"https://www.amazon.com/dp/B00IQO403K/\">Three Body Problem by Cixin Liu</a></li><li><a href=\"https://www.amazon.com/gp/product/B074ZKGVG1/\">How to Fix a Broken Heart by Guy Winch</a></li><li><a href=\"https://www.amazon.com/dp/1491503629/\"><strong>Sum: Forty Tales from the Afterlives by David Eagleman</strong></a></li><li><a href=\"https://www.amazon.com/dp/B01H17U9OQ/\"><strong>Exit West by Mohsin Hamid</strong></a></li><li><a href=\"https://www.amazon.com/gp/product/B005V2DUP4/\">Tiny Beautiful Things by Cheryl Strayed</a></li><li><a href=\"https://www.amazon.com/dp/1594488215\">Farsighted: How We Make the Decisions That Matter the Most by Steven Johnson</a></li><li><a href=\"https://www.amazon.com/dp/B078X1KJ28/\">Severance: A Novel by Ling Ma</a></li><li><a href=\"https://www.amazon.com/gp/product/B00BCU07LO/\">On the Shortness of Life by Seneca</a></li><li><a href=\"https://www.amazon.com/dp/B079WV79TK/\">It Doesn’t Have to Be Crazy at Work by Jason Fried and David Heinemeier Hansson</a></li><li><a href=\"https://www.amazon.com/dp/B007WKEN4U\"><strong>Notes of a Native Son by James Baldwin</strong></a></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:\"Mon, 28 Jan 2019 17:38:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:67:\"Post Status: An Interview with Ernst-Jan Pfauth of De Correspondent\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://poststatus.com/?post_type=poststatus_notes&p=52533\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/an-interview-with-ernst-jan-pfauth-of-de-correspondent/\";s: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:11981:\"<p>Stressing subscriptions over scale, <em>De Correspondent</em> launched in 2013 with €1.7 million from 18,933 members. Membership has grown over fourfold since then. Subscriptions and book sales are <em>De Correspondent</em>‘s <a href=\"https://digiday.com/media/de-correspondent-gets-transparent-members-finances/\">primary revenue sources</a>. Today <em>The Correspondent</em> is closing on its first 50,000 subscribers with $2.6 million raised in pre-launch funding.</p>\n<p>Ernst is a <a href=\"https://pfauth.com/publishing-platforms/wordpress/\">long-time WordPress user</a>, but his vision for journalism led to the creation of a technology company built around <a href=\"https://pfauth.com/article/publishing/content-management-system-cms-review-research/\">a proprietary CMS</a> called <a href=\"http://respondens.com/\">Respondens</a> for <em>De Correspondent</em> and now <em>The Correspondent</em>. Respondens’ unique design reflects an ethic where subscribers are treated as a community of people who want to be involved in the production of the news they read. In the future, Ernst hopes to market Respondens to support its development and spread the practice of what we might call “responsive journalism.”</p>\n<p>Ernst and his colleagues intend to avoid the churn of breaking news by taking a structural focus on the issues they cover, working in the tradition of constructive, problem-solving, or “<a href=\"https://en.wikipedia.org/wiki/Solutions_journalism\">solutions journalism</a>.”</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">9/ Not just the problem, but what can be done about it. In Europe, they call it \"constructive journalism.\" In the US, solutions journalism. The idea: Your report is incomplete — lacks depth — unless it includes what we can do: as individuals, as a society or political community.</p>\n<p>— Jay Rosen (@jayrosen_nyu) <a href=\"https://twitter.com/jayrosen_nyu/status/965758917551763456?ref_src=twsrc%5Etfw\">February 20, 2018</a></p></blockquote>\n<p></p>\n<p>Finding solutions as journalists means listening, engaging, and collaborating with readers. In his predictions for journalism in 2019, Ernst <a href=\"http://www.niemanlab.org/2018/12/readers-are-only-getting-started/\">told</a> Harvard’s Nieman Lab,</p>\n<blockquote><p>“To really be a reader-driven organization, every journalist that works there should be open to the knowledge, ideas, and concerns of their readers. You can’t outsource that interaction to an engagement editor.”</p></blockquote>\n<p>This approach to journalism slows down and deepens communication by focusing issues around the people and the communities they concern. The constructiveness of this approach may have a lot to do with its calming and humanizing effects.</p>\n<p>Ernst has written several Dutch best-sellers, including a <a href=\"https://dankboek.nl/\"><em>Thank-You Book</em></a> or “gratitude” journal that came out of his efforts to overcome anxiety about public speaking. In his reflections on <a href=\"https://www.youtube.com/watch?v=T9vLHFza8Uc&t=4s\">work, overwork, and gratitude</a> for TEDx, Ernst emphasizes that resistance to “the burnout society” where “creativity is crushed” is a collective task: everyone needs to make daily space for their close relationships where work and media do not intrude.</p>\n<p>I am grateful Ernst took some time after the holidays to talk about his experience with WordPress, collaborative online communities, and democratized journalism. Here is the conversation we had.</p>\n<p><b>DK: What are your thoughts about WordPress today? Have you made any connections or maintained relationships with the WP community in other ways?</b></p>\n<p><strong>EP:</strong> I started using WordPress in 2006 when I launched my personal blog ahead of an internship at a press agency in the United Nations HQ in New York. The fact that I then, as a twenty-year-old, could start a publication in such an easy way, has been crucial in my career and something I will be the WordPress community eternally grateful for. Since then, I have started several sites, most of them running on WordPress. In 2007 I co-founded the blog of The Next Web Conference, now known as <a href=\"http://thenextweb.com/\">thenextweb.com</a>, in 2009 I started a news blog for the Dutch daily <a href=\"https://en.wikipedia.org/wiki/NRC_Next\">nrc.next</a>, and in 2010, as head of digital at the Dutch quality newspaper (NRC Handelsblad), I switched their main site from ‘Escenic’ to WordPress. The fact that we could so easily build our own plugins (for example, a liveblog feature to cover the Arab spring) was crucial in the success of that news site. Also, the developers enjoyed their work more, since they could give back to the community.</p>\n<p>I still run my personal site on WordPress, and even though I don’t publish there anymore, I love to stay in the loop of new WordPress releases and the ever-increasing user-friendliness of the software. In lost moments, I enjoy reading the developers forums and checking their discussions about new releases (I admire the distributed, self-organizing and voluntary efforts of the community) but I’m not in touch with one of the members. I’m just an admiring bystander.</p>\n<p><strong>DK: Can you explain when and why you came to see community and membership features as essential to a CMS? What does it look like when the idea of membership/audience inclusion is integral to the software architecture and vision? How are you doing this in Respondens?</strong></p>\n<p><strong>EP:</strong> The main consideration was <em>focus</em>. We wanted a CMS that only had features for our writers that we deemed important. We didn’t want to create any distraction by having other options available — both to our developers as to our writers. If we build it ourselves, we force ourselves to make conscious decisions about every new feature we add. I.e., we wouldn’t just switch a ‘like’ button on in the comment section, simply because it’s already there. Forcing ourselves to do this made sure we built a laser-focused CMS and publication. The focus and the calm that follows makes it unique. (See “<a href=\"https://thecorrespondent.com/4108/cultivating-calm-a-design-philosophy-for-the-digital-age/242162492-d0fffdf8\">Cultivating calm: a design philosophy for the digital age</a>.”)</p>\n<p>Also, our approach to reader interaction — as you mentioned — is a unique asset of our CMS. I elaborate on that in this Medium post, “<a href=\"https://medium.com/de-correspondent/reinventing-the-rolodex-why-were-asking-our-60-000-members-what-they-know-9be6a857c340\">Reinventing the Rolodex: Why we’re asking our 60,000 members what they know</a>.” We believe in the democratization of the journalistic research process. Anyone could be a source, anyone has expertise and knowledge to share within a specific niche.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">1/ THREAD: There’s a great untapped resource in journalism, and it’s available to every journalist right now.</p>\n<p>It’s the experience and expertise of your *readers*.</p>\n<p>Giving them the opportunity to share what they know, could fundamentally transform journalism.</p>\n<p>— Ernst Pfauth (@ejpfauth) <a href=\"https://twitter.com/ejpfauth/status/1072573253686882304?ref_src=twsrc%5Etfw\">December 11, 2018</a></p></blockquote>\n<p></p>\n<p><strong>DK: How does your model of membership-based journalism change at scale, when you have potentially the largest possible national and international audience? Will you still ask your journalists to spend <a href=\"https://medium.com/the-idea/q-a-ernst-jan-pfauth-ceo-co-founder-de-correspondent-e8f67755571a\">30-50% of their time</a> reading and responding to member comments and other feedback? Is this essential (or even possible) to sustain at scale?</strong></p>\n<p><strong>EP:</strong> The thought that you see your readers as sources of knowledge and expertise is crucial. It works for the local examples you mentioned, but it can also work for global topics. For example, we interviewed Shell employees from all over the world — who we found through our Dutch members forwarding a call-out. (“<a href=\"https://medium.com/de-correspondent/reader-engagement-shell-4bb6d0b8fb84\">How reader engagement helped unearth the Shell tape</a>.”) We also created the position of “conversation editor” to help journalists with the scalability of their reader interaction.</p>\n<p>Yes, there are scale challenges. We see our journalists as conversation leaders and our members as contributing experts. We notice when a journalist gets more feedback from their sources (their readers), they need a research assistant to keep up — for example by highlighting interesting contributions to them or taking over some interviews. These are tasks that can be easily outsourced, as long as the correspondent remains the main point of contact in the comment sections and guides the conversation.</p>\n<p>I don’t see the 30 and 50 percent as time to spend on ‘responding to comments.’ The comments are just a means to an end. The end goal is to involve your audience, so you can get a wider set of sources, become more inclusive and publish richer journalism. We estimate it takes 30 to 50 percent of your time to live up to that mission.</p>\n<p><strong>DK: On the other end of the spectrum, does your model have things to teach small, local journalism and other membership-focused businesses that they don’t already know? In the new membership-based local journalism I’ve been watching in the US and Canada — local media startups where there’s no history or expectation of a printed product or advertising — there’s a definite limit on the subjects that can be curated and written (or spoken) about in a deep and penetrating way. Is this a low or slow-growth model that simply must be accepted?</strong></p>\n<p><strong>EP:</strong> It starts with being open about your mission as a journalist (all our new correspondents publish a mission statement when they start working with us) and then telling your audience what you expect from them. It’s about that personal relationship. The CMS, practices, technology and resources all follow. But it’s the being open to your audience input and being open about your shared goal with them that’s crucial. Anyone can do that. And when you start, it might even be easier to do it on a small scale, but it’s more intimate, and you can scale up as you get better at it.</p>\n<div id=\"attachment_53976\" class=\"wp-caption aligncenter\"><img class=\"wp-image-53976 size-full\" src=\"https://cdn.poststatus.com/wp-content/uploads/2019/01/295952-tc_team_behindthescenes_07-521ac4-original-1542160485.jpg\" alt=\"The Correspondent team\" width=\"4000\" height=\"2667\" /><p class=\"wp-caption-text\">The Correspondent team browses their unbreaking newspaper. From left: Zainab Shah, Jessica Best, Rob Wijnberg, Baratunde Thurston, and Ernst Pfauth.</p></div>\n<p><strong>DK: What do you do to keep sane and whole amid the busyness and stress of work? Are you still a practitioner of journaling and daily gratitude? Have your thoughts on that changed or deepened? </strong></p>\n<p><strong>EP:</strong> I still write in a gratitude journal every night and noticed this three-year habit has really made me more aware of ordinary but beautiful moments in life, and also taught me to enjoy the process instead of the end goal. I save my evenings and (80% of) my weekends for family and friends — and always have my phone on DND in those hours. Also: I don’t check my email before I have left my apartment. Setting these clear boundaries and turning them into routines have really helped me to stay sane in the busyness of the campaign.</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, 25 Jan 2019 23:00: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: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: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:83:\"WPTavern: WPWeekly Episode 344 – Introduction to the WordPress Governance 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:59:\"https://wptavern.com/?p=87028&preview=true&preview_id=87028\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wpweekly-episode-344-introduction-to-the-wordpress-governance-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:1443:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://mor10.com/\">Morten Rand-Hendriksen</a> and <a href=\"https://bamadesigner.com/\">Rachel Cherry</a> to discuss the <a href=\"https://wpgovernance.com/\">WordPress Governance project</a>. We discover why it was created, its goals, and how it aims to help govern the systems and processes that make up the WordPress project.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wpml-alleges-former-employee-breached-website-and-took-customer-emails\">WPML Alleges Former Employee Breached Website and Took Customer Emails</a></p>\n<p><a href=\"https://hbr.org/2019/01/the-era-of-move-fast-and-break-things-is-over\">The Era of “Move Fast and Break Things” Is Over</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 30th 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 #344:</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:\"Fri, 25 Jan 2019 01:32:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:20:\"Matt: All Your Might\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48952\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2019/01/all-your-might/\";s: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:159:\"<p>Julie Sugar has <a href=\"https://www.lilith.org/articles/and-with-all-your-might/\">a beautiful piece in Lilith Magazine about miscarriage and faith</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, 24 Jan 2019 21:44:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:111:\"WPTavern: WordPress Names Josepha Haden New Executive Director, Joost de Valk Marketing and Communications Lead\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87010\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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-names-josepha-haden-new-executive-director-joost-de-valk-marketing-and-communications-lead\";s: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:4428:\"<p>During the <a href=\"https://wptavern.com/state-of-the-word-2018-wordpress-embraces-the-block-editor\" rel=\"noopener\" target=\"_blank\">2018 State of the Word</a> address, Matt Mullenweg acknowledged lessons learned in the process of releasing WordPress 5.0. One of those was the need for various teams across the project to work together better. The friction during the 5.0 development cycle was beneficial in that it surfaced areas where the project can grow and sparked conversations that are already leading to improvements. </p>\n<p>Last week Mullenweg announced that WordPress is <a href=\"https://make.wordpress.org/updates/2019/01/16/expanding-wordpress-leadership/\" rel=\"noopener\" target=\"_blank\">expanding its leadership team</a> to include Josepha Haden in a new Executive Director role and Joost de Valk as the Marketing and Communications Lead. These new roles better distribute project leadership to more individuals who have demonstrated the ability and judiciousness to guide large, diverse teams towards success. Haden will be overseeing WordPress’ contributor teams and de Valk is leading the marketing team and overseeing improvements to WordPress’ websites and other outlets. </p>\n<p>The Executive Director role is particularly critical for the health of the project, as contributor and community feedback pours in across so many different mediums. Tracking all of this information and taking it into consideration amounts to a full-time job. In her first week in the new role, <a href=\"https://make.wordpress.org/updates/2019/01/21/our-strengths-and-challenges/\" rel=\"noopener\" target=\"_blank\">Haden is seeking feedback regarding the challenges contributors face</a> when working on the project. She identified seven challenges which seem to resonate with many who have commented:</p>\n<ul>\n<li>Coordinating on collaborative work between teams</li>\n<li>Aligning our work better to project goals/values</li>\n<li>Understanding team roles, leadership structures, and decision making</li>\n<li>Clarifying the differences between open source and open commit</li>\n<li>Tracking conversations and progress across the project</li>\n<li>Raising project-wide concerns more easily</li>\n<li>Improving how we recognize and celebrate success</li>\n</ul>\n<p>Responses from contributors have so far revolved around a similar theme – the desire for more clearly-defined projects and goals for teams, along with more communication from leadership. </p>\n<p>“Define goals and deliverables for each project deliverable,” Daniel Bachhuber suggested. “Once these are defined, it’s much easier to estimate the level of effort and resources required. Distinguish between full-time sponsored, part-time sponsored, and completely volunteer labor. Each of these three do not work at the same pace. It’ll be much easier to estimate a team’s velocity if you know what type of labor you have to work with.”</p>\n<p>Meagen Voss offered some valuable insight from a newer contributor’s perspective. She said the leadership of the project is very unclear and that people could benefit from that information being more prominently published. She also <a href=\"https://make.wordpress.org/updates/2019/01/21/our-strengths-and-challenges/#comment-4363\" rel=\"noopener\" target=\"_blank\">suggested</a> that WordPress explore the idea of having ambassadors for each team to facilitate communication and collaboration across projects.</p>\n<blockquote><p>You get to know your team very well, but no so much other teams. I’ve met some great folks in Slack and am getting to know the two groups I’m involved in super well. But if I have an issue or a question that needs to be addressed to another group, then I would have to hang out in that team’s channel for a while to figure out who the right person is to get in touch with. Identifying “ambassadors” or points of contact for each group could be a quick and helpful way to address that.</p></blockquote>\n<p>The conversation is still open for contributors to jump in and share their own challenges and suggestions. Haden plans to follow up with the next steps after gathering more feedback. Action born out of these conversations has the potential to greatly improve contributors’ experiences working together, resulting in fewer people burning out on communication struggles or losing momentum from lack of clearly defined objectives.</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, 23 Jan 2019 22:23: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: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:28:\"Matt: Thich Nhat Hanh on Tea\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48949\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2019/01/thich-nhat-hanh-on-tea/\";s: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:331:\"<blockquote class=\"wp-block-quote\"><p>Drink your tea slowly and reverently, as if it is the axis on which the world earth revolves – slowly, evenly, without rushing toward the future.</p><cite>— Thich Nhat Hanh in <a href=\"https://www.amazon.com/dp/B009U9S6VM/\">The Miracle of Mindfulness</a></cite></blockquote>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Jan 2019 21:27:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: WooCommerce Launches New Mobile Apps for iOS and Android\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/woocommerce-launches-new-mobile-apps-for-ios-and-android\";s: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:3641:\"<p>This week marks the first <a href=\"https://woocommerce.com/posts/try-the-new-woocommerce-mobile-app-for-key-metrics-order-look-up-and-notifications-cha-ching/\" rel=\"noopener\" target=\"_blank\">public release</a> of WooCommerce’s new mobile app for <a href=\"https://play.google.com/store/apps/details?id=com.woocommerce.android\" rel=\"noopener\" target=\"_blank\">Android</a> and the improved version for <a href=\"https://itunes.apple.com/us/app/id1389130815\" rel=\"noopener\" target=\"_blank\">iOS</a>. WooCommerce began beta testing the Android app late last year and the original iOS app has been updated to offer the same features.</p>\n<p>This first release should be considered a basic start that is mostly useful for tracking store performance with detailed stats and getting alerts for new orders and product reviews. Users cannot add or edit products and the app does not yet allow for switching between stores. The first release offers basic order management and fulfillment but does not include the ability to change order status. The mobile apps don’t yet live up to their tagline of “Your store in your pocket,” but it’s a good starting place. </p>\n<p>According to the Google Play Store, the WooCommerce app has been installed more than 10,000 times and the response from users has been mixed. The app is averaging a 2.5-star rating after early reviews from 45 users. The iOS app has received similar responses. Many of the negative reviews are due to connection/login issues and the requirement for stores to use Jetpack.</p>\n<p>“This has promise, but get rid of the need for Jetpack,” one reviewer wrote. “There are other secure ways of syncing up. Other apps have done it for years. This app has been long overdue, but is poor in execution when you need to install a plugin that tends to bog down your site and that most don’t need. Give an alternative means of syncing and allow us to edit at least the basics of a product on the go.”</p>\n<p>WooCommerce marketing representative Marina Pape explained the Jetpack requirement in a post announcing the mobile apps’ launch: </p>\n<blockquote><p>The Jetpack plugin connects your self-hosted site to a WordPress.com account and provides a common authentication interface across lots of server configurations and architectures.</p>\n<p>Both Apple and Google only allow a single trusted sender for pushes for security reasons (read more), making Jetpack the best way for us to give you modern mobile app features like push notifications.</p></blockquote>\n<p>In order to connect sites with the app, Jetpack creates a shadow site on WordPress.com’s servers and syncs quite a bit of data. Although this <a href=\"https://jetpack.com/support/what-data-does-jetpack-sync/\" rel=\"noopener\" target=\"_blank\">list of data</a> is transparently outlined, the Jetpack requirement is a deal breaker for some users. They either object to sharing their data or believe the plugin will slow down their stores. Until the app’s features are more compelling than the detriments users perceive in Jetpack, it may lose a few users based on this requirement.</p>\n<p>According to <a href=\"https://trends.builtwith.com/shop\" rel=\"noopener\" target=\"_blank\">BuiltWith</a>, WooCommerce is now the most popular shopping cart technology used by 22% of the top 1 million websites, with competitors Shopify and Magento not too far behind at 17% and 13% respectively. Having a new mobile app should help WooCommerce remain competitive, but the team needs to keep iterating on the app to make it more useful for those managing stores on the go.</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, 23 Jan 2019 05:35: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:\"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: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:91:\"WPTavern: Gutenberg Phase 2 to Update Core Widgets to Blocks, Classic Widget in Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86953\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/gutenberg-phase-2-to-update-core-widgets-to-blocks-classic-widget-in-development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5791:\"<p>Gutenberg phase 2 development is underway and one of the first orders of business is porting all existing core widgets to blocks. This task is one of the <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">nine projects</a> that Matt Mullenweg outlined for 2019, along with upgrading the widgets-editing areas in wp-admin/widgets.php and adding support for blocks in the Customizer. </p>\n<p>Contributors on phase 2 are also <a href=\"https://github.com/WordPress/gutenberg/issues/4770\" rel=\"noopener\" target=\"_blank\">developing a Classic Widget</a>, which would function as a sort of “legacy widget block” for third-party widgets that haven’t yet been converted to blocks. There may be many instances where plugin developers have not updated their widgets for Gutenberg and in these cases their plugins would be unusable in the new interface without the option of a Classic Widget. This block is still in the design stage. </p>\n<p>The widgets.php admin page will need to be completely reimagined as part of this process. Mark Uraine, a designer who works at Automattic, created some mockups to <a href=\"https://github.com/WordPress/gutenberg/issues/13204\" rel=\"noopener\" target=\"_blank\">kick off the discussion</a> about what this screen might look like. </p>\n<p><a href=\"https://cloudup.com/cW5MOA5gsTG\"><img src=\"https://i1.wp.com/cldup.com/o9-F6ebs7m.gif?resize=627%2C421&ssl=1\" alt=\"Widgets as blocks\" width=\"627\" height=\"421\" /></a></p>\n<p>These mockups are just explorations of where widgets may be headed next, and they do not take into account everything that will be required of this screen. </p>\n<p>Nick Halsey, one of the maintainers for <a href=\"https://make.wordpress.org/core/components/customize/\" rel=\"noopener\" target=\"_blank\">WordPress’ Customize component</a> recommended abandoning this screen altogether in favor of showing widget block areas in the Customizer:</p>\n<blockquote><p>The widgets admin screen has a fundamental disconnect with the way that widget areas actually work – with different areas showing in different parts of the screen and potentially on different parts of the site. It will be very difficult to clearly reflect the frontend page structure on this screen in a way that users will be able to understand. Experimenting with contextual approaches to this experience in the customizer offers numerous opportunities for this fundamental problem to be solved. Starting with the visible edit shortcuts that are already in core, revamped widgets could be edited directly on the frontend (of the customize preview) or in an overlay that is more directly related to the display on a particular screen. The ability to navigate to different parts of the site within the customize preview solves a problem that this screen will never be able to address.</p></blockquote>\n<p>Getting blocks to work in the Customizer is also part of phase 2, but conversation on the ticket related to wp-admin/widgets.php indicates the team is not going to abandon this screen just yet. </p>\n<p>“While this screen will eventually be deprecated in the future, especially as more of the site is built in Gutenberg, it’s a necessary “baby step” to get us all there together,” Uraine said. “Maybe the best thing is to keep the existing layout, but just allow the use of all blocks within the accordion content areas? This will keep our resources and investment minimal on this particular piece with just a few suggested tweaks to the mockup in the initial post. It will also allow us to move to the Customizer more quickly.” </p>\n<p>Gutenberg accessibility contributor Andrea Fercia encouraged contributors to address accessibility before creating visual mockups by designing the information architecture first. He encouraged them to organize the required information and controls while thinking about how someone might navigate them in a linear way. </p>\n<p>“The customizer is not fully accessible,” Fercia said. “The admin widgets screen is the only place where persons with accessibility needs have a chance to manage widgets without having to face big accessibility barriers.”</p>\n<p>Discussion on the future of the widget management screen continues in the ticket and contributors are looking to get more input during this exploration stage. There’s also a <a href=\"https://github.com/WordPress/gutenberg/projects/22\" rel=\"noopener\" target=\"_blank\">project board</a> where anyone can share a blog post with their own explorations.</p>\n<p><a href=\"https://github.com/WordPress/gutenberg/projects/20\" rel=\"noopener\" target=\"_blank\">Porting widgets to blocks</a> has its own project board if you want to follow along or jump in on an issue. Most of the core blocks are already finished and a handful are still in progress. </p>\n<p>Updating the widgets management page and bringing blocks into the Customizer is a major overhaul but will further unify WordPress’ interface for editing and previewing content. Widgets have served WordPress well over the years, making it easy for users to customize their websites without having to know how to code. The feature has also <a href=\"https://wptavern.com/the-future-of-wordpress-widgets-a-better-ui-with-real-time-previews\" rel=\"noopener\" target=\"_blank\">survived many evolutions</a>, eventually <a href=\"https://wptavern.com/widget-customizer-approved-for-wordpress-3-9\" rel=\"noopener\" target=\"_blank\">making its way into the Customizer five years ago in WordPress 3.9</a>. One of the limitations with widgets is that they can only be used in “widgetized” areas. Transforming widgets into blocks removes that limitation and makes it possible to use widgets in posts and pages as well.</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, 22 Jan 2019 21:11:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:30:\"Dev Blog: WordPress 5.1 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6550\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4498:\"<p>WordPress 5.1 Beta 2 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 beta: 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.1-beta2.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.1 is slated for release on <a href=\"https://make.wordpress.org/core/5-1/\">February 21</a>, and we need your help to get there!</p>\n\n\n\n<p>Over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=01%2F11%2F2019..&milestone=5.1&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">110 tickets have been closed</a> since <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-1/\">beta 1</a>, many of which are documentation and testing suite improvements. Here are the major changes and bug fixes:</p>\n\n\n\n<ul><li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=01%2F11%2F2019..01%2F22%2F2019&focuses=!~docs&keywords=~servehappy&milestone=5.1&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Several refinements and bug fixes</a> related to the Site Health project have been made.</li><li>The <code>pre_render_block</code> and <code>render_block_data</code> filters have been introduced allowing plugins to override block attribute values (<a href=\"https://core.trac.wordpress.org/ticket/45451\">#45451</a>, dev note coming soon).</li><li><code>get_template_part()</code> will now return a value indicating whether a template file was found and loaded (<a href=\"https://core.trac.wordpress.org/ticket/40969\">#40969</a>).</li><li>A notice will now be triggered when developers incorrectly register REST API endpoints (related <a href=\"https://make.wordpress.org/core/2019/01/11/new-rest-api-notice-in-5-1/\">dev note</a>).</li><li>Bulk editing posts will no longer unintentionally change a post’s post format (<a href=\"https://core.trac.wordpress.org/ticket/44914\">#44914</a>)</li><li>Twemoji has been updated to the latest version, 11.2.0 (<a href=\"https://core.trac.wordpress.org/ticket/45133\">#45133</a>).</li><li>A bug preventing the Custom Fields meta box from being enabled has been fixed (#<a href=\"https://core.trac.wordpress.org/ticket/46028\">46028</a>).</li><li>The treatment of <code>orderby</code> values for <code>post__in</code>, <code>post_parent__in</code>, and <code>post_name__in</code> has been standardized (<a href=\"https://core.trac.wordpress.org/ticket/38034\">#38034</a>).</li><li>When updating language packs, old language packs are now correctly deleted to avoid filling up disk space (<a href=\"https://core.trac.wordpress.org/ticket/45468\">#45468</a>).</li></ul>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.1 has many changes aimed at polishing the developer experience. To keep you informed, we publish <a href=\"https://make.wordpress.org/core/tag/5-1+dev-notes/\">developers notes</a> on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> throughout the release cycle. Subscribe to the Make WordPress Core blog for updates over the coming weeks, detailing other changes in 5.1 that you should be aware of.</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> The beta 2 release als marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#soft-freeze\">soft string freeze</a> point of the 5.1 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>Do you enjoy bugs?<br /> I don’t. So, we fixed them all.<br /> Well, not all. But close.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Jan 2019 01:01: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:15:\"Gary Pendergast\";s: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:80:\"WPTavern: WPML Alleges Former Employee Breached Website and Took Customer Emails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wpml-alleges-former-employee-breached-website-and-took-customer-emails\";s: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:5475:\"<p>Over the weekend, many <a href=\"https://wptavern.com/wpml-website-hacked-customer-emails-compromised\" rel=\"noopener\" target=\"_blank\">WPML customers received an unauthorized email</a> from someone who claimed to have hacked the company’s website and gained access to customer emails. WPML founder Amir Helzer suspects that the attacker is a former employee. </p>\n<p>“The customer is an ex-employee who left an exploit on the server (not WPML plugin) before leaving. Besides fixing the damage, we’ll also be taking legal actions,” Helzer said Saturday night.</p>\n<p>The WPML team worked around the clock over the weekend to secure their systems and sent out an email informing customers of the incident. They also assured customers that the WPML plugin does not contain an exploit and that payment information was not compromised. The company published an <a href=\"https://wpml.org/2019/01/wpml-org-site-back-to-normal-after-an-attack-during-the-weekend/\" rel=\"noopener\" target=\"_blank\">announcement</a> to their website, detailing the incident and their response: </p>\n<blockquote><p>We updated wpml.org, rebuilt everything and reinstalled everything. We secured access to the admin use 2-factor authentication and minimized the access that the web server has to the file system.</p>\n<p>These are more precautions than actual response to the hack. Our data shows that the hacker used inside information (an old SSH password) and a hole that he left for himself while he was our employee.</p>\n<p>This hack was not done via an exploit in WordPress, WPML or another plugin, but using this inside information. In any case, the damage is great and it’s done already.</p></blockquote>\n<p>WPML urges customers not to click on any links in the email the attacker sent out and recommends they change their passwords for wpml.org. The attacker has customer names, emails, and sitekeys, but WPML said the sitekeys cannot be used to push changes to customer websites.</p>\n<p>Helzer is convinced that the attack was an inside job and suspects two former employees. He and his team are working to provide evidence to the authorities. He said the the nature of the attack demonstrates that it was likely not an outside hacker:</p>\n<blockquote>\n<ul>\n<li>The first time our site was breached was on the day we fired an employee, who had access to our servers. We didn’t identify the breach at that time. However, once we got hacked, we analyzed the original hole and we found in our log when it was placed (yup, he deleted the log, but he didn’t delete the backup). Now that we finished cleaning up the mess, we’re going through all logs and collecting the full evidence.</li>\n<li>The attacker targeted specific code and database tables that are unique to our site and not generic WordPress or WPML tables.</li>\n<li>The attacker crafted the attack so that it would cause us long term damage and not be apparent in first sight. That long-term damage is very difficult to guess without knowing our business objectives and challenges. This is information that our employees have, but we don’t disclose.</li>\n</ul>\n</blockquote>\n<p>The idea that a former employee who is known to the company would risk performing these illegal actions is difficult to grasp, even in the case of someone who was fired and may have been acting in retaliation. The risks of being caught seem too great.</p>\n<p>“In many jurisdictions including the USA, this is jail time,” Wordfence CEO Mark Maunder <a href=\"https://twitter.com/mmaunder/status/1086839572384940033\" rel=\"noopener\" target=\"_blank\">said</a>. “So I find it quite incredible that an employee would leave a backdoor, use it to deface their site, steal their data and email all subscribers. This is the infosec equivalent of walking into a police precinct and tagging the wall while the cops watch.”</p>\n<p>Helzer said the incident should serve as a wakeup call for companies that employ remote workers. It highlights the importance of having procedures in place for revoking employee access to all systems used as part of day to day operations.</p>\n<p>“We have to admit that our site was not secured well enough,” Helzer said. “If someone previously had admin access and stopped working for us, we should have been more careful and avoided this situation.</p>\n<p>“This can be a wakeup call for others. We talk a lot about the benefits or remote work and most of the WordPress industry works remotely. This made us realize that we need to be a lot more pessimistic when we allow any access to our system.</p>\n<p>“For example, the fact that we’re now coding for ourselves a requirement to login with 2fa, means that we’re not alone in this exposed situation.”</p>\n<p>The attacker’s unauthorized email and WPML’s response email went out over the weekend, so many customers will be learning of the incident today when they return to work. Helzer said customers have been supportive so far.</p>\n<p>“I think that customers appreciate the fact that we contacted them as fast as we could and we dropped everything and ran to handle this,” he said. “I think that we’ll still have damage. Clients did not run away from us right now but a good reputation is something that you build over years. A nasty incident like this stays ‘on your record.’ This is our livelihood and we take it seriously.”</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, 21 Jan 2019 16:21: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: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:58:\"WPTavern: WPML Website Hacked, Customer Emails Compromised\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86908\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wpml-website-hacked-customer-emails-compromised\";s: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:3452:\"<p>On Saturday, January 19, WPML customers started reporting having received an email from someone who seems to have hacked the plugin’s website and gained access to customer information.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Got same mail and there is this text on <a href=\"https://twitter.com/hashtag/wpml?src=hash&ref_src=twsrc%5Etfw\">#wpml</a> website visible now. What happened guys? <a href=\"https://twitter.com/hashtag/security?src=hash&ref_src=twsrc%5Etfw\">#security</a> <a href=\"https://twitter.com/hashtag/hack?src=hash&ref_src=twsrc%5Etfw\">#hack</a> <a href=\"https://twitter.com/hashtag/vulnerability?src=hash&ref_src=twsrc%5Etfw\">#vulnerability</a> <a href=\"https://twitter.com/hashtag/0day?src=hash&ref_src=twsrc%5Etfw\">#0day</a> or something? <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a></p>\n<p>— Gytis Repečka (@gytisrepecka) <a href=\"https://twitter.com/gytisrepecka/status/1086753453429481473?ref_src=twsrc%5Etfw\">January 19, 2019</a></p></blockquote>\n<p></p>\n<p>The hacker claims to be a disgruntled customer who had two websites hacked due to vulnerabilities in the WPML plugin: </p>\n<blockquote><p>WPML came with a bunch of ridiculous security holes which, despite my efforts to keep everything up to date, allowed the most important two of my websites to be hacked.</p>\n<p>WPML exposed sensitive information to someone with very little coding skills but merely with access to the WPML code and some interest in seeing how easy is to break it.</p>\n<p>I’m able to write this here because of the very same WPML flaws as this plugin is used on wpml.org too.</p></blockquote>\n<p>The hacker also claims to have exploited the same vulnerabilities in order to send the email to WPML’s customers and has <a href=\"https://web.archive.org/web/20190120015001/https://wpml.org/2019/01/wpml-warning/\" rel=\"noopener\" target=\"_blank\">published the same message to the plugin’s website</a>. The text is still live at this time and product pages have also been defaced.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Defaced product features page, for example. <a href=\"https://t.co/MWNZh6g1HQ\">pic.twitter.com/MWNZh6g1HQ</a></p>\n<p>— Wordfence (@wordfence) <a href=\"https://twitter.com/wordfence/status/1086789010218016768?ref_src=twsrc%5Etfw\">January 20, 2019</a></p></blockquote>\n<p></p>\n<p>The commercial multilingual plugin has been in business since 2009 and is <a href=\"https://wpml.org/home/about-us/\" rel=\"noopener\" target=\"_blank\">active on more than 600,000 WordPress sites</a>. It is a popular plugin for business sites in Europe, North America, Asia, and South America, especially those with a global audience. Customers are still waiting for an official explanation from WPML. </p>\n<p>We contacted the company for comment but have not yet received a response. If you are using the plugin, you should deactivate it until the company pushes an update to patch the security vulnerabilities. This story is developing and we will publish new information as it becomes available.</p>\n<p><strong><a href=\"https://wptavern.com/wpml-website-hacked-customer-emails-compromised#comment-276210\">Update</a> from WPML founder Amir Helzer</strong>: “The customer is an ex-employee who left an exploit on the server (not WPML plugin) before leaving. Besides fixing the damage, we’ll also be taking legal actions.” </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 20 Jan 2019 02:32:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:83:\"WPTavern: WPWeekly Episode 343 – Newspack, Expanding Leadership, and Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86902&preview=true&preview_id=86902\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/wpweekly-episode-343-newspack-expanding-leadership-and-cory-miller\";s: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:1823:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss Automattic’s quest to create a new service tailored to journalists. We discuss what’s next for Cory Miller as his chapter at iThemes ends later this month. Near the end of the show, we talk about recent leadership changes in the WordPress project and share our opinions of Slack’s new logo.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://ma.tt/2019/01/thirty-five/\">Thirty-Five</a></p>\n<p><a href=\"https://ma.tt/2019/01/journalism-and-newspack/\">Journalism and Newspack</a></p>\n<p><a href=\"https://corymiller.com/embarking-on-my-next-adventure/\">Embarking On My Next Adventure</a></p>\n<p><a href=\"https://make.wordpress.org/core/2019/01/16/wordpress-5-1-schedule-updates/\">WordPress 5.1 Schedule Updates</a></p>\n<p><a href=\"https://make.wordpress.org/updates/2019/01/16/expanding-wordpress-leadership/\"> Expanding WordPress Leadership</a></p>\n<p><a href=\"https://www.pentagram.com/work/slack\">Slack’s New Logo</a></p>\n<p><a href=\"https://journal.rmccue.io/400/how-wordpress-knows-what-page-youre-on/\">How WordPress Knows What Page You’re On</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 23rd 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 #343:</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:\"Fri, 18 Jan 2019 22:57:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:134:\"WPTavern: WordPress.com Secures $2.4 Million in Funding from Google and Partners to Build a Publishing Platform for News Organizations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86795\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://wptavern.com/wordpress-com-secures-2-4-million-in-funding-from-google-and-partners-to-build-a-publishing-platform-for-news-organizations\";s: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:9680:\"<p>WordPress.com has <a href=\"https://en.blog.wordpress.com/2019/01/14/newspack-by-wordpress-com/\" rel=\"noopener\" target=\"_blank\">announced</a> plans to create a new, open source publishing platform that caters to small and medium-sized news organizations. The <a href=\"https://newsinitiative.withgoogle.com/\" rel=\"noopener\" target=\"_blank\">Google News Initiative</a> has contributed $1.2 million towards the development of “<a href=\"http://newspack.blog/\" rel=\"noopener\" target=\"_blank\">Newspack</a>” on top of WordPress.com’s infrastructure. </p>\n<p>Automattic and Google have joined with other contributing partners from the broader world of journalism for a total of $2.4 million in funding for the first year of the project. These partners include <a href=\"https://www.lenfestinstitute.org/\" rel=\"noopener\" target=\"_blank\">The Lenfest Institute for Journalism</a> ($400K), ConsenSys, the venture studio behind <a href=\"https://civil.co/\" rel=\"noopener\" target=\"_blank\">Civil Media</a> ($350K), The <a href=\"http://kf.org/\" rel=\"noopener\" target=\"_blank\">John S. and James L. Knight Foundation</a> ($250K), and an additional partner who will join later this month. <a href=\"https://spiritedmedia.com/\" rel=\"noopener\" target=\"_blank\">Spirited Media</a> and <a href=\"https://fundjournalism.org/\" rel=\"noopener\" target=\"_blank\">News Revenue Hub</a> will also contribute to the creation of the platform.</p>\n<p>Local news organizations are critical for a healthy democratic society, keeping the public informed about things happening close to home. The move to digital news consumption has forced consolidation in the news industry where larger players have come out ahead while smaller publications struggle to stay above water. </p>\n<p>In a report called “<a href=\"https://www.usnewsdeserts.com/reports/expanding-news-desert/\" rel=\"noopener\" target=\"_blank\">The Expanding News Desert</a>,” published in 2018, researchers at the University of North Carolina found that nearly one in five newspapers has disappeared during the past 15 years. Many others have become “ghost newspapers,” shells of what they once were – either absorbed by larger dailies that purchased them or suffering from a severely pared back newsroom that is unable to adequately cover local events.</p>\n<p>WordPress.com has amassed an expert team to address this crisis in local news. The Newspack platform will cater to the technological and editorial needs of smaller newsrooms, with the monetization tools to make their work sustainable. WordPress.com is currently accepting <a href=\"https://newspack.blog/\" rel=\"noopener\" target=\"_blank\">applications for charter participants</a> and plans to launch in beta near the end of July 2019.</p>\n<h3>Open Source Newspack Platform to Offer an Alternative to Expensive Proprietary CMS’s</h3>\n<p>The WordPress community has <a href=\"https://twitter.com/carlhancock/status/1084900673559371776\" rel=\"noopener\" target=\"_blank\">speculated</a> <a href=\"https://twitter.com/mor10/status/1084887261471072257\" rel=\"noopener\" target=\"_blank\">widely</a> about what shape Newspack will take, whether it will be like WordPress.com VIP tailored to publications or something similar to Jetpack with a curated set of tools that could be used by self-hosted sites through SaaS upgrades. According to WordPress.com president Kinsey Wilson, a former executive for NPR and The New York Times who joined Automattic in 2018, the platform may end up being a hybrid of approaches. </p>\n<p>“It’s still very early in the process, but I expect elements of both VIP and Jetpack to inform this,” Kinsey said. “Newspack will be part of the WordPress.com platform, but we’re going to be working on a highly curated experience tailored to these news organizations, with individualized support available across editorial and business.” </p>\n<p>The platform will support plugins that solve problems publishers experience at the local level and will also include Gutenberg-specific editorial tools.</p>\n<p>“It will leverage Gutenberg,” Kinsey said. “A few examples of the tools that might be launched with Newspack include email integration for marketing and editorial; programmatic ad integration, analytics, real-time backups, and revenue generating tools for subscriptions and e-commerce. We hope to work closely with partners across the WordPress ecosystem for potential ways to work with services that are beneficial to news organizations.”</p>\n<p>The most important distinction of the Newspack platform is that it will be open source. That also puts it directly in competition with proprietary CMS’s like Arc, Vox Media’s Chorus CMS, and MediaOS, that are prominent in the news industry right now. Instead of working together, larger media companies have opted to build their own CMS’s and many of them are also <a href=\"http://www.niemanlab.org/2018/11/is-it-finally-time-for-media-companies-to-adopt-a-common-publishing-platform/\" rel=\"noopener\" target=\"_blank\">licensing enterprise versions to publishers or offering them as SaaS solutions</a>.</p>\n<p>I asked Kinsey if Newspack will be something news organizations could self-host or if it will be inextricably tied to WordPress.com’s infrastructure. WordPress.com is making it open in the sense that publishers will not be tied to using it forever if they want to their information and copy the same setup somewhere else.</p>\n<p>“It is not only open source, it will be designed so that at any point in time any individual site or even a commercial competitor could capture an image of the setup and port it to another platform,” Kinsey said. “The value we offer is our knowledge of the news industry, our ability to keep pace with new requirements, and our ability to vet various plug-ins and open-source contributions to the project for security and interoperability — all at an attractive operating cost of between $1,000 and $2,000 per month. In addition, we hope to expose news organizations to a wider community of like-minded developers and to create an on-boarding system that simplifies the setup.” </p>\n<p>Operating costs on proprietary platforms are much higher than what WordPress.com is planning for Newspack. Arc costs smaller publishers <a href=\"https://digiday.com/media/washington-post-building-tech-platform-arc/\" rel=\"noopener\" target=\"_blank\">$10,000 per month in software licensing fees</a> and can cost up to $150,000 monthly for larger publications. Vox media executives <a href=\"https://www.wsj.com/articles/vox-media-to-begin-licensing-publishing-technology-chorus-1531828800\" rel=\"noopener\" target=\"_blank\">told the Wall Street Journal</a> that the company “plans to sell Chorus at different pricing tiers depending on the demands of each customer with fees in the six and seven-figure ranges.” Small local news publications are often priced out of using a publishing platform like this.</p>\n<p>“It breaks my heart how much of their limited resources these organizations still sink into closed-source or dead-end technology,” Automattic CEO Matt Mullenweg said in a <a href=\"https://ma.tt/2019/01/journalism-and-newspack/\" rel=\"noopener\" target=\"_blank\">post</a> introducing Newspack on his blog. “Open source is clearly the future, and if we do this right Newspack can be the technology choice that lasts with them through the decades, and hopefully our 15 years of growth lends some credibility to our orientation to build things for the long term.”</p>\n<p>Google’s support of Newspack is in line with its history of building with and <a href=\"https://wptavern.com/google-launches-opensource-dev-as-an-introduction-to-open-source\" rel=\"noopener\" target=\"_blank\">supporting open source projects</a>. When asked for clarification on Google’s investment in the project, Kinsey said, “It is a donation that is intended to support work that otherwise would not likely find commercial support because of the relatively modest means of small digital publishers.”</p>\n<p>WordPress.com’s Newspack announcement comes on the heels of the news of <a href=\"https://www.usatoday.com/story/money/business/2019/01/16/when-digital-first-media-gannetts-hostile-suitor-comes-town/2579392002/\" rel=\"noopener\" target=\"_blank\">Digital First Media’s unsolicited $1.36 billion bid for Gannett</a>. The future of local news is tenuous, as larger players in the industry press for more consolidation and cost-cutting journalism. In the same week, Facebook, who has had a hot and cold relationship with publishers, announced the company is investing <a href=\"https://www.facebook.com/facebookmedia/blog/doing-more-to-support-local-news\" rel=\"noopener\" target=\"_blank\">$300 million to support local news</a>.</p>\n<p>In recognition of the dire situation facing many local newsrooms, the largest companies on the web are committing funds to help them find a sustainable business model. WordPress.com’s Newspack platform, with its affordable, open source alternative to proprietary systems, is positioned to make a strong impact during this seminal time in the evolution of the news industry. </p>\n<p>“By itself, an open source CMS is not going to help news organizations remain independent,” Kinsey said. “However, by helping new, emerging organizations overcome the complexity and cost typically associated with technology deployment and instead allowing them to focus resources on journalism and smart business practices, we think we can help them become more sustainable.”</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, 17 Jan 2019 22:52:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:40:\"Matt: My TED Video on the Future of Work\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48932\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2019/01/ted-the-future-of-work/\";s: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:2707:\"<p>I was thrilled to participate in TED’s new video series, <a href=\"https://www.facebook.com/TEDsTheWayWeWork/videos/294277961234005/\">The Way We Work</a>, and not surprisingly I made the case that distributed work is <a href=\"https://qz.com/694410/automattic-has-figured-out-the-right-tools-for-remote-working/\">where everything is headed</a>. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div id=\"fb-root\"></div>&version;<div class=\"fb-video\"><blockquote cite=\"https://www.facebook.com/TEDsTheWayWeWork/videos/294277961234005/\" class=\"fb-xfbml-parse-ignore\"><a href=\"https://www.facebook.com/TEDsTheWayWeWork/videos/294277961234005/\">Why Working from Home Is Better for Business</a><p>This company is so dedicated to remote working that they literally don't have an office. Here's why a \"distributed\" workforce is better for business — and employees:</p>Posted by <a href=\"https://www.facebook.com/TEDsTheWayWeWork/\">The Way We Work</a> on Monday, January 14, 2019</blockquote></div>\n</div>\n\n\n\n<p>It has over 130,000 views already! What I really love about this video in particular is that we get into the specifics of <em>how</em> a company can start to embrace a culture of letting employees work from anywhere, even if it started out as a traditional office with everyone in the same place. Automattic never started that way, so even as we’ve scaled up to more than <a href=\"https://automattic.com/work-with-us/\">840 people</a> in 68 countries, there’s never been a question — it’s now built in to our entire culture.<br /></p>\n\n\n\n<p>For distributed work to scale up, it’s going to require more CEOs, workers, and managers to test the waters. Any company can experiment with distributed work — just pick a day or two of the week in which everyone works from home, I suggest Tuesdays and Thursdays, then build the tools and systems to support it. Yes, that may require some shuffling of meetings, or more written documentation versus verbal real-time discussion. But I think companies will be surprised how quickly it will “just work.” <br /></p>\n\n\n\n<p>If the companies don’t experiment, workers may force them to do it anyway: <br /></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I don\'t think tech folks quite understand how pervasive remote work has become. It\'s not even a debate anymore, it\'s a full on revolution. Hard to do any recruiting these days and not constantly run into talented folks who will never go back to working in an office again.</p>— Max Lynch (@maxlynch) <a href=\"https://twitter.com/maxlynch/status/1084854197869264896?ref_src=twsrc%5Etfw\">January 14, 2019</a></blockquote>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Jan 2019 20:32:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:91:\"WPTavern: WooCommerce Blocks is Now a Feature Plugin, Version 1.3.0 Introduces 6 New Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86856\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/woocommerce-blocks-is-now-a-feature-plugin-version-1-3-0-introduces-6-new-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2645:\"<p><a href=\"https://woocommerce.wordpress.com/2019/01/15/woocommerce-blocks-1-3-0-release-notes/\">WooCommerce Blocks 1.3.0</a> was released yesterday with six new blocks. Previously, the <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">plugin</a> allowed users to display a grid of products by category. The new version introduces a Featured Product Block with design options for customizing nearly everything about the display, including color overlay, price and description, text alignment, call-to-action button, and the product photo. </p>\n\n\n\n<img />\n\n\n\n<p>Version 1.3.0 also introduces a Hand-Picked Products block that displays a grid of manual selections that can be ordered in different ways. Other new blocks include the following, which display as a grid and can be filtered by category:</p>\n\n\n\n<ul><li>Best Selling Products block</li><li>Top Rated Products block</li><li>Newest Products block</li><li>On Sale Products block</li></ul>\n\n\n\n<p>WooCommerce Blocks is also now a <a href=\"https://docs.woocommerce.com/document/what-is-a-woocommerce-feature-plugin/\">feature plugin</a>, which means that after it is more polished and tested, the plugin can be considered for merge into WooCommerce core. WooCommerce Blocks 1.4 is expected the last week in January with improvements to the Featured Product block and a new Products by Attribute block.</p>\n\n\n\n<p>In December 2018, WooCommerce <a href=\"https://woocommerce.com/posts/people-behind-stores/\">published usage data</a> that indicates 40% of users who could be considered “established business owners” also have a brick-and-mortar location, and 27% host events in physical locations. This means that many WooCommerce store owners have multiple channels for selling their products. The data also showed that large stores don’t always turn to big companies to handle their website development needs.</p>\n\n\n\n<p>Based on that usage data, blocks have the potential to greatly improve the site management experience for many WooCommerce store owners who want to market to different audiences beyond their physical stores. Blocks enable them to easily swap out featured products and customize promotions on products that are selling well in their stores. All of these actions are quick to configure inside the new editor with a live preview. The sooner this feature plugin lands in WooCommerce core, the easier it will be to make these kinds of quick updates. Store owners with sites running on WordPress 5.0+ can take advantage of these blocks now by <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">installing the plugin</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, 16 Jan 2019 20:11:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:74:\"WPTavern: CoBlocks Adds Row and Columns Page Building Blocks for 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=86811\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/coblocks-adds-row-and-columns-page-building-blocks-for-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:3005:\"<p><a href=\"https://wordpress.org/plugins/coblocks/\" rel=\"noopener\" target=\"_blank\">CoBlocks</a>, one of the earliest block collections for Gutenberg, has added new page building blocks and tools in the latest <a href=\"https://richtabor.com/coblocks-gutenberg-page-builder/\">1.6 release</a>. ThemeBeans founder <a href=\"https://richtabor.com\" rel=\"noopener\" target=\"_blank\">Rich Tabor</a> and plugin developer <a href=\"https://phpbits.net\" rel=\"noopener\" target=\"_blank\">Jeffrey Carandang</a> partnered together on this iteration of CoBlocks to bring users new Row and Columns blocks and a Typography Control Panel.</p>\n<p>The Row and Column blocks are resizable and can be dragged to new positions. </p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/01/Screen-Shot-2019-01-15-at-5.33.39-PM.png?ssl=1\"><img /></a></p>\n<p>After selecting the Row block, users can choose the number of columns and then a layout for the row.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/01/Screen-Shot-2019-01-15-at-5.40.22-PM.png?ssl=1\"><img /></a></p>\n<p>These row layouts can also be adjusted from inside the row toolbar or inspector sidebar panel, which includes responsive media query controls. </p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/01/Screen-Shot-2019-01-15-at-5.53.18-PM.png?ssl=1\"><img /></a>The Row and Column blocks also come with fine-grained controls for adjusting background and text color, width, margin, and padding. </p>\n<p>Version 1.6 also includes a new Typography Control Panel with support for Google fonts. Users can customize the fonts with built-in controls for line-height, letter-spacing, font-weight, and text-transform properties. It also supports customizing fonts for the core heading, paragraph, and button blocks. </p>\n<p>The video below shows a quick demo of column layouts and nested row blocks in action, as well as a few other blocks in the collection. Tabor said the team has more blocks in development that are geared towards full page layout and design. They are also working on a more advanced Google Maps block, feature blocks, and image cards.</p>\n<p></p>\n<p>The Gutenberg team has been <a href=\"https://github.com/WordPress/gutenberg/issues/4900\" rel=\"noopener\" target=\"_blank\">discussing a “section” block</a> since February 2018, where columns blocks could be placed inside the more generic section container. It’s on the <a href=\"https://github.com/WordPress/gutenberg/issues/13113\" rel=\"noopener\" target=\"_blank\">roadmap for Phase 2</a> but contributors are taking their time to carefully define how this block will work. In the meantime, plugin developers have created their own versions of sections.</p>\n<p>CoBlocks is currently setting the bar for Gutenberg-powered layouts. When WordPress core gets deeper into site building, this plugin’s user-friendly approach to rows and columns should provide some inspiration for creating an intuitive page building experience.</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, 16 Jan 2019 01:49:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:67:\"WPTavern: WordPress Support Forums Add @mentions with Auto-complete\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86721\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/wordpress-support-forums-add-mentions-with-auto-complete\";s: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:1852:\"<p>The <a href=\"https://wordpress.org/support/forums/\" rel=\"noopener\" target=\"_blank\">WordPress Support forums</a> have been updated to include Twitter/GitHub style <a href=\"https://meta.trac.wordpress.org/ticket/2488\" rel=\"noopener\" target=\"_blank\">auto-completion for usernames</a>. As users begin typing @username in the forum’s TinyMCE editor, it will begin to suggest usernames, narrowed further by characters typed. Hitting tab or enter will complete the username and link it to the user’s profiles.wordpress.org page. This will trigger a notification for the user. </p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/01/Screen-Shot-2019-01-15-at-9.56.52-AM.png?ssl=1\"><img /></a></p>\n<p>A similar feature was implemented on <a href=\"https://meta.trac.wordpress.org/ticket/830\" rel=\"noopener\" target=\"_blank\">WordPress trac</a> three years ago. This initial version of @mention auto-complete for the support forums works in a similar way in that it completes a partial search query from a known set of usernames. In this case it only includes thread participants. In order to make the auto-complete scale for WordPress.org’s 10+ million registered users, it does not perform site-wide username lookups or include moderators, plugin reps, or theme reps who have not yet commented on the thread.</p>\n<p>The @mentions have been implemented across all WordPress.org forums. Any issues with the feature can be reported on trac by re-opening the original <a href=\"https://meta.trac.wordpress.org/ticket/2488\" rel=\"noopener\" target=\"_blank\">ticket</a> or creating a new one. Daniel Iser <a href=\"https://meta.trac.wordpress.org/ticket/2488#comment:20\" rel=\"noopener\" target=\"_blank\">commented</a> on the ticket that he is working on getting this feature working for bbPress during the first half of this year. </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, 15 Jan 2019 18:12:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:29:\"Matt: Journalism and Newspack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48924\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://ma.tt/2019/01/journalism-and-newspack/\";s: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:2189:\"<p>WordPress.com <a href=\"https://en.blog.wordpress.com/2019/01/14/newspack-by-wordpress-com/\">is partnering</a> with Google and news industry leaders on a new platform for small- and medium-sized publishers, called <a href=\"https://newspack.blog/\">Newspack</a>. The team has raised $2.4 million in first-year funding from the Google News Initiative, Lenfest Journalism Institute, Civil funder ConsenSys, and the Knight Foundation, among others. We’re also still happy to talk to and engage other funders who want to get involved — I’d love to put even more resources into this.<br /></p>\n\n\n\n<p>It’s been a difficult climate for the news business, particularly at the local level. It also breaks my heart how much of their limited resources these organizations still sink into closed-source or dead-end technology. Open source is clearly the future, and if we do this right Newspack can be the technology choice that lasts with them through the decades, and hopefully our 15 years of growth lends some credibility to our orientation to build things for the long term.</p>\n\n\n\n<p>Here’s <a href=\"https://kinsey.nyc/\">Kinsey</a> in Nieman Lab: <br /></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The goal is to both make sure that the catalog of publishing tools as well as business tools they need to be able to run what one hopes is a sustainable news operation are addressed simultaneously. It’s not simply a CMS for a newsroom, but a full business system that enables publishing and monetization at the same time.</p><cite>–<a href=\"http://www.niemanlab.org/2019/01/heightening-the-cms-race-wordpress-com-and-news-revenue-hub-devise-a-toolkit-for-local-newsrooms/\">Nieman Lab interview</a></cite></blockquote>\n\n\n\n<p>As you have come to expect from Automattic, everything will be open source and developed to the same standards WordPress itself is. We’re working with Spirited Media and the News Revenue Hub on the platform, and we will likely look for even more partnership opportunities from across the WordPress ecosystem. If you’d like to invest or get involved, drop us a line at <a href=\"mailto:newspack@automattic.com\">newspack@automattic.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:\"Tue, 15 Jan 2019 01:03:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:109:\"WPTavern: WPCampus Selects Tenon LLC for Gutenberg Accessibility Audit, Completed Report Expected in February\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86773\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wpcampus-selects-tenon-llc-for-wp-campus-gutenberg-accessibility-audit-completed-report-expected\";s: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:1626:\"<p>WPCampus <a href=\"https://wpcampus.org/2019/01/gutenberg-audit-vendor/\">announced</a> that <a href=\"https://tenon.io/\">Tenon LLC</a>, a leading accessibility firm founded by <a href=\"http://www.karlgroves.com/\">Karl Groves</a>, has been selected to perform its Gutenberg accessibility audit. More than $10,000 has come in through WPCamps’ crowdfunding campaign. Shortly before WordCamp US 2018, <a href=\"https://wptavern.com/interview-with-rachel-cherry-automattic-pledges-to-fund-wpcampus-accessibility-audit-of-gutenberg\">Automattic pledged to fund the remainder</a> of the audit. The final cost for the chosen vendor is $31,200.</p>\n\n\n\n<p>A diverse committee of WordPress, accessibility, and higher education professionals evaluated seven proposals before selecting Tenon LLC. The company’s Tenon API delivers advanced reporting that assists clients in understanding which issues to prioritize first in the process of building more accessible experiences. The <a href=\"https://wptavern.com/access-monitor-plugin-tests-wordpress-sites-for-accessibility-compliance\">Access Monitor plugin</a> for WordPress is an example of a tool built using this API. Site administrators can use it to identify and tackle accessibility issues with the help of automated testing.</p>\n\n\n\n<p>WPCampus will leave its crowdfunding campaign open until Friday, February 8 to allow more community participation. The organization plans to deliver a progress update on Thursday, January 31, and is aiming to complete the audit by late February. A public report of the findings will be published as a resource that anyone can access.</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, 14 Jan 2019 17:20:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:17:\"Matt: Thirty-Five\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2019/01/thirty-five/\";s: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:3398:\"<div class=\"wp-block-image\"><img src=\"https://ma.tt/files/2019/01/IMG_8762-768x1024.jpg\" alt=\"\" class=\"wp-image-48912\" width=\"247\" height=\"329\" /></div>\n\n\n\n<p>What a year.</p>\n\n\n\n<p>First, it feels amazing to write this inside of the new Gutenberg block editor in WordPress 5.0. It was a labor of love for so many and the next chapters are going to be even more exciting.</p>\n\n\n\n<p>The best part of the last year was growing closer to my friends and loved ones — I don’t know if it’s externally perceptible but my heart feels a lot more open. </p>\n\n\n\n<p>I’ve found a good balance with meditation, work, sleep, fasting, eating, and reading that gives me a lot of joy, energy, and feels like a combination I could sustain the rest of my life.</p>\n\n\n\n<p>Reading in particular was a highlight as I finished 38 books, which is the most in a year since I started tracking, and so many of them were truly excellent I’m going to do another post just on books. I will give a special call out to <a href=\"https://www.amazon.com/dp/B00TBKYK60/\">The Paper Menagerie by Ken Liu</a>. Leaving my Kindle Oasis at an airport ended up being a blessing in disguise as I started using the Kindle app on my iPhone a lot more and that’s become my new favorite habit. (And the physical Kindle was returned!)</p>\n\n\n\n<p>It was a strong travel year, covering 126 cities, 20 countries, and 377k miles. I especially enjoyed visits to Tulum, Iceland, Bodrum, Tonga, Kauai, Lanai, and Courchevel. I finally checked off my bucket list item to become scuba certified and had an amazing opportunity to swim with humpback whales.</p>\n\n\n\n<img src=\"https://ma.tt/files/2019/01/Tonga-Wanderings-2-of-5-1024x635.jpg\" alt=\"\" class=\"wp-image-48914\" />I was a few feet from <a href=\"https://www.comewander.com/\">Adam Gazzaley when he took this photo</a>.\n\n\n\n<p>I also had lots of opportunities to practice patience, weathered a torrent of personally-directed criticism across every medium, and had a few months that were the hardest I’ve worked in my career. With the benefit of a little distance, though, those things don’t loom as large. I learned a ton — often the hard way but often that’s what it takes — and discovered I had some additional gears that can kick in when needed.</p>\n\n\n\n<p>As I pass solidly into my mid-thirties, I don’t have any drastic shifts on the horizon but I am looking forward to continuing to strengthen the habits I’ve been able to develop this past year.</p>\n\n\n\n<p>Other years: <a href=\"https://ma.tt/2003/01/bday/\">19</a>, <a href=\"https://ma.tt/2004/01/so-im-20/\">20</a>, <a href=\"https://ma.tt/2005/01/hot-barely-legal-matt/\">21</a>, <a href=\"https://ma.tt/2006/01/matt-22/\">22</a>, <a href=\"https://ma.tt/2007/01/twenty-three/\">23</a>, <a href=\"https://ma.tt/2008/01/twenty-four/\">24</a>, <a href=\"https://ma.tt/2009/01/twenty-five/\">25</a>, <a href=\"https://ma.tt/2010/01/twenty-six/\">26</a>, <a href=\"https://ma.tt/2011/01/twenty-seven/\">27</a>, <a href=\"https://ma.tt/2012/01/twenty-eight/\">28</a>, <a href=\"https://ma.tt/2013/01/twenty-nine/\">29</a>, <a href=\"https://ma.tt/2014/01/matt-3-0/\">30</a>, <a href=\"https://ma.tt/2015/01/thirty-one/\">31</a>, <a href=\"https://ma.tt/2016/01/thirty-two/\">32</a>, <a href=\"https://ma.tt/2017/01/thirty-three/\">33</a>, <a href=\"https://ma.tt/2018/01/thirty-four/\">34</a>, 35.</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, 12 Jan 2019 00:12:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:70:\"WPTavern: WPWeekly Episode 342 – GitHub, Commercials, and Governance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=86783&preview=true&preview_id=86783\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wpweekly-episode-342-github-commercials-and-governance\";s: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:2012:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss what’s new in WordPress 5.0.3. We share insight into a new feature in WordPress 5.1 that will protect users from fatal errors or more commonly known as the white screen of death.</p>\n<p>We discuss the WordPress Governance Project and WordPress’ leadership overall throughout the past few years. Near the end of the show, we share our opinions on WordPress.com’s new marketing campaign.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wordpress.org/news/2019/01/wordpress-5-0-3-maintenance-release/\">WordPress 5.0.3 Maintenance Release</a></p>\n<p><a href=\"https://wptavern.com/github-announces-free-unlimited-private-repositories\">GitHub Announces Free, Unlimited Private Repositories</a></p>\n<p><a href=\"https://wptavern.com/wordpress-5-1-to-replace-blogging-references-with-publishing\">WordPress 5.1 to Replace “Blogging” References with “Publishing”</a></p>\n<p><a href=\"https://wptavern.com/wordpress-governance-project-flagged-as-unsanctioned-first-meeting-set-for-january-15\">WordPress Governance Project Flagged as Unsanctioned, First Meeting Set for January 15</a></p>\n<p><a href=\"https://wptavern.com/wordpress-com-launches-new-do-anything-marketing-campaign\">WordPress.com Launches New “Do Anything” Marketing Campaign</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 16th 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 #342:</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:\"Fri, 11 Jan 2019 22:18: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: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:106:\"WPTavern: WordPress 5.1 to Introduce New White Screen Protection Feature, Beta 1 Now Available for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86765\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-5-1-to-introduce-new-white-screen-protection-feature-beta-1-now-available-for-testing\";s: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:3611:\"<p><a href=\"https://wordpress.org/news/2019/01/wordpress-5-0-3-maintenance-release/\">WordPress 5.0.3</a> was released this week with more than a dozen fixes related to the block editor. The automatic background update has gone out and <a href=\"https://wordpress.org/about/stats/\">23.2% of sites are currently running on 5.0+,</a> with 47.2% hanging back at 4.9. Meanwhile, work on WordPress 5.1 charges forward and <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-1/\">Beta 1</a> is now available.</p>\n\n\n\n<p>One of the <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">projects Matt Mullenweg identified for 2019</a> was to merge the Site Health Check plugin into core to assist with debugging and encourage “good software hygiene.” The Site Health Check project, formerly called “ServeHappy,” began with the goal of helping users get their sites running on supported versions of PHP but has evolved to include other aspects of site maintenance and debugging.</p>\n\n\n\n<p>WordPress 5.1 brings one of the most exciting aspects of the Site Health Check project into core. It introduces a new <a href=\"https://core.trac.wordpress.org/ticket/44458\">white screen of death (WSOD) protection feature</a> that catches fatal errors so that users can still log into the admin to attempt to resolve the issue. In the past, non-technical users would have to contact their hosting companies or FTP into their files to try to fix plugin or theme compatibility issues by turning things off.</p>\n\n\n\n<p>In preparation for WordPress’ highly anticipated <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">minimum PHP version increase</a>, 5.1 will display a warning and help users upgrade their version of PHP. The minimum will be bumped to 5.6 in April and, depending on feedback, will be bumped again to 7.0 in December 2019.</p>\n\n\n\n<p>“This project benefits not just WordPress users, but also the surrounding PHP ecosystem as a whole,” Jenny Wong said in the <a href=\"https://jwong.co.uk/blog/2019/01/10/how-wordpress-is-dropping-php-end-of-life-versions/\">notes</a> she published from the Site Health Check Project review at WCUS 2018. “Our hope is that this will prompt a lot of PHP updates across the web.”</p>\n\n\n\n<p>If you want to take advantage of more features from the <a href=\"https://wordpress.org/plugins/health-check/\">Site Health Check plugin</a>, you can install it from WordPress.org and visit the Dashboard > Health Check for a detailed overview of your site. It also has a very handy troubleshooting mode that enables a vanilla WordPress session, where all plugins are disabled, and a default theme is used, but only for your user. This works without disrupting the way the site displays to visitors.</p>\n\n\n\n<img />\n\n\n\n<p>WordPress 5.1 also introduces some updates for developers, including the ability to replace the cron system with a custom cron handler, set a custom location for WP_DEBUG_LOG, a new <code>wp_blogmeta</code> table, and a few other changes. </p>\n\n\n\n<p>WordPress 5.1 is currently slated for release on <a href=\"https://make.wordpress.org/core/5-1/\">February 21</a>. The upcoming release is a big step on WordPress’ journey to becoming even more user-friendly. The idea that users will never again be locked out of their sites due to a WSOD is a major enhancement that will greatly improve the way they interact with WordPress’ plugin system. It also makes the prospect of installing new themes and plugins less daunting for non-technical users.</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, 11 Jan 2019 21:17: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: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: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:30:\"Dev Blog: WordPress 5.1 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6540\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4140:\"<p>WordPress 5.1 Beta 1 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 beta: 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.1-beta1.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.1 is slated for release on <a href=\"https://make.wordpress.org/core/5-1/\">February 21</a>, and we need your help to get there. Here are some of the big items to test so we can find as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Site Health Check</h2>\n\n\n\n<p>Site Health Check is an ongoing project aimed at improving the stability and performance of the entire WordPress ecosystem. The first phase of this project is included in WordPress 5.1. For the first time, WordPress will catch and pause the problem code, so you can log in to your Dashboard and see what the problem is (<a href=\"https://core.trac.wordpress.org/ticket/44458\">#44458</a>). Before, you’d have to FTP in to your files or get in touch with your host.</p>\n\n\n\n<p>Additionally, in April 2019, <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">WordPress’ will increase its minimum supported PHP version to 5.6</a>. To help you check if you’re prepared for this change, WordPress 5.1 will show you a warning and help you upgrade your version of PHP, if necessary.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<ul><li>The Cron system can now be more easily replaced with a custom cron handler (<a href=\"https://core.trac.wordpress.org/ticket/32656\">#32656</a>).</li><li>When starting cron under PHP-FPM, the connection will return a response immediately, even for long running cron jobs (<a href=\"https://make.wordpress.org/core/2019/01/09/cron-improvements-with-php-fpm-in-wordpress-5-1/\">dev note</a>).</li><li><code>WP_DEBUG_LOG</code> can be set to a custom log location (<a href=\"https://core.trac.wordpress.org/ticket/18391\">#18391</a>).</li><li>Introduced the <code>wp_blogmeta</code> table (<a href=\"https://core.trac.wordpress.org/ticket/37923\">#37923</a>).</li><li>Added <code>LIKE</code> support to <code>meta_key</code> comparisons in <code>WP_Meta_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/42409\">#42409</a>).</li></ul>\n\n\n\n<p>There have been <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.1&group=resolution&col=id&col=summary&col=component&col=owner&col=type&col=priority&col=version&order=priority\">over 360 tickets closed</a> in WordPress 5.1, with numerous small bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for more developer notes (which are <a href=\"https://make.wordpress.org/core/tag/5-1+dev-notes/\">assigned</a> the <code>dev-notes</code> tag) in the coming weeks detailing other changes in 5.1 that you should be aware of.</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><strong><em>If you think you’ve found a bug</em></strong><em>, you can post to the </em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em>Alpha/Beta area</em></a><em> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, </em><a href=\"https://make.wordpress.org/core/reports/\"><em>file one on WordPress Trac</em></a><em>, where you can also find </em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Miss my haiku?<br />I will have plenty for you<br />in the coming weeks.</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, 11 Jan 2019 00:58: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:15:\"Gary Pendergast\";s: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:97:\"WPTavern: Jetpack 6.9 Introduces New Blocks for Subscriptions, Related Posts, and Tiled Galleries\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86719\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/jetpack-6-9-introduces-new-blocks-for-subscriptions-related-posts-and-tiled-galleries\";s: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:2988:\"<p><a href=\"https://jetpack.com/2019/01/10/jetpack-6-9-introducing-more-tools-for-the-new-block-editor/\">Jetpack 6.9</a> was released today with three new blocks for the editor. Subscriptions, Related Posts, and Tiled Galleries are now available as blocks under Jetpack in the block inserter tool.</p>\n\n\n\n<img />New blocks in Jetpack: Related Posts, Subscription Form, and Tiled Galleries\n\n\n\n<p>The most exciting thing for both Related Posts and the Subscription form is that they can now be placed anywhere within post or page content with a live preview. Previously these modules were limited to wherever the theme placed them, or widgetized areas in the case of the Subscription form. Below is an example:</p>\n\n\n\n<div class=\"wp-block-jetpack-subscriptions\"><div class=\"jetpack_subscription_widget\"> <form action=\"https://wptavern.com/feed\" method=\"post\" accept-charset=\"utf-8\" id=\"subscribe-blog-495\">\n <p>Join 42,970 other subscribers</p>\n <p id=\"subscribe-email\">\n <label id=\"jetpack-subscribe-label\" for=\"subscribe-field-495\">\n Email Address </label>\n <input type=\"email\" name=\"email\" class=\"required\" value=\"\" id=\"subscribe-field-495\" />\n </p>\n\n <p id=\"subscribe-submit\">\n <input type=\"hidden\" name=\"action\" value=\"subscribe\" />\n <input type=\"hidden\" name=\"source\" value=\"https://wptavern.com/feed\" />\n <input type=\"hidden\" name=\"sub-type\" value=\"widget\" />\n <input type=\"hidden\" name=\"redirect_fragment\" value=\"495\" />\n <input type=\"submit\" value=\"Subscribe\" name=\"jetpack_subscriptions_widget\" />\n </p>\n </form>\n\n \n \n</div></div>\n\n\n\n<p>Tiled galleries can now easily be inserted, manipulated, and previewed in the new editor with all of the same features they had before. Styles and link settings for the galleries can be found in the block sidebar, but they are somewhat limited when <a href=\"https://wptavern.com/new-block-gallery-plugin-offers-a-suite-of-photo-gallery-blocks-for-gutenberg\">compared to other plugins like Block Gallery</a>. Now that the Jetpack team has the basic block in place, they can easily update it with new features.</p>\n\n\n\n<p>Users will need to have their Jetpack accounts connected to WordPress.com to access any of these new blocks, but they will all work on the Free plan.</p>\n\n\n\n<p>If you have been missing Jetpack shortlinks since Gutenberg was released, you will be pleased to find that Jetpack 6.9 brings them back under a new Jetpack icon at the top right of the block editor. Clicking on it reveals Jetpack’s publicize options as well as the shortlink.</p>\n\n\n\n<img />New Jetpack icon menu\n\n\n\n<p>Jetpack is constantly evolving its admin menu and user flows. This release brings changes to various screens, including a new “My Plan” section in the Jetpack dashboard, as well as a reorganization of the sections and cards under Jetpack > Settings. It also improves the notices displayed to users who have not connected their WordPress.com accounts.</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, 11 Jan 2019 00:14:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:74:\"WPTavern: Google Launches Opensource.dev as an Introduction to Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86688\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/google-launches-opensource-dev-as-an-introduction-to-open-source\";s: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:2463:\"<p>Google has launched a new educational site at <a href=\"https://opensource.dev/\">opensource.dev</a> that offers a succinct and approachable introduction to open source software and licensing. WordPress is cited as one of the more well-known examples in the opening paragraphs:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It’s in your phone, your car, your TV, and your wifi-connected light bulbs. Open source components enable engineers to build on the work of a global community of developers to deliver better products faster and at lower cost. Linux, the Apache web server, Android, Firefox, and WordPress are examples of open source projects you may have heard of.<br /></p></blockquote>\n\n\n\n<p>Google relies heavily on open source for both internal tools and consumer-facing products. A few of the company’s more widely used open source projects include Android, Chromium, Chromium OS, Go, and Material Design icons, but there are also many smaller projects. Google has created <a href=\"https://opensource.google.com/\">more than 2,000 open source projects</a> in the last decade, which you can browse through using a fun, <a href=\"https://opensource.google.com/projects/explore/featured\">interactive explorer</a>.</p>\n\n\n\n<img />\n\n\n\n<p>The new Opensource.dev site gives an important nod to <a href=\"https://opensource.org/\">Open Source Initiative</a> (OSI) as the maintainer of the <a href=\"https://opensource.org/osd-annotated\">Open Source Definition</a> (OSD) and the globally-recognized authority on open source licensing.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Google and many other OSI <a href=\"https://opensource.org/sponsors\">sponsors</a> and <a href=\"https://opensource.org/affiliates\">affiliates</a> recognize the OSD as the definition of open source and OSI’s <a href=\"https://opensource.org/authority\">authority</a> as the maintainer of the OSD. Licenses which do not comply with the OSD might still provide access to the source code, but they’re not “open source”.</p></blockquote>\n\n\n\n<p>The site ends with a solid list of curated links to important open source organizations, foundations, and other resources for further exploration. Overall, <a href=\"https://opensource.dev/\">opensource.dev</a> provides a nice summary that answers the question, “What is open source?” It’s a resource agencies and freelancers might consider sharing with clients who are new to the concept.</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, 10 Jan 2019 19:53:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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: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:83:\"WPTavern: Elementor Acquires Layers WP to Expand Compatible Theme Options for Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86701\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/elementor-acquires-layers-wp-to-expand-compatible-theme-options-for-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5844:\"<p>Elementor has <a href=\"https://elementor.com/blog/elementor-acquires-layers/\">acquired Layers WP</a>, a WordPress site builder that was previously marketed as an all-in-one theme solution for getting a business online. Layers co-founders David and Marc Perel identified Gutenberg as the main reason for the sale in their farewell <a href=\"https://www.layerswp.com/2019/01/elementor-acquires-layers-wp/\">announcement</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>With the arrival of Gutenberg we realized that a big change was required for Layers to keep pace. A massive investment of time and money was needed so we had to assess the best way forward. Having spent all of our 20’s working 18 hour days to build beautiful WordPress products we reached a point where we felt it best to partner with another company to try take Layers to the next level.</p></blockquote>\n\n\n\n<p>Elementor is the leading WordPress page builder, with more than a million active installations. CMO Ben Pines said they estimate that number to be closer to 2 million, based on the daily install rate. The company has grown from 6 employees to 55 since it launched in June 2016.</p>\n\n\n\n<p>Elementor was well-prepared for Gutenberg’s inclusion in 5.0. While other page builders are still considering how to move forward with the new editor, Elementor released its <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/plugins/block-builder/\" target=\"_blank\">Elementor Blocks for Gutenberg</a> plugin in October 2018, making it possible for users to insert any Elementor template into Gutenberg with one click.</p>\n\n\n\n<p>In the past, Layers didn’t meet the requirements for being listed in the WordPress.org themes directory, because the team decided not to follow best practices for keeping plugin and theme functionality separate. In 2016, <a href=\"https://wptavern.com/layers-ends-exclusive-arrangement-with-envato-launches-new-marketplace\">Perel said they were opting to maintain Layers as a hybrid product</a>, a theme that included plugin-like functionality, in order to keep third-party conflicts to a minimum, which he said also lessened their support burden. This prevented the product from receiving greater exposure on WordPress.org. As larger page builders began to dominate the market, Layers failed to gain the traction it needed to compete. Add Gutenberg to the mix and Layers’ founders were in need of an exit.</p>\n\n\n\n<p>“We feel that this acquisition has come just at the right moment when WordPress itself is going through a huge amount of change,” Perel said. “With the release of Gutenberg and the new built-in post editor we realized that much of Layers would need to change in order to keep pace with the new look of WordPress and feel that <a rel=\"noreferrer noopener\" href=\"https://layerswp.us10.list-manage.com/track/click?u=5b9a020fcf797987098cc7bca&id=c493b36eaa&e=4441ba6d29\" target=\"_blank\">Elementor</a> is the best company to respond to the shifting tide of the industry.”</p>\n\n\n\n<h3>Layers’ Theme Collection Is Now Free and Fully Compatible with Elementor</h3>\n\n\n\n<p>Elementor has released all 11 of <a href=\"https://www.layerswp.com/product-category/themes/\">Layers’ themes</a> for free and Ben Pines said they are considering listing them on WordPress.org to make it easier for users to find them and stay updated. All of the themes have been updated to be fully compatible with both Gutenberg and Elementor. Existing Layers’ customers will receive two months of support before support is handed over to the Layers user community.</p>\n\n\n\n<p>“Updating themes for compatibility is no easy matter, and we get thousands of requests asking for a theme that is compatible with Elementor,” Pines said. Finding a theme that is fully compatible with the page builder can be challenging. Pines said users often decide to use Elementor first and then look for a theme. There’s even a Facebook group called <a href=\"https://www.facebook.com/groups/126645814685793/?ref=br_rs\">Elementor + Which Theme?</a> with more than 2,400 members.</p>\n\n\n\n<p>“Themes still pose an issue for users,” Elementor’s head of business development, Zvi Shapira, said. “We saw value in continuing the Layers project, and not leaving thousands of Layers users without a home. Layers is a well worthy project, and offering a theme that is compatible with Elementor and Gutenberg for free for our users and for all WordPress users has great value.”</p>\n\n\n\n<p>Pines identified Layers’ advanced Customizer panel as one of its chief selling points. Along with the acquisition, all of the Layers Pro features, such as resizing the logo, customizing buttons, and styling menus, are now rolled into the free version.</p>\n\n\n\n<p>Gutenberg is forcing some consolidation among page builders, as smaller operations struggle to keep pace with the technical updates required. Gutenberg is expected to standardize a way of layout building further along in the site customization phase. Pines said his team isn’t worried about how that will impact Elementor, even if core ends up overlapping with some of the solutions they offer in the plugin.</p>\n\n\n\n<p>“I really don’t know if there will be an impact and of what sort,” Pines said. “It’s like the blocks we developed for Gutenberg. We adapted to provide our users with the maximum flexibility.” The plugin ensures that users don’t have to choose between using Gutenberg and the page builder. Acquiring Layers’ theme collection means Elementor users no longer have to look so hard to find a compatible theme.</p>\n\n\n\n<p>“Our hope is that Layers themes will help less tech-savvy users manage the entire site design hassle-free,” Pines 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, 09 Jan 2019 23:29: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: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:45:\"Dev Blog: WordPress 5.0.3 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6530\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/01/wordpress-5-0-3-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4566:\"<p>WordPress 5.0.3 is now available!</p>\n\n\n\n<p>5.0.3 is a maintenance release that includes 37 bug fixes and 7 performance updates. The focus of this release was fine-tuning the new block editor, and fixing any major bugs or regressions.</p>\n\n\n\n<p>Here are a few of the highlights:</p>\n\n\n\n<ul><li>15 block editor related bug fixes and improvements have been added to bundled themes. Make sure to update these for an improved block editing experience.</li><li><a href=\"https://core.trac.wordpress.org/query?status=closed&component=I18N&milestone=5.0.3&group=component&order=priority\">2 block editor related internationalization (I18N) bugs</a> have been fixed</li><li>Users with JavaScript disabled <a href=\"https://core.trac.wordpress.org/ticket/45453\">now see a notice</a> when attempting to use the block editor.</li><li>A few <a href=\"https://core.trac.wordpress.org/ticket/44770\">PHP</a> <a href=\"https://core.trac.wordpress.org/ticket/44809\">errors</a> in the Customizer have been fixed.</li><li>Some <a href=\"https://core.trac.wordpress.org/ticket/45615\">issues uploading common file types</a>, like CSVs, have been fixed.</li></ul>\n\n\n\n<p>For a full list of changes, please consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.0.3&group=component\">list of tickets on Trac</a>, <a href=\"https://core.trac.wordpress.org/log/branches/5.0?action=stop_on_copy&mode=stop_on_copy&rev=44522&stop_rev=44342&limit=100&sfp_email=&sfph_mail=\">changelog</a>, or read a <a href=\"https://make.wordpress.org/core/?p=36158\">more technical summary</a> on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/download/\">download WordPress 5.0.3</a> or visit Dashboard → Updates on your site and click <em>Update Now</em>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 5.0.3:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/kloon/\">Gerhard Potgieter</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Grzegorz (Greg) Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jobthomas/\">Job</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/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mmaumio/\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/panchen/\">panchen</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rickalee/\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</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, 09 Jan 2019 18:56: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: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:\"\";}}}}}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:82:\"WPTavern: WordPress 5.1 to Replace “Blogging” References with “Publishing”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86675\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-5-1-to-replace-blogging-references-with-publishing\";s: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:1627:\"<p>WordPress 5.1 will replace the “Happy blogging” language in wp-config-sample.php with “Happy Publishing.” The next major release also cleans up a few other “blog” references by replacing them with the word “site.” A lot of tutorials and documentation will need to be updated. WordPress contributors are continuing to fine-tune the wording in various files to reflect its expanded capabilities as a publishing platform.</p>\n\n\n\n<img />\n\n\n\n<p>“As of this commit, WordPress is no longer a simple blogging platform,” Gary Pendergast wrote in the <a href=\"https://core.trac.wordpress.org/changeset/44455\">commit message</a>. “It’s now a comprehensive publishing solution.”</p>\n\n\n\n<p>This commit signifies the end of an era, which actually ended a long time ago but is now formally recognized in the software’s language. WordPress can still be used for blogging, but it’s so much more dynamic. These days, successful blogs can easily transition into e-commerce stores or online magazines without having to migrate to a new platform.</p>\n\n\n\n<p>With Gutenberg now in the hands of millions of users, publishing different types of content is becoming more accessible for those who don’t know how to code. The new era of “Happy Publishing” in 2019 will bring even more progress on that roadmap, enabling users to have a more unified editing experience for other aspects of content management, including <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">widgets and menus</a>.</p>\n\n\n\n<p><br /><br /></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, 08 Jan 2019 23:44: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: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:63:\"WPTavern: GitHub Announces Free, Unlimited Private Repositories\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86657\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/github-announces-free-unlimited-private-repositories\";s: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:3488:\"<p>GitHub users no longer have to pay to keep code private. The company is now offering <a href=\"https://blog.github.com/2019-01-07-new-year-new-github/\" rel=\"noopener\" target=\"_blank\">unlimited private repositories to Free account users</a>, with up to three collaborators. Developers have different reasons for wanting to keep their code private – it may not be ready, they may be working on a side project, or may just be starting out in their coding journey. GitHub now makes it possible for users with free accounts to do that work in private, without having to upgrade to a Pro account for $7/month.</p>\n<p>This change brings the code hosting site more in line with competitors like GitLab.com, which allows for unlimited private projects and collaborators, and Bitbucket, a platform that has offered this for much longer. Bitbucket was actually <a href=\"https://news.ycombinator.com/item?id=4428278\" rel=\"noopener\" target=\"_blank\">GitLab’s inspiration for this model</a>. </p>\n<p>GitHub’s announcement was well-received but for many who have already moved to GitLab, this news come too late. Some are also wary of giving GitHub access to their private projects after Microsoft acquired the company for $7.5 billion last year. However, GitHub seems to be focusing its efforts less on monetizing the small fish and more on evolving the company’s Enterprise offering. It has combined its Business Cloud and Enterprise products into one unified “GitHub Enterprise” product that starts at $21/user/month.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Of course the GitHub update is so bigmega giantcorp can get you to give them more info & in turn more power & in turn more money, if that\'s annoying &/or unsavory to you there are alternatives (that are less convenient but that\'s what this is all about anyway) no grump just fact</p>\n<p>— Jon Christopher (@jchristopher) <a href=\"https://twitter.com/jchristopher/status/1082353226329001985?ref_src=twsrc%5Etfw\">January 7, 2019</a></p></blockquote>\n<p></p>\n<p>“At GitLab we think that repositories will become a commodity,” GitLab CEO Sid Sijbrandij <a href=\"https://about.gitlab.com/2019/01/07/github-offering-free-private-repos-for-up-to-three-collaborators/\" rel=\"noopener\" target=\"_blank\">said</a> in reaction to GitHub’s announcement. “I think Microsoft will try to generate more revenue with people using Azure more instead of paying for repos. We’re focusing on making a single application for the entire DevOps lifecycle that can replace a lot of other tools.” </p>\n<p>Every inch given in this space makes code sharing platforms more competitive. In terms of private repositories, GitHub has come close to offering what its smaller competitors have been giving away for free for a long time. If GitHub were to add Continuous Integration (CI) for free users to match GitLab’s free tier, for example, it might capture even more of the market. Different features sway different types of users to adopt one platform or another and eventually some of those turn into paying customers.</p>\n<p>For existing GitHub Free users, unlimited private repositories means the opportunity to keep their incomplete projects out of the public eye, instead of having people stumble on them and wonder why they don’t work as expected. It also frees up a few more dollars for Pro users who want to downgrade to Free accounts. </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, 08 Jan 2019 18:46:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:47:\"Dev Blog: The Month in WordPress: December 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=6527\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2019/01/the-month-in-wordpress-december-2018/\";s: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:3528:\"<p>New features, a big event, and important announcements marked December as a milestone month for the WordPress community. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Release of WordPress 5.0</h2>\n\n\n\n<p>On December 6 <a href=\"https://wordpress.org/news/2018/12/bebo/\">WordPress 5.0 was released</a>. This release includes the much anticipated new block editor as the default editing experience. While some users have chosen to continue using the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> on their sites, many site owners have quickly upgraded to this latest version.<br /></p>\n\n\n\n<p>Two security and maintenance releases came out over the course of the month, with <a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\">the latest update</a> providing a huge boost to performance and stability.<br /></p>\n\n\n\n<p>The new version of WordPress comes a new default theme: <a href=\"https://wordpress.org/themes/twentynineteen/\">Twenty Nineteen</a>. This theme is designed to highlight how the block editor can be used.<br /></p>\n\n\n\n<p>Want to get involved in developing 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>Gutenberg Phase 2</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2018/12/08/gutenberg-phase-2/\">The next phase of Gutenberg</a> is being decided, starting with widgets, which will make it easier for users to customize their sites. This will be done with features being added to the Gutenberg plugin.<br /></p>\n\n\n\n<p>Want to get involved in develop the future of the WordPress dashboard? 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>9 Projects for 2019</h2>\n\n\n\n<p>WordPress co-founder Matt Mullenweg outlined <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">9 projects for the year 2019</a>. These projects range from creating a block for navigations menus, porting all existing widgets into blocks, forming a triage team to tackle open issues on Trac and more.<br /></p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2018/12/17/status-update-porting-widgets-to-blocks/\">status update</a> for porting existing widgets to blocks has been posted by Mel Choyce.</p>\n\n\n\n<h2>WordCamp US 2019 Dates announced</h2>\n\n\n\n<p><a href=\"https://2019.us.wordcamp.org/2018/12/12/wordcamp-us-2019-announcing-our-dates/\">WordCamp US 2019</a> will be held during Nov. 1-3, 2019, in St Louis, Missouri. It will be one of our largest events of the year and will feature Matt Mullenweg’s annual State of the Word address.<br /></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>v1.2.1 of the WordPress Coding Standards library <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.2.1\">has been released</a>.</li><li>A few revisions <a href=\"https://make.wordpress.org/core/2018/12/18/proposed-revisions-to-javascript-coding-standards/\">have been proposed</a> for the WordPress JavaScript coding standards.</li></ul>\n\n\n\n<p><em>If you have a story we should consider including 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:\"Tue, 08 Jan 2019 09:18:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:96:\"WPTavern: WordPress Governance Project Flagged as Unsanctioned, First Meeting Set for January 15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86573\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/wordpress-governance-project-flagged-as-unsanctioned-first-meeting-set-for-january-15\";s: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:10550:\"<p>The WordPress Governance Project is a new community initiative, led by Rachel Cherry and Morten Rand-Hendriksen, that will <a href=\"https://wpgovernance.com/\">host its first meeting Tuesday, January 15 2019.</a></p>\n\n\n\n<p>The purpose of the project is to address two objectives:</p>\n\n\n\n<ol><li>The governance of the WordPress open source project and its various community components, and</li><li>WordPress’ role in the governance of the open web including representation in forums where decisions about the web platform and the Internet are made.</li></ol>\n\n\n\n<p>Hendriksen advocated for open governance when he introduced the project at WordCamp US in his presentation, <a href=\"https://wordpress.tv/2018/12/30/morten-rand-hendriksen-moving-the-web-forward-with-wordpress/\">Moving the Web forward with WordPress</a>. He discussed how the decisions made for WordPress’ future affect a large portion the web. The project will first look at WordPress’ internal governance structure and then move into the second aspect of getting WordPress a seat at the table in important discussions affecting the broader web.</p>\n\n\n\n<img />\n\n\n\n<p>Contributors on the project are aiming to propose a governance model for WordPress at or before WordCamp Europe 2019 or the Community Summit, if one is planned for 2019. The group plans to research existing governance models from corporations, government, and the open web community and submit their proposal to WordPress’ current leadership for consideration.</p>\n\n\n\n<h3>WordPress Governance Project Seeks to Change Leadership Structure, Rand-Hendriksen Says Status Quo is “Not Tenable”</h3>\n\n\n\n<p>The governance project has piqued the public’s interest but some have found its objectives confusing. It is not clear what actions will be within the realm of possibility with the current benevolent dictator model WordPress has used. Part of the scope of the project is to “propose a leadership and governance model for the WordPress open source project and its communities.”</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">That\'s part of the job: to figure out how it can and should work. The status quo is not tenable, and leaves us out of important conversations about where the web and the internet is headed.</p>— Morten i Norge <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f1f8-1f1ef.png\" alt=\"??\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f328.png\" alt=\"?\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f976.png\" alt=\"?\" class=\"wp-smiley\" /> (@mor10) <a href=\"https://twitter.com/mor10/status/1075145343019302912?ref_src=twsrc%5Etfw\">December 18, 2018</a></blockquote>\n</div>\n\n\n\n<p>The idea of governance means different things to audiences across cultures. The second aspect of the project that aims to get WordPress a seat at the table seems more feasible and more likely to be well-received by the project’s leadership. It might make more sense to split up the two objectives into different projects. WordPress’ internal governance and its role in the greater web are very different topics, but the project’s creators seem to view them as inseparable.</p>\n\n\n\n<p>Matt Mullenweg hasn’t joined in the Twitter conversation about governance but he did address the topic on a recent <a href=\"https://poststatus.com/matt-mullenweg-on-gutenberg/\">Post Status podcast episode</a>.</p>\n\n\n\n<p>“When he was talking about open governance, my take was that he was talking about getting WordPress a seat at the table, and discussing these regulation changes and et cetera happening,” Mullenweg said. “I think the example last year was that there was this meeting at 10 Downing Street. Who was there? Was WordPress represented?</p>\n\n\n\n<p>“And he started talking about the Web Foundation, and I began thinking, “Wow, WordPress only represents a third of websites, and not even, really. It’s a third of the top 10 million. Another foundation like the Web Foundation actually might be a better vehicle to try to advocate on the open Web as a whole, versus just the people who happen to be using a single CMS.”</p>\n\n\n\n<p>When asked more about WordPress’ leadership structure, Mullenweg reviewed the different approaches he has taken with the project. In 2018, the expression of his BDFL-style leadership was manifestly more overt than previous years, which may have influenced or even inspired the creation of the WordPress Governance Project.</p>\n\n\n\n<p>“There’s been a lot more leaders, but I would actually argue the point that WordPress has always been sort of my vision being set, or even my direct leadership,” Mullenweg said. “There was a good four or five years there where the leadership structure, because we’ve experimented with lots of different – we don’t call it governance – but essentially leadership structures in WordPress. For a while, we had kind of the … It wasn’t a committee approach, but essentially like the lead developers consensus approach. We did that for a few years.</p>\n\n\n\n<p>“Even from the beginning it wasn’t just me. It was me and Mike Little, so it’s never been solo. Then we went to where the release lead was the final decider, including over me, so that was probably, I don’t know, 3.9 to 4.7 maybe, that included overruling me as project lead for what was in the release or not, and that was to try to give a little more autonomy and flexibility to release leads. But the big change was a few years ago I said, ‘Okay, I’m going to take back over core WordPress development,’ and that was to try to make some of these big changes happen. So right now it is much more of a benevolent dictator model, although both of those words are questionable. But, I don’t see that as the permanent forever structure.”</p>\n\n\n\n<p>Mullenweg may not be able to sustain this level of involvement in core leadership indefinitely, with all of his other responsibilities at Automattic. He said he is open to WordPress empowering other leaders in the future.</p>\n\n\n\n<p>“I’m not saying it always has to be me, but what I want is a strong, opinionated, thoughtful leader setting a bold direction, taking experiments and being willing to fail, comfortable with failure, is I think what you need to create great software,” he said.</p>\n\n\n\n<p>Brian DeConinck, a WordPress developer who has recently been a vocal critic of the project’s leadership, called for more transparency around the decision-making process in his <a href=\"http://www.briandeconinck.com/initial-thoughts-wordpress-governance/\">initial thoughts on the governance project.</a></p>\n\n\n\n<p>“Matt is the central figure of the WordPress project,” DeConinck said. “He’s been a guiding force since the beginning. Without a doubt, he’s an important and valued member of our community. I don’t imagine governance as a means of usurping him.</p>\n\n\n\n<p>“But should there be a single human face at the head of a project and a community at this scale? When people are critical of decision-making, having Matt at the center makes it easy to make criticism needlessly personal. This dynamic is hard on Matt and others in the project leadership, and ultimately toxic for the community.”</p>\n\n\n\n<p>DeConinck said in order for the governance project to be successful he thinks it needs to be international, multicultural, and multilingual, with diverse voices, as well as clear mechanisms for WordPress users to provide feedback. He outlined a detailed list of success criteria that hasn’t officially been embraced by governance project as it has yet to hold its first meeting.</p>\n\n\n\n<p>DeConinck’s suggestions are incompatible with the current BDFL-style leadership, as he claims that “feedback from a community of millions of users can’t adequately be processed and acted upon by a single individual listening and making decisions for the project.” WordPress has risen to become a dominant force on the web during the past 15 years under this style of leadership. Any meaningful proposal of change to the leadership structure will need to demonstrate how the new model can continue to enable WordPress to make rapid progress and maintain its relevance on the web.</p>\n\n\n\n<h3>WordPress Governance Project Flagged as Unofficial and Removed from WordPress.org</h3>\n\n\n\n<p>Earlier this morning, WordPress Community Team representative Francesca Marano <a href=\"https://make.wordpress.org/community/2019/01/07/wordpress-governance-project-change-of-venue/\">posted a notice</a> on behalf of the governance project’s leadership to announce that the project has been removed from WordPress.org.</p>\n\n\n\n<p>“Concerns have been raised about the posting of news about the WordPress Governance Project on make.wordpress.org and use of the <a href=\"https://make.wordpress.org/community/tag/community-team/\">#community-team</a> Slack channel giving the impression the project is sanctioned as an official WordPress project,” Marano said. “It has not received such sanctions from WordPress leadership.”</p>\n\n\n\n<p>“We went through what we believed were the appropriate channels for launching the project through the Community group (ie speaking to group members, asking for access to the Make blog, coordinating with the team and others to find a meeting time which didn’t collide with others, etc),” Morten Rand-Hendriksen said. “We were later informed the project was not sanctioned by WordPress leadership and therefore cannot use the Make blog or Slack.” He would not comment further on what transpired or the communication his team received.</p>\n\n\n\n<p>For the time being, it looks like the governance project will need to prove its worth independently before being officially adopted by WordPress. Many other community-led efforts and tools have followed this same process before coming under the umbrella of core. </p>\n\n\n\n<p>The project now has its own dedicated website at <a href=\"https://wpgovernance.com/\">wpgovernance.com</a> and a Slack instance at <a href=\"https://join.slack.com/t/twgp/signup?x=x-517030675360-517548723457\">twgp.slack.com</a>. The first meeting was set for January 8 but has been postponed to January, 15, 1600 UTC to allow participants to sign up at the new Slack workspace.</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, 07 Jan 2019 19:49: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: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:85:\"WPTavern: Beaver Builder Doubles Down on Serving Power Users in Response to 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=86569\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/beaver-builder-doubles-down-on-serving-power-users-in-response-to-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:3074:\"<p>At WordCamp US I had the opportunity to chat with <a href=\"https://www.wpbeaverbuilder.com/\">Beaver Builder</a> co-founder Robby McCullough about how the page builder is navigating the Gutenberg era. The proliferation of blocks for the new editor has made it easy for non-technical WordPress users to add things like pricing tables, maps, tabs, accordions, and other UI elements. Future iterations of Gutenberg will soon tackle layouts. These improvements to core will radically change how page builder products are marketed to WordPress users.</p>\n\n\n\n<p>“One of the decisions we made in response to the news of Gutenberg early on is that we wanted to double down on our professional power users,” McCullough said. “It took us a long time in our growth as a business to figure out who our customers were. We realized there were two distinct camps: one that was like a do-it-yourselfer type, someone who maybe had a small business or a hobby website who wanted to use WordPress but wasn’t familiar with writing code. The other was more of a freelancer – maybe a one or two person agency, people who were building lots of websites and had development and frontend skills. We see that as the space where we want to live now. We’re hoping to continue solving problems and making the experience better for folks with a few more skills in their tool belts.”</p>\n\n\n\n<p>Following up with McCullough later, he said that applying this new direction to Beaver Builder is already translating into the features they are prioritizing for the plugin.</p>\n\n\n\n<p>“For example, in our latest major release, we added percent, em, rem, and viewport-based units for things like font sizes, margins, and padding,” McCullough said. “Without a basic understanding of CSS, this feature wouldn’t be too helpful. We also added dozens of pre-built row templates. So, instead of creating single-page designs, our goal was to create a modular system of rows that can be mixed and matched to build out sites. We’re working to build features that better enable folks who build lots of websites.”</p>\n\n\n\n<p>In the interview below we discussed the current integration between Gutenberg and Beaver Builder. McCullough said his team is considering bringing blocks into Beaver Builder or bringing Beaver Builder content into Gutenberg; both are possibilities. His team has been waiting to see how quickly the community adopts Gutenberg before making any major decisions.</p>\n\n\n\n<p>“My hope is that there’s still going to be a place for page builders, Beaver Builder and everyone in this space, to have a little bit more agility,” McCullough said. “We can see Gutenberg kind of be like Instagram in that it’s going to appeal to a mass audience. We like to live in the Photoshop space where you’re going to get a lot of fine-tuned controls, solving problems and creating features that are going to help people build websites every day.”</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Jan 2019 20:20: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:\"\";}}}}}}}}}}}}}}}}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:\"Thu, 14 Feb 2019 20:30:43 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 14 Feb 2019 20:15:10 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:\"20180206180026\";}','no'),(137,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1550219487','no'),(138,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1550176287','no'),(139,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1550219487','no'),(140,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/02/wordpress-5-1-release-candidate/\'>WordPress 5.1 Release Candidate</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/matt-mullenweg-publishes-ted-talk-on-the-future-of-work-prepares-to-launch-new-distributed-blog-website\'>WPTavern: Matt Mullenweg Publishes TED Talk on the Future of Work, Prepares to Launch New Distributed.blog Website</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpbrigade-patches-critical-vulnerability-in-simple-social-buttons-plugin\'>WPTavern: WPBrigade Patches Critical Vulnerability in Simple Social Buttons Plugin</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-345-the-relationship-between-corporate-cash-and-open-source-software\'>WPTavern: WPWeekly Episode 345 – The Relationship Between Corporate Cash and Open Source Software</a></li></ul></div>','no'),(152,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1550180216;s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{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.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.1.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:6:\"tested\";s:5:\"5.0.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:23:\"gutenberg/gutenberg.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:6:\"plugin\";s:23:\"gutenberg/gutenberg.php\";s:11:\"new_version\";s:5:\"5.0.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/gutenberg/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/gutenberg.5.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/gutenberg/assets/icon-256x256.jpg?rev=1776042\";s:2:\"1x\";s:62:\"https://ps.w.org/gutenberg/assets/icon-128x128.jpg?rev=1776042\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/gutenberg/assets/banner-1544x500.jpg?rev=1718710\";s:2:\"1x\";s:64:\"https://ps.w.org/gutenberg/assets/banner-772x250.jpg?rev=1718710\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"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:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(156,'wp_page_for_privacy_policy','0','yes'),(157,'show_comments_cookies_opt_in','0','yes'),(160,'db_upgraded','','yes'),(161,'_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.0.3.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.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.3\";s:7:\"version\";s:5:\"5.0.3\";s:11:\"php_version\";s:5:\"5.2.4\";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:1550180216;s:15:\"version_checked\";s:5:\"5.0.3\";s:12:\"translations\";a:0:{}}','no'),(162,'can_compress_scripts','1','no'),(164,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(168,'_site_transient_timeout_available_translations','1550189561','no'),(169,'_site_transient_available_translations','a:114:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-08 06:00:48\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-09 09:48:33\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-04 08:43:29\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.5/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-11 16:43:39\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2017-10-01 12:57:10\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.6/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-08 14:28:15\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-27 18:44:33\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-04 16:49:56\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 11:48:01\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-21 15:30:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-20 22:51:51\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.0.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-24 08:17:39\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-25 13:30:37\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-25 13:29:55\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.0.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-13 09:03:58\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-07 23:07:03\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-08 07:41:03\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-05 15:59:09\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-07 23:06:45\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-30 09:51:42\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 20:26:22\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-07 22:44:17\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-09 15:59:14\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-06 12:47:45\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-07 18:38:30\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-06 21:26:01\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-14 13:48:04\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.9/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-15 15:03:42\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-15 05:21:23\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:9:\"5.0-beta3\";s:7:\"updated\";s:19:\"2018-11-28 16:04:33\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.0-beta3/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-12-09 21:12:23\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-06 05:46:26\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-20 17:45:40\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-25 09:32:29\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2019-02-01 21:20:31\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.9/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-01-31 11:16:06\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.6/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 01:42:00\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.8/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-13 23:30:09\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.7\";s:7:\"updated\";s:19:\"2018-06-17 09:33:44\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.7/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-13 19:56:01\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-25 12:14:51\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-07-28 13:16:13\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.7.11\";s:7:\"updated\";s:19:\"2018-09-20 11:13:37\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.7.11/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-13 18:22:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-25 06:47:53\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-24 13:53:29\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2019-01-06 16:23:22\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-21 14:15:57\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.8/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-12 08:08:32\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 07:34:10\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 14:27:41\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-18 14:32:44\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.9/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 18:11:00\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-02-13 07:38:55\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.6/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-08-30 20:27:25\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-24 22:25:12\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-27 10:30:26\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-08 07:58:09\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.0.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-18 14:06:09\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-26 17:30:56\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-08 12:42:03\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.3/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-24 07:53:53\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-28 11:22:46\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-07 14:37:33\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-09 09:30:48\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/4.9.5/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-05 17:22:29\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-07 22:07:58\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-25 13:50:06\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-10 15:35:30\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0.3/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2018-01-04 13:33:13\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 20:30:46\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 18:35:39\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-10 21:54:07\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-25 06:25:17\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-25 22:54:23\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-12 12:31:53\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-02-03 15:14:15\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-31 11:05:02\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-23 12:32:40\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 06:50:01\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-25 02:46:38\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-07 06:14:39\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2018-12-21 00:57:14\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','no'),(171,'_site_transient_timeout_theme_roots','1550182016','no'),(172,'_site_transient_theme_roots','a:5:{s:4:\"star\";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\";}','no'),(175,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1550180255;s:7:\"checked\";a:5:{s:4:\"star\";s:4:\"1.12\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:14:\"twentynineteen\";s:3:\"1.2\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.3\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.3.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.0.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.8.zip\";}}s:12:\"translations\";a:0:{}}','no'),(177,'current_theme','Star','yes'),(178,'theme_mods_star','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"social\";i:3;s:6:\"header\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:13:\"remove-header\";s:14:\"star_hide_icon\";i:1;s:16:\"star_header_icon\";s:4:\"f005\";}','yes'),(179,'theme_switched','','yes'); /*!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=165 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/02/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/02/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/02/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/02/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/02/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/02/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','62b625d8-c127-4c1b-b218-8362d16a2cac'),(16,8,'_thumbnail_id','5'),(17,8,'_customize_draft_post_name','about'),(18,8,'_customize_changeset_uuid','62b625d8-c127-4c1b-b218-8362d16a2cac'),(19,9,'_thumbnail_id','4'),(20,9,'_customize_draft_post_name','contact'),(21,9,'_customize_changeset_uuid','62b625d8-c127-4c1b-b218-8362d16a2cac'),(22,10,'_thumbnail_id','6'),(23,10,'_customize_draft_post_name','blog'),(24,10,'_customize_changeset_uuid','62b625d8-c127-4c1b-b218-8362d16a2cac'),(25,11,'_thumbnail_id','4'),(26,11,'_customize_draft_post_name','a-homepage-section'),(27,11,'_customize_changeset_uuid','62b625d8-c127-4c1b-b218-8362d16a2cac'),(28,13,'_wp_attached_file','2019/02/espresso-1.jpg'),(29,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2019/02/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:{}}}'),(30,13,'_starter_content_theme','twentyseventeen'),(31,13,'_customize_draft_post_name','espresso'),(32,14,'_wp_attached_file','2019/02/sandwich-1.jpg'),(33,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2019/02/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:{}}}'),(34,14,'_starter_content_theme','twentyseventeen'),(35,14,'_customize_draft_post_name','sandwich'),(36,15,'_wp_attached_file','2019/02/coffee-1.jpg'),(37,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/02/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:{}}}'),(38,15,'_starter_content_theme','twentyseventeen'),(39,15,'_customize_draft_post_name','coffee'),(40,16,'_customize_draft_post_name','home'),(41,16,'_customize_changeset_uuid','10b18d7c-b4ed-4588-b5aa-9b386acf4b17'),(42,17,'_thumbnail_id','14'),(43,17,'_customize_draft_post_name','about'),(44,17,'_customize_changeset_uuid','10b18d7c-b4ed-4588-b5aa-9b386acf4b17'),(45,18,'_thumbnail_id','13'),(46,18,'_customize_draft_post_name','contact'),(47,18,'_customize_changeset_uuid','10b18d7c-b4ed-4588-b5aa-9b386acf4b17'),(48,19,'_thumbnail_id','15'),(49,19,'_customize_draft_post_name','blog'),(50,19,'_customize_changeset_uuid','10b18d7c-b4ed-4588-b5aa-9b386acf4b17'),(51,20,'_thumbnail_id','13'),(52,20,'_customize_draft_post_name','a-homepage-section'),(53,20,'_customize_changeset_uuid','10b18d7c-b4ed-4588-b5aa-9b386acf4b17'),(54,22,'_wp_attached_file','2019/02/espresso-2.jpg'),(55,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2019/02/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:{}}}'),(56,22,'_starter_content_theme','twentyseventeen'),(58,23,'_wp_attached_file','2019/02/sandwich-2.jpg'),(59,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2019/02/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:{}}}'),(60,23,'_starter_content_theme','twentyseventeen'),(62,24,'_wp_attached_file','2019/02/coffee-2.jpg'),(63,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/02/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:{}}}'),(64,24,'_starter_content_theme','twentyseventeen'),(67,25,'_customize_changeset_uuid','d817a381-199a-476e-af23-e1e4caca29d5'),(68,26,'_thumbnail_id','23'),(70,26,'_customize_changeset_uuid','d817a381-199a-476e-af23-e1e4caca29d5'),(71,27,'_thumbnail_id','22'),(73,27,'_customize_changeset_uuid','d817a381-199a-476e-af23-e1e4caca29d5'),(74,28,'_thumbnail_id','24'),(76,28,'_customize_changeset_uuid','d817a381-199a-476e-af23-e1e4caca29d5'),(77,29,'_thumbnail_id','22'),(79,29,'_customize_changeset_uuid','d817a381-199a-476e-af23-e1e4caca29d5'),(80,36,'_menu_item_type','custom'),(81,36,'_menu_item_menu_item_parent','0'),(82,36,'_menu_item_object_id','36'),(83,36,'_menu_item_object','custom'),(84,36,'_menu_item_target',''),(85,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(86,36,'_menu_item_xfn',''),(87,36,'_menu_item_url','http://ufbvi.org/wordpress1/'),(88,37,'_menu_item_type','post_type'),(89,37,'_menu_item_menu_item_parent','0'),(90,37,'_menu_item_object_id','26'),(91,37,'_menu_item_object','page'),(92,37,'_menu_item_target',''),(93,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(94,37,'_menu_item_xfn',''),(95,37,'_menu_item_url',''),(96,38,'_menu_item_type','post_type'),(97,38,'_menu_item_menu_item_parent','0'),(98,38,'_menu_item_object_id','28'),(99,38,'_menu_item_object','page'),(100,38,'_menu_item_target',''),(101,38,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(102,38,'_menu_item_xfn',''),(103,38,'_menu_item_url',''),(104,39,'_menu_item_type','post_type'),(105,39,'_menu_item_menu_item_parent','0'),(106,39,'_menu_item_object_id','27'),(107,39,'_menu_item_object','page'),(108,39,'_menu_item_target',''),(109,39,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(110,39,'_menu_item_xfn',''),(111,39,'_menu_item_url',''),(112,40,'_menu_item_type','custom'),(113,40,'_menu_item_menu_item_parent','0'),(114,40,'_menu_item_object_id','40'),(115,40,'_menu_item_object','custom'),(116,40,'_menu_item_target',''),(117,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(118,40,'_menu_item_xfn',''),(119,40,'_menu_item_url','https://www.yelp.com'),(120,41,'_menu_item_type','custom'),(121,41,'_menu_item_menu_item_parent','0'),(122,41,'_menu_item_object_id','41'),(123,41,'_menu_item_object','custom'),(124,41,'_menu_item_target',''),(125,41,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(126,41,'_menu_item_xfn',''),(127,41,'_menu_item_url','https://www.facebook.com/wordpress'),(128,42,'_menu_item_type','custom'),(129,42,'_menu_item_menu_item_parent','0'),(130,42,'_menu_item_object_id','42'),(131,42,'_menu_item_object','custom'),(132,42,'_menu_item_target',''),(133,42,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(134,42,'_menu_item_xfn',''),(135,42,'_menu_item_url','https://twitter.com/wordpress'),(136,43,'_menu_item_type','custom'),(137,43,'_menu_item_menu_item_parent','0'),(138,43,'_menu_item_object_id','43'),(139,43,'_menu_item_object','custom'),(140,43,'_menu_item_target',''),(141,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(142,43,'_menu_item_xfn',''),(143,43,'_menu_item_url','https://www.instagram.com/explore/tags/wordcamp/'),(144,44,'_menu_item_type','custom'),(145,44,'_menu_item_menu_item_parent','0'),(146,44,'_menu_item_object_id','44'),(147,44,'_menu_item_object','custom'),(148,44,'_menu_item_target',''),(149,44,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(150,44,'_menu_item_xfn',''),(151,44,'_menu_item_url','mailto:wordpress@example.com'),(152,30,'_wp_trash_meta_status','publish'),(153,30,'_wp_trash_meta_time','1550177641'),(154,21,'_customize_restore_dismissed','1'),(155,12,'_customize_restore_dismissed','1'),(156,25,'_edit_lock','1550177947:1'),(157,46,'_wp_attached_file','2019/02/UFB-Logo-2.jpg'),(158,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2483;s:6:\"height\";i:918;s:4:\"file\";s:22:\"2019/02/UFB-Logo-2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"UFB-Logo-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:\"UFB-Logo-2-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"UFB-Logo-2-768x284.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"UFB-Logo-2-1024x379.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:23:\"UFB-Logo-2-2000x918.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:918;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"UFB-Logo-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:10:\"1266552093\";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:5:\"Print\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(159,47,'_edit_lock','1550178615:1'),(160,46,'_wp_attachment_custom_header_last_used_star','1550180422'),(161,46,'_wp_attachment_is_custom_header','star'),(162,48,'_edit_lock','1550180542:1'),(163,48,'_wp_trash_meta_status','publish'),(164,48,'_wp_trash_meta_time','1550180561'); /*!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=49 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://ufbvi.org/wordpress1/?p=1',0,'post','',1),(2,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','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:\n\n<blockquote>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.)</blockquote>\n\n...or something like this:\n\n<blockquote>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.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://ufbvi.org/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2018-02-06 17:51:13','2018-02-06 17:51:13','',0,'http://ufbvi.org/wordpress1/?page_id=2',0,'page','',0),(3,1,'2019-02-14 20:31:23','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-02-14 20:31:23','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?p=3',0,'post','',0),(4,1,'2019-02-14 20:32:44','0000-00-00 00:00:00','','Espresso','','auto-draft','open','closed','','','','','2019-02-14 20:32:35','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/espresso.jpg',0,'attachment','image/jpeg',0),(5,1,'2019-02-14 20:32:44','0000-00-00 00:00:00','','Sandwich','','auto-draft','open','closed','','','','','2019-02-14 20:32:38','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/sandwich.jpg',0,'attachment','image/jpeg',0),(6,1,'2019-02-14 20:32:44','0000-00-00 00:00:00','','Coffee','','auto-draft','open','closed','','','','','2019-02-14 20:32:41','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/coffee.jpg',0,'attachment','image/jpeg',0),(7,1,'2019-02-14 20:32:44','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-02-14 20:32:44','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=7',0,'page','',0),(8,1,'2019-02-14 20:32:44','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-02-14 20:32:44','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=8',0,'page','',0),(9,1,'2019-02-14 20:32:44','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-02-14 20:32:44','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=9',0,'page','',0),(10,1,'2019-02-14 20:32:44','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2019-02-14 20:32:44','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=10',0,'page','',0),(11,1,'2019-02-14 20:32:44','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-02-14 20:32:44','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=11',0,'page','',0),(12,1,'2019-02-14 20:32:44','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\": \"5b1fba98ff1987d4c9a23df6a6b970fa\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:32:44\"\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\": \"a95151e5d94821ba0f933eeca780364d\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:32:44\"\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\": \"2eee9b7bb043ffee81f6314703b9c7b0\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:32:44\"\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-02-14 20:32:44\"\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\": \"5b1fba98ff1987d4c9a23df6a6b970fa\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:32:44\"\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-02-14 20:32:44\"\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\": \"2eee9b7bb043ffee81f6314703b9c7b0\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:32:44\"\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\": \"a95151e5d94821ba0f933eeca780364d\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://ufbvi.org/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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:32:44\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 7,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:32:44\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 10,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\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-02-14 20:32:44\"\n }\n}','','','auto-draft','closed','closed','','62b625d8-c127-4c1b-b218-8362d16a2cac','','','2019-02-14 20:32:44','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?p=12',0,'customize_changeset','',0),(13,1,'2019-02-14 20:42:33','0000-00-00 00:00:00','','Espresso','','auto-draft','open','closed','','','','','2019-02-14 20:42:23','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/espresso-1.jpg',0,'attachment','image/jpeg',0),(14,1,'2019-02-14 20:42:33','0000-00-00 00:00:00','','Sandwich','','auto-draft','open','closed','','','','','2019-02-14 20:42:26','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/sandwich-1.jpg',0,'attachment','image/jpeg',0),(15,1,'2019-02-14 20:42:33','0000-00-00 00:00:00','','Coffee','','auto-draft','open','closed','','','','','2019-02-14 20:42:29','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/coffee-1.jpg',0,'attachment','image/jpeg',0),(16,1,'2019-02-14 20:42:33','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-02-14 20:42:33','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=16',0,'page','',0),(17,1,'2019-02-14 20:42:33','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-02-14 20:42:33','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=17',0,'page','',0),(18,1,'2019-02-14 20:42:33','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-02-14 20:42:33','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=18',0,'page','',0),(19,1,'2019-02-14 20:42:33','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2019-02-14 20:42:33','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=19',0,'page','',0),(20,1,'2019-02-14 20:42:33','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-02-14 20:42:33','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=20',0,'page','',0),(21,1,'2019-02-14 20:42:33','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\": \"5b1fba98ff1987d4c9a23df6a6b970fa\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:42:33\"\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\": \"a95151e5d94821ba0f933eeca780364d\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:42:33\"\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\": \"2eee9b7bb043ffee81f6314703b9c7b0\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:42:33\"\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-02-14 20:42:33\"\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\": \"5b1fba98ff1987d4c9a23df6a6b970fa\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:42:33\"\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-02-14 20:42:33\"\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\": \"2eee9b7bb043ffee81f6314703b9c7b0\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:42:33\"\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\": \"a95151e5d94821ba0f933eeca780364d\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://ufbvi.org/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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:42:33\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 16,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:42:33\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 19,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\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-02-14 20:42:33\"\n }\n}','','','auto-draft','closed','closed','','10b18d7c-b4ed-4588-b5aa-9b386acf4b17','','','2019-02-14 20:42:33','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?p=21',0,'customize_changeset','',0),(22,1,'2019-02-14 20:54:00','2019-02-14 20:54:00','','Espresso','','inherit','open','closed','','espresso','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/espresso-2.jpg',0,'attachment','image/jpeg',0),(23,1,'2019-02-14 20:54:00','2019-02-14 20:54:00','','Sandwich','','inherit','open','closed','','sandwich','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/sandwich-2.jpg',0,'attachment','image/jpeg',0),(24,1,'2019-02-14 20:54:00','2019-02-14 20:54:00','','Coffee','','inherit','open','closed','','coffee','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/coffee-2.jpg',0,'attachment','image/jpeg',0),(25,1,'2019-02-14 20:54:00','2019-02-14 20:54: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','','publish','closed','closed','','home','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/?page_id=25',0,'page','',0),(26,1,'2019-02-14 20:54:00','2019-02-14 20:54: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','','publish','closed','closed','','about','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/?page_id=26',0,'page','',0),(27,1,'2019-02-14 20:54:00','2019-02-14 20:54: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','','publish','closed','closed','','contact','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/?page_id=27',0,'page','',0),(28,1,'2019-02-14 20:54:00','2019-02-14 20:54:00','','Blog','','publish','closed','closed','','blog','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/?page_id=28',0,'page','',0),(29,1,'2019-02-14 20:54:00','2019-02-14 20:54: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','','publish','closed','closed','','a-homepage-section','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/?page_id=29',0,'page','',0),(30,1,'2019-02-14 20:54:00','2019-02-14 20:54: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\": \"5b1fba98ff1987d4c9a23df6a6b970fa\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\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\": \"a95151e5d94821ba0f933eeca780364d\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\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\": \"2eee9b7bb043ffee81f6314703b9c7b0\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\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-02-14 20:52:34\"\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\": \"5b1fba98ff1987d4c9a23df6a6b970fa\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\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-02-14 20:52:34\"\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\": \"2eee9b7bb043ffee81f6314703b9c7b0\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\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\": \"a95151e5d94821ba0f933eeca780364d\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\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-02-14 20:52:34\"\n },\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 22,\n 23,\n 24,\n 25,\n 26,\n 27,\n 28,\n 29\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\n },\n \"nav_menu[-1]\": {\n \"value\": {\n \"name\": \"Top Menu\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\n },\n \"nav_menu_item[-1]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 0,\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://ufbvi.org/wordpress1/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\n },\n \"nav_menu_item[-2]\": {\n \"value\": {\n \"object_id\": 26,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"post_type\",\n \"title\": \"About\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"About\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\n },\n \"nav_menu_item[-3]\": {\n \"value\": {\n \"object_id\": 28,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"Blog\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Blog\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\n },\n \"nav_menu_item[-4]\": {\n \"value\": {\n \"object_id\": 27,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Contact\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Contact\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\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-02-14 20:52:34\"\n },\n \"nav_menu[-5]\": {\n \"value\": {\n \"name\": \"Social Links Menu\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\n },\n \"nav_menu_item[-5]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 0,\n \"type\": \"custom\",\n \"title\": \"Yelp\",\n \"url\": \"https://www.yelp.com\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\n },\n \"nav_menu_item[-6]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Facebook\",\n \"url\": \"https://www.facebook.com/wordpress\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\n },\n \"nav_menu_item[-7]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"custom\",\n \"title\": \"Twitter\",\n \"url\": \"https://twitter.com/wordpress\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\n },\n \"nav_menu_item[-8]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"custom\",\n \"title\": \"Instagram\",\n \"url\": \"https://www.instagram.com/explore/tags/wordcamp/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\n },\n \"nav_menu_item[-9]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"custom\",\n \"title\": \"Email\",\n \"url\": \"mailto:wordpress@example.com\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:54:00\"\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-02-14 20:52:34\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 25,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 28,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\n },\n \"twentyseventeen::panel_1\": {\n \"starter_content\": true,\n \"value\": 29,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\n },\n \"twentyseventeen::panel_2\": {\n \"starter_content\": true,\n \"value\": 26,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\n },\n \"twentyseventeen::panel_3\": {\n \"starter_content\": true,\n \"value\": 28,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\n },\n \"twentyseventeen::panel_4\": {\n \"starter_content\": true,\n \"value\": 27,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 20:52:34\"\n }\n}','','','trash','closed','closed','','d817a381-199a-476e-af23-e1e4caca29d5','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/?p=30',0,'customize_changeset','',0),(31,1,'2019-02-14 20:54:00','2019-02-14 20:54: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','','inherit','closed','closed','','25-revision-v1','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',25,'http://ufbvi.org/wordpress1/2019/02/14/25-revision-v1/',0,'revision','',0),(32,1,'2019-02-14 20:54:00','2019-02-14 20:54: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','','inherit','closed','closed','','26-revision-v1','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',26,'http://ufbvi.org/wordpress1/2019/02/14/26-revision-v1/',0,'revision','',0),(33,1,'2019-02-14 20:54:00','2019-02-14 20:54: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','','inherit','closed','closed','','27-revision-v1','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',27,'http://ufbvi.org/wordpress1/2019/02/14/27-revision-v1/',0,'revision','',0),(34,1,'2019-02-14 20:54:00','2019-02-14 20:54:00','','Blog','','inherit','closed','closed','','28-revision-v1','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',28,'http://ufbvi.org/wordpress1/2019/02/14/28-revision-v1/',0,'revision','',0),(35,1,'2019-02-14 20:54:00','2019-02-14 20:54: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','','inherit','closed','closed','','29-revision-v1','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',29,'http://ufbvi.org/wordpress1/2019/02/14/29-revision-v1/',0,'revision','',0),(36,1,'2019-02-14 20:54:00','2019-02-14 20:54:00','','Home','','publish','closed','closed','','home','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/2019/02/14/home/',0,'nav_menu_item','',0),(37,1,'2019-02-14 20:54:00','2019-02-14 20:54:00',' ','','','publish','closed','closed','','37','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/2019/02/14/37/',1,'nav_menu_item','',0),(38,1,'2019-02-14 20:54:00','2019-02-14 20:54:00',' ','','','publish','closed','closed','','38','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/2019/02/14/38/',2,'nav_menu_item','',0),(39,1,'2019-02-14 20:54:00','2019-02-14 20:54:00',' ','','','publish','closed','closed','','39','','','2019-02-14 20:54:00','2019-02-14 20:54:00','',0,'http://ufbvi.org/wordpress1/2019/02/14/39/',3,'nav_menu_item','',0),(40,1,'2019-02-14 20:54:01','2019-02-14 20:54:01','','Yelp','','publish','closed','closed','','yelp','','','2019-02-14 20:54:01','2019-02-14 20:54:01','',0,'http://ufbvi.org/wordpress1/2019/02/14/yelp/',0,'nav_menu_item','',0),(41,1,'2019-02-14 20:54:01','2019-02-14 20:54:01','','Facebook','','publish','closed','closed','','facebook','','','2019-02-14 20:54:01','2019-02-14 20:54:01','',0,'http://ufbvi.org/wordpress1/2019/02/14/facebook/',1,'nav_menu_item','',0),(42,1,'2019-02-14 20:54:01','2019-02-14 20:54:01','','Twitter','','publish','closed','closed','','twitter','','','2019-02-14 20:54:01','2019-02-14 20:54:01','',0,'http://ufbvi.org/wordpress1/2019/02/14/twitter/',2,'nav_menu_item','',0),(43,1,'2019-02-14 20:54:01','2019-02-14 20:54:01','','Instagram','','publish','closed','closed','','instagram','','','2019-02-14 20:54:01','2019-02-14 20:54:01','',0,'http://ufbvi.org/wordpress1/2019/02/14/instagram/',3,'nav_menu_item','',0),(44,1,'2019-02-14 20:54:01','2019-02-14 20:54:01','','Email','','publish','closed','closed','','email','','','2019-02-14 20:54:01','2019-02-14 20:54:01','',0,'http://ufbvi.org/wordpress1/2019/02/14/email/',4,'nav_menu_item','',0),(45,1,'2019-02-14 21:01:46','2019-02-14 21:01:46','<p style=\"text-align: center;\"><img class=\"alignnone wp-image-46\" src=\"http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/UFB-Logo-2-300x111.jpg\" alt=\"\" width=\"173\" height=\"64\" />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.</p>','Utah Foundation for the Blind and Visually Impaired','','inherit','closed','closed','','25-autosave-v1','','','2019-02-14 21:01:46','2019-02-14 21:01:46','',25,'http://ufbvi.org/wordpress1/2019/02/14/25-autosave-v1/',0,'revision','',0),(46,1,'2019-02-14 20:58:13','2019-02-14 20:58:13','','Print','','inherit','open','closed','','print','','','2019-02-14 20:58:13','2019-02-14 20:58:13','',25,'http://ufbvi.org/wordpress1/wp-content/uploads/2019/02/UFB-Logo-2.jpg',0,'attachment','image/jpeg',0),(47,1,'2019-02-14 21:03:01','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2019-02-14 21:03:01','0000-00-00 00:00:00','',0,'http://ufbvi.org/wordpress1/?page_id=47',0,'page','',0),(48,1,'2019-02-14 21:42:41','2019-02-14 21:42:41','{\n \"star::header_image\": {\n \"value\": \"remove-header\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 21:42:22\"\n },\n \"star::header_image_data\": {\n \"value\": \"remove-header\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 21:42:22\"\n },\n \"star::star_hide_icon\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 21:42:22\"\n },\n \"star::star_header_icon\": {\n \"value\": \"f005\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-02-14 21:42:22\"\n }\n}','','','trash','closed','closed','','731cd21c-22e3-4720-b989-d70a1ae0d344','','','2019-02-14 21:42:41','2019-02-14 21:42:41','',0,'http://ufbvi.org/wordpress1/?p=48',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),(36,2,0),(37,2,0),(38,2,0),(39,2,0),(40,3,0),(41,3,0),(42,3,0),(43,3,0),(44,3,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!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=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,4),(3,3,'nav_menu','',0,5); /*!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=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Top Menu','top-menu',0),(3,'Social Links Menu','social-links-menu',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=25 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','ufbvi'),(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','wp496_privacy'),(15,1,'default_password_nag',''),(16,1,'show_welcome_panel','1'),(17,1,'session_tokens','a:2:{s:64:\"cf8a1ab811f5a5c04d69f1935c5578e19754d7f974eb5841bd67648c6e08e50c\";a:4:{s:10:\"expiration\";i:1551385878;s:2:\"ip\";s:14:\"67.161.213.186\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:5:\"login\";i:1550176278;}s:64:\"25db57a6329b759db8403dbde3740185260faf630ccc5a6b0b8bbf9e8574e675\";a:4:{s:10:\"expiration\";i:1551386671;s:2:\"ip\";s:14:\"67.161.213.186\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:5:\"login\";i:1550177071;}}'),(18,1,'wp_dashboard_quick_press_last_post_id','3'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"67.161.213.0\";}'),(20,1,'wp_user-settings','libraryContent=browse'),(21,1,'wp_user-settings-time','1550178101'),(22,1,'nav_menu_recently_edited','3'),(23,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\";}'),(24,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'); /*!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,'ufbvi','$P$BA2St7hPnrDTYj4hpJ9tdJLOKkdqYN0','ufbvi','tony@ufbvi.org','http://ufbvi.org','2018-02-06 17:51:13','',0,'ufbvi'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_02f0eb3_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-02-15 16:43:17