0byt3m1n1
Path:
/
data
/
11
/
0
/
1
/
28
/
816517
/
meta
/
837869
/
mysql.backup
/
[
Home
]
File: 1_006c500_0.mysqlcluster24.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster24 Database: 1_006c500_0 -- ------------------------------------------------------ -- Server version 5.6.36-82.0-56-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2017-08-04 17:46:45','2017-08-04 17:46:45','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=192 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://www.crash.life/wordpress1','yes'),(2,'home','http://www.crash.life/wordpress1','yes'),(3,'blogname','wordpress1','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','accounting@crash.life','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:38:\"index.php?&page_id=2&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','twentyseventeen','yes'),(41,'stylesheet','wellington','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','38590','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:5:{i:2;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','2','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','13','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:6:\"header\";a:0:{}s:17:\"magazine-homepage\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'cron','a:4:{i:1504979207;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:1505000309;a:1:{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;}}}i:1505005134;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'),(109,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1504917170;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(113,'_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-4.8.1.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-4.8.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.8.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.8.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.8.1\";s:7:\"version\";s:5:\"4.8.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1504963377;s:15:\"version_checked\";s:5:\"4.8.1\";s:12:\"translations\";a:0:{}}','no'),(120,'_site_transient_timeout_browser_f9694186c5800b9905943d3f44ede836','1505518710','no'),(121,'_site_transient_browser_f9694186c5800b9905943d3f44ede836','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"60.0.3112.113\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(130,'can_compress_scripts','1','no'),(145,'_site_transient_timeout_wporg_theme_feature_list','1504927827','no'),(146,'_site_transient_wporg_theme_feature_list','a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}','no'),(150,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1504963381;s:7:\"checked\";a:4:{s:13:\"twentyfifteen\";s:3:\"1.8\";s:15:\"twentyseventeen\";s:3:\"1.3\";s:13:\"twentysixteen\";s:3:\"1.3\";s:10:\"wellington\";s:5:\"1.2.1\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(151,'current_theme','Wellington','yes'),(152,'theme_mods_wellington','a:9:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:13:\"remove-header\";s:11:\"custom_logo\";i:46;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"background_image\";s:0:\"\";s:21:\"background_position_x\";s:6:\"center\";s:21:\"background_position_y\";s:6:\"center\";s:16:\"background_color\";s:6:\"9e0b0f\";}','yes'),(153,'theme_switched','','yes'),(154,'widget_wellington-magazine-posts-columns','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(155,'widget_wellington-magazine-posts-grid','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(156,'wellington_theme_options','a:2:{s:16:\"site_description\";b:1;s:21:\"blog_magazine_widgets\";b:0;}','yes'),(157,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(161,'_site_transient_timeout_browser_ad58f5e1b2f626b25a249d1f8de934be','1505524642','no'),(162,'_site_transient_browser_ad58f5e1b2f626b25a249d1f8de934be','a:9:{s:8:\"platform\";s:5:\"Linux\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"60.0.3112.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(167,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1504963380;s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":8:{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:\"3.3.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.3.4.zip\";s:6:\"tested\";s:5:\"4.8.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":6:{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\";}}}','no'),(168,'_site_transient_timeout_community-events-e0496216111b64240c3b89678c65f156','1505009392','no'),(169,'_site_transient_community-events-e0496216111b64240c3b89678c65f156','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"184.18.73.0\";}s:6:\"events\";a:4:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Ann Arbor\";s:3:\"url\";s:34:\"https://2017.annarbor.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-13 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Ann Arbor, Michigan, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:42.280789200000001;s:9:\"longitude\";d:-83.738155599999999;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Milwaukee\";s:3:\"url\";s:35:\"https://2017.milwaukee.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-14 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:35:\"Milwaukee, Wisconsin, United States\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:43.038365300000002;s:9:\"longitude\";d:-87.912107599999999;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Columbus, OH\";s:3:\"url\";s:34:\"https://2017.columbus.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-21 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Columbus, OH\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9973083;s:9:\"longitude\";d:-83.036152400000006;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:19:\"WordCamp Cincinnati\";s:3:\"url\";s:36:\"https://2017.cincinnati.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-11-11 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Cincinnati, OH, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.131079999999997;s:9:\"longitude\";d:-84.5177841;}}}}','no'),(170,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1505009394','no'),(171,'_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:31:\"Fri, 01 Sep 2017 10:02:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=4.9-alpha-41340\";s:7:\"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:33:\"\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:\"The Month in WordPress: August 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2017/09/the-month-in-wordpress-august-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 01 Sep 2017 10:02:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=4899\";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:333:\"While there haven’t been any major events or big new developments in the WordPress world this past month, a lot of work has gone into developing a sustainable future for the project. Read on to find out more about this and other interesting news from around the WordPress world in August. The Global WordPress Translation […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:6496:\"<p>While there haven’t been any major events or big new developments in the WordPress world this past month, a lot of work has gone into developing a sustainable future for the project. Read on to find out more about this and other interesting news from around the WordPress world in August.</p>\n<hr />\n<h2>The Global WordPress Translation Day Returns</h2>\n<p>On September 30, the WordPress Polyglots team will be holding <a href=\"https://wptranslationday.org/\">the third Global WordPress Translation Day</a>. This is a 24-hour global event dedicated to the translation of the WordPress ecosystem (core, themes, plugins), and is a mix of physical, in-person translation work with online streaming of talks from WordPress translators all over the world.</p>\n<p>Meetup groups will be holding events where community members will come together to translate WordPress. To get involved in this worldwide event, <a href=\"https://www.meetup.com/pro/wordpress/\">join your local meetup group</a> or, if one is not already taking place in your area, organize one for your community.</p>\n<p>You can find out more information <a href=\"https://wptranslationday.org/global-wordpress-translation-day-3/\">on the Translation Day blog</a> and in the #polyglots-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>WordPress Foundation to Run Open Source Training Worldwide</h2>\n<p>The WordPress Foundation is a non-profit organization that exists to provide educational events and resources for hackathons, support of the open web, and promotion of diversity in the global open source community.</p>\n<p>In an effort to push these goals forward, <a href=\"http://wordpressfoundation.org/2017/call-for-organizers-introduction-to-open-source/\">the Foundation is going to be offering assistance</a> to communities who would like to run local open source training workshops. A number of organizers have applied to be a part of this initiative, and the Foundation will be selecting two communities in the coming weeks.</p>\n<p>Follow <a href=\"http://wordpressfoundation.org/news/\">the WordPress Foundation blog</a> for updates.</p>\n<h2>Next Steps in WordPress Core’s PHP Focus</h2>\n<p>After <a href=\"https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/\">last month’s</a> push to focus on WordPress core’s PHP development, a number of new initiatives have been proposed and implemented. The first of these initiatives is a page on WordPress.org that will educate users on the benefits of upgrading PHP. The page and its implementation are still in development, so <a href=\"https://github.com/WordPress/servehappy\">you can follow and contribute on GitHub</a>.</p>\n<p>Along with this, <a href=\"https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/\">plugin developers are now able to specify</a> the minimum required PHP version for their plugins. This version will then be displayed on the Plugin Directory page, but it will not (yet) prevent users from installing it.</p>\n<p>The next evolution of this is for the minimum PHP requirement to be enforced so that plugins will only work if that requirement is met. You can assist with this implementation by contributing your input or a patch on <a href=\"https://core.trac.wordpress.org/ticket/40934\">the open ticket</a>.</p>\n<p>As always, discussions around the implementation of PHP in WordPress core are done in the #core-php channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>New Editor Development Continues</h2>\n<p>For a few months now, the core team has been steadily working on Gutenberg, the new editor for WordPress core. While Gutenberg is still in development and is some time away from being ready, a huge amount of progress has already been made. In fact, <a href=\"https://make.wordpress.org/core/2017/08/29/whats-new-in-gutenberg-august-29/\">v1.0.0 of Gutenberg</a> was released this week.</p>\n<p>The new editor is available as a plugin <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">for testing</a> and <a href=\"https://make.wordpress.org/core/2017/08/11/revised-suggested-roadmap-for-gutenberg-and-customization/\">the proposed roadmap</a> is for it to be merged into core in early 2018. You can get involved in the development of Gutenberg by joining the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> and following the <a href=\"https://make.wordpress.org/core/\">WordPress Core development blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>On the topic of Gutenberg, <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">Matt Mullenweg wrote a post</a> to address some of the concerns that the community has expressed about the new editor.</li>\n<li><a href=\"http://hookrefineandtinker.com/2017/08/jaiwp-an-alternative-project-to-wordcamp-india/\">A new movement has started</a> in the Indian WordPress community named JaiWP — the organizers are seeking to unite and motivate the country’s many local communities.</li>\n<li><a href=\"https://richtabor.com/merlin-wp/\">Merlin WP</a> is a new plugin offering theme developers an easy way to onboard their users.</li>\n<li>Ryan McCue posted <a href=\"https://make.wordpress.org/core/2017/08/23/rest-api-roadmap/\">an ambitious roadmap</a> for the future of the WordPress REST API — many contributions from the community will be needed in order to reach these goals.</li>\n<li>Want to know what you can expect in the next major release of WordPress? <a href=\"https://make.wordpress.org/core/2017/08/11/wordpress-4-9-goals/\">Here’s a look</a> at what the core team is planning for v4.9.</li>\n<li>To help combat the difficulties that Trac presents to WordPress Core contributors, Ryan McCue built an alternative platform dubbed <a href=\"https://github.com/rmccue/not-trac\">Not Trac</a>.</li>\n<li><a href=\"https://make.wordpress.org/cli/2017/08/08/version-1-3-0-released/\">v1.3.0 of WP-CLI was released</a> earlier in the month, adding a whole lot of great new features to the useful tool.</li>\n</ul>\n<p><i><span style=\"font-weight: 400\">If you have a story we should consider including in the next “Month in WordPress” post, please </span></i><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><i><span style=\"font-weight: 400\">submit it here</span></i></a><i><span style=\"font-weight: 400\">.</span></i></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:\"4899\";s: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:33:\"\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 4.8.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2017/08/wordpress-4-8-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 21:26: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4875\";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:366:\"After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release. This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the release […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Weston Ruter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2560:\"<p>After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release.</p>\n<p>This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the <a href=\"https://codex.wordpress.org/Version_4.8.1\">release notes</a>, the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.8.1&group=component\">tickets closed</a>, and the <a href=\"https://core.trac.wordpress.org/log/branches/4.8?rev=41210&stop_rev=40891\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.8.1</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.1.</p>\n<p>Thanks to everyone who contributed to 4.8.1:<br />\n<a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</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/atanasangelovdev/\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/greuben/\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999/\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/sa3idho/\">Said El Bakkali</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford/\">Timmy Crawford</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</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:\"4875\";s: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:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2017/08/the-month-in-wordpress-july-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 02 Aug 2017 07:50:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=4885\";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:\"After a particularly busy month in June, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July. Weekly meeting for new core […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5644:\"<p>After a particularly busy month <a href=\"https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/\">in June</a>, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July.</p>\n<hr />\n<h2>Weekly meeting for new core contributors</h2>\n<p>Onboarding new contributors is a persistent issue for most WordPress contribution teams. While every team welcomes any new contributors, the path to getting deeply involved can be tricky to find at times.</p>\n<p>This month, the Core team implemented a fantastic new initiative: <a href=\"https://make.wordpress.org/core/2017/06/30/announcing-a-weekly-new-contributors-meeting/\">weekly meetings for new core contributors</a> as a way to encourage involvement and foster fresh contributions. The meetings not only focus on bugs suited to first-time contributors, they also make space for experienced contributors to help out individuals who may be new to developing WordPress core.</p>\n<p>The meetings are held every Wednesday at 19:00 UTC in the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>Increased focus on PHP practices in WordPress core</h2>\n<p>In bringing people together to improve WordPress core, a new channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> named #core-php is designed to focus on PHP development in the project.</p>\n<p>Along with this increased concentration on PHP, a <a href=\"https://make.wordpress.org/core/2017/07/06/announcement-for-weekly-php-meetings/\">new weekly meeting is now taking place</a> every Monday at 18:00 UTC in #core-php to improve WordPress core’s PHP practices.</p>\n<h2>Sharp rise in meetup group growth</h2>\n<p>The dashboard events widget in WordPress 4.8 displays local, upcoming WordPress events for the logged in user. The events listed in this widget are pulled from the <a href=\"https://www.meetup.com/pro/wordpress/\">meetup chapter program</a>, as well as the <a href=\"https://central.wordcamp.org/schedule\">WordCamp schedule</a>.</p>\n<p>This widget provides greater visibility of official WordPress events, and encourages community involvement in these events. It’s safe to say that the widget has achieved its goals admirably — since WordPress 4.8 was released a little over a month ago, 31 new meetup groups have been formed with 15,647 new members across the whole program. This is compared to 19 new groups and only 7,071 new members in the same time period last year.</p>\n<p>You can find a local meetup group to join <a href=\"https://www.meetup.com/pro/wordpress/\">on meetup.com</a>, and if you would like to get involved in organizing events for your community, you can find out more about the inner workings of the program <a href=\"https://make.wordpress.org/community/meetups/\">on the Community Team site</a> or by joining the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>WordPress 4.8.1 due for imminent release</h2>\n<p>WordPress 4.8 cycle’s first maintenance release will be published in the coming week, more than a month after 4.8 was released. This release fix some important issues in WordPress core and the majority of users will find that their sites will update to this new version automatically.</p>\n<p>If you would like to help out by testing this release before it goes live, you can follow the <a href=\"https://make.wordpress.org/core/handbook/testing/beta/\">beta testing guide</a> for WordPress core. To get further involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>The WordPress mobile apps have been updated with <a href=\"https://en.blog.wordpress.com/2017/07/24/a-brand-new-editor-for-the-wordpress-mobile-apps/\">a brand new text editor</a>.</li>\n<li>In a recent push to encourage WordPress users to upgrade their PHP versions, two features have been proposed – one <a href=\"https://core.trac.wordpress.org/ticket/41191\">to provide a notice to users</a> and another to <a href=\"https://core.trac.wordpress.org/ticket/40934\">allow PHP version requirements to be specified by plugins and themes</a>.</li>\n<li>John Maeda wrote <a href=\"https://make.wordpress.org/design/2017/07/14/whywordpress2/\">a great post</a> celebrating the freedom that WordPress offers.</li>\n<li>Gutenberg, the new text editor for WordPress, is <a href=\"https://make.wordpress.org/core/2017/07/28/whats-new-in-gutenberg-28th-july/\">in continual development</a> — everyone is invited to <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>.</li>\n<li>The WordPress Meta team is starting <a href=\"https://make.wordpress.org/meta/2017/07/26/experiment-wordcamp-org-bug-scrubs/\">a new initiative</a> to bring the community together to focus on fixing bugs across the WordCamp.org network.</li>\n<li>Volunteer applications for WordCamp US <a href=\"https://2017.us.wordcamp.org/2017/08/01/wcus-needs-you-volunteer-applications-are-now-open/\">are now open</a>.</li>\n</ul>\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4885\";s: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:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: June 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2017/07/the-month-in-wordpress-june-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 03 Jul 2017 11:42:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=4865\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"We’re starting a new regular feature on this blog today. We’d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we’ll be posting a roundup of all the major WordPress news at the end of every month. Aside from other general […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:9225:\"<p><i>We’re starting a new regular feature on this blog today. We’d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we’ll be posting a roundup of all the major WordPress news at the end of every month.</i></p>\n<p>Aside from other general news, the three big events in June were the release of WordPress 4.8, WordCamp Europe 2017, and the WordPress Community Summit. Read on to hear more about these as well as other interesting stories from around the WordPress world.</p>\n<hr />\n<h2>WordPress 4.8</h2>\n<p>On June 8, a week before the Community Summit and WordCamp Europe,<a href=\"https://wordpress.org/news/2017/06/evans/\"> WordPress 4.8 was released</a>.You can read<a href=\"https://make.wordpress.org/core/2017/05/26/wordpress-4-8-field-guide/\"> the Field Guide</a> for a comprehensive overview of all the features of this release (the News and Events widget in the dashboard is one of the major highlights).</p>\n<p>Most people would either have their version auto-updated, or their hosts would have updated it for them. For the rest, the updates have gone smoothly with no major issues reported so far.</p>\n<p>This WordPress release saw contributions from 346 individuals; you can find their names in <a href=\"https://wordpress.org/news/2017/06/evans/\">the announcement post</a>. To get involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<h2>WordCamp Europe 2017</h2>\n<p><a href=\"https://2017.europe.wordcamp.org/\">WordCamp Europe 2017</a> was held in Paris between June 15-17. The event began with a Contributor Day, followed by two days of talks and community goodness. The talks were live-streamed, but you can still catch all the recordings <a href=\"http://wordpress.tv/event/wordcamp-europe-2017/\">on WordPress.tv</a>. The organisers also published <a href=\"https://2017.europe.wordcamp.org/2017/06/30/wordcamp-europe-2017-in-paris-its-a-wrap/\">a handy wrap-up of the event</a>.</p>\n<p>WordCamp Europe exists to bring together the WordPress community from all over the continent, as well as to inspire local communities everywhere to get their own events going — to that end, the event was a great success, as a host of new meetup groups have popped up in the weeks following WordCamp Europe.</p>\n<p>The work that Contributor Day participants accomplished was both varied and valuable, covering all aspects of the WordPress project — have a look through <a href=\"https://make.wordpress.org/\">the Make blogs</a> for updates from each team.</p>\n<p>Finally, we also learned during the event that <a href=\"https://2017.europe.wordcamp.org/2017/06/17/belgrade-serbia-to-host-wordcamp-europe-2018/\">WordCamp Europe 2018 will be held in Belgrade, Serbia</a>, continuing the tradition of exploring locations and communities across the continent.</p>\n<h2>WordPress Community Summit</h2>\n<p>The fourth WordPress Community Summit took place during the two days leading up to WordCamp Europe 2017. This event is an invite-only unconference where people from all over the WordPress community come together to discuss some of the more difficult issues in the community, as well as to make plans for the year ahead in each of the contribution teams.</p>\n<p>As the Summit is designed to be a safe space for all attendees, the notes from each discussion are in the process of being anonymized before we publish them on <a href=\"https://make.wordpress.org/summit/\">the Summit blog</a> (so stay tuned – they’ll show up there over the next few weeks).</p>\n<p>You can already see the final list of topics that were proposed for the event <a href=\"https://make.wordpress.org/summit/2017/06/10/community-summit-2017-final-list-of-topic/\">here</a> (although a few more were added during the course of the two day Summit).</p>\n<h2>WordPress marketing push continues apace</h2>\n<p>As part of the push to be more intentional in marketing WordPress (as per Matt Mullenweg’s <a href=\"http://wordpress.tv/2016/12/07/matt-mullenweg-state-of-the-word-2016/\">2016 State of the Word</a>), the Marketing team has launched two significant drives to obtain more information about who uses WordPress and how that information can shape their outreach and messaging efforts.</p>\n<p><a href=\"https://make.wordpress.org/marketing/2017/06/15/wordpress-case-studies-and-usage-survey/\">The team is looking for WordPress case studies</a> and is asking users, agencies, and freelancers to take a WordPress usage survey. This will go a long way towards establishing a marketing base for WordPress as a platform and as a community — and many people in the community are looking forward to seeing this area develop further.</p>\n<p>To get involved in the WordPress Marketing team, you can visit <a href=\"https://make.wordpress.org/marketing/\">their team blog</a>.</p>\n<h2>New Gutenberg editor available for testing</h2>\n<p>For some time now, the Core team has been hard at work on a brand-new text editor for WordPress — this project has been dubbed “Gutenberg.” The project’s ultimate goal is to replace the existing TinyMCE editor, but for now it is in beta and available for public testing — <a href=\"https://wordpress.org/plugins/gutenberg/\">you can download it here as a plugin</a> and install it on any WordPress site.</p>\n<p>This feature is still in beta, so we don’t recommend using it on a production site. If you test it out, though, you’ll find that it is a wholly different experience to what you are used to in WordPress. It’s a more streamlined, altogether cleaner approach to the text-editing experience than we’ve had before, and something that many people are understandably excited about. Matt Mullenweg discussed the purpose of Gutenberg in more detail during <a href=\"http://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/\">his Q&A at WordCamp Europe</a>.</p>\n<p>There are already a few reviews out from <a href=\"https://kinsta.com/blog/gutenberg-wordpress-editor/\">Brian Jackson at Kinsta</a>, <a href=\"https://daily.jorb.in/2017/06/random-thoughts-on-gutenberg/\">Aaron Jorbin</a>, and <a href=\"https://www.mattcromwell.com/gutenberg-first-impressions/\">Matt Cromwell</a> (among many others). Keep in mind that the project is in constant evolution at this stage; when it eventually lands in WordPress core (probably in v5.0), it could look very different from its current iteration — that’s what makes this beta stage and user testing so important.</p>\n<p>To get involved with shaping the future of Gutenberg, please <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>, and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>. You can also visit <a href=\"https://github.com/WordPress/gutenberg\">the project’s GitHub repository</a> to report issues and contribute to the codebase.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li style=\"font-weight: 400\">Bridget Willard <a href=\"https://make.wordpress.org/community/2017/06/21/proposed-wordcamp-editorial-calendar/\">has proposed an editorial calendar</a> to assist WordCamp organizers with publishing content for their event.</li>\n<li style=\"font-weight: 400\">A new kind of niche WordCamp, <a href=\"https://2017-denver.journalist.wordcamp.org/\">WordCamp for Publishers in Denver</a>, has opened ticket sales.</li>\n<li style=\"font-weight: 400\">The WordPress iOS app was updated with <a href=\"https://en.blog.wordpress.com/2017/06/21/an-all-new-media-library-for-the-wordpress-ios-app/\">a fresh, new media library</a> this month.</li>\n<li style=\"font-weight: 400\">It looks like <i>Underscores</i>, the popular WordPress starter theme, <a href=\"https://themeshaper.com/2017/06/26/the-future-of-underscores-and-a-new-committer/\">has a bright future ahead of it</a>, with a renewed vision and new committer.</li>\n<li style=\"font-weight: 400\">The always-inspiring Tom McFarlin <a href=\"https://tommcfarlin.com/simple-autoloader-for-wordpress\">has released a simple autoloader for WordPress</a> that looks very useful indeed.</li>\n<li style=\"font-weight: 400\">After a bit of a discussion on Twitter regarding the differences between WordPress.org, WordPress.com, and Jetpack, <a href=\"https://helen.wordpress.com/2017/06/21/restaurant-vs-meal-kit-vs-grocery-shopping-or-wordpress-com-vs-jetpack-vs-wordpress-org/\">Helen Hou-Sandí came up with a great analogy</a> and an interesting post about it all.</li>\n<li style=\"font-weight: 400\">If you’re interested in contributing specifically to the JavaScript or PHP areas of the WordPress core codebase, then the new #core-js and #core-php channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> are perfect for you.</li>\n</ul>\n<p><i>If you have a story we should consider including in the next “Month in WordPress” post, please </i><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><i>submit it here</i></a><i>.</i></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:\"4865\";s: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:33:\"\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:25:\"WordPress 4.8 “Evans”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2017/06/evans/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 08 Jun 2017 14:49:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4770\";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:373:\"An Update with You in Mind Gear up for a more intuitive WordPress! Version 4.8 of WordPress, named “Evans” in honor of jazz pianist and composer William John “Bill” Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand. Though some […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:43009:\"<h2 style=\"text-align: center\">An Update with You in Mind</h2>\n<p><img class=\"aligncenter size-large wp-image-4816\" src=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=632%2C316&ssl=1\" alt=\"\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=1024%2C512&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=300%2C150&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=768%2C384&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1264&ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1896&ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Gear up for a more intuitive WordPress!</h3>\n<p>Version 4.8 of WordPress, named “Evans” in honor of jazz pianist and composer William John “Bill” Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand.</p>\n<p>Though some updates seem minor, they’ve been built by hundreds of contributors with <em>you</em> in mind. Get ready for new features you’ll welcome like an old friend: link improvements, <em>three</em> new media widgets covering images, audio, and video, an updated text widget that supports visual editing, and an upgraded news section in your dashboard which brings in nearby and upcoming WordPress events.</p>\n<hr />\n<h2 style=\"text-align: center\">Exciting Widget Updates</h2>\n<p><img class=\"size-large wp-image-4776 aligncenter\" src=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=632%2C436&ssl=1\" alt=\"\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=1024%2C706&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=300%2C207&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=768%2C530&ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Image Widget</h3>\n<p>Adding an image to a widget is now a simple task that is achievable for any WordPress user without needing to know code. Simply insert your image right within the widget settings. Try adding something like a headshot or a photo of your latest weekend adventure — and see it appear automatically.</p>\n<h3>Video Widget</h3>\n<p>A welcome video is a great way to humanize the branding of your website. You can now add any video from the Media Library to a sidebar on your site with the new Video widget. Use this to showcase a welcome video to introduce visitors to your site or promote your latest and greatest content.</p>\n<h3>Audio Widget</h3>\n<p>Are you a podcaster, musician, or avid blogger? Adding a widget with your audio file has never been easier. Upload your audio file to the Media Library, go to the widget settings, select your file, and you’re ready for listeners. This would be a easy way to add a more personal welcome message, too!</p>\n<h3>Rich Text Widget</h3>\n<p>This feature deserves a parade down the center of town! Rich-text editing capabilities are now native for Text widgets. Add a widget anywhere and format away. Create lists, add emphasis, and quickly and easily insert links. Have fun with your newfound formatting powers, and watch what you can accomplish in a short amount of time.</p>\n<hr />\n<h2 style=\"text-align: center\">Link Boundaries</h2>\n<div id=\"v-8BDWH3QG-1\" class=\"video-player\"><video id=\"v-8BDWH3QG-1-video\" width=\"632\" height=\"342\" poster=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.mp4\" type=\"video/mp4; codecs="avc1.64001E, mp4a.40.2"\" /><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_fmt1.ogv\" type=\"video/ogg; codecs="theora, vorbis"\" /><div><img alt=\"Link Boundaries\" src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg?resize=632%2C342\" data-recalc-dims=\"1\" /></div><p>Link Boundaries</p></video></div>\n<p>Have you ever tried updating a link, or the text around a link, and found you can’t seem to edit it correctly? When you edit the text after the link, your new text also ends up linked. Or you edit the text in the link, but your text ends up outside of it. This can be frustrating! With link boundaries, a great new feature, the process is streamlined and your links will work well. You’ll be happier. We promise.</p>\n<hr />\n<h2 style=\"text-align: center\">Nearby WordPress Events</h2>\n<p><img class=\"aligncenter wp-image-4779 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=632%2C465&ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=1024%2C753&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=300%2C221&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=768%2C565&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?w=1126&ssl=1 1126w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Did you know that WordPress has a thriving offline community with groups meeting regularly in more than 400 cities around the world? WordPress now draws your attention to the events that help you continue improving your WordPress skills, meet friends, and, of course, publish!</p>\n<p>This is quickly becoming one of our favorite features. While you are in the dashboard (because you’re running updates and writing posts, right?) all upcoming WordCamps and official WordPress Meetups — local to you — will be displayed.</p>\n<p>Being part of the community can help you improve your WordPress skills and network with people you wouldn’t otherwise meet. Now you can easily find your local events just by logging in to your dashboard and looking at the new Events and News dashboard widget.</p>\n<hr />\n<h2 style=\"text-align: center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/17/cleaner-headings-in-the-admin-screens/\">More Accessible Admin Panel Headings</a></h3>\n<p>New CSS rules mean extraneous content (like “Add New” links) no longer need to be included in admin-area headings. These panel headings improve the experience for people using assistive technologies.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/removal-of-core-embedding-support-for-wmv-and-wma-file-formats/\">Removal of Core Support for WMV and WMA Files</a></h3>\n<p>As fewer and fewer browsers support Silverlight, file formats which require the presence of the Silverlight plugin are being removed from core support. Files will still display as a download link, but will no longer be embedded automatically.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/multisite-focused-changes-in-4-8/\">Multisite Updates</a></h3>\n<p>New capabilities have been introduced to 4.8 with an eye towards removing calls to<br />\n<code>is_super_admin()</code>. Additionally, new hooks and tweaks to more granularly control site and user counts per network have been added.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/23/addition-of-tinymce-to-the-text-widget/\">Text-Editor JavaScript API</a></h3>\n<p>With the addition of TinyMCE to the text widget in 4.8 comes a new JavaScript API for instantiating the editor after page load. This can be used to add an editor instance to any text area, and customize it with buttons and functions. Great for plugin authors!</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/26/media-widgets-for-images-video-and-audio/\">Media Widgets API</a></h3>\n<p>The introduction of a new base media widget REST API schema to 4.8 opens up possibilities for even more media widgets (like galleries or playlists) in the future. The three new media widgets are powered by a shared base class that covers most of the interactions with the media modal. That class also makes it easier to create new media widgets and paves the way for more to come.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/16/customizer-sidebar-width-is-now-variable/\">Customizer Width Variable</a></h3>\n<p>Rejoice! New responsive breakpoints have been added to the customizer sidebar to make it wider on high-resolution screens. Customizer controls should use percentage-based widths instead of pixels.</p>\n<hr />\n<h2 style=\"text-align: center\">The Squad</h2>\n<p>This release was led by <a href=\"https://matt.blog\">Matt</a> and <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, with the help of the following fabulous folks. There are 346 contributors with props in this release, with 106 of them contributing for the first time. Pull up some Bill Evans on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Björklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/quasel\">Bernhard Gronau</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frankiet\">Francesco Taurino</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran Šerić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt PeepSo</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kekäläinen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/imnok\">Pantip Treerattanapitak (Nok)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Araújo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/zuige\">Viljami Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">WraithKenny</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p> </p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.8. Their efforts bring WordPress 4.8 fully translated to 38 languages at release time with more on the way.</p>\n<p>Do you want to report on WordPress 4.8? <a href=\"https://s.w.org/images/core/4.8/wp-4-8_press-kit.zip\">We’ve compiled a press kit</a> featuring information about the release features, and some media assets to help you along.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress — we hope you enjoy!</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:\"4770\";s: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:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.8 Release Candidate 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:69:\"https://wordpress.org/news/2017/06/wordpress-4-8-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jun 2017 22:13:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4765\";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:336:\"The second release candidate for WordPress 4.8 is now available. To test WordPress 4.8, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip). We’ve made a handful of changes since releasing RC 1 last week. For more details about what’s new in version 4.8, check out 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:10:\"Mel Choyce\";s: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:1173:\"<p>The second release candidate for WordPress 4.8 is now available.</p>\n<p>To test WordPress 4.8, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.8-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=40866&stop_rev=40847\">a handful of changes</a> since releasing RC 1 last week. For more details about what’s new in version 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-release-candidate/\">RC1</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>Happy testing!</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:\"4765\";s: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:33:\"\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 4.8 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/2017/05/wordpress-4-8-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:\"Thu, 25 May 2017 23:04:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s: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=4758\";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:325:\"The release candidate for WordPress 4.8 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on Thursday, June 8, but we need your help to get there. If you haven’t tested 4.8 yet, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Mel Choyce\";s: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:2365:\"<p>The release candidate for WordPress 4.8 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on <strong>Thursday, June 8</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.8 yet, now is the time!</p>\n<p>To test WordPress 4.8, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.8-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=40840&stop_rev=40821\">a handful of changes</a> since releasing Beta 2 earlier this week. For more details about what’s new in version 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\">Beta 2</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.8 and update your plugin’s <em>Tested up to</em> version in the readme to 4.8. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\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<p>This release’s haiku is courtesy of <a href=\'https://profiles.wordpress.org/matveb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matveb</a>:</p>\n<p><em>Érrese uno</em><br />\n<em>Cien veces y más</em><br />\n<em>Erre ce dos</em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4758\";s: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:33:\"\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 4.8 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/2017/05/wordpress-4-8-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, 23 May 2017 00:02:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s: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=4749\";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:329:\"WordPress 4.8 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 just to play with the new version. To test WordPress 4.8, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Mel Choyce\";s: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:1621:\"<p>WordPress 4.8 Beta 2 is now available!</p>\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 just to play with the new version. To test WordPress 4.8, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.8-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a> blog post. Since then, we’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=40819&stop_rev=40664&limit=100&sfp_email=&sfph_mail=\">over 50 changes</a> in Beta 2.</p>\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<p><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>.</p>\n<p><em>WordPress four point eight<br />\nOne step closer to release<br />\nPlease test Beta 2!</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:\"4749\";s: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:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.5 Security and 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:51:\"https://wordpress.org/news/2017/05/wordpress-4-7-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2017 22: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:34:\"https://wordpress.org/news/?p=4734\";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:373:\"WordPress 4.7.5 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.4 and earlier are affected by six security issues: Insufficient redirect validation in the HTTP class. Reported by Ronni Skansing. Improper handling of post meta data values in the XML-RPC […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Pascal Birchler\";s: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:2349:\"<p>WordPress 4.7.5 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.4 and earlier are affected by six security issues:</p>\n<ol>\n<li>Insufficient redirect validation in the HTTP class. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>Improper handling of post meta data values in the XML-RPC API. Reported by <a href=\"https://hackerone.com/jazzy2fives\">Sam Thomas</a>.</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API. Reported by <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a> of the WordPress Security Team.</li>\n<li>A Cross Site Request Forgery (CSRF) vulnerability was discovered in the filesystem credentials dialog. Reported by <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer. Reported by <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a> of the WordPress Security Team.</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.5 contains 3 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.5\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.5&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.5</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.5.</p>\n<p>Thanks to everyone who contributed to 4.7.5.</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:\"4734\";s: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:33:\"\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:26:\"WordPress Now on HackerOne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/news/2017/05/wordpress-now-on-hackerone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 May 2017 16:02:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4730\";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:322:\"WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that WordPress is now officially […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Aaron D. Campbell\";s: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:1715:\"<p>WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that <a href=\"https://hackerone.com/wordpress\">WordPress is now officially on HackerOne</a>!</p>\n<p><a href=\"https://www.hackerone.com/about\">HackerOne</a> is a platform for security researchers to securely and responsibly report vulnerabilities to our team. It provides tools that improve the quality and consistency of communication with reporters, and will reduce the time spent on responding to commonly reported issues. This frees our team to spend more time working on improving the security of WordPress.</p>\n<p>The security team has been working on this project for quite some time. Nikolay Bachiyski started the team working on it just over a year ago. We ran it as a private program while we worked out our procedures and processes, and are excited to finally make it public.</p>\n<p>With the announcement of the WordPress HackerOne program we are also introducing bug bounties. Bug bounties let us reward reporters for disclosing issues to us and helping us secure our products and infrastructure. We’ve already awarded more than $3,700 in bounties to seven different reporters! We are thankful to Automattic for paying the bounties on behalf of the WordPress project.</p>\n<p>The program and bounties cover all our projects including WordPress, BuddyPress, bbPress, GlotPress, and WP-CLI as well as all of our sites including WordPress.org, bbPress.org, WordCamp.org, BuddyPress.org, and GlotPress.org.</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:\"4730\";s: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:6:\"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:1:\"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:\"Sat, 09 Sep 2017 14:09:54 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, 01 Sep 2017 10:02:16 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:11:\"HIT lax 249\";}}s:5:\"build\";s:14:\"20170804181346\";}','no'),(172,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1505009394','no'),(173,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1504966194','no'),(176,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1505009394','no'),(177,'_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:91:\"WPTavern: Equifax Launches WordPress-Powered Site for Consumers Affected by Security Breach\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74677\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/equifax-launches-wordpress-powered-site-for-consumers-affected-by-security-breach\";s: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:7328:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/security.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/58441544@N00/2660230441\">Lock</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Equifax has launched <a href=\"https://www.equifaxsecurity2017.com/\" target=\"_blank\">a WordPress-powered website</a> to connect with consumers affected by its recent security breach, which compromised 143 million customers’ personal data. The exposed data includes names, birth dates, social security numbers, addresses, credit card numbers, driver’s license numbers, and other sensitive financial information.</p>\n<p>The <a href=\"https://www.equifaxsecurity2017.com/\" target=\"_blank\">equifaxsecurity2017.com</a> site was launched shortly after disclosure to give consumers information about the security incident. Equifax reports that the company has found no evidence of unauthorized activity on its core consumer or commercial credit reporting databases but is offering free identity theft protection and credit file monitoring services to U.S. consumers who enter their last names and last six digits of their social security number into its form.</p>\n<p>Consumers are rightfully wary of the website, as the company is asking for more personal information in order to sign people up for another one of its products. Various <a href=\"https://www.theregister.co.uk/2017/09/08/equifax_breach_notification/\" target=\"_blank\">news</a> <a href=\"https://arstechnica.com/information-technology/2017/09/why-the-equifax-breach-is-very-possibly-the-worst-leak-of-personal-info-ever/\" target=\"_blank\">outlets</a> are decrying the fact that the site is built on WordPress.</p>\n<p>“What’s more, the website which Equifax created to notify people of the breach, is highly problematic for a variety of reasons,” Ars Technica Security Editor Dan Goodin said. “It runs on a stock installation WordPress, a content management system that doesn’t provide the enterprise-grade security required for a site that asks people to provide their last name and all but three digits of their Social Security number.”</p>\n<p>Goodin also referenced the output of <a href=\"https://www.equifaxsecurity2017.com/wp-json/wp/v2/users/\" target=\"_blank\">https://www.equifaxsecurity2017.com/wp-json/wp/v2/users/</a> which earlier in the day exposed the username for the site’s administrator before the page was protected.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/equifax-site-users-endpoint.png?ssl=1\"><img /></a></p>\n<p>WordPress’ handbook has a section on reporting security vulnerabilities that explains <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/#why-are-disclosures-of-usernames-or-user-ids-not-a-security-issue\" target=\"_blank\">why disclosures of usernames or user IDs is not a security issue</a>:</p>\n<blockquote><p>The WordPress project doesn’t consider usernames or user ids to be private or secure information. A username is part of your online identity. It is meant to identify, not verify, who you are saying you are. Verification is the job of the password.</p>\n<p>Generally speaking, people do not consider usernames to be secret, often sharing them openly. Additionally, many major online establishments — such as Google and Facebook — have done away with usernames in favor of email addresses, which are shared around constantly and freely. WordPress has also moved this way, allowing users to log in with an email address or username since version 4.5.</p></blockquote>\n<p>WordPress Core Security Team Lead Aaron Campbell clarified this section of the handbook to confirm that the users endpoint is intended to be an open API endpoint that serves public data.</p>\n<p>“It does in fact include usernames and user IDs (among other things) for users that have published posts in a post type that is set up to use the API, but all the data is considered public,” Campbell said.</p>\n<p>Campbell also said he is wary of entering personal data into the equifaxsecurity2017.com website, but not because it is using WordPress.</p>\n<p>“I don’t think the fact that it runs on WordPress is a concern from a security standpoint, with the caveat that I don’t know what ELSE it’s using,” Campbell said. “‘Equifax’ is a trusted brand, but it’s not the official Equifax domain and the SSL certificate doesn’t verify ownership. So you know your data is encrypted, but not necessarily who it’s being sent to since you don’t know who owns the site.”</p>\n<p>It’s not clear why Equifax simply didn’t build out the information site on its own domain. According to security investigator <a href=\"https://krebsonsecurity.com/2017/09/equifax-breach-response-turns-dumpster-fire/\" target=\"_blank\">Brian Krebs</a>, the company appears to have hired Edelman PR, a global PR firm, to handle its public response to the data breach, citing the username publicly displayed by WordPress’ API. Edelman PR opted to use a free Cloudflare certificate to secure the site.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Not only did <a href=\"https://twitter.com/Equifax\">@Equifax</a> suffer a massive data breach, but their site about the breach is using a free shared CloudFlare SSL cert. ಠ_ಠ <a href=\"https://t.co/r4bvPpde1i\">pic.twitter.com/r4bvPpde1i</a></p>\n<p>— Daniel Lo Nigro (@Daniel15) <a href=\"https://twitter.com/Daniel15/status/905953979934187520\">September 8, 2017</a></p></blockquote>\n<p></p>\n<p>Consumers were also off put by the verbiage of the arbitration clause included in the terms and services of the free credit monitoring, which appears to force those who sign up to waive their rights to participate in class action lawsuits against the company.</p>\n<p>“I cannot recall a previous data breach in which the breached company’s public outreach and response has been so haphazard and ill-conceived,” Krebs said.</p>\n<p>Kenneth White, a security researcher and director of the Open Crypto Audit Project, said on Twitter that he was amazed the site was running stock WordPress but that his comments specifically referenced the sloppy implementation of the site.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">intent wasn\'t to blast WP, this is just sloppy—default admin pages, default nginx errors, wonky certs, phish flagged…</p>\n<p>— Kenn White (@kennwhite) <a href=\"https://twitter.com/kennwhite/status/906152286908551168\">September 8, 2017</a></p></blockquote>\n<p></p>\n<p>Due to how the site was set up, it appeared to many consumers and researchers as Equifax’s way of stalling or perhaps even scamming those who may have been affected by the breach. Various browsers flagged it as a phishing threat, and some consumers found they were given different answers from the form based on whether they checked with desktop or mobile devices. In responding to the incident with a website that appears to have been hastily implemented for its own convenience and corporate interests, Equifax has missed an opportunity to reclaim any remaining consumer confidence from the public.</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 Sep 2017 20:04: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: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:61:\"WPTavern: SWFUpload Will Officially Be Removed From 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:29:\"https://wptavern.com/?p=74660\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/swfupload-will-officially-be-removed-from-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2000:\"<p>SWFUpload is an open-source library that was used by WordPress in 2011 and earlier that allowed users to upload files. The library was abandoned and replaced with <a href=\"http://www.plupload.com/\">Plupload</a> in WordPress 3.3, released in 2011. Despite being replaced, WordPress continued to bundle the library for plugins that didn’t migrate to Plupload. In 2013, the core team <a href=\"http://github.com/wordpress/secure-swfupload\">forked SWFUpload</a> and maintained the project, applying security fixes submitted by contributors.</p>\n<p>After six years of deprecation, the core team <a href=\"https://make.wordpress.org/core/2017/09/07/removing-swfupload/\">has announced</a> that SWFUpload will officially be removed from WordPress core. The team searched the WordPress plugin directory and <a href=\"https://core.trac.wordpress.org/ticket/41752\">compiled a list</a> of plugins that contain references to swfupload in their code. <a href=\"https://core.trac.wordpress.org/ticket/41752#comment:4\">According to Weston Ruter</a>, the list includes 128 themes and plugins.</p>\n<p>Some of the most popular plugins include:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/wysija-newsletters/\">MailPoet 2</a></li>\n<li><a href=\"https://wordpress.org/plugins/wp-all-import/\">WP All Import</a></li>\n<li><a href=\"https://wordpress.org/plugins/profile-builder/\">Profile Builder</a></li>\n<li><a href=\"https://wordpress.org/plugins/flash-album-gallery/\">Gallery Grand Flagallery</a></li>\n</ul>\n<p>The team is working on a way to provide enough backwards compatibility to ensure there are no JavaScript errors and an upload form is displayed instead of embedded Flash. Andrew Ozz also apologized to plugin authors noting that the list likely contains some false positives. If you use one or more of the plugins mentioned above, please get in touch with the author and ask if it will function <a href=\"https://make.wordpress.org/core/2017/09/07/removing-swfupload/\">without SWFUpload in core</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Sep 2017 08:06:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:59:\"WPTavern: WordCamp Ann Arbor to Host Second WordCamp WarmUp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/wordcamp-ann-arbor-to-host-second-wordcamp-warmup\";s: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:2080:\"<p><a href=\"https://2017.annarbor.wordcamp.org/\">WordCamp Ann Arbor, MI</a>, is set to take place October 13-14 and for the second year in a row, organizers will host a secondary event called <a href=\"https://wptavern.com/wordcamp-warmup-an-experimental-event-aimed-at-breaking-the-ice-for-new-wordcamp-attendees\">WordCamp WarmUp</a>. WordCamp WarmUp provides an environment for attendees to break the ice and meet new people before the main event.</p>\n<p>Janelle Reichman is co-organizing WordCamp WarmUp. “I’ve been running my own WordPress business for about eight years,” Reichman said. “However, I attended my first WordCamp just last fall. I’ll never forget it – I was pretty much terrified.</p>\n<p>“But then, I got an invitation to a WordCamp WarmUp. I couldn’t believe my luck. I couldn’t believe there was an event made exactly for people like me, who were shaking in their boots at the prospect of showing up at a conference and not knowing anybody.</p>\n<p>“I attended the WarmUp, made friends, saw them all the next day at WordCamp, and ended up having an amazing and unforgettable time”</p>\n<p>Unlike last year’s WarmUp, details for this years event will only be announced to WordCamp Ann Arbor <a href=\"https://2017.annarbor.wordcamp.org/tickets/\">ticket holders</a>. The event is maxed out to fifty people and is available on a first come, first serve basis. Appetizers and beverages will be provided.</p>\n<p>Rebecca Gill, founder of <a href=\"https://www.web-savvy-marketing.com/\">Web-Savvy-Marketing</a>, organized <a href=\"https://wptavern.com/wordcamp-warmup-is-a-success\">the event last year</a> and <a href=\"https://www.web-savvy-marketing.com/2016/10/recap-of-wordcamp-ann-arbors-wordcamp-warmup/\">considered it a success</a>. “Not only did most WarmUp guests arrive right on time, we had a full room of WarmUp attendees and even had a few unexpected friends show up,” Gill said.</p>\n<p>Ticket holders can expect to see an email with event details within the next few weeks.</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 Sep 2017 03:14:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:116:\"WPTavern: Gutenberg 1.1.0 Adds Autocomplete for Blocks, Developers Elaborate on How New Editor Will Work with Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74545\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://wptavern.com/gutenberg-1-1-0-adds-autocomplete-for-blocks-developers-elaborate-on-how-new-editor-will-work-with-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4082:\"<p>Gutenberg contributors continue marching forward this week on their relentless drive to improve the usability of the controversial new editor that will <a href=\"https://wptavern.com/matt-mullenweg-addresses-concerns-about-gutenberg-confirms-new-editor-to-ship-with-wordpress-5-0\" target=\"_blank\">ship with WordPress 5.0</a>. Meanwhile, discussions about Gutenberg’s timing, implications, UI, architecture, and other aspects of the project continue across the web, as the community grapples with what this new editor will mean for the future of WordPress.</p>\n<p><a href=\"https://make.wordpress.org/core/2017/09/05/whats-new-in-gutenberg-september-5/\" target=\"_blank\">Version 1.1.0</a> was released this week with a new autocomplete-shortcut for adding new blocks without leaving the keyboard.</p>\n<p>Many testers have been frustrated with the amount of pointing and clicking required to create new blocks. Autocomplete for blocks is a new feature that partially answers this problem, but it relies on the user knowing that typing a slash <code>/</code> in a new default paragraph block will trigger autocomplete. It may also be added to other blocks in the future.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/autocomplete.gif?ssl=1\"><img /></a></p>\n<p>“We still need to get the point-click/tap interactions right since most people won’t discover, remember, nor use keyboard shortcuts,” Gutenberg engineer Matías Ventura <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/#comment-587704\" target=\"_blank\">said</a> in response to user feedback on the plugin.</p>\n<p>This release of the plugin adds the ability to remove images from the gallery block inline. It works smoothly and resizes the thumbnail previews to fit the available space after an image is removed.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/gutenberg-gallery-delete-image.png?ssl=1\"><img /></a></p>\n<p>Version 1.1.0 also includes small updates like the ability to set links to <a href=\"https://github.com/WordPress/gutenberg/pull/2628\" target=\"_blank\">open in a new window</a>, accessibility improvements to the add-new-category form, caption styling for video blocks, adjustments to column width calculation in the gallery block, and many other tweaks and improvements. The <a href=\"http://gutenberg-devdoc.surge.sh/\" target=\"_blank\">Gutenberg docs</a> also received <a href=\"https://github.com/WordPress/gutenberg/pull/2638\" target=\"_blank\">an updated design</a> and improvements to the content.</p>\n<h3>A Preview of How Gutenberg Will Interact with Themes to Build Websites</h3>\n<p>Gutenberg engineers elaborated on how they expect the new editor will work with themes in a <a href=\"https://make.wordpress.org/core/2017/08/31/gutenberg-themes/\" target=\"_blank\">post</a> on the make.wordpress./core blog. Matías Ventura published two video examples to demonstrate where they see Gutenberg headed on its journey towards becoming a full-fledged website building tool. Ventura said this is the long-term goal after the project completes the post and page editing milestone.</p>\n<p>The first video shows how Gutenberg can be used for page building, starting with a blank slate and a theme that defines specific styles for blocks. The second one shows how a theme might include templates with blocks already in place that provide users with a guided page-building experience.</p>\n<p></p>\n<p></p>\n<p>These examples clarify some of the benefits the team is aiming for with Gutenberg and how WordPress theme authors will be able to build more user-friendly experiences on top of the new editor.</p>\n<p>“These are quickly put together, but I hope it shows how things can progress even with very straightforward theme integration,” Ventura said. “As soon as we expand the scope and include more blocks (site title, site header, menus, more widgets, etc), and describe a way to store page templates as a «list of blocks», Gutenberg would be fundamentally capable of building an entire website.”</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 Sep 2017 20:02: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: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:97:\"WPTavern: WPWeekly Episode 287 – WordPress Meetups, Events, and WordCamps with 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=74614&preview=true&preview_id=74614\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/wpweekly-episode-287-wordpress-meetups-events-and-wordcamps-with-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1776:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://andreamiddleton.blog/\">Andrea Middleton</a>, Dot org Wrangler at Automattic. Middleton supports WordPress community organizers by helping them <a href=\"https://make.wordpress.org/community/\">plan community events</a> that inspire people to do more with WordPress, connect the community, and contribute to the WordPress project.</p>\n<p>We discussed a variety of topics including, whether or not speakers should be compensated, regional WordCamps, and improvements that have been made to WordCamp.org. By the way, if you can lend a hand with <a href=\"https://meta.trac.wordpress.org/ticket/2992\">this trac ticket</a>, it would be appreciated.</p>\n<p>We also discussed the possibilities of expanding WordCamps to be more subject focused events. Last but not least, we talked about the successful <a href=\"https://wptavern.com/wordpress-to-launch-experimental-wordcamp-incubator-program\">WordCamp Incubator program</a> and whether or not it will continue.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 13th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #287:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Sep 2017 01:59: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: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:37:\"HeroPress: Crafting the Life You Want\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/crafting-life-want/#utm_source=rss&utm_medium=rss&utm_campaign=crafting-life-want\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9042:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/09/090617-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress turned out to be a tool that led me to meeting a fantastic community of interesting and friendly people.\" /><p>I grew up in a small country town in Poland, where life was pretty simple. People would know all the neighbors, they would pay each other visits every week to talk about what’s been going on in the community and to have a beer or two. It all seemed great until the moment when I got a bit older and went to Junior High School. My hair, unlike all other boys’, was long and I enjoyed listening to rock / metal music, the genre that was considered weird, unknown, maybe even evil.</p>\n<blockquote><p>Suddenly this friendly community started treating me like an alien, someone they refused to treat as one of their own or spend time with.</p></blockquote>\n<p>Almost every day I would get some beatings from school bullies, they would pull my hair, call me names, in short – my life became miserable. I had to find a way to survive, something to focus on.</p>\n<p>That’s when I started spending even more time with my computer, playing Diablo (I even set up a Diablo fan club which became quite popular in Poland) and other multiplayer games that connected me with new people. All these interesting personalities living there, somewhere far away, (and the unforgettable sound of a dial-up modem) made me believe there was something good out there waiting for me.</p>\n<p>Next, natural step was the analysis of how a game could be created. I spent months looking at the code and analyzing its components. There weren’t many tutorials back then, so sometimes it took a while to figure things out. But it all led to building my first website, which was full of tables and hundreds of colorful elements, everything was there! I was so proud of myself! <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>When I went to High School, I already knew a thing or two about coding and I wasn’t afraid to use it! I moved to a big city, got my first job as a graphic designer and started renting my own apartment.</p>\n<blockquote><p>I was very young, full of energy and determination to change my life.</p></blockquote>\n<p>After a while I got another job and another, and suddenly I realized that coding became an essential part of my life. Instead of learning chemistry and biology, I spent my nights learning new ways of improving my skills and finally was offered a pretty sweet job in a huge company, where I led a team of front-end developers. Yes, I was about 19, but I felt so mature. It’s so funny now, when I recall that feeling of accomplishing “everything”, but hey, I knew CSS ‘hacks’ on IE 6, I knew it all!</p>\n<blockquote><p>Of course, I had heard of WordPress, but none of the ‘true’ coders would use it, so why would I want to dig into that?</p></blockquote>\n<p>Well, I’m glad someone helped me change my mind. In 2010 my colleague invited me to join him on WordCamp. In Poland WordPress was still considered a cute little tool for creating internet blogs, so I thought going there would be a waste of time, but it turned out to be a life-changing experience. The opportunity to meet people from different countries, hear them talk about the growing possibilities of WordPress made me realize I was in the right place. The fact that a few people I met there are still my friends today only stresses the importance of that event.</p>\n<blockquote><p>It simply dawned on me that it’s not really about the CMS or other technical elements.</p></blockquote>\n<p>WordPress turned out to be a tool that led me to meeting a fantastic community of interesting and friendly people. And this was one of the reasons I wanted to delve further into WordPress.</p>\n<p>Two years later I started cooperating with a company based in the United States. Their main tool to build sites on was WordPress, obviously. By the way, I’ve been with this company for over 5 years now and to be honest, I can’t imagine my life without those guys now, but I don’t want to keep you here too long, so let’s move on. I quit my safe, ‘nine to five’ job to the dismay of my parents and started working remotely. Everything was so new, so exciting, but at the same time physically and mentally exhausting. I was doing my master’s degree in e-business and I rarely slept through the night, mostly because my clients were from different time zones.</p>\n<p>To make things more exciting, I applied for a grant from the European Union and registered my own little company in Poland. But hey, I still felt unsated. It took me around a year to decide to move my company to the United States and go there to manage it. Actually, part of this time was spent on convincing my wife to quit the job she didn’t like anyway, but again, no subplots.</p>\n<blockquote><p>To say that moving to the States was easy would be a monstrous lie.</p></blockquote>\n<p>Dealing with visas and all types of immigration documents is very time-consuming and caused us way too many sleepless nights, but eventually we got to California! I registered my company (again!), opened a bank account (you wouldn’t believe how difficult it was, so thank you, dear Russian lady for fighting with the system for over 2 hours!), and looked for a place to stay.</p>\n<p>Almost 3 years have passed, I’ve been given a chance to work with amazing people whom I truly admire, and I work for and with a few startups that, I admit, are close to my heart. One of the projects my wife and I are working on is a platform (based on WordPress, of course) that will help freelancers find good, well paid projects. Again, right time, right place, no doubt about it.</p>\n<blockquote><p>“I know you’ve heard it a thousand times before. But it’s true – hard work pays off. If you want to be good, you have to practice, practice, practice. If you don’t love something, then don’t do it.“ (Ray Bradbury)</p></blockquote>\n<p>Very often people ask me if it’s all worth it, if I’m a masochist and enjoy burning the midnight oil, but I don’t see it that way. If I have a goal, whether it’s one to create a new website, or learn how to prepare real pierogi (dumplings) for my wife, I’m ready to spend as much time as needed to accomplish it. Sure, if it’s not something I truly ‘feel’, I might not be able to devote 100 percent of my energy to make it happen, but I like to think it’s a matter of making the right choices.</p>\n<p>I’m not saying it’s all rainbows and butterflies right now, I’m not a guy who spends his days surfing or drinking cocktails. To be honest I don’t think I’ll ever be that guy. I’m still working very hard and I rarely take days off, but at least when I go to bed I have a feeling that I’ve done all I could to help others and improve my skills as a front-ender, project manager and most of all, a human being.</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: Crafting the Life You Want\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Crafting%20the%20Life%20You%20Want&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fcrafting-life-want%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Crafting the Life You Want\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fcrafting-life-want%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%2Fcrafting-life-want%2F&title=Crafting+the+Life+You+Want\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Crafting the Life You Want\"></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/crafting-life-want/&media=https://heropress.com/wp-content/uploads/2017/09/090617-150x150.jpg&description=Crafting the Life You Want\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Crafting the Life You Want\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/crafting-life-want/\" title=\"Crafting the Life You Want\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/crafting-life-want/\">Crafting the Life You Want</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 Sep 2017 12:00:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Damian Samolej\";s: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:86:\"WPTavern: Jetpack 5.3 Adds PHP 7.1 Compatibility, Better Control for WordAds Placement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74547\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/jetpack-5-3-adds-php-7-1-compatibility-better-control-for-wordads-placement\";s: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:2636:\"<p><a href=\"https://jetpack.com/2017/09/05/jetpack-5-3-php-7-1-compatibility/\" target=\"_blank\">Jetpack 5.3</a> was released with compatibility for PHP 7.1, a task the Jetpack team has been working on <a href=\"https://github.com/Automattic/jetpack/issues/6106\" target=\"_blank\">since January 2017</a> after they received multiple reports of <a href=\"https://github.com/Automattic/jetpack/issues/6629\" target=\"_blank\">failures with PHP 7.1 when opcache was enabled</a>. This interfered with XML-RPC requests and some users reported issues managing their sites from WordPress.com and connecting to third-party apps. Downgrading to PHP 7.0 or disabling opcache in PHP 7.1 provided temporary workarounds for many users but this is no longer required as of Jetpack 5.3.</p>\n<p>In January 2017, <a href=\"https://wptavern.com/jetpack-4-5-expands-monetization-with-wordads-integration\" target=\"_blank\">Jetpack added integration with WordAds</a>, WordPress.com’s advertising program. Over the past few years the program has evolved to get better at distinguishing sites with higher quality traffic and allocating earnings accordingly. This correction, along with industry-wide declining ad rates, has given publishers more modest earnings expectations after the first few years of unpredictable payouts. Jetpack 5.3 offers customers on the Premium and Professional plans more control over how ads are displayed.</p>\n<p>This release adds the ability for publishers to display multiple ads and introduces more control options for where they can be placed. Since WordAds pays based on the number of impressions (combined with many other factors) and not the number of clicks, selecting the right combination of placement options is important for success.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/wordads-jetpack5-3.png?ssl=1\"><img /></a></p>\n<p>Other notable changes and improvements include the following:</p>\n<ul>\n<li>Users can preview their sites without leaving WordPress.com</li>\n<li>WordPress.com Toolbar updated to include link to comments</li>\n<li>Omnisearch feature was removed</li>\n<li>Improved performance in the admin by cutting back on unnecessary requests</li>\n<li>VideoPress shortcode includes option to stop video from looping during autoplay</li>\n<li>Fixed compatibility issues with plugins using TinyMCE</li>\n<li>Re-added a filter for Widget Visibility that was accidentally removed</li>\n</ul>\n<p>For a full list of all the changes included in Jetpack 5.3, check out the plugin’s <a href=\"https://wordpress.org/plugins/jetpack/#developers\" target=\"_blank\">changelog</a> on WordPress.org.</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 Sep 2017 05:46: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:\"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:78:\"WPTavern: WordCamp Grand Rapids Attendees Share First Impressions of 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=74538\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/wordcamp-grand-rapids-attendees-share-first-impressions-of-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:2688:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/wordcamp-grand-rapids.png?ssl=1\"><img /></a></p>\n<p>While attending <a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event\" target=\"_blank\">WordCamp Grand Rapids</a> I had the opportunity to interview developers and business owners about their first impressions of the new Gutenberg editor. Many attendees I spoke to had not yet heard of the project but were intrigued and decided to install the plugin on a test site. A few attendees were developers who have already contributed to Gutenberg and are experimenting with extending the editor.</p>\n<p>Those who have tested the beta have varied concerns, depending on how they use WordPress in their professions. Some are waiting to begin testing until the plugin provides a more consistent experience. One of the most common concerns for developers is how the editor will handle meta boxes. Freelancers and agency owners are waiting to see how the new editor will affect their businesses.</p>\n<p>“How much am I going to have to change what my company does as a business to build websites with this new tool?” Topher DeRosia asked.</p>\n<p>Agency owner Sara Dunn said she is excited about what Gutenberg will bring to WordPress and undaunted by the prospect of getting clients acquainted to a new interface. She believes the project has a lot of potential to solve some of the most common client frustrations.</p>\n<p>“I’m excited about it, because I have a lot of clients who say they can’t stand WordPress because when they look at the backend and update their pages and posts, it doesn’t look how it looks on the frontend,” Dunn said. “I really think WordPress needs this move to compete in the future, and I’m excited about where it’s going.”</p>\n<p>John James Jacoby, one of the developers who has contributed to Gutenberg and experimented with extending it, said he considers it to be a very ambitious project.</p>\n<p>“It is probably one of the most important projects that anyone has worked on with WordPress in a number of years, in my opinion,” Jacoby said. “My take on it is that everyone has the responsibility to try to influence the direction that it’s going to take. If we care about the open web and the freedom of how people publish to it, then we should all try to join in and help with its ongoing development and make it as good as it can be if it’s going to end up as part of WordPress in the coming months.”</p>\n<p>Check out the interviews below to see how attendees weighed in on Gutenberg.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2017 23:31: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: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:45:\"Dev Blog: The Month in WordPress: August 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=4899\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2017/09/the-month-in-wordpress-august-2017/\";s: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:6420:\"<p>While there haven’t been any major events or big new developments in the WordPress world this past month, a lot of work has gone into developing a sustainable future for the project. Read on to find out more about this and other interesting news from around the WordPress world in August.</p>\n<hr />\n<h2>The Global WordPress Translation Day Returns</h2>\n<p>On September 30, the WordPress Polyglots team will be holding <a href=\"https://wptranslationday.org/\">the third Global WordPress Translation Day</a>. This is a 24-hour global event dedicated to the translation of the WordPress ecosystem (core, themes, plugins), and is a mix of physical, in-person translation work with online streaming of talks from WordPress translators all over the world.</p>\n<p>Meetup groups will be holding events where community members will come together to translate WordPress. To get involved in this worldwide event, <a href=\"https://www.meetup.com/pro/wordpress/\">join your local meetup group</a> or, if one is not already taking place in your area, organize one for your community.</p>\n<p>You can find out more information <a href=\"https://wptranslationday.org/global-wordpress-translation-day-3/\">on the Translation Day blog</a> and in the #polyglots-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>WordPress Foundation to Run Open Source Training Worldwide</h2>\n<p>The WordPress Foundation is a non-profit organization that exists to provide educational events and resources for hackathons, support of the open web, and promotion of diversity in the global open source community.</p>\n<p>In an effort to push these goals forward, <a href=\"http://wordpressfoundation.org/2017/call-for-organizers-introduction-to-open-source/\">the Foundation is going to be offering assistance</a> to communities who would like to run local open source training workshops. A number of organizers have applied to be a part of this initiative, and the Foundation will be selecting two communities in the coming weeks.</p>\n<p>Follow <a href=\"http://wordpressfoundation.org/news/\">the WordPress Foundation blog</a> for updates.</p>\n<h2>Next Steps in WordPress Core’s PHP Focus</h2>\n<p>After <a href=\"https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/\">last month’s</a> push to focus on WordPress core’s PHP development, a number of new initiatives have been proposed and implemented. The first of these initiatives is a page on WordPress.org that will educate users on the benefits of upgrading PHP. The page and its implementation are still in development, so <a href=\"https://github.com/WordPress/servehappy\">you can follow and contribute on GitHub</a>.</p>\n<p>Along with this, <a href=\"https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/\">plugin developers are now able to specify</a> the minimum required PHP version for their plugins. This version will then be displayed on the Plugin Directory page, but it will not (yet) prevent users from installing it.</p>\n<p>The next evolution of this is for the minimum PHP requirement to be enforced so that plugins will only work if that requirement is met. You can assist with this implementation by contributing your input or a patch on <a href=\"https://core.trac.wordpress.org/ticket/40934\">the open ticket</a>.</p>\n<p>As always, discussions around the implementation of PHP in WordPress core are done in the #core-php channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>New Editor Development Continues</h2>\n<p>For a few months now, the core team has been steadily working on Gutenberg, the new editor for WordPress core. While Gutenberg is still in development and is some time away from being ready, a huge amount of progress has already been made. In fact, <a href=\"https://make.wordpress.org/core/2017/08/29/whats-new-in-gutenberg-august-29/\">v1.0.0 of Gutenberg</a> was released this week.</p>\n<p>The new editor is available as a plugin <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">for testing</a> and <a href=\"https://make.wordpress.org/core/2017/08/11/revised-suggested-roadmap-for-gutenberg-and-customization/\">the proposed roadmap</a> is for it to be merged into core in early 2018. You can get involved in the development of Gutenberg by joining the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> and following the <a href=\"https://make.wordpress.org/core/\">WordPress Core development blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>On the topic of Gutenberg, <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">Matt Mullenweg wrote a post</a> to address some of the concerns that the community has expressed about the new editor.</li>\n<li><a href=\"http://hookrefineandtinker.com/2017/08/jaiwp-an-alternative-project-to-wordcamp-india/\">A new movement has started</a> in the Indian WordPress community named JaiWP — the organizers are seeking to unite and motivate the country’s many local communities.</li>\n<li><a href=\"https://richtabor.com/merlin-wp/\">Merlin WP</a> is a new plugin offering theme developers an easy way to onboard their users.</li>\n<li>Ryan McCue posted <a href=\"https://make.wordpress.org/core/2017/08/23/rest-api-roadmap/\">an ambitious roadmap</a> for the future of the WordPress REST API — many contributions from the community will be needed in order to reach these goals.</li>\n<li>Want to know what you can expect in the next major release of WordPress? <a href=\"https://make.wordpress.org/core/2017/08/11/wordpress-4-9-goals/\">Here’s a look</a> at what the core team is planning for v4.9.</li>\n<li>To help combat the difficulties that Trac presents to WordPress Core contributors, Ryan McCue built an alternative platform dubbed <a href=\"https://github.com/rmccue/not-trac\">Not Trac</a>.</li>\n<li><a href=\"https://make.wordpress.org/cli/2017/08/08/version-1-3-0-released/\">v1.3.0 of WP-CLI was released</a> earlier in the month, adding a whole lot of great new features to the useful tool.</li>\n</ul>\n<p><i><span>If you have a story we should consider including in the next “Month in WordPress” post, please </span></i><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><i><span>submit it here</span></i></a><i><span>.</span></i></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, 01 Sep 2017 10:02:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:82:\"WPTavern: WordCamp Grand Rapids 2017 Sells Out, Organizers On Board for 2018 Event\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74039\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event\";s: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:8631:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/wordcamp-grandrapids.png?ssl=1\"><img /></a></p>\n<p>The 4th edition of <a href=\"http://2017.grandrapids.wordcamp.org\" target=\"_blank\">WordCamp Grand Rapids</a> was held last weekend at Grand Valley State University’s downtown Pew Campus. After a brief hiatus following previous events in 2012, 2013, and 2014, the WordCamp is back in action with first-time lead organizer <a href=\"https://twitter.com/mysweetcate\" target=\"_blank\">Cate DeRosia</a> at the helm.</p>\n<p>Tickets sold out shortly before the event and the vast majority of them were local to Michigan. DeRosia estimates that 40% came from Grand Rapids and 60% of attendees were within an hour radius. She published the camp’s details with a local events webpage and set up a Facebook page to increase local awareness. Organizers also received contacts from the WordPress dashboard events widget and the local MeetUp announcement.</p>\n<p>Despite being a relatively small WordCamp with 144 attendees, organizers had enough speaker submissions to fill three tracks with topics ranging from development and design to freelance best practices and scaling a business. Attendees characterized the organizers as “connectors” who have a natural gift for helping people and businesses get to know each other. DeRosia said one of the unique things about the lower Michigan WordPress community is its dedication to helping each other succeed with WordPress.</p>\n<p>“The core group in Grand Rapids, and really across the lower half of Michigan, is highly experienced and sincerely dedicated to helping people,” DeRosia said. “No one is fighting to be top dog on the pile. No one’s gloating. Meetups and WordCamps are ways to give back, to encourage and grow others in the community. The focus is on the opportunities that WordPress can provide anyone and a willingness to share their years of hard earned experience to help others succeed.”</p>\n<p>DeRosia said the organizing team’s goal was to provide a little something for everyone and “an opportunity to learn what can be done and take that home to foster and grow at each individual’s own pace.” The event was marked by the friendliness and enthusiasm of the volunteers and provided several breaks and social times for attendees to exchange ideas and build relationships with others in the industry.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">4yrs ago I attended <a href=\"https://twitter.com/hashtag/wcgr?src=hash\">#wcgr</a> and knew no one. Attended yesterday and it\'s all handshakes, high fives and hugs. <a href=\"https://twitter.com/hashtag/community?src=hash\">#community</a> <a href=\"https://twitter.com/hashtag/wcfamily?src=hash\">#wcfamily</a> <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f604.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>— Kyle Maurer (@MrKyleMaurer) <a href=\"https://twitter.com/MrKyleMaurer/status/901914242626007040\">August 27, 2017</a></p></blockquote>\n<p></p>\n<p>WordCamp Grand Rapids had 13 volunteers who gave up their Saturday, including all of the organizers, and all of them were hands on the day of event. DeRosia’s teenage daughter Sophia, who has been volunteering at camps for years, also joined by contributing the event’s wapuu design and helping with operations. In the short interview below she describes how she came up with the idea for the wapuu and why she enjoys getting involved in WordPress events.</p>\n<p></p>\n<p>DeRosia had just four months to get the event organized and said she relied heavily on information and resources from other WordCamp organizers in Michigan. She stayed with the same venue from previous camps, which she said met her criteria for making things convenient for attendees: lunch was easily available, parking was easy to find (and free), and it was within a reasonable walking distance of hotels and the after party. The camp had no issues getting local sponsorships.</p>\n<p>“Our sponsors were amazing,” DeRosia said. “We came in late to the schedule and still had the sponsorship we needed with out any problems. It helps that as an organizing group we’ve created friendships in the community, but most of our sponsorship was local or regional which really helped cement the idea that another WordCamp in the area has value.”</p>\n<p>DeRosia said with the number of people who left talking about the next event, she anticipates there will be another WordCamp Grand Rapids in 2018 and she hopes to help again as lead organizer.</p>\n<p>“I knew tackling the ‘unknowns’ of this first one (and doing it in a short time frame) was going to be emotionally difficult for me personally, but I also realized that most of what I was planning for this year would simply be able to move over into next year,” DeRosia said. “In a sense, I was planning much of the next camp while planning the first.”</p>\n<p>As a first-time organizer, DeRosia said she was impressed by the volunteers, speakers, and attendees’ positive attitudes and their willingness to help given the short time frame.</p>\n<p>“Aside from being terrified of what I didn’t know, it was actually a very positive experience,” DeRosia said. “I had tons of encouragement from our organizing team and the community at large. I was really able to build on the success of the first three Grand Rapids WordCamps, WordCamp Ann Arbor, and the newest area WordCamp in Jackson (MI). I had serious doubts that the community would even care about having another WordCamp (Was I just wasting my time?), but they proved that it’s a wanted commodity.”</p>\n\n<a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/screenshot_20170831-155129\"><img width=\"150\" height=\"150\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/Screenshot_20170831-155129.png?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-sara\"><img width=\"150\" height=\"150\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-sara.jpg?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-br\"><img width=\"150\" height=\"150\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-br.jpg?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-stickers\"><img width=\"150\" height=\"150\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-stickers.jpg?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-jjj\"><img width=\"150\" height=\"150\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-jjj.jpg?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-stickers2\"><img width=\"150\" height=\"150\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-stickers2.png?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/screenshot_20170831-154730\"><img width=\"150\" height=\"150\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/Screenshot_20170831-154730.png?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/screenshot_20170831-154854\"><img width=\"150\" height=\"150\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/Screenshot_20170831-154854.png?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/screenshot_20170831-155040\"><img width=\"150\" height=\"150\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/Screenshot_20170831-155040.png?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Aug 2017 21:08: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Gutenberg 1.0.0 Introduces Drag and Drop for Adding Image 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=74447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/gutenberg-1-0-0-introduces-drag-and-drop-for-adding-image-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:3151:\"<p><a href=\"https://make.wordpress.org/core/2017/08/29/whats-new-in-gutenberg-august-29/\" target=\"_blank\">Gutenberg 1.0.0</a> was released this week as another iteration in the beta period that will continue on with 1.1 next week. Design lead Tammie Lister said the team decided “not let numbers set expectations” and will carry on at the same pace with weekly releases.</p>\n<p>One of the most visible UI updates in version 1.0 is the new ability to <a href=\"https://github.com/WordPress/gutenberg/pull/2447\" target=\"_blank\">add image blocks by dragging and dropping them into the editor</a>. They can be placed directly within the content (between blocks) and also onto the image block placeholder. Gutenberg includes a blue line indicator for dropzones where users can place an image.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/gutenberg-image-upload.gif?ssl=1\"><img /></a></p>\n<p>After testing I found this feature works smoothly but is a little slow. The slight delay of uploading the image after placing it may leave the user confused about what is happening. However, feedback on this particular pull request indicates that the team is working on displaying an immediate reaction to the image having been dropped, instead of waiting for the upload to finish.</p>\n<p>This release also <a href=\"https://github.com/WordPress/gutenberg/pull/2452\" target=\"_blank\">merges the paragraph and cover text blocks</a>. Contributors agreed that the two blocks could be easily combined and the colors and font size options from the previous cover block have now been added to the block settings sidebar.</p>\n<p>A few other improvements in this release include the following:</p>\n<ul>\n<li>Reworked color palette picker with a “clear” and a “custom color” option</li>\n<li>Further improvements to inline pasting and fixing errant empty blocks</li>\n<li>Added thumbnail size selector to image blocks</li>\n<li>Added support for url input and align and edit buttons to audio block</li>\n<li>Restored keyboard navigation with more robust implementation, addressing previous browser issues</li>\n<li>Added align and edit buttons to video block</li>\n<li>Show “add new term” in hierarchical taxonomies (including categories)</li>\n</ul>\n<p>Overall, the experience of writing within Gutenberg is improving, and the 1.0 release announcement includes an animated gif to demonstrate a user typing in the paragraph block:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/typing.gif?ssl=1\"><img /></a></p>\n<p>The editor is getting better at staying out of the way when a user is writing, but the slightest mouse move within the paragraph block will slide all of the block’s surrounding controls into view. This experience can be a bit jarring, but it may be inevitable unless more of the UI can be buried under the inspector. The paragraph blocks currently display the most commonly used controls for writing text content, but I could see plugins hooking into this to create different types of writing experiences that either add more controls or pare it back to something more minimalist.</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, 30 Aug 2017 20:42:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:94:\"WPTavern: WordPress.org Now Allows Plugin Authors to Specify a Minimum PHP Version Requirement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74438\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/wordpress-org-now-allows-plugin-authors-to-specify-a-minimum-php-version-requirement\";s: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:2585:\"<p>Although WordPress core currently maintains backwards compatibility with PHP 5.2.4+, plugin and theme authors are not required to do so. When developers include features that require more recent versions of PHP, it can break sites or cause otherwise unexpected behavior. As part of a larger effort to encourage users to upgrade their PHP versions, WordPress.org now allows plugin authors to <a href=\"https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/\" target=\"_blank\">specify a minimum PHP version requirement</a> in the <code>readme.txt</code> file with a new Requires PHP header. It is displayed to users in the sidebar of the plugin’s description:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/requires-php-version.png?ssl=1\"><img /></a></p>\n<p>This addition to the readme.txt file has been well-received by developers who are already updating their plugins in the directory with minimum PHP version requirements. It also complements WordPress’ Core PHP team’s recent efforts to <a href=\"https://wptavern.com/wordpress-org-to-add-new-page-educating-users-on-benefits-of-upgrading-php\" target=\"_blank\">educate users about the benefits of upgrading PHP</a>, as the minimum supported version was released 10 years ago and hasn’t received security patches for nearly seven years.</p>\n<p>“As a plugin developer (who maintains my plugins in my spare time), it is becoming increasingly difficult to build new functionality that works in older versions of PHP,” Paul Gilzow <a href=\"https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/#comment-43314\" target=\"_blank\">commented</a> on the announcement. “There are some things that simply cannot be done in the older versions, and in those cases, I have to build out functionality to check PHP versions and disable those features. That takes time and energy away from building out other new features.”</p>\n<p>WordPress Core Committer Sergey Biryukov said the next step is exploring the possibility of <a href=\"https://core.trac.wordpress.org/ticket/40934\" target=\"_blank\">displaying a notice to users when they cannot install a theme or plugin</a> due to their installations not meeting the required criteria. Ideally, these notices would include host-specific instructions to assist users in getting their sites upgraded to a newer PHP version. This particular move could make a significant impact on the wider WordPress community, if popular plugins start triggering notices requiring newer versions of PHP.</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, 30 Aug 2017 18:13: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: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:62:\"HeroPress: Retiring Young From Bangladesh, Thanks To WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2064\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:158:\"https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=retiring-young-bangladesh-thanks-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60068:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/083017-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: You can\'t always win. You have to learn from the journey and move on.\" /><p><span>When you are reading this, I am very near to celebrate my 33rd Birthday. I don’t know how this number ’33’ sounds to you, but in some ways, I feel it’s a big number. I know many of you would argue that 33 is not an age to be considered old. In this article I will share about my career with <strong>WordPress</strong> lasting over 13 years, and how I am planning to retire within a year, more or less. And if you are an <strong>Entrepreneur</strong> yourself or self-established person, I think this will be an intriguing discussion, I will add some key pointers from my life that lead me to this decision.</span></p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/edit_IMG_1358.jpg\"><img class=\"wp-image-2067 size-large\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/edit_IMG_1358-1024x819.jpg\" alt=\"Me Enjoying the Sun & Jetpack Tees after a long drive to Key West!\" width=\"960\" height=\"768\" /></a>Me Enjoying the Sun & Jetpack Tees after a long drive to Key West, FL!\n<h3><b>What do I mean by ‘retire’?</b></h3>\n<p><span>So, may be you are shocked to just see the title. The word ‘retire’ could be little confusing. Does that mean I am going to take leave from all of my ventures permanently? Will not be involved with anything day to day basis. And will be walking out in my beach-shorts in broad daylight, or vacationing endlessly anywhere in the world? </span></p>\n<p><span>In some sense, Yes, in some sense, No. The kind of office I have I could literally go in shorts though, and my life has given me the opportunity to vacation as I want, almost!</span></p>\n<p><span>But, yes, I am talking about taking leave from most of my ventures, at least not being involved day to day. And kind of taking a break to reflect more into life. I have been working tirelessly for a decade. I need some kind of breathing space, it’s not exactly what you think though. It’s kind of reboot. I will keep expanding the idea throughout the article. If you are really into, sadly you have to keep reading.</span></p>\n<h2><b>So, who am I?</b></h2>\n<p><span>I am not sure how boring this might get, but still, let me introduce myself. My name is <a href=\"https://asif.im\"><strong>Asif</strong></a>, I am the CEO of <a href=\"https://wedevs.com/\" target=\"_blank\" rel=\"noopener\">weDevs</a>, a large WordPress product company (in WordPress Ecosystem) with a team of over 45 people. I am also the Founder of <a href=\"https://arcom.com.bd\">ARCom</a>, a decade old WordPress focused Media Company. I am involved with WordPress community since 2004 and been very actively involved ever since. </span></p>\n<p><span>I have founded many startups in my Entrepreneurial career, including but not limited to (those are the successful one, but I obviously have fair share of failures as well)</span></p>\n<p><a href=\"https://thetechjournal.com\" target=\"_blank\" rel=\"noopener\"><b>The Tech Journal</b></a><span> – A Tech Magazine with a peak monthly user base of 10.2 Million.</span></p>\n<p><a href=\"https://thedhakatimes.com/\"><b>The Dhaka Times</b></a><span> – The Biggest Lifestyle Magazine in Bangla language (</span> <a href=\"https://en.wikipedia.org/wiki/List_of_languages_by_number_of_native_speakers\"><span>seventh most spoken native language in the world</span></a><span> by population) with average monthly 15-35 Million user base.</span></p>\n<p><a href=\"https://wpdeveloper.net\"><b>WPDeveloper.net</b></a><span> – A (half-baked) WordPress Product Marketplace, focused to solve simple problems in WordPress, connecting User with the Developers.</span></p>\n<p><b><a href=\"https://wordpress.org/plugins/wp-analytify/\">Analytify</a> – </b><span>A very advanced and highlighted Free WordPress Plugin that makes Google Analytics easy inside WordPress, and helps ecommerce and other brands.</span></p>\n<p> </p>\n<p><span>I am also involved heavily in either as Founder or Investor, or many weird capacities at</span></p>\n<p><a href=\"https://geekysocial.com/\"><b>Geeky Social</b></a><span> – A progressive digital agency in Bangladesh, focused on Knowledge Leadership! </span></p>\n<p><a href=\"http://aamarpay.com/\"><b>AamarPay</b></a><span> – A Payment Processor.</span></p>\n<p><a href=\"https://3rdbell.co\"><strong>3rdBell</strong> </a>– Bangladeshi Online TV – A forward thinking digital brand, focusing on Video Content. Not exactly, but kind of disrupting Bangladeshi Entertainment Space like Netflix in the US.</p>\n<p><b>Alo Venture</b><span> – Once very active, now semi-dead venture capital wing, invested mainly in mobile and game industry.</span></p>\n<p><span>And ARCom is always rocking with several projects, for past few year we have a wing to handle Enterprise WordPress Support, and serving even Fortune 500 company, who rely on us entirely, and we manage their entire stack, month by month, for years.</span></p>\n<h2><b>Enough of me!</b></h2>\n<p><span>Is it? As this article is entirely about me, you have to tolerate a lot more. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /></span></p>\n<p><strong>This is going to be the biggest ever article published in HeroPress!</strong></p>\n<h2><b>So, I always wanted to do WordPress?</b></h2>\n<p><span>No, obviously not. In my childhood I always wanted to be <strong>a scientist, a Physicist</strong> to be exact. And it’s not just like an aim-in-life, I was literally very serious. I was always into Space Science. Later it grew more into Physics. To give you an idea how serious I was, let me tell you something. While going through some old boxes, I found out some paper-cutting from back in 1993(I was in 3rd Grade back then), about coverage of different space exploration, news about Pioneer, upcoming plan on a Probe in Saturn. I literally had a file to collect those. Back in that day, that’s what you could do most, without any internet, and from a remote part of <strong>Bangladesh</strong>.</span></p>\n<p><span>I was not extremely good in school, it’s not like what you read in the story, never stood 2nd type(always 1st)! It’s more like I never stood 1st type! But I was good in math, I was always progressing, and the main blessing I had in my life was support of my parents, unlikely most parents in our time, they never pushed me into things, never tried to push their judgment into my life. When I advanced from one Class to another, making some progress, they were happy with it, and I always made progress. So, they were happy, I was happy being a mediocre-student. But the issue was, in my mind, I was the best. I know how childish it sounds, but I was really a child back then! I always thought that I am best if I try enough, and if I was given enough opportunity. So, Instead of trying to do best in the Class, I focused on many things, like starting a Detective Company to Secret R&D Team, and none of those was a joke, we were serious. </span></p>\n<h2><b>Reading!</b></h2>\n<p><span>I always loved reading, and I was extremely lucky to have so much opportunity to read in my childhood. My house has some collection of children’s book, some cheap but interesting translation, my parents always brought me books on every possible occasion, as that’s what would make me happy. When that was not enough, I practically sneaked into most houses in the neighborhood. I was in 7th Grade at that time, and if a neighbor had an older kid they would have more books, and good part was if you show interest in reading books, and return it carefully, they would not mind to open up their bookshelf door for you, and most of them even loved me for this. Later on, I also finished up most of my relatives collection in the same town. Later on when in high-school everyone around knew I love books. Later on, this grew on my friends as well. I was lucky to have good childhood friends, who also enjoyed books as well. So, we would gift books to each others birthday, so we could read it ourselves. And few of my friend was very good students, and they always got some scholarship money, so we spend everything in our school life on books!</span></p>\n<p><b>So, what was I was reading? Everything!</b></p>\n<p><b> – Everything!</b></p>\n<p><span>Starting from Children’s story later grew into Detective Story, Science Fiction, and later into the adventure story, literature, whatever comes into my hand. One interesting thing I also did from the very early stage, keeps track on what I am reading. It probably came from my hobby of collecting Stamps. We used to make notes and categorize our collection. So, I started doing the same for Books. I made a notebook, started noting and making a list of what I am reading, later on, I started to make some remarks, note, what I liked, what not. </span></p>\n<h2><b>Writing!</b></h2>\n<p><span>In my teenage life writing took even more meaning. I was always good at expressing myself, and creative writing. But when one of our best friends left the country, and the only way to communicate was to write letters, so, we started to do that. It took different turn very soon. We were enjoying writing letters so much, few of us in the same class who we see every day also started writing letters to each other. However, it was nothing like a love letter or anything related to the affair, we were writing about anything, everything. At one point we were in a competition who could write the longest letter. In this competition, one of my friends wrote a letter to me (again from the same class, sitting almost on my next desk! <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /> ) over 50 pages, and to defeat her I wrote an over <strong>100-page long letter</strong>! </span></p>\n<p><span>*If you are wondering what I wrote in those 100 pages – I have a very large family, where my relatives of great-great-grandfather’s cousin’s and their family are still very connected and if you saw me talking with any of them you would think they are my 1st Uncle or Aunt. So, what I did is wrote about my whole family tree, describing family history and later on describing each and every member I could remember! In my house we had a very old “Family Birth Register” (জন্ম কষ্টি খাতা), dating back in the early 1900s, I even took help from it!</span></p>\n<p>Over all this had a different impact on our life. I don’t know how hard it is to believe, but I was into Bangla Literature, specially poem as well, I even had a notebook full with my own poem! One of our classmates even wrote a full-blown 150+ pages novel in that age! And I am still enjoying writing!</p>\n<p><b>Dramatic changes in my Educational life!</b></p>\n<p><span>As described earlier, </span><span>I was average in studies</span><span> but not extremely good. And I was happy about it! All my </span><span>close friends were very good students and would achieve the first or second position in class every time. Whereas, I was happy being in the 8th or 10th position. But as said in my mind I was the best!</span></p>\n<p><span>Our educational system requires you to memorize and write as it is. But I was driven into reading books, and other things (also including playing Cricket seriously). I never tried to focus on memorizing anything. And from childhood, teachers grow an impression of what to expect from a particular student. So, for an example, my social science teacher knew for years what to expect from me, and it’s very hard to get past that impression. </span></p>\n<p><span>When I was advancing from Grade 8 to 9, I took part in a Scholarship exam. </span><span>We prepared for a year. Only a handful of us was participating from our school, I was among those few, but I had literally zero chance to get the scholarship. I was not very bothered about it at all. But during the exam, we had to travel to another town to the exam, and it was in the month of Ramadan, and I did not break my fast. It was hard, I had 2 exams in a single day. When I came back home one day with my father, my mom was sad seeing me so tired and drained out. But was happy that I was still fasting. Then she told me something very simply, which started a chain-reaction in my life. She told me, “You think of yourself so highly, you spend all of your time with those same kids, who are doing so good in school. But if you really think of yourself so highly, why not try to reflect that in your grade?”</span></p>\n<p><span>Maybe it’s very normal for parents to talk like that. But as my parents never compared me with anybody or always let me do in my way, I kept on thinking about this. </span><span>What clicked in my mind was that, i</span><span>f I am really good, I should be able to do good in any circumstances, if this requires me to memorize everything I could do that. If I want to be really that good, and be a good scientist, I need to learn to cope up and fight in any situation. </span></p>\n<p><b>So, I changed myself, was even memorizing books, that I absolutely did not like!</b></p>\n<p><span>In grade 9 & 10, I studied very hard. I changed my lifestyle a lot. I changed the way I write in exam paper to change the impression of my teacher. Before I was always like studying in my mind, not writing what I just read, I forced myself in writing those answer I just read, it was very hard and boring at the beginning. But I had a very good private tutor, who guided me in every way. Later on my teachers in school helped in every way possible. In Bangladesh student have to take a part in a Certification Exam after 10th Grade, to advance in College, its called SSC, Secondary School Certificate Exam. I prepared for that. At the end of 10th Grade, I almost had the book fully memorized, I could write as it is, correct to each and every comma and space. I improved my english a lot. I learned some calculous which was not part of our curriculum, just to advance myself for college, and I knew if I had to do better in Physics I need to learn math and Calculous better. I did took part in more Prep test than most other students. And ultimately in the School Preparation Exam, I did extremely well to boost up my energy!</span></p>\n<p><span>Everything was perfect, we took part in the big exam!</span></p>\n<p><b>And I did not get the grade I expected!</b></p>\n<p><span>Interestingly our batch did not get good grades in SSC</span><span>, we were the first batch in a new grading system, and we did not know that even before the exam, so none got perfect grade of 5.0, I got a very average grade(not bad, but not very good either). I was extremely disappointed, broken, but later learned to cope up.</span><span> I realized a good lesson of life that </span><b>– Even though you may work hard and go to great lengths to do everything possible, still you might have to deal with failures and disappointments.</b></p>\n<p><span>Another good thing also happened in my life too. I moved from the small town I grew up, <strong><a href=\"https://en.wikipedia.org/wiki/Ishwardi_Upazila\">Ishurdi</a></strong>, to the Capitol of the Nation, <strong>Dhaka</strong>, and was able to get a chance in the entrance exam, of all big colleges in the country where I tried. This gave me a huge boost in confidence. I selected to study in <strong>Notre Dame College</strong>, in English Medium of Science. It was another controversial decision I made, for me a kid coming from rather a small town, and from Bangla Medium it was a tough decision, but I stick to it for the future, because I still wanted to be a Physicist, wanted to study further in my life, I knew I had to be in English Medium.</span></p>\n<p><b>I had very hard time at the beginning of College!</b></p>\n<p><span>At the start it was very hard, our whole group suffered a lot to cope up with new curriculum, our first semester in College was the worst. But later we learned to cope up, we were 130 students in our Group (famous Group 8 in Notre Dame College), we all were helpful to each other, not everyone had private teacher in this point, we shared our notes, I was living first time without my parents, I was also dealing with occasional sickness due to not eating properly. So, there was a lot of struggle, but by the end of 1st year, I was dealing with everything properly. I got a good friend circle, I was not only doing well in college, I was also enjoying my freedom and mostly dealing with anything life throws at me!</span></p>\n<h2><b>My Introduction to Computer & Programming!</b></h2>\n<p><span>Actually, I always loved programming, before entering University I already knew some basic programming, like qBasic, FORTRAN, even some level of Pascal. The kind of society I grew up, a computer was extremely rare before the year 2000. I was kind of lucky to be able to learn basic computer usage starting from the year 1998, got my first computer in 1999. It was so rare to own a computer in that time for that part of the word, that I was not only the first kid in my class to own a computer, but only a handful of people in my town knew how to use a computer. So, though I am not from a very rich or privileged family, extremely lucky that my parents understood the importance in that time. </span></p>\n<p><span>Another interesting aspect was unlike most people, I was not fully taken over by Computer Games. I am not saying gaming is bad, but most of the people I later see own a computer, the main thing they do with it was playing the game all the time. And you have to understand that almost pre-internet period in Bangladesh. I use the internet first in my life back in 2001. I was more into tweaking things, trying to create or modify the software or create very basic type tools. I am super amazed by internet from first interaction. The search engine was in its peak time, discovering new resource was easy. I tried creating my first webpage in Yahoo Geocities back in 2001, wap page generator was also taking shape in coming years. </span></p>\n<p><b>Say Hi to WordPress in my life!</b></p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Asif-R1.jpg\"><img class=\"wp-image-2068 size-large\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Asif-R1-1024x863.jpg\" alt=\"\" width=\"960\" height=\"809\" /></a>M Asif Rahman – Wearing Tees by WordPressian Group!\n<p><span> I created my first blog back in 2003 in Blogger, but while trying to add a sidebar and customizing home page look, I find it’s very difficult for me to do anything in ASP.net, then I found WordPress, back in the year 2004. I still remember reading Matt’s blog and write up about how the whole project is moving ahead from b2 cafelog. WordPress was so easy, I hardly knew any PHP in that time, but my HTML and CSS knowledge was well enough for me being able to edit my personal blog. At the start hosting was one issue, but again I was lucky to manage one. Later when WordPress.com came, I migrated my blog over there and was happy at the beginning, as less hassle. I was also heavily involved with forum community. There was some very large community for webmaster and developer, I loved PHPbb and other solution for forums as well. But after experiencing some massive vulnerabilities, which lead to a major data breach, I focused more on personal blogging and soon into web development. Wth WordPress it was extremely easy to create a website, plugin and theming turn out to be not a complex task. The community and developers contributing in this ecosystem were another main factors. I feel very connected with the whole ecosystem, eventually became habituated with this, and started to feel it’s my comfort zone.</span></p>\n<p><b>How I started my career and company!</b></p>\n<p><span>I was using the name A. R. Communication, an as an acronym of my initials (Asif Rahman) back in 2001 as well, but it was nothing serious, no particular business. When in college, to support myself I first started a Marketing Trainee job in a Multi-international company. It was convenient with my college time and location, and they were literally paying to learn things. I started it just the as need of money, but later I enjoyed marketing, corporate training, and even enjoyed sales training as well. But I never took that job a as career choice.</span></p>\n<h3><b>My first venture!</b></h3>\n<p><span>In the year 2003, before even going to Universities I started a full 4 color magazine, printed publication with a close friend of mine. It was a fun ride. The name of the magazine was “</span><b>Fortnightly Tumi</b><span>”, the Bangla word “Tumi” means “</span><b>You</b><span>”! It was a lifestyle Magazine. My family already had a history with the printing business, so I had some experience. We did this business very thoroughly if you consider this as our first venture. We did a proper market study, interviewed potential readers, organized group discussion, and got good funding. And we also started with bang! Hired renowned journalist and writer. I was barely <strong>19 years old</strong> that time, have very experienced people in my team over 50 years old, and managing them was good lesson. All together we published 3 edition, with good marketing trick we were able to sell 10,000 copy nationwide for that last edition, we had over 20 big brands in the country advertising with us. But still, that business did not work out. We had to shut down, as our investor (my friend’s family) want us to focus on our education instead of this, and we were probably way ahead of our time.</span></p>\n<p><b>Too many choices after college!</b></p>\n<p><span>I did fairly good in college, despite being in English medium. I applied for the various scholarship in different university all around the world, and was in a process of ISSB for Airforce as GD Pilot, the whole process was lengthy, and I was only doing it for 2 reasons.</span></p>\n<ol>\n<li><span>One of my friends asked me to collect the form, as it was close from my house, and I thought why not fill up together.</span></li>\n<li><span>GD Pilots also get the chance of studying Aeronautical Engineering and even switch to Engineering in future, and they will have a chance to study higher in that subject, which could open up my door for getting into Space Science. All for free, paid by Govt.</span></li>\n</ol>\n<p><span>Interestingly I get past all the test and selected finally. But they informed me, I have to stay in GD Pilot as a cadet and will be commissioned in 2 years, but have to think Pilot as a career, I was confused, I never enjoyed or felt the passion for speed before in my life. And we had few months time before joining the Force.</span></p>\n<p><span>In the meantime, I got so many opportunities in various universities. And one of my dream to study further in Physics was too close, as I got a chance in Uni Penn, and got a scholarship there as well. I had few other opportunities at Canada and Australia. I even applied for Visa for Australia as well, but later had to decide against all of those for some family and personal reason. </span></p>\n<p><span>I ultimately left Air Force as well, me & my parents agree that’sts not a good career choice for me, given the option I had. I got a scholarship at North South University in Electrical & Telecommunications Engineering. And as I started my company seriously at beginning of 2004, then a University that offers Open Credit, where I am able to choose my workload, it was just convenient. So, out of all promising option, I almost chose the risky one, to make my own company and study in Bangladesh, at least for the Bachelor.</span></p>\n<h2><b>The inception of ARCom:</b></h2>\n<p><span>Actually, ARCom is the short version of A. R. Communications. As I found making website too easy with WordPress, and a new found talent was helping me as well. </span></p>\n<p><span>Just as I never waste time on gaming, rather enjoyed my time to tweak things, creating new application. Instead of most people, when they visit a new website, they look at the shiny look, or how good or better information it provides, whenever I visit a good site, I was always thinking how they are making money, how is this built and sustained. This quest has helped me making our first successful business. It took years, it did not turn into something very big in a night. During University years I did make many different kinds of websites, in that time I started earning first from selling websites. That was during the year 2005 or 2006, it was long before Sitepoint turn into Flippa, back in the shining days of DigitalPoint! I used that money to buy more domain. I hired my university classmate to work with me. The first outsider I hired in my company was a designer, as I needed help in there. Later it kept growing over the year.</span></p>\n<h3><b>First Big Success:</b></h3>\n<p><span>Though I already enjoyed some good (if not very big) payday by selling a website, point to note here, I was selling website as a business, not like you design a site and sell, its more about creating a business, create a process and sell it for a 2X – 5X yearly profit. But my big success came after 2008. Everything was turning so well, I was done with my University. My company was already a Team of over 20 people, with an office of 2500 square feet space. We started </span><a href=\"https://thetechjournal.com\"><b>The Tech Journal</b></a><span>, it worked so well in every aspect. As I was into writing blogs and also into the gadget. After the first iPhone release I was involved in many ways, from working with the secret group who were Jailbreaking each and every firmware, also new kind of responsive websites, I was also into News & those kinds of stuff. And because of my quest to understand how a thing works, I had a good grasp already into Content Distribution. Facebook and other Social Media are playing a role in content and distribution already. It all helped.</span></p>\n<p><b>The Tech Journal became very big!</b></p>\n<p><span>Within 6 months of start, we ranked within top 20k website. I was enjoying the ride to play with monetization and taking things into next phase. At one pick point, we were ranked even within top 4000 websites in Alexa. I had a good team with me. I finished my university already, 3 of my University friend was working with me full time. We all shared same vision for The Tech Journal, and it kept on growing. Because of our experience with WordPress we kept on innovating, for us we could build anything in WordPress, I had a solid Development team as well.</span></p>\n<h3><b>Marriage & Beyond!</b></h3>\n<p><span>I got married at 2009, I was 25 years old back then. I don’t know if there is any perfect age for marriage, but I felt that was the right time, I was doing good in business, was looking for more stability in emotional life as well. I suddenly found my long lost childhood friend, <strong>Bipasha</strong>, whom I did not have any communication for past 13 years, but suddenly fall in love and we decide to get married. <strong>Just like that!</strong> I will not go into details here(it’s already too big) how we studied together since 1st grade and got detached when we were in 7th Grade, but still got married 13 years later. We started a new life, life was never better!</span></p>\n<p><b>Moving Further with WordPress:</b></p>\n<p><span>Over the year WordPress kept growing so was I. I was writing, blogging, building things with WordPress. WordCamp was already something, but I was not able to attend or participate as I was still in Universities, but after finishing up, I decide to get more involved. I spoke in my first WordCamp in WordCamp Melbourne. For many years I was also very vocal about security and optimization, so I started to get so many opportunities into speaking and participating in various things. I still remember I spent one crazy summer in the US, participating 6 WordCamps, visiting 9 States and 13 cities in the process, starting from Boston and finishing at San Francisco! </span></p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Asif-Speaking-At-WordCamp-SF-2014-V1.1.jpg\"><img class=\"size-large wp-image-2069\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Asif-Speaking-At-WordCamp-SF-2014-V1.1-1024x514.jpg\" alt=\"\" width=\"960\" height=\"482\" /></a>WordCamp SF 2014 – Mission Bay Conference Center\n<p><span>I was very lucky to be able to speak at last ever WordCamp San Francisco.</span></p>\n<p><b>Pursuing more into Investment!</b></p>\n<p><span>It’s mainly because of <strong>The Tech Journal</strong>, I was involved in many tech conferences, and always getting the pitch from various startups. And my new grown circle of friends from WordPress and various other tech scenes, I already established a good connection in Silicon Valley. It was in the year 2009 when I made my first Angel investment, the credit must go to my friend circle, it was years before Angel List, there was offline syndicate where folks will share investment opportunity. But I really loved talking with young entrepreneur and seeing how new business works. I kept my focus in my sector, the field I understand. So, I mainly invested in tech. Out of several investments, one of my lucky ones was Facebook, I was able to invest in <strong>Facebook</strong> before their IPO, not very early, but still Pre-IPO stage, it was one of my lucky breaks. As I was already doing good in my business I tried to utilize it. I did not start investing because I had too much cash laying around, I started because I liked those opportunities, I wanted to help those ideas or startups.</span></p>\n<h2><b>Moving into the US:</b></h2>\n<p><span>I started another business in US, where my partner was from Orlando, I spent one Thanksgiving with my Wife in Orlando, really loved the place, people, and we already got a long term Visa, and had full opportunity to live anywhere we want. My company in Bangladesh was already in a stable phase, and as I was traveling heavily for years, my team was used to being managed remotely, so it was not a hard decision. But staying far from parents was hard. So, what we started maintaining both houses in Bangladesh and Florida. For years we spend some part of the year in US, rest in Bangladesh. </span></p>\n<h3><b>Child & Changes in Life!</b></h3>\n<p><span>Like everybody else our life was bound to change when we had baby. In year 2014 we were getting for our first baby. We decide to stay in US, because of better medical facility and my involvement in different things. Just a month after speaking at WordCamp San Francisco in November we were blessed with <strong>Aaniyah</strong>. Actually, our life already changed when we were planning and waiting for the baby. I was feeling the work routine I have would never let me spend the time I want to have with my baby.</span></p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Laugh.jpg\"><img class=\"aligncenter size-large wp-image-2070\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Laugh-1024x691.jpg\" alt=\"\" width=\"960\" height=\"648\" /></a></p>\n<h2><b>Analytify & A New friendship!</b></h2>\n<p><span>I became friends with </span><a href=\"http://www.adnan.pk/\"><span>Muhammad Adnan</span></a><span> online back in 2014, he was working with his premium Plugin <a href=\"https://analytify.io/\"><strong>Analytify</strong></a> back then. I found this as a real good project and started talking with him, giving him various advice, and we later decided to team up, and we released the first free version of Analytify WordPress plugin on 1st January 2015. It was a success, it completely revolutionizes how people use Google Analytics in WordPress. Later Adnan visited me in the US in 2015, and together we attended WordCamp Miami and had a good trip and drive to Key West! The most interesting part of the friendship lies somewhere else. I am a Bangladeshi, and Adnan is Pakistani. Both of our nation has a very bad past. Bangladesh was once part of Pakistan, back in 1971 we fought for about 9 months, and millions of people died in the process before we got Freedom and Declared Independence from Pakistan. But it creates a life long enmity between two countries. I know for an outsider it does not make sense to keep some feelings for that long, but for its very personal for us. Our country lost so much in that war, even if you speak about just my family, My Grandmother lost half of her family in that war, Bangladeshi especially have a very strong opinion about any Pakistani. But meeting Adnan, becoming friends, and working together made me realize few interesting thing, this feeling, this agony against any Pakistani was one-way. Most of the Pakistani did not have any idea what their Government or Army did, they hardly have idea about their Ancestors’ doing. They rather still consider us Brother! Some of the history he never knew, they never read in their history book. I would never know this if it’s not for </span><b>WordPress</b><span>, we would never meet, this change in understanding for both of us never happened.</span></p>\n<p><span>And we together kept on growing <strong>Analytify</strong>, as the best Google Analytics Plugin in WordPress, and planning many interesting things together.</span></p>\n<h2><b>Coming Back to Bangladesh!</b></h2>\n<p><span>While I was staying and mostly investing in the US, I started investing in some interesting Teams in Bangladesh from the year 2012. Over the year, a few failed, but some really kept on growing. In the year 2016, in Pre-Trump period we were expecting our 2nd Baby, and it was too hard for us to manage alone in the US, and we both were missing our family. I want my kids to grow up having their family close to them, the way I grew up. I want my parents to feel close to them. Occasionally when we visited Bangladesh with our first child, I was quite blown away the way they loved and took care of the baby. It all made sense if we spend some more time in Bangladesh, and have the Baby in here. And the weird things going on with the US also motivated my decision. The kind of craziness we are seeing in the US, actually did not start just by having Trump elected. It goes way back. We were living in a very peaceful neighborhood in Florida, a small town called Orange City, near Daytona Beach! But we could still feel the change in air. Our parents have a pending Immigration Application for near a decade, they are on the que to become US citizen anyway. We first tried to have them with us, but US Embassy in Bangladesh rejected that application, for absolutely no reason. And my other venture was already growing in Bangladesh. So, all together we decide to stay in Bangladesh for awhile, we moved in mid-2016.</span></p>\n<h3><b>Welcoming Aadiyah into the Family!</b></h3>\n<p><span>We had our 2nd Baby <strong>Aadiyah</strong> in September 2016, a bit ahead of time, my wife got little too sick, but we were able to handle everything because of having family together. We moved into a large Duplex house, to have enough space for the baby. We feel we are complete as family and never been this happy before.</span></p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_1610.jpg\"><img class=\"size-large wp-image-2071\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_1610-1024x683.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a>Complete Family!\n<h1><b>weDevs & My Legacy!</b></h1>\n<p><span>I will discuss later my involvement in Bangladeshi WordPress Eco-system. But back in 2013 I first met <a href=\"https://tareq.co/\">Tareq</a>, a very talented Bangladeshi Programmer, running a successful WordPress product company. He and his Partner <strong>Nizam</strong> built an amazing company, and they had few very interesting and super successful products for WordPress. I started helping as possible from my end, I want them to succeed and pushing them to move forward. I became an official partner and board member of <a href=\"https://wedevs.com\"><strong>weDevs</strong></a> back in 2015. I was helping them to grow internationally and advising them as part of the board. We established a US company and kept on growing. Though I was in WordPress for very long time, my main company <strong>ARCom</strong> was never serious into WordPress Product. I released some of <a href=\"https://profiles.wordpress.org/asif2bd\">our work</a> in Open Source via WordPress.org Plugin Directory, and with my growing experience with <strong>Analytify</strong> made me dig more into WordPress products.</span></p>\n<p><span>Somehow at the end of 2016, <strong>Tareq</strong> and I was looking at our numbers for <strong>weDevs</strong> in 2016, we noticed something very important. Three of us spend more time digging deep into the numbers and re-analyzed our process and priorities. Soon we all came into understanding we have to take things forward with <strong>weDevs</strong>, the growth of the industry is very important if we want to be big in future this is the right time. They proposed to me if I could take over as <strong>CEO</strong>. Nizam was running weDevs successfully as CEO for years, and I never thought seriously about running another company, and my retirement plan was already in place. But we found this could be the best thing we could do in the year 2017, where I have little over 1.5 years before my planned retirement. </span></p>\n<p><span>So, I jumped into the ship. I always dreamed to make a rocking and successful company in WordPress product space, and it was my chance. And as it’s already a running successful company, my goal here to build a legacy, instead of just making a profitable company, built a sustainable company, and proper team, a fine management, that could grow into future, that could </span><b>outgrow us</b><span>, something even bigger than us combined. </span></p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5190R.jpg\"><img class=\"wp-image-2073 size-large\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5190R-1024x683.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a>weDevs new office – Reception Area from inside – WordPress Flavoured!\n<p> </p>\n<p><span>So, I took over <strong>weDevs of CEO</strong> in January 2017, I took 2 months as the transition period and blend fully into the day to day system. We announced this officially in the month of March. Dhaka is a very jam packed city with the highest number of people living in per square miles in the world. We were already a Team of about 25 people. I still had few other business that I have to take care. So, we moved to a new large space. A total of 5000 square feet space, fully open, we built a unique office that could sustain us for next few year. I moved my house and office in the same area, called <strong>Mirpur DOHS</strong>. Me, my partners, and almost 12 of us together moved into this area together. As we now live within 2 min distance from the office, the Traffic could not bother us at all. We gave the option for our employees to move into too. We paid the moving cost, we even adjusted salary if they faced any increase of cost for housing or anything. We took time, but now our new office is complete, it’s one very interesting WordPress themed workplace.</span></p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5240R.jpg\"><img class=\"aligncenter size-large wp-image-2074\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5240R-1024x683.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a></p>\n<p> </p>\n<p><span>We are growing further, our team of 25 people will soon <strong>become a team of 50+</strong>. We are working on new stunning products, we just launched a brand new super fast Form Builder plugin named <a href=\"https://wedevs.com/weforms/\"><strong>weForms</strong></a>. It will revolutionize the way people build forms and create anything from just a simple contact form to organize a quiz. Our team built it entirely on Vue.JS, as a single page app. It’s unbelievably fast, almost nothing we have seen so far inside WordPress.</span></p>\n<p><span>Our Team internally working very hard to update our existing product and we are working on some new things that I am incredibly looking forward to. Before I join, weDevs did not have a marketing team, we ran entirely autonomous. In last 6 months, we have built a sustainable Content & Marketing Team. I am working tirelessly with my CTO & COO to build a new culture. We have a two-way feedback evaluation process. I created a kind of unique in its way, a grading system where the company could give feedback to an employee, on exact point, and inform directly where they need to improve. It’s a kind of algorithm I have developed over the years and really helps you to make a happy and working team. In the same way, Employee also have the opportunity to give feedback to the company directly – about what makes them happy, how a company could help him grow more, or if the company is addressing every concern properly. We do this quarterly basis, and review in each quarter, so the improvement could always be tracked, graphed and addressed properly.</span></p>\n<h2><b>Bangladeshi WordPress Community!</b></h2>\n<p><span>This is another very proud thing I would like to talk about. When I first had a very detail conversation with Matt Mullenweg, back in 2011, he was very happy that I attending so many WordCamp, and be that much involved with the community, he asked me about WP community back my country, and told me if we are able to have a good group, a nice meetup and eventually a WordCamp, he will try to attend. I found a new role for myself, over the year we grew Bangladeshi WordPress community. Locally we have very growing and engaging WordPress Group, called WordPressians, we have over 21,000 Members in Facebook. We are a team of 15 Admin/Organizer who maintains everything, and it’s an open group so always evolving. Over the year, we 15 became very close to each other, and we all consider each other as best friend. We contribute in Open Source together, we hangout together, attend various WordCamps around together now, we plan day out together as well. This is another blessing happened to our life mainly because of WordPress.</span></p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_9881.jpg\"><img class=\"aligncenter size-large wp-image-2075\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_9881-1024x417.jpg\" alt=\"\" width=\"960\" height=\"391\" /></a></p>\n<p> </p>\n<p><span>Starting from 2013 we are official meetup chapter in Dhaka. We organized over 15 meetup, where each and every meetup of our could be considered little WordCamp, with 4-6 session, and had 150-300 attendees. We organized all of our meetup in our own platform, a WordPress plugin we created, so everything happened at – WPressians.net, not at Meetup.com, we did it with direct permission from WordPress Foundation. We have made WordCamp Application starting from 2013. And I even faced Organizer interview twice in 2014.</span></p>\n<h3><b>But the sadness!</b></h3>\n<p><span>There is one thing that hurt me a lot. Though me and our organizing team worked so hard to grow Bangladeshi WordPress community, but due to some miscommunication, we still don’t have any WordCamp yet. The foundation failed to take timely measures to proceed with our WordCamp application, we faced repeated issues in getting the proper timely response from them. Out of frustration and years of waiting back in 2015, we organized a CMS Conference in Dhaka, where we had over 10 speakers, and there were over 1500 attendees. So our team has proven their position, but things took so long from the Foundation. I wrote to foundation much time, there is one on-going conversation, still, we hope for the best, this the way Foundation handled our communication, shows the lack-of-attention clearly. I am almost devastated in this and very hurt! When I first attended and spoke in WordCamp Melbourne in 2011, I was the first Bangladeshi to ever do so. I but I kept on pushing. Now there is over 10 from even just our organizing team where they attended in various <strong>WordCamps around the World</strong>. Last year we attended WordCamp Singapore with a team of 9 people from Bangladesh. We are gaining experience, we are driven, but still lacking behind because of Foundation, sadly! I attended over <strong>50 WordCamps</strong> worldwide, I helped to organize over 10 WordCamps in various cities, but could not organize a single one in my home country for 6 years, this keeps bugging me all the time!</span></p>\n<h1><b>My Future Plan!</b></h1>\n<h2><b>Plan to retire by my next Birthday!</b></h2>\n<h3><b>weDevs to keep on Growing!</b></h3>\n<p><span>I am here at weDevs to create and fine tune the process and build the vision. I already described what’s happening in there. From my start as CEO we are seeing about 15% month to month growth in revenue and about 20% in market reach, We will keep on doing so and beyond. And we will probably get more result in long term, and building team, forming up a new culture and getting result certainly take more than 6 months.</span></p>\n<p><span>So far the plan is to me stay in Day to Day involve up until June 2018. This is not an exact day plan, could change with time. But possibly by September!</span></p>\n<h2><b>ARCom being Autonomous!</b></h2>\n<p><span>I am running ARCom without much of daily maintenance for awhile now. I have Team Lead, Editors, Managers in place, that’s running their wing successfully for awhile now. There are few new plans and things my Team working, but all team has a lead, which they ran with ownership, and mostly sustainable. There are some places where we need some work, I hope it will be done by that projected time.</span></p>\n<h2><b>Geeky Social, 3rdBell and my other venture!</b></h2>\n<p><b>Geeky Social</b><span> has a solid team, and they are running amazingly. I am very proud of our team. I am part of the board and now serving as Chairman, and probably will continue to do so. I hope by next 6-9 months we will be even stronger financially, our month to month growth is already steady and growing, we are clear it will grow a lot from there. One of our core success is to grow beyond a cash-hungry business, which is incredibly hard if you are involved in Digital Media, and buying. But we got past that and now everything taking shape. I am very confident in the team and looking forward.</span></p>\n<p><a href=\"https://3rdbell.co\"><b>3rdBell</b></a><span> faced so much issues over the year, but now we have a solid platform, the founders are incredibly motivated. Me and other investors are looking forward. I am still involved as Technical Director, this role could extend for the time being when we go through some changes, but we have solid plan to move forward, and by mid-next year, it should be i a different height.</span></p>\n<p> </p>\n<h2><b>Me & WordPress – going forward! </b></h2>\n<p><span>I will have people to maintain my plugin, and provide even better support, and few of them are even joining next month, so it will be well taken care of. I will shift the community role mostly to new people and others. Next 9 months I will dedicate to have more Contributor from my community and circle. I will literally incubate contributor, from Core contribution to Docs and Community team. I will drive more into sharing my experience and finding over the decade. Besides writing, which I think is my superpower(!), but still under used, I will drive more into Speaking. Those are my next upcoming Session, if you are happened to any of those WordCamp, please say Hi!</span></p>\n<ol>\n<li><strong>WordCamp Colombo, Sri Lanka – 23rd September</strong></li>\n</ol>\n<p><b>Topic –</b><a href=\"https://2017.colombo.wordcamp.org/speaker/m-asif-rahman/\"><span> Making Million in WordPress Plugin But Not Being Evil!</span></a></p>\n<p><span> 2) <strong>WordCamp Ahmedabad, India – 7th October</strong></span></p>\n<p><b>Topic –</b> <a href=\"https://2017.ahmedabad.wordcamp.org/\"><span>You heard content is the king, but are you paying attention to Content Distribution?</span></a></p>\n<p><span>If you read so far, you should understand how relevant both topic to my life! </span></p>\n<p> </p>\n<h2><b>How could I financially sustain this?</b></h2>\n<p><span>I am thinking, planning and working on this retirement plan for awhile now. The main question I got asked how could I financially sustain. I don’t know what kind of impression you have got so far by reading about my life. Yes, I own several successful ventures, running a very growing and profitable business, I also invested in the 20+ venture and was extremely lucky to enjoy some exit from the investment. But not in very big scale. Some of my investment looks promising, but that does not make me very rich in cash. So this plan further is not about having tons of cash in hand laying around, it’s more about having sustainable and ongoing earning. I do certainly have some exit I am looking forward to but my plan will not depend on it. I am confident now I could easily go beyond this month-to-month type calculation! </span></p>\n<h2><b>The Hardest Part!</b></h2>\n<p><span>When you grow business for over a decade, the main challenges are people. Like some successful venture, I also have businesses that are not cash-positive but has people involved with it for years. When you run a business, you become responsible for those people, their family depends on your decision, that type of responsibilities will limit you sometimes taking logical business decision. And really relying so much into people, and the fear of let going control could be hard dilemma any Entrepreneur could feel. </span></p>\n<p><span>But over the year I learned,<strong> sometimes you have to let go to get things done for future, sometimes you have to take a leap of faith</strong>. So, I practiced that for some time now. I am positive that things will work out, and won’t break apart.</span></p>\n<h1><b>Reason: Why I am doing this?</b></h1>\n<p><span>In some ways I feel I am doing this for very long time. I have built team, product, faced hard time, and also enjoyed when things work out, I have gone through this circle so many times. There is always hard time and I have seen how it all ultimately always worked out. I kind of want to get out of this circle. Sometimes I feel tired. Though for a person like me who single handily started everything, broke so many barriers, it’s hard to get me tensed. I know how to deal with pressure, hard time, shitty situation. In some ways I am resistant to those. But when I reflect everything in my life I am very proud what I have done, what I have Achieved.</span></p>\n<p><b>Monetary wealth did not make me rich! </b><span>But the experience and relation that I cultivated did. I feel rich because of this. </span></p>\n<p><span>When I was still a teenager, dreaming to be a physicist, I had a very thorough vision of my future, I wanted to finish my PhD by age 25. Later in the course of life I became Entrepreneur. Then my goal was to become a millionaire by age 25 and have a stable family. I was successful in that. I have the vision to built amazing WordPress team and product, I am doing that right now. </span></p>\n<p><b>I want to move on, I would like to see greater meaning of life. </b><span>That does not mean what I am doing is great, it’s just going beyond. I always thought life has a bigger meaning for me, I always felt privileged, the kind of life I had, most people from my demography could not have, so I have bigger responsibilities! </span></p>\n<h2><b>How ‘Big’ is WordPress?</b></h2>\n<p><span>WordPress is biggest CMS and No.1 solution to make Website, but how many businesses do you see worth over a $100M in WordPress Ecosystem? Or over $50M? Not much. And because of so much recent #WPDrama, one thing is very clear, we have a long way to grow. I kind of feel to make it too big, we even limited ourself as well. I do see the power struggle inside the community as well. The most respected person in the community, now have very large number of haters, and for few semi-valid reasons.<strong> That is sad, maybe we all need to rethink!</strong></span></p>\n<h1><b>What will I do in future?</b></h1>\n<p>Maybe I will <strong>drive deep into science</strong>, I will be still 34, even enough time to study something new! <span>Maybe I will just enjoy the break for awhile. Maybe I will try to find the better meaning of life. Or maybe will write a book, I don’t know, I want to keep the option open, have an open heart. I do certainly earn this freedom myself, I am very grateful to the list of endless great people that helped me throughout the decade of my career.</span></p>\n<h2><b>Your kids to reflect You!</b></h2>\n<p><span>We all want our kids to be like us, we want them to reflect us in a good way, and go beyond. But If we are not involved in every process of their life how could this happen? If you let your family, mainly wife to entirely take care of your kid how they are going to learn from you? Do you really believe just giving 1-2 hours a day will do the trick? It’s way more than that. I want to be an integral part of my kids’ life. I want to be fully involved in their process of growing up. In this whole thing, there is nothing related of deciding fate of their life. I have no expectation of making my kids something, I am fully open, they will decide their destiny, their own venture. I just want to help them understand this World, </span><b>be their Dad</b><span>, be the friend they could play with, be the teacher they need, as long as they need.</span></p>\n<p><span>I will spend more time with my family, my 2 young daughters really need more of me, they will be 4 & 2 by next year. They will go into school, perfect time for me to jump in.</span></p>\n<h1><strong>Conclusion: For You!</strong></h1>\n<p>If you came this far reading this, you could probably tell I enjoyed writing! My routine hardly gives me more option to do it regularly. I was meant to write this HeroPress article last year but was too busy, and the timing was too near of the 2nd baby’s birth!</p>\n<p>I don’t expect others to try to retire early, but having a choice in life is important. Try to look back. Why do you work? Is it because of earning money? Just to survive, just to sustain your family? This should not be the purpose of human life. I believe our Creator created us for a reason, <strong>we are not meant to live and die selfishly like an animal. There should be more meaning of life other than trying to buy luxury!</strong></p>\n<p>There is a Ted talk describing Humans, how evaluated to be Human, one of the core reason was we cooked, and gathered and stored food, so we spent less time like other Gorillas to try to find food and spend most of the days for that purpose. We cooked, it was easy to chew, and it gave us more free time, so we were able to innovate! Interesting theory, but surely intriguing.</p>\n<p><strong>Life is not always about achieving it all. It’s sometimes about the journey. You can’t always win. You have to learn from the journey and move on.</strong></p>\n<p>When I look back I do see, my decision to invest worked out many ways. <strong>As I diversified my venture it was a good move.</strong> I made many mistakes and described in details here as well, but I tried to learn and reflect that in my further life. I am who I am, because of the journey. I don’t regret any part of it. If I had the chance would I have done it differently? I don’t know, maybe that could be a different journey. My life is wrapped up entirely with WordPress, I am and will always be proud of that. But maybe I need to give myself a fair chance to see the world clearly. For past 13-14 years, I have worked every day on an average 14 hours of more, I still stay at the office for over 12 hours. But I don’t do it because I have to, I do it because I enjoy it. But this is taking too much of my life, I am too swamped up. This break is necessary.</p>\n<p> </p>\n<p><em><strong>Note:</strong> I really like to thank Topher & HeroPress for giving me this opportunity and pushing me on writing this. I was very confused as it turns out this BIG. I thought it was just 2500-3000 words, I wrote almost on the fly, so was not looking at word count. Probably this is kind of my thing, if an idea is clear in my head, I don’t have issues putting it into letters.</em></p>\n<p><em>Topher told me this is twice the size of the previous longest essay in HeroPress. <strong>I am glad if you read it completely! That’s also an achievement!</strong> Then why not spent few second more to say Hi in the comments, so I could know who read this far!</em></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: Retiring Young From Bangladesh, Thanks To WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Retiring%20Young%20From%20Bangladesh%2C%20Thanks%20To%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fretiring-young-bangladesh-thanks-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Retiring Young From Bangladesh, Thanks To WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fretiring-young-bangladesh-thanks-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fretiring-young-bangladesh-thanks-wordpress%2F&title=Retiring+Young+From+Bangladesh%2C+Thanks+To+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Retiring Young From Bangladesh, Thanks To WordPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/&media=https://heropress.com/wp-content/uploads/2018/08/083017-150x150.jpg&description=Retiring Young From Bangladesh, Thanks To WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Retiring Young From Bangladesh, Thanks To WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/\" title=\"Retiring Young From Bangladesh, Thanks To WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/\">Retiring Young From Bangladesh, Thanks To WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Aug 2017 00:00: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:\"M Asif Rahman\";s: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:43:\"Akismet: Akismet and Drupal, Together Again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=1960\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://blog.akismet.com/2017/08/29/akismet-and-drupal-together-again/\";s: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:1569:\"<p>Akismet is used on millions of WordPress sites, but it isn’t only used with WordPress. In fact, Akismet can be integrated with any CMS, and <a href=\"https://akismet.com/development/api/#use-a-library\">more than 30 Akismet libraries and plugins are available for non-WordPress systems</a>.</p>\n<p>The <a href=\"https://www.drupal.org/\">Drupal CMS</a> has had an unofficial Akismet integration available via the <a href=\"https://www.drupal.org/project/antispam\">AntiSpam module</a> since 2009, but it hadn’t been updated since 2012, and thousands of sites were still using it despite some significant bugs. In the interest of providing the best experience possible for Akismet customers, we’ve contributed some time and code, and <strong>we’re happy to announce that a new stable version of AntiSpam for Drupal is available.</strong></p>\n<p>Version 7.x-1.6 can be downloaded from the <a href=\"https://www.drupal.org/project/antispam\">AntiSpam project page</a> on Drupal.org. Please let us know about any issues you may encounter by leaving a comment below or by opening a ticket at <a href=\"https://www.drupal.org/project/issues/antispam\">the issue tracker for the AntiSpam module</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1960/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1960/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1960&subd=akismet&ref=&feed=1\" width=\"1\" height=\"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:\"Tue, 29 Aug 2017 19:16:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:21:\"Dougal Campbell: Bugs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"http://dougal.gunters.org/?p=81413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://dougal.gunters.org/blog/2017/08/29/81413/\";s: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:550:\"<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I seem to have a knack for finding obscure edge-case bugs in WordPress. <a href=\"https://twitter.com/hashtag/wordpress?src=hash\">#wordpress</a> <a href=\"https://twitter.com/hashtag/oembed?src=hash\">#oembed</a> <a href=\"https://t.co/aucCSDb76H\">https://t.co/aucCSDb76H</a></p>\n<p>— Dougal Campbell (@dougal) <a href=\"https://twitter.com/dougal/status/902299942701674497\">August 28, 2017</a></p></blockquote>\n<p></p>\n<p> </p>\n<div class=\"yarpp-related-rss yarpp-related-none\">\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:\"Tue, 29 Aug 2017 15:53:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Dougal Campbell\";s: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:107:\"WPTavern: Matt Mullenweg Addresses Concerns About Gutenberg, Confirms New Editor to Ship with WordPress 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:29:\"https://wptavern.com/?p=74414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/matt-mullenweg-addresses-concerns-about-gutenberg-confirms-new-editor-to-ship-with-wordpress-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6828:\"<p>Matt Mullenweg published an appeal to WordPress users over the weekend in a post titled “<a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\" target=\"_blank\">We Called it Gutenberg for a Reason</a>.” In it he offers a better look at his vision for Gutenberg, which he contends will be as transformative for WordPress’ future as the first movable type printing was for Europe’s printing revolution.</p>\n<p>Mullenweg identified the new Gutenberg editor as the tool that will enable WordPress to meet its competition and the opportunities available in the small business sector:</p>\n<blockquote><p>WordPress’s growth is impressive (28.5% and counting) but it’s not limitless — at least not in its current state. We have challenges (user frustrations with publishing and customizing, competition from site builders like Squarespace and Wix) and opportunities (the 157 million small businesses without sites, aka the next big market we should be serving). It’s time for WordPress’ next big thing, the thing that helps us deal with our challenges and opportunities. The thing that changes the world.</p></blockquote>\n<p>Automattic has been moving towards offering better support for small businesses with its 2015 <a href=\"https://wptavern.com/automattic-acquires-woocommerce\" target=\"_blank\">acquisition of WooCommerce</a> and steady commercialization of Jetpack, with plans targeted at business owners. The company is poised to capture even more of the self-hosted small business market by allowing customers to <a href=\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\" target=\"_blank\">tap into WordPress’ third-party ecosystem</a>.</p>\n<p>However, many vocal opponents to Gutenberg (and the changes that will come along with it) are concerned that the project is being developed chiefly to serve Automattic’s customers and corporate interests.</p>\n<p>“Gutenberg has been mainly introduced by one particular company which seems to be in urgent need to compete with other SaaS businesses,” WordPress theme development company owner <a href=\"https://www.mhthemes.com/\" target=\"_blank\">Michael Hebenstreit</a> said. “That’s fine, but then keep it as a plugin for at least 1-2 years, put it on WordPress.com (to gather real live feedback and usage data) and nobody will have any issues with that approach.”</p>\n<p>Mullenweg addressed concerns that Gutenberg is being developed for Automattic’s customers in a <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/#comment-587598\" target=\"_blank\">reply</a> to a similar comment on his post.</p>\n<p>“There definitely is a contingent that seems to think that, but if you think through it logically it doesn’t make sense: if it were just to benefit Automattic it would be far easier and more advantageous to just do Gutenberg unilaterally in Calypso, where it would primarily benefit WordPress.com,” Mullenweg said. “Doing it in wp-admin and core first involves a lot more discussion, public feedback, backwards compatibility concerns, and breaking a lot of new ground for how core uses Javascript, and because it’s in core the benefits will accrue to all hosts of WordPress, many of which directly or indirectly compete with Automattic. We are reading and trying to learn from all the negative feedback though, even when it’s from people who haven’t used Gutenberg much yet.”</p>\n<p>Those who build websites for clients have voiced concerns about how Gutenberg will affect their businesses, whether the brand new interface will drive users away from WordPress. Developers and product owners are eagerly awaiting more answers on what it means for existing plugins and themes in the ecosystem, as the project has yet to iron out some of the more technical details regarding extensibility and support for metaboxes. This naturally raises concerns about Gutenberg’s timeline.</p>\n<p>“Gutenberg will ship with WordPress 5.0, but the release will come out when Gutenberg is ready, not vice versa,” Mullenweg said. “We still have target dates to help us think about scope and plan for all the supporting documentation, translation, and marketing efforts, but we’re not going to release anything until Gutenberg is something the team working on it agrees is ready.”</p>\n<p>WordPress users have been conditioned to anticipate releases on a regular schedule but the new approach to core development will allow for the next major release to wait until the targeted features are ready. Mullenweg confirmed in the comments of his post that Gutenberg will ship with a legacy interface to offer backwards compatibility for PHP metaboxes that have not yet updated to be JS-powered.</p>\n<p>“Some things like toolbar buttons will definitely need to be updated to work with Gutenberg, other things like Metaboxes there will be no problem to provide a legacy interface for a few releases,” Mullenweg said. “But I would say that plugin authors should start updating their plugins in late September if they want to benefit from Gutenberg’s launch.”</p>\n<p>One of the most prevalent concerns that remains is React’s licensing issues, which came to a head after the Apache Software Foundation added Facebook’s BSD+Patents license to its Category X list of disallowed licenses for Apache PMC members. Facebook’s engineering directors considered re-licensing the project but <a href=\"https://wptavern.com/facebook-isnt-budging-on-reacts-bsd-patents-license\" target=\"_blank\">decided against it</a>, citing “meritless patent litigation” as the reason behind adopting the BSD + patents license. The WordPress project has yet to announce its stance on the decision.</p>\n<p>“We anticipated a decision on React around the Apache deadline (closer to now), will have more to announce about WP and Gutenberg’s approach here in the next few weeks,” Mullenweg said.</p>\n<p>He also reiterated how invested he is in the WordPress project and ecosystem as a whole. His post elaborated on the many benefits he anticipates for plugin, theme, and core developers, agencies, users, and hosting companies. He challenged the WordPress community to see Gutenberg in the same light.</p>\n<p>“My life’s work is improving WordPress,” Mullenweg said. “I firmly believe that Gutenberg is the direction that will provide the most benefit to the maximum number of people while being totally in line with core WordPress’s philosophies and commitment to user freedom. So keep giving us your feedback, and let’s push through the fear together. It’s worth a little discomfort to change the world.”</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, 28 Aug 2017 18:01: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:\"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: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:41:\"Matt: We Called it Gutenberg for a Reason\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=47503\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\";s: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:9263:\"<p>Movable type was about books, but it wasn’t just about books. Ideas spread. Literacy spiked. The elite monopoly on education and government started to crack. Luther’s <em>95 Theses</em> were printed on a press, rocking Europe, and he issued “broadsheets.” Broadsheets became newspapers; newspapers enabled democracy. The printing press ushered in social, political, and economic sea changes. Gutenberg changed everything.</p>\n<p>WordPress has always been about websites, but it’s not just about websites. It’s about freedom, about possibility, and about carving out your own livelihood, whether it’s by making a living through your site or by working in the WordPress ecosystem itself. We’re democratizing publishing — and democratizing work — for everyone, regardless of language, ability, or economic wherewithal.</p>\n<p>WordPress’s growth is impressive (<a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">28.5% and counting</a>) but it’s not limitless — at least not in its current state. We have challenges (user frustrations with publishing and customizing, competition from site builders like Squarespace and Wix) and opportunities (the 157 million small businesses without sites, aka the next big market we should be serving). It’s time for WordPress’ next big thing, the thing that helps us deal with our challenges and opportunities. The thing that changes the world.</p>\n<p>Gutenberg.</p>\n<p>For those who don’t know we kicked off the Gutenberg project around the beginning of the year, <a href=\"https://ma.tt/2017/06/4-8-and-whats-coming/\">I talked about it and we did our first public releases in June</a>, and the team has been doing <a href=\"https://make.wordpress.org/core/tag/core-editor/\">weekly updates</a> of the public beta plugin <a href=\"https://wordpress.org/plugins/gutenberg/\">that’s available for anyone to try out in their wp-admin</a>.</p>\n<p>When Johannes Gutenberg’s press came out, people mostly used it to print the same religious text monks had been copying. It wasn’t until ten or fifteen years later that people started innovating and trying their hands at new kinds of writing, and the wheels of change started to spin faster. Now it’s WordPress’ turn to do the same. Gutenberg meets our challenges and opportunities head on while simultaneously benefitting everyone who makes a living working in the WP ecosystem. It’s about a lot more than just blocks. Our Gutenberg moves every part of the WordPress ecosystem forward:</p>\n<p><strong>Developers and agencies</strong> will be able to create interactive templates that clients can easily update without breaking things or dealing with custom post types: Imagine a custom “employee” block that you can add to an About page that includes a picture, name, and bio. They’ll be able to replace most meta boxes, and they’ll get a chance to update old code or clients to work in this new paradigm.</p>\n<p><strong>Plugin developers</strong> will be able to completely integrate into every part of WordPress, including posts, pages, custom post types, and sidebars without having to hack TinyMCE or squeeze their entire feature behind a toolbar button. Today, every plugin that extends WordPress does it in a different way; Gutenberg’s blocks provide a single, easy-to-learn entry point for an incredible variety of extensions. Some folks have already begun to port their plugins over, and are finding that they’re easier to build and have a much improved UI. I’m looking forward to highlighting those stories as we get further along and more people write about them.</p>\n<p><strong>Theme developers</strong> won’t need to bundle tons of plugins or create their own page builders. There’ll be a standard, portable way to create rich layouts for posts and guide people through setup right in the interface, no 20-step tutorials or long videos needed. Every theme will be able to compete with multi-functional premium themes without locking users into a single theme or compromising their experience.</p>\n<p><strong>Core developers</strong> will be able to work in modern technologies and not worry about 15 years of backwards compatibility. We’ll be able to simplify how menus, widgets, and the editor work to use a common set of code and concepts. The interface will be instantly responsive.</p>\n<p><strong>Web hosts</strong> will have better signup rates, as Gutenberg opens up WordPress to an entirely new set of people for whom WordPress was too complex and hard to set up before. (Remember our goal: to democratize publishing.) Their churn rates will go down: they’ll stop bleeding customers to Wix, Weebly, and Squarespace, and fewer people will abandon their sites because it was too hard to make things look they way they wanted.</p>\n<p><strong>Users</strong> will finally be able to build the sites they see in their imaginations. They’ll be able to do things on mobile they’ve never been able to before. They’ll never have to see a shortcode again. Text pasted from Word will get cleaned up and converted to blocks automatically and instantly. (I pasted the first version of this post from Google Docs and it worked <em>great</em>. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f44c.png\" alt=\"?\" class=\"wp-smiley\" />) They’ll start manipulating their sites in ways that would have taken a developer. They’ll be able to move from blogging to using WordPress as a CMS without missing a beat. Editing posts will just work; they’ll write more. They’ll learn blocks once, and then be able to instantly use and understand 90%+ of plugins.</p>\n<p>I could go on about how photographers will be able to create rich galleries, parallax images, and better portfolios, or how poets will finally be able to preserve whitespace as they write, but you get the idea. It’s big. It moves the WordPress ecosystem forward, but it also moves the whole web forward.</p>\n<p>Which is scary! Because change always is, and this is a big one. But a scary thing is usually a thing that leads to growth, if you can push through it. Ten years ago, agencies and developers worried that software like WordPress would ruin their business because clients wouldn’t need help updating their sites any more, and would maybe even just start building their own sites. But their worse fears didn’t come true — instead, it created new opportunities for everyone.</p>\n<p>(People were worried when the printing press was invented, too. A Swiss biologist warned against the “confusing and harmful abundance of books,” but I’d say it all worked out in the end.)</p>\n<p>This is not to say that nothing will go sideways with Gutenberg, or that people’s concerns about it are unfounded. Making something people want is really hard to do and easy to mess up — we definitely have in the past. I share many of the concerns or worries with today’s version of Gutenberg, and we’re working to mitigate them. Gutenberg will ship with WordPress 5.0, but the release will come out when Gutenberg is ready, not vice versa. We still have target dates to help us think about scope and plan for all the supporting documentation, translation, and marketing efforts, but we’re not going to release anything until Gutenberg is something the team working on it agrees is ready.</p>\n<p>And as we work, we’re listening: feedback on core and feature plugins gets read, heard, and considered. Every review of Gutenberg, even the rude ones, has a response. Seven months of vigorous and public debate, chats, tickets, and code changesets brought us to where we are today, and there will be a fair amount more before we can present the Gutenberg vision in a mostly-complete state. I welcome it; apathy would worry me a lot more than disagreement or controversy.</p>\n<p>Creating great software will never make every person happy. We’re not creating The Perfect Product, we’re choosing a path between many good options, weighing all of the inevitable trade-offs that come from a change, listening, shipping, and then doing it all over again. Iterating. My life’s work is improving WordPress. I firmly believe that Gutenberg is the direction that will provide the most benefit to the maximum number of people while being totally in line with core WordPress’s philosophies and commitment to user freedom. So keep giving us your feedback, and let’s push through the fear together. It’s worth a little discomfort to change the world.</p>\n<blockquote class=\"wp-block-quote blocks-quote-style-1\"><p><em>Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men.</em></p>\n<em>Johannes Gutenberg</em>\n</blockquote>\n<img src=\"https://i1.wp.com/ma.tt/files/2017/08/metalmovabletypeedit1.jpg?w=604&ssl=1\" />\n<p><em>Thank you to the <a href=\"https://wptavern.com/morten-rand-hendriksen-on-what-gutenberg-means-for-the-future-of-wordpress\">WP Tavern conversation</a> that helped me write down many of these ideas, and <a href=\"https://kingofstates.com/\">Michelle Weber</a>. This post started in Google Docs then revised in Gutenberg 0.9.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Aug 2017 02:23: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:17;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"HeroPress: HeroPress Downloads\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2060\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://heropress.com/heropress-downloads/#utm_source=rss&utm_medium=rss&utm_campaign=heropress-downloads\";s: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:2606:\"<img width=\"960\" height=\"600\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/heropress-large-grey-brick-1024x640.png\" class=\"attachment-large size-large wp-post-image\" alt=\"HeroPress logo on a grey brick wall\" /><p>Did you know that HeroPress has stuff you can download? For a while now we’ve had a <a href=\"https://heropress.com/plugin/\">plugin</a> available, but this evening I posted some <a href=\"https://heropress.com/downloads/\">cool wallpapers</a>. I made them about a year ago, but had them only on my personal site.</p>\n<p>Now they’re available on this site as well. I’m interested to know if you like them, if you’d like more, and perhaps even see what you can make. Please let me know in the comments.</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: HeroPress Downloads\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=HeroPress%20Downloads&via=heropress&url=https%3A%2F%2Fheropress.com%2Fheropress-downloads%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: HeroPress Downloads\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fheropress-downloads%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%2Fheropress-downloads%2F&title=HeroPress+Downloads\" rel=\"nofollow\" target=\"_blank\" title=\"Share: HeroPress Downloads\"></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/heropress-downloads/&media=https://heropress.com/wp-content/uploads/2017/08/heropress-large-grey-brick-150x150.png&description=HeroPress Downloads\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: HeroPress Downloads\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/heropress-downloads/\" title=\"HeroPress Downloads\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/heropress-downloads/\">HeroPress Downloads</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:\"Sun, 27 Aug 2017 23:59:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:93:\"WPTavern: Core Team Explores Idea to Automatically Upgrade Sites Running WordPress 3.7 to 3.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74408\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/core-team-explores-idea-to-automatically-upgrade-sites-running-wordpress-3-7-to-3-8\";s: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:2571:\"<p>WordPress 3.7 ‘Basie’ <a href=\"https://wordpress.org/news/2013/10/basie/\">was released</a> on October 24, 2013 and introduced automatic updates for minor releases to the masses. Although it’s not labeled as such, WordPress 3.7 has effectively acted as a <a href=\"https://en.wikipedia.org/wiki/Long-term_support\">LTS version</a> or Long-term support. Security updates and crucial bug fixes have been <a href=\"https://wordpress.org/download/release-archive/\">ported back</a> to previous branches up to 3.7.</p>\n<p>In this week’s WordPress developer chat, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, WordPress core developer, <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1503519922000557\">asked</a> if it’s time to stop back porting fixes to 3.7-4.0 and instead, update those sites directly to 4.1.</p>\n<p>According to <a href=\"https://wordpress.org/about/stats/\">version statistics</a> on WordPress.org, 0.4% of tracked sites are using WordPress 3.7. “I would like to see a published proposal outlining reasons, usage data, and any tradeoffs/considerations and leave a bit of time for feedback before definitely doing this,” <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, Core contributor <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1503519968000494\">said</a>.</p>\n<p>“It’s unclear to me what are the things that <em>must</em> happen and what are the things that <em>should</em> happen before we take this step.”</p>\n<p>Developers noted that WordPress automatically updates minor versions and that if protections are not built-in to automatically upgrading major versions, it could cause users to lose trust in the system.</p>\n<p>“We need to make sure all users with outdated installs get warned one way or the other. Then if they decide to turn updates off…,” <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, Core developer <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1503520516000632\">said</a>.</p>\n<p>After further discussion, the team agreed that upgrading sites from 3.7 to 3.8 would be a good stepping stone towards getting those sites up to 4.1. “It can also be done in the API so that we only do a small percentage at first and then stop and analyze and then increase the percentage,” Jorbin said.</p>\n<p>A proposal will be crafted by members of the core team and published on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core</a> site for further discussion.</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 Aug 2017 21:20: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:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: Locating Restored Comments in WordPress Requires Detective Skills\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/locating-restored-comments-in-wordpress-requires-detective-skills\";s: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:1836:\"<p>Every now and then, I’ll come across a user experience in WordPress that makes me scratch my head. Earlier today, I needed to edit a comment’s details before restoring it from the Trash. However, WordPress doesn’t allow this without restoring it first.</p>\n<p>After restoring the comment, it disappeared from the trash and nothing happened. This is not the user experience I expected and needless to say, I was annoyed.</p>\n<p>Since restored comments do not appear at the top of the approved list because of their original published date, I searched the WordPress backend for comments by the author’s first name and found it after the sixth page of results.</p>\n<p>At first, I thought about how it would be nice to be able to edit a comment’s details while it’s in the trash so I don’t have to search for the post or author to edit it. However, Mika Epstein raised a good point.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Think of that like computers. You can’t edit a document in the trash.</p>\n<p>— ipstenu (((Mika E))) (@Ipstenu) <a href=\"https://twitter.com/Ipstenu/status/901152068534022144\">August 25, 2017</a></p></blockquote>\n<p></p>\n<p>The other idea is that after restoring a comment, WordPress redirects me to the post where it was restored. It would be even better if it took me directly to the comment in the discussions meta box. However, users can hide these meta boxes from view via Screen Options, so I’m not sure how to account for that. Perhaps redirecting users to the post is enough?</p>\n<p>After searching WordPress Trac and not finding a ticket related to this issue, <a href=\"https://core.trac.wordpress.org/ticket/41731\">I created one</a>. Please leave your feedback and suggestions either in the comments or on that Trac ticket.</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 Aug 2017 19:37:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:55:\"WPTavern: Playing the Role of Online Reputation Manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74400\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/playing-the-role-of-online-reputation-manager\";s: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:3505:\"<p>Over the years, I’ve received requests from people wanting their comments removed from the site. I recently received a request from a reader that I remove a comment they made three years ago because it was showing up in Google search results for their name.</p>\n<p>Normally, I ignore these requests as it makes me feel like I’m their online reputation manager. I asked my followers on Twitter what they would do if they received the same request.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">What are your terms of derive/ privacy policy? I probably wouldn’t delete but I would stop indexing comments.</p>\n<p>— Chris Wiegman (@ChrisWiegman) <a href=\"https://twitter.com/ChrisWiegman/status/900117231979421696\">August 22, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">yeah, probably. unless there’s a real good reason not to.</p>\n<p>that said, your comments shouldn’t be indexing</p>\n<p>— skin-covered coffee (@norcross) <a href=\"https://twitter.com/norcross/status/900112112395091968\">August 22, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">depends on context. if it\'s spam – happy to. if it\'s standalone maybe. if I have to adjust whole conversation around removal – probably not.</p>\n<p>— Andrey Savchenko (@Rarst) <a href=\"https://twitter.com/Rarst/status/900259136507711488\">August 23, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Depends. Is it essential for preserving that persons privacy? Had other people responded to the comment? I’d have to weigh pros & cons.</p>\n<p>— Elpie (@elpie) <a href=\"https://twitter.com/elpie/status/900112216053231616\">August 22, 2017</a></p></blockquote>\n<p></p>\n<p>The Tavern doesn’t have a privacy policy. It’s a blog that allows commenting where readers can choose to provide their name, email address, and URL. I don’t like deleting comments as it alters history and can make conversations look awkward.</p>\n<p>Although there are privacy policies such as, the <a href=\"http://ec.europa.eu/justice/data-protection/files/factsheets/factsheet_data_protection_en.pdf\">Right To Be Forgotten</a> and <a href=\"http://www.eugdpr.org\">GDRP</a>, there are other things to consider that can help determine if removing a comment is the right thing to do.</p>\n<ol>\n<li>Is the comment spammy?</li>\n<li>Would removing it alter the conversation?</li>\n<li>Is removing the comment the only way to maintain their privacy?</li>\n</ol>\n<p>I initially decided to trash their comment but discovered that removing a parent comment with replies also removes the replies. While this makes sense, this means that removing one comment can turn into removing many comments or an entire conversation.</p>\n<p>Instead, I recovered the comment and removed their name, email address, and URL. This keeps the conversation in tact while giving back their privacy.</p>\n<p>Many people who responded to my question suggested that comments shouldn’t be indexed by search engines. After giving it some thought, I’m conflicted. We’ve never had an issue before and we don’t receive so many requests that it’s a problem. We also highly value our comments and feel they should be discoverable like our content.</p>\n<p>What are the pros and cons to blocking comments from search engines? What would you do if you were running the Tavern?</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 Aug 2017 21:12:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:103:\"WPTavern: WPWeekly Episode 286 – Upgrading PHP, Facebook Not Budging, and Merlin WP Onboarding Wizard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74394&preview=true&preview_id=74394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/wpweekly-episode-286-upgrading-php-facebook-not-budging-and-merlin-wp-onboarding-wizard\";s: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>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I discuss a new initiative that will help educate users on the benefits of upgrading PHP. We share our thoughts on Facebook denying a request to remove its Patent clause from REACT’s license. We highlight a new onboarding wizard aimed at themes and discuss what Gutenberg means for the future of WordPress.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-org-to-add-new-page-educating-users-on-benefits-of-upgrading-php\">WordPress.org to Add New Page Educating Users on Benefits of Upgrading PHP</a><br />\n<a href=\"https://wptavern.com/facebook-isnt-budging-on-reacts-bsd-patents-license\">Facebook Isn’t Budging on React’s BSD + Patents License</a><br />\n<a href=\"https://wptavern.com/new-merlin-wp-onboarding-wizard-makes-wordpress-theme-installation-and-setup-effortless\">New Merlin WP Onboarding Wizard Makes WordPress Theme Installation and Setup Effortless</a><br />\n<a href=\"https://wptavern.com/user-experience-tests-show-gutenbergs-ui-elements-can-benefit-from-better-timing\">User Experience Tests Show Gutenberg’s UI Elements Can Benefit From Better Timing</a><br />\n<a href=\"https://wptavern.com/morten-rand-hendriksen-on-what-gutenberg-means-for-the-future-of-wordpress\">Morten Rand-Hendriksen on What Gutenberg Means For the Future of WordPress</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://github.com/nfarina/homebridge\">HomeBridge</a> is a lightweight NodeJS server you can run on your home network that emulates the iOS HomeKit API. It supports Plugins, which are community-contributed modules that provide a basic bridge from HomeKit to various 3rd-party APIs provided by manufacturers of ‘smart home’ devices.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 30th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #286:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Aug 2017 00:12:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:46:\"HeroPress: Is WordPress Good for Indian 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:56:\"https://heropress.com/?post_type=heropress-essays&p=2046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/wordpress-good-indian-women/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-good-indian-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:12158:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/082317-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Nothing is better than a girl who writes code.\" /><p><a href=\"http://heropress.com/feed/#gujarati\">આ નિબંધ ગુજરાતીમાં પણ ઉપલબ્ધ છે</a></p>\n<p>Why has computing always been a boys’ club? I live in a society where women are not allowed to work in an office. People in my society think that all women have to do is take care of her family and stay at home. Narrow minded society. But I feel proud to say that I am not part of that narrow minded society.</p>\n<p>I am so engaged in the world of the Computer and Technology since school time. I started learning about basic computer languages HTML, CSS and C. And believe me I was so good at it! Later on I choose Computer Engineering for my further study and completed Bachelor of Computer Applications. But I didn’t stop studying after that. I completed my Masters in Computer Applications.</p>\n<p>I fell in love with the programming and working as freelancer. What is most interesting is that the platform I am associated with. WordPress! Everyday I woke up with a new task and go to sleep with a new idea. And that still goes on. I am a WordPress developer at the Elsner Technology and I am so proud of whatever work I do everyday.</p>\n<p>With WordPress it feels like home, a part of my soul. And hey! it’s not the house of boys, there are so many girls associated with WordPress. In case if you don’t know WordPress theme review team is led by women. And since my society is not filled with the open-minded people I suggest “Girls, why don’t you learn/work/code from home?” After all, all you need is just a computer and an internet connection. Right? There are billions of things that you can do with this platform and you don’t even need to pay a penny.</p>\n<p>WordPress is easy and designers like that. And who knows the better color combination and design better? You got the point. There are thousands of self-employed developers and designers using WordPress. In addition the rapid female created themes on platform can itself testify to the fact that women want to make websites too, and organizations like Women Who WP are so useful and makes the process more easy. WordPress is creating more and more for business owners and women are really good at tech businesses. And India is the house of the Startup business. Even the government is also making huge efforts behind it.</p>\n<p>The Internet is saturated with WordPress. 27 percent of the entire internet relies on WordPress. From small startup to gigantic companies. Since my society is willing to keep women in the house, I would like to say that’s great. I am okay! I can work from home. But there is no excuse to sit back and let the boys have all the fun. There are plenty of ways to get involved in the WordPress community. And nothing is better than a girl who writes code.</p>\n<hr />\n<h1 id=\"gujarati\">ભારતીય મહિલાઓ માટે વર્ડપ્રેસ સારું છે?</h1>\n<p>શા માટે કમ્પ્યુટિંગ હંમેશા ‘છોકરાઓ નું ક્લબ છે? હું એવા સમાજમાં રહુ છે જ્યાં સ્ત્રીઓને ઓફિસમાં કામ કરવાની મંજૂરી નથી. મારા સમાજના ઘણા લોકો એવું વિચારે છે કે બધી જ મહિલાઓએ તેના પરિવારની સંભાળ રાખવી અને ઘરમાં રહેવું. રૂઢિચુસ્ત મનનું સમાજ છે પરંતુ મને ગર્વ લાગે છે કે હું સાંકડા વિચારોવાળી સમાજનો ભાગ નથી.</p>\n<p>હું સ્કૂલના સમયથી કમ્પ્યુટર અને ટેકનોલોજીના વિશ્વ સાથે સંકળાયેલી છું. તે સમયે મેં કોમ્પ્યુટર ની ભાષાઓ એચટીએમએલ, સી.એસ.એસ. અને સી વિશે શીખવાનું શરૂ કર્યું. અને મારો વિશ્વાસ કરો હું તેના પર ઘણી સારી હતી. પછીથી મેં મારા આગળના અભ્યાસ માટે કમ્પ્યુટર એન્જિનિયરિંગ પસંદ કર્યું અને બેચલર ઓફ કમ્પ્યુટર એપ્લિકેશન્સમાં અભ્યાસ પૂર્ણ કર્યો. પરંતુ તે પછી મેં અભ્યાસ કરવાનું બંધ કર્યું નથી. મેં કમ્પ્યુટર એપ્લિકેશન્સમાં માસ્ટર્સ પૂર્ણ કર્યું.</p>\n<p>હું પ્રોગ્રામિંગમાં ખૂબ ખોવાયેલી રહેતી હતી અને સાથે ફ્રીલાન્સર તરીકે કામ કરતી હતી. સૌથી રસપ્રદ બાબત એ છે કે જે પ્લેટફોર્મ સાથે હું સંકળાયેલી છું તે વર્ડપ્રેસ છે. દરરોજ હું એક નવા કાર્ય સાથે જાગું છું અને નવા વિચાર સાથે સૂઈ જઉ છું. અને તે હજુ પણ ચાલુ છે. હું એલ્સ્નર ટેક્નોલોજીમાં વર્ડપ્રેસ ડેવલપર છું અને દરરોજ મેં જે કંઈ કર્યું છે તેના પર મને ગર્વ છે.</p>\n<p>વર્ડપ્રેસ સાથે ઘરની જેમ લાગે છે, મારા આત્માનો એક ભાગ. અને હા! તે છોકરાઓનું જ ઘર નથી, વર્ડપ્રેસ સાથે ઘણી સ્ત્રીઓ પણ સંકળાયેલી છે. એક વિષયમાં જો તમને ખબર ન હોય તો વર્ડપ્રેસ થીમની પરીક્ષણ ટીમની આગેવાની મહિલાઓ દ્વારા કરવામાં આવે છે. અને કારણ કે મારું સમાજ ખુલ્લા લોકોથી ભરેલું નથી તેથી હું સૂચવે છે કે, “સ્ત્રીઓ, તમે શા માટે ઘરેથી શિખવાનું/કામ કરવાનું /કોડ કરવાનું ચાલુ નથી કરતાં?” છેવટે, તમને જરૂર ફક્ત એક કમ્પ્યુટર અને ઇન્ટરનેટ કનેક્શનની છે. સાચું ને ? અબજો વસ્તુઓ છે કે જે તમે આ પ્લેટફોર્મ સાથે કરી શકો છો અને તમારે એક આની પણ ચૂકવવાની જરૂર નથી.</p>\n<p>વર્ડપ્રેસ સરળ છે અને ડિઝાઇનર્સ તેને પસંદ કરે છે . અને કોણ સારી રંગ સંયોજના જાણે છે અને વધુ સારી ડિઝાઇન કરે છે? તો તમને લહાવો મળ્યો. હજારો સ્વરોજગાર ડેવલોપર્સ અને ડિઝાઇનર્સ વર્ડપ્રેસ નો ઉપયોગ કરે છે. આ ઉપરાંત પ્લેટફોર્મ પર ઝડપી થીમ્સ સ્ત્રીઓ એ બનાવી છે જે સ્વયંને એ હકીકતનું સમર્થન આપે છે કે સ્ત્રીઓ વેબસાઇટ્સ પણ બનાવવા માંગે છે, અને સંસ્થાઓ જેમ કે Women Who WP ઘણી ઉપયોગી છે અને આ પ્રક્રિયાને વધુ સરળ બનાવે છે. વર્ડપ્રેસ બિઝનેસ માલિકો માટે વધુ અને વધુ બનાવી રહ્યું છે અને સ્ત્રીઓ ખરેખર ટેકનીકલમાં વ્યવસાયોમાં સારી છે. ભારત એક સ્ટાર્ટઅપ વ્યવસાયનું ઘર છે. સરકાર તેની પાછળ પણ વિશાળ પ્રયત્નો કરી રહી છે.</p>\n<p>ઇન્ટરનેટ વર્ડપ્રેસ સાથે સંતૃપ્ત છે સમગ્ર ઇન્ટરનેટનો 27% હિસ્સો વર્ડપ્રેસ પર છે. નાની શરૂઆત ની કંપની થી માંડી ને મોટી કંપીનીઓ . મારો સમાજ સ્ત્રીઓને ઘરમાં રાખવા માટે તૈયાર છે, તેથી હું કહીશ કે મહાન છે. હું ઠીક છું! હું ઘરેથી કામ કરી શકું છું પરંતુ પરંતુ પાછા બેસવાનો અને છોકરાઓને બધી જ મજા કરવાની કોઈ બહાનું નથી. વર્ડપ્રેસ કમ્યૂનિટીમાં શામેલ થવાની ઘણી બધી રીતો છે. અને જે છોકરી કોડ લખે છે તેના થી વધારે કંઈ સારું નથી.</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: Is WordPress Good for Indian Women?\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Is%20WordPress%20Good%20for%20Indian%20Women%3F&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-good-indian-women%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Is WordPress Good for Indian Women?\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-good-indian-women%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-good-indian-women%2F&title=Is+WordPress+Good+for+Indian+Women%3F\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Is WordPress Good for Indian Women?\"></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-good-indian-women/&media=https://heropress.com/wp-content/uploads/2017/08/082317-150x150.jpg&description=Is WordPress Good for Indian Women?\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Is WordPress Good for Indian Women?\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-good-indian-women/\" title=\"Is WordPress Good for Indian Women?\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-good-indian-women/\">Is WordPress Good for Indian Women?</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, 23 Aug 2017 12:00: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:10:\"Juhi Patel\";s: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:45:\"BuddyPress: BuddyPress 2.9.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=267671\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://buddypress.org/2017/08/buddypress-2-9-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:944:\"<p>BuddyPress 2.9.1 is now available. This is a security and maintenance release. We strongly encourage all BuddyPress sites to upgrade as soon as possible.</p>\n<p>We fixed two regressions introduced in 2.9:</p>\n<ul>\n<li>Groups: fix group description truncation length on group screen.</li>\n<li>Profiles: fix avatar quality when requesting avatar sizes larger than the user’s uploaded avatar.</li>\n</ul>\n<p>Importantly, BuddyPress 2.9.1 and earlier versions were affected by the following security issue:</p>\n<ul>\n<li>Cross-site request forgery (CSRF) in the XProfile administration Dashboard panel.</li>\n</ul>\n<p>These vulnerabilities were reported privately by <a href=\"https://dk.linkedin.com/in/skansing\">Ronnie Skansing</a>. Our thanks to Ronnie for reporting security issues in accordance with <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">WordPress’ security policies</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, 23 Aug 2017 11:44:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Paul Gibbs\";s: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:84:\"WPTavern: Morten Rand-Hendriksen on What Gutenberg Means For the Future of 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:58:\"https://wptavern.com?p=74359&preview=true&preview_id=74359\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/morten-rand-hendriksen-on-what-gutenberg-means-for-the-future-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2507:\"<p>As work continues on <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a>, members of the community are discussing its impacts on WordPress’ future. Morten Rand-Hendriksen <a href=\"https://www.linkedin.com/pulse/gutenberg-morten-rand-hendriksen\">considers Gutenberg</a> to be a watershed moment, “This is a revolution,” he said.</p>\n<p>“This is a watershed moment for WordPress. This is entirely new and fundamentally different from how WordPress works and how we work with it today. I cannot overstate it enough when I say this changes everything.”</p>\n<p>Rand-Hendriksen suggests that Gutenberg will allow WordPress to graduate from being a blogging platform to a platform for managing views. If Gutenberg adds complexity to the user interface, he predicts many users will migrate to simpler, hosted publishing systems.</p>\n<p>He also predicts that due to the REST API and Gutenberg, permanent fractures may develop between different segments of the community and user base.</p>\n<p>It’s exciting to think about what could happen to WordPress and the web in general if Rand-Hendriksen’s optimism comes to fruition. “Whatever happens to WordPress’ user base, once Gutenberg is implemented fully, WordPress’ role in the wider web and internet community will change,” he said.</p>\n<p>“If all these things actually work, and people find them useful, WordPress will herald in a new age of UI and UX exploration. Applications have followed WordPress’ lead before and will do it again if the new solution works.”</p>\n<p>As for the future of WordPress, Rand-Hendriksen says:</p>\n<blockquote class=\"wp-block-quote blocks-quote-style-1\"><p>With the REST API in core and Gutenberg on the horizon, I am starting to see a new future for WordPress, one that looks nothing like where we are today. But this is true for the web as a whole as well.</p>\n<p>Non-pointer interactions, AR/VR/MR, AI, content beyond the screen, all these things are already within sight and the web as we know it is on the cusp of its own wave of revolutionary changes.</p>\n<p>The question I’m left to ponder is whether Gutenberg is what brings WordPress into that future.</p></blockquote>\n<p>I encourage you to <a href=\"https://www.linkedin.com/pulse/gutenberg-morten-rand-hendriksen\">read the entire post</a> as it provides a lot of food for thought. What do you think about his predictions and the impacts Gutenberg might have on the web as a whole?</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 Aug 2017 01:41: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:\"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: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:69:\"WPTavern: Facebook Isn’t Budging on React’s BSD + Patents License\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74333\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/facebook-isnt-budging-on-reacts-bsd-patents-license\";s: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:7456:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/12/react.png?ssl=1\"><img /></a></p>\n<p>Last month <a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\" target=\"_blank\">React users petitioned Facebook to relicense the project</a> (and its other open source projects) after the Apache Software Foundation (ASF) added Facebook’s BSD+Patents license to its <a href=\"https://www.apache.org/legal/resolved#category-x\" target=\"_blank\">Category X list of disallowed licenses</a> for Apache PMC members. Participants and subscribers to the <a href=\"https://github.com/facebook/react/issues/10191\" target=\"_blank\">GitHub thread</a> waited weeks for a decision on re-licensing while Facebook’s engineering directors discussed the matter internally. The request has now formally been <a href=\"https://code.facebook.com/posts/112130496157735/explaining-react-s-license/\" target=\"_blank\">denied</a>.</p>\n<p>“I’d like to apologize for the amount of thrash, confusion, and uncertainty this has caused the React and open source communities,” Facebook engineer Adam Wolff said. “We know this is painful, especially for teams that feel like they’re going to need to rewrite large parts of their project to remove React or other dependencies. We’ve been looking for ways around this and have reached out to ASF to see if we could try to work with them, but have come up empty.”</p>\n<p>The request for re-licensing had received 851 “thumbs-up” reactions on GitHub and many developers commented to say that the ASF’s policy disallowing the BSD+Patents license <a href=\"https://wptavern.com/petition-to-re-license-react-has-been-escalated-to-facebooks-engineering-directors\" target=\"_blank\">affects their organizations’ ability to continue using React</a> and other open source projects from Facebook. Others said they would like to use React but the licensing makes it impossible for their companies.</p>\n<h3>Facebook Cites “Meritless Patent Litigation” as the Reason Behind Adopting the BSD + Patents License</h3>\n<p>Wolff’s <a href=\"https://code.facebook.com/posts/112130496157735/explaining-react-s-license/\" target=\"_blank\">post</a> announcing Facebook’s decision said that the team has not done a good job of communicating the reasons behind its BSD + Patents license and offered a more in-depth explanation:</p>\n<blockquote><p>As our business has become successful, we’ve become a larger target for meritless patent litigation. This type of litigation can be extremely costly in terms of both resources and attention. It would have been easy for us to stop contributing to open source, or to do what some other large companies do and only release software that isn’t used in our most successful products, but we decided to take a different approach. We decided to add a clear patent grant when we release software under the 3-clause BSD license, creating what has come to be known as the BSD + Patents license. The patent grant says that if you’re going to use the software we’ve released under it, you lose the patent license from us if you sue us for patent infringement. We believe that if this license were widely adopted, it could actually reduce meritless litigation for all adopters, and we want to work with others to explore this possibility.</p></blockquote>\n<p>The ASF’s decision to disallow the BSD+Patents license was for policy reasons, not a legal decision based on incompatibility. Greg Stein, commenting on behalf of ASF on a separate GitHub issue, <a href=\"https://github.com/omcljs/om/issues/882\" target=\"_blank\">said</a> that the ASF didn’t want downstream users of Apache code to be surprised by the PATENTS grant that was previously in RocksDB and is still in React. The organization wanted users to have no further constraints other than following the ALv2.</p>\n<p>“While we respect this decision, it hurts to see so many great ASF projects get churned for policy reasons after using this license for years,” Wolff said in Facebook’s announcement. The company made it clear that they will not be re-licensing React or any other projects simply to satisfy ASF’s policy requirements.</p>\n<p>“We have considered possible changes carefully, but we won’t be changing our default license or React’s license at this time,” Wolff said. “We recognize that we may lose some React community members because of this decision. We are sorry for that, but we need to balance our desire to participate in open source with our desire to protect ourselves from costly litigation. We think changing our approach would inhibit our ability to continue releasing meaningful open source software and increase the amount of time and money we have to spend fighting meritless lawsuits.”</p>\n<p>Many from the OSS community expressed disappointment and frustration in their initial reactions on Twitter:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">“People like to sue us,” is a poor rationalization. This is weaponizing OSS under the guise of sharing. The whole post is disingenuous.</p>\n<p>— Nicholas C. Zakas (@slicknet) <a href=\"https://twitter.com/slicknet/status/898732045442011136\">August 19, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Facebook is often the ideal open source partner – but their patent stance here makes React use untenable to me. <a href=\"https://t.co/97VIR0le36\">https://t.co/97VIR0le36</a></p>\n<p>— Adam Jacob (@adamhjk) <a href=\"https://twitter.com/adamhjk/status/898734487718121472\">August 19, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">The React license allows Facebook to violate patents of companies that use React, and those companies can\'t sue to stop Facebook</p>\n<p>— Feross (@feross) <a href=\"https://twitter.com/feross/status/898730336082776064\">August 19, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Yep, my team\'s required to pull all use of React because of the license. It\'s a corporate wide issue.</p>\n<p>— Tyler Fitch (@tfitch) <a href=\"https://twitter.com/tfitch/status/898742063738494976\">August 19, 2017</a></p></blockquote>\n<p></p>\n<p>The issue requesting re-licensing has been <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-323486580\" target=\"_blank\">closed on GitHub</a> and is now locked and limited to collaborators.</p>\n<p>It’s not clear how this decision will affect WordPress, as the project has yet to announce which JS framework it will be adopting for core. Automattic is heavily invested in React, having built Calypso and Jetpack’s admin interface with it. WordPress’ new Gutenberg editor is also built using React, as the project’s chief contributors are employed by Automattic. The company’s legal counsel has said in the past that they are <a href=\"https://wptavern.com/automattic-will-continue-to-use-react-js-in-calypso-despite-patent-clause\" target=\"_blank\">comfortable using React for its products under the current license</a>, but other companies in the WordPress ecosystem may not be as amenable to having the framework included in core.</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, 19 Aug 2017 03:52:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:84:\"WPTavern: WordPress.org to Add New Page Educating Users on Benefits of Upgrading PHP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74303\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/wordpress-org-to-add-new-page-educating-users-on-benefits-of-upgrading-php\";s: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:3456:\"<p>WordPress’ Core PHP team has created a new <a href=\"https://github.com/wp-core-php\" target=\"_blank\">GitHub organization</a> for initiatives focused on improving the use of PHP in the project. The first one they are tackling is <a href=\"https://github.com/wp-core-php/servehappy/\" target=\"_blank\">a new page on WordPress.org</a> dedicated to educating users about the benefits of upgrading PHP. Contributors are <a href=\"https://github.com/wp-core-php/servehappy-resources\" target=\"_blank\">collecting third-party articles and tutorials on PHP upgrades</a> to find inspiration for the project, which is temporarily codenamed “servehappy.”</p>\n<p>WordPress’ <a href=\"https://wordpress.org/about/stats/\" target=\"_blank\">stats</a> page shows that 14.2% of the all the sites it is tracking are running on PHP 7.0+. 40.6% of sites are on PHP 5.6, which is no longer actively supported but will receive security fixes until January 2019. This leaves 45.2% of all WordPress sites running on older, insecure PHP versions that have already reached end of life and are no longer receiving security updates.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/wp-php-versions-8-18-2017.png?ssl=1\"><img /></a>WordPress PHP Versions – 8.18.2017\n<p>Contributors are using the <a href=\"https://github.com/wp-core-php/servehappy/issues\" target=\"_blank\">issues queue of the servehappy repository</a> to collect benefits and statistical data they can use to sell the “update PHP” proposition to users. The project is currently in the brainstorming phase, but the team will eventually whittle the ideas down to present the most effective benefits.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/servehappy-issues-e1503086149333.png?ssl=1\"><img /></a></p>\n<p>“The primary task for the ‘servehappy’ repository will be to open issues for the benefits we’ve come up with over the past few weeks, and discuss them one by one, whether they qualify for the page and how they can be framed in the most convincing way,” Felix Arntz said.</p>\n<p>In addition to proposing the benefits of upgrading PHP, the page will also include a call to action and information about how to upgrade or how to approach your host for an upgrade. Contributors are discussing the page’s outline and are aiming to tackle the project in a friendly and sensitive way that doesn’t put stress on users.</p>\n<p>“The section ‘<em>What should you need to know before doing an update?</em>‘ must not unnecessarily make the user worry,” Arntz said, recapping the thoughts contributors expressed during the team’s most recent meeting. “Let’s highlight possible issues, but not overestimate them. People should see upgrading as a good thing, and we should point them to how they can determine whether their sites are ready.”</p>\n<p>The Core PHP Team will be getting in touch with WordPress’ marketing team to request their expertise on refining the page’s approach. Anyone is welcome to contribute third-party resources or ideas to the <a href=\"https://github.com/wp-core-php/servehappy\" target=\"_blank\">servehappy project on GitHub</a>. Check out the most recent <a href=\"https://make.wordpress.org/core/2017/08/17/php-meeting-recap-august-14th/\" target=\"_blank\">meeting notes</a> for a full summary of the project and its needs.</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 Aug 2017 20:37: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: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:92:\"WPTavern: Chrome Version 62 to Show Security Warnings on HTTP Pages Starting in October 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74301\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/chrome-version-62-to-show-security-warnings-on-http-pages-starting-in-october-2017\";s: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:2444:\"<p>Google Search Console has started sending out notices to sites that have not yet migrated to HTTPS. Chrome 61 is now in beta and version 62 is on track to begin marking HTTP pages as “NOT SECURE” beginning in October. It will show the warning if it detects any forms on the page that transmit passwords, credit cards, or any text input fields that the browser deems are in need of HTTPS protection. All HTTP pages in incognito mode will trigger the warning.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/chrome-warning.png?ssl=1\"><img /></a></p>\n<p>In January 2017, Chrome version 56 began marking sites that transmit passwords or credit cards as non-secure as part of its long-term plan to mark all HTTP sites as non-secure. The warning will become more prominent as time goes on.</p>\n<p>“Eventually, we plan to label all HTTP pages as non-secure, and change the HTTP security indicator to the red triangle that we use for broken HTTPS,” Chrome Security Team Emily Schechter said.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/eventual-chrome-warning-for-http-pages.png?ssl=1\"><img /></a></p>\n<p>The email sent out from the Google Search Console urges site owners to fix the problem by <a href=\"https://support.google.com/webmasters/answer/6073543?utm_source=wnc_10038795&utm_medium=gamma&utm_campaign=wnc_10038795&utm_content=msg_100078324&hl=en\" target=\"_blank\">migrating to HTTPS</a>. Hosting companies that specialize in WordPress are making it easier than ever to make the switch. Many of them have added Let’s Encrypt integration to offer free certificates to customers. As of 2017, WordPress now only recommends <a href=\"https://wptavern.com/wordpress-will-only-recommend-hosting-companies-offering-ssl-by-default-in-2017\" target=\"_blank\">hosting partners that provide SSL certificates by default</a>.</p>\n<p>Thanks to the push towards HTTPS from Google, web browsers, hosting companies, and the <a href=\"https://wptavern.com/lets-encrypt-passes-100-million-certificates-issued-will-offer-wildcard-certificates-in-january-2018\" target=\"_blank\">100+ million certificates issued by Let’s Encrypt</a>, the <a href=\"https://ipv.sx/telemetry/general-v2.html?channels=release&measure=HTTP_PAGELOAD_IS_SSL&target=1&absolute=0&relative=1\" target=\"_blank\">percentage of pageloads over HTTPS is now approaching 60%</a>, according to Firefox Telemetry.</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 Aug 2017 17:14: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: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:43:\"Lorelle on WP: WordPress School: Shortcodes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://lorelle.wordpress.com/?p=14325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://lorelle.wordpress.com/2017/08/18/wordpress-school-shortcodes/\";s: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:15281:\"<p><a href=\"https://lorelle.wordpress.com/category/wordpress/wordpress-school/\" title=\"WordPress School taught by Lorelle VanFossen.\"><img /></a></p>\n<p>WordPress shortcodes are abbreviated code placed into the WordPress Visual or Text Editors that expands into a larger code structure. As we continue with <a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/\" title=\"WordPress School « Lorelle on WordPress\">Lorelle’s WordPress School free online course</a>, it’s time to explore the basics of WordPress shortcodes.</p>\n<p>The following is the embed code for a Google Map, pointing to one of my favorite local museums, <a href=\"http://ricenorthwestmuseum.com/\">The Rice Northwest Rocks and Minerals Museum</a> in Hillsboro, Oregon:</p>\n<p><code><a href=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2792.809130780463!2d-122.94987648443889!3d45.57427677910247!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x54950456e76e254b%3A0xdfad5d11bde5b6cc!2s26385+NW+Groveland+Dr%2C+Hillsboro%2C+OR+97124!5e0!3m2!1sen!2sus!4v1502560000052\">https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2792.809130780463!2d-122.94987648443889!3d45.57427677910247!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x54950456e76e254b%3A0xdfad5d11bde5b6cc!2s26385+NW+Groveland+Dr%2C+Hillsboro%2C+OR+97124!5e0!3m2!1sen!2sus!4v1502560000052</a></code></p>\n<p>When the post or Page is saved, WordPress.com automatically converts it to the embed code for Google Maps like this:</p>\n<p><code>[googlemaps https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2792.809130780463!2d-122.94987648443889!3d45.57427677910247!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x54950456e76e254b%3A0xdfad5d11bde5b6cc!2s26385+NW+Groveland+Dr%2C+Hillsboro%2C+OR+97124!5e0!3m2!1sen!2sus!4v1502560000052&w=600&h=450]</code></p>\n<p>This is what you see in your Visual or Text/HTML editors. Doesn’t look like a map, yet, does it? </p>\n<p>When the post is previewed or published, you will see the map like this:</p>\n<div class=\"googlemaps\"></div>\n<p>The map is not a screenshot. It is interactive. Zoom in and out and move around on the map. The <a href=\"https://en.support.wordpress.com/google-maps/\" title=\"Google Maps — Support — WordPress.com\">Google Maps shortcode</a> taps into the Google Maps API allowing a live section of the map to be embedded on your site to help people find locations and directions. </p>\n<p>Google Maps are a great way of providing instructions to the location of a store or company on a Contact web page. They are also fun to embed in a post about a favorite park, hike, fishing hole, vacation spot, or even create a custom map that charts your travels, hikes, or a specific route for shopping or exploring. </p>\n<p><strong>NOTE:</strong> <em>Google Map embeds are tricky. You need to search for the exact address and use that embed code. If you search for a business name, you may get an invalid server request from Google Maps. Also note that WordPress.com has made it easier to use shortcodes by skipping the extra code and converting links and embed codes automatically to shortcodes. This may require saving your post as a draft twice before you can see the results on the front end preview of the post or Page.</em></p>\n<p>Shortcodes allow the user to add content and functionality to a WordPress site without knowing extensive code or digging into the programming of a WordPress Theme or Plugin. With the shortcut of a shortcode, WordPress users may add all sorts of customization features to their site.</p>\n<p>There are a variety of shortcodes in the core of WordPress. WordPress Themes have the ability to enable or disable these, and add more, as do WordPress Plugins.</p>\n<p>Let’s experiment with the <a title=\"Archives Shortcode — Support — WordPress.com\" href=\"http://en.support.wordpress.com/archives-shortcode/\">Archives Shortcode</a>.</p>\n<ol>\n<li>Add a New Page to your site. Title it “Site Map” or “Archives.”</li>\n<li>Type in <code>[archives]</code>.</li>\n<li>Preview, then publish the post when ready to see a listing of all of the published posts on your site in a list.</li>\n</ol>\n<p>Check out my <a href=\"https://lorelle.wordpress.com/site-map/\" title=\"Site Map « Lorelle on WordPress\">site map</a> as an example of what’s possible. </p>\n<h3>What You Need to Know About WordPress Shortcodes</h3>\n<p>Shortcodes come with WordPress out of the box, and also with WordPress Themes and Plugins. These snippets of code allow the user to add functionality to their site without touching the code. </p>\n<p>The PHP code that enables the functionality, and adds the ability to use the abbreviated code to generate that functionality on the site, is called a <code>function</code>. </p>\n<p>At its core, this is the function found to generate all WordPress Shortcodes:</p>\n<pre class=\"brush: xml; title: ; notranslate\">//[foobar]\nfunction foobar_func( $atts ){\n return \"foo and bar\";\n}\nadd_shortcode( \'foobar\', \'foobar_func\' );</pre>\n<p>The attributes, represented in this abbreviated version by <code>$atts</code>, are the instructions as to what the shortcode is to do.</p>\n<p>In the expanded form with functionality, I’ve called the shortcode “elephant” and set up two attribute values, “trumpet loudly” and “stomp.” </p>\n<pre class=\"brush: xml; title: ; notranslate\">// [elephant foo=\"foo-value\"]\nfunction elephant_func( $atts ) {\n $a = shortcode_atts( array(\n \'foo\' => \'trumpet loudly\',\n \'bar\' => \'stomp\',\n ), $atts );\n\n return \"foo = {$a[\'foo\']}\";\n}\nadd_shortcode( \'elephant\', \'elephant_func\' );</pre>\n<p>Depending upon what “foo” and “bar” represent, the results would be “trumpet loudly” and “stomp.” What these represent are HTML code, modifications to HTML code, and initiates the programming such as generating a list of all the posts you’ve published as an archive list.</p>\n<p>Right now, you aren’t at the stage where you can program shortcodes and add them to WordPress Themes or create WordPress Plugins, so I’m not going to dive into these much deeper. You need to learn how these work and how to use them on your site, and the more you use them, the better feel you will have for what a shortcode can do on your site. </p>\n<p>WordPress.com offers a <a href=\"https://en.support.wordpress.com/category/shortcodes/\" title=\"Support — WordPress.com\">wide range of shortcodes</a> to add functionality to your site. To learn about how to use these, see <a title=\"Shortcodes — Support — WordPress.com\" href=\"http://en.support.wordpress.com/shortcodes/\">Shortcodes — Support</a>. </p>\n<p>Here are some examples of shortcodes to experiment with on WordPress.com.</p>\n<ul>\n<li><a href=\"https://en.support.wordpress.com/videos/youtube/\" title=\"YouTube — Support — WordPress.com\">YouTube Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/audio/\" title=\"Audio — Support — WordPress.com\">Audio Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/soundcloud-audio-player/\">SoundCloud Audio Player Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/gallery/\" title=\"Galleries and Slideshows — Support — WordPress.com\">Galleries and Slideshows Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/instagram/\" title=\"Instagram — Support — WordPress.com\">Instagram Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/archives-shortcode/\" title=\"Create an Archive using the Archives Shortcode — Support — WordPress.com\">Archives Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/blog-subscription-shortcode/\" title=\"Blog Subscription Shortcode — Support — WordPress.com\">Blog Subscription Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/forms/contact-form/\" title=\"Contact Form — Support — WordPress.com\">Contact Form Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/google-maps/\" title=\"Google Maps — Support — WordPress.com\">Google Maps Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/recipes/\" title=\"Recipes — Support — WordPress.com\">Recipes Shortcode</a></li>\n</ul>\n<h4>More Information on WordPress Shortcodes</h4>\n<ul>\n<li><a title=\"Shortcodes — Support — WordPress.com\" href=\"http://en.support.wordpress.com/shortcodes/\">Shortcodes – Support – WordPress.com</a></li>\n<li><a title=\"Shortcodes — Support — WordPress.com\" href=\"http://en.support.wordpress.com/shortcodes/\">List of Shortcodes available for WordPress.com sites</a></li>\n<li><a title=\"Shortcode « WordPress Codex\" href=\"http://codex.wordpress.org/Shortcode\">Shortcode – WordPress Codex</a></li>\n<li><a title=\"Support — WordPress.com\" href=\"http://en.support.wordpress.com/category/shortcodes/\">Shortcodes for WordPress.com</a></li>\n<li><a title=\"Gallery Shortcode « WordPress Codex\" href=\"http://codex.wordpress.org/Gallery_Shortcode\">Gallery Shortcode – WordPress Codex</a></li>\n<li><a href=\"https://www.smashingmagazine.com/2012/05/wordpress-shortcodes-complete-guide/\" title=\"WordPress Shortcodes: A Complete Guide – Smashing Magazine\">WordPress Shortcodes: A Complete Guide – Smashing Magazine</a></li>\n<li><a href=\"http://www.wpbeginner.com/wp-tutorials/how-to-add-a-shortcode-in-wordpress/\" title=\"How to Add A Shortcode in WordPress?\">How to Add A Shortcode in WordPress? – WPBeginner</a></li>\n<li><a href=\"http://www.wpbeginner.com/beginners-guide/7-essential-tips-for-using-shortcodes-in-wordpress/\" title=\"7 Essential Tips for Using Shortcodes in WordPress\">7 Essential Tips for Using Shortcodes in WordPress – WPBeginner</a></li>\n<li><a href=\"https://code.tutsplus.com/articles/getting-started-with-wordpress-shortcodes--wp-21197\" title=\"Getting Started With WordPress Shortcodes\">Getting Started With WordPress Shortcodes – Envatotuts+</a></li>\n</ul>\n<h3>Assignment</h3>\n<p><img />Your assignment in these WordPress School exercises is to experiment with WordPress shortcodes, specifically the ones available on WordPress.com. </p>\n<p>I’ve listed some examples of shortcodes on WordPress.com above, and you may find more in the <a href=\"https://en.support.wordpress.com/category/shortcodes/\" title=\"Support — WordPress.com\">WordPress.com list of Shortcodes</a>.</p>\n<p>Your assignment is to use shortcodes to add features to your site. </p>\n<ul>\n<li>Create a Page called “Site Map” or “Archives” and add an archive list shortcode.</li>\n<li>Add a Google Map to a post or Page using the Google Maps shortcode.</li>\n<li>Add a gallery to a post or Page with the gallery shortcode, testing the various options (parameters) to get the look and feel you like best.</li>\n<li>Add a recipe to a post using the recipe shortcode.</li>\n<li>Find another shortcode with a variety of features to experiment with. See how many ways you can change the look and feel of the content. If you wish, blog about your discoveries with screenshots or examples in the post. Let us know about it in the comments below so we can come inspect your work.</li>\n</ul>\n<p><em>This is a tutorial from <a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/\" title=\"WordPress School « Lorelle on WordPress\">Lorelle’s WordPress School</a>. For more information, and to join this free, year-long, online WordPress School, see:</em></p>\n<ul>\n<li><a href=\"https://lorelle.wordpress.com/2015/01/24/welcome-to-lorelles-wordpress-school/\" title=\"Welcome to Lorelle’s WordPress School « Lorelle on WordPress\">Lorelle’s WordPress School Introduction</a></li>\n<li><a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/\" title=\"WordPress School « Lorelle on WordPress\">Lorelle’s WordPress School Description</a></li>\n<li><a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/tutorials/\" title=\"Tutorials « Lorelle on WordPress\">WordPress School Tutorials List</a></li>\n<li><a href=\"https://plus.google.com/u/0/communities/115251582756616355670\" title=\"WordPress School Google+ Community\">WordPress School Google+ Community</a></li>\n<li><a href=\"https://lorelle.wordpress.com/2015/01/12/wordpress-publishing-checklist/\" title=\"WordPress Publishing Checklist\">WordPress Publishing Checklist</a></li>\n<li><a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/feedback-and-criticism/\" title=\"How to Give Feedback and Criticism - Lorelle\'s WordPress School.\">How to Give Feedback and Criticism</a></li>\n</ul>\n<div class=\"sig\">\n<p><img src=\"https://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /></p>\n<hr /> </div><br />Filed under: <a href=\"https://lorelle.wordpress.com/category/wordpress/\">WordPress</a>, <a href=\"https://lorelle.wordpress.com/category/wordpress/wordpress-school-wordpress/\">WordPress School</a> Tagged: <a href=\"https://lorelle.wordpress.com/tag/learn-wordpress/\">learn wordpress</a>, <a href=\"https://lorelle.wordpress.com/tag/shortcodes/\">shortcodes</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-2/\">wordpress</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-guide/\">wordpress guide</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-help/\">wordpress help</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-news/\">WordPress News</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-school/\">wordpress school</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-shortcodes/\">wordpress shortcodes</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-tips/\">WordPress Tips</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-tutorials/\">wordpress tutorials</a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/14325/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=lorelle.wordpress.com&blog=72&post=14325&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"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, 18 Aug 2017 11:02:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s: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:97:\"WPTavern: New Merlin WP Onboarding Wizard Makes WordPress Theme Installation and Setup Effortless\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74230\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/new-merlin-wp-onboarding-wizard-makes-wordpress-theme-installation-and-setup-effortless\";s: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:5189:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/merlin-wp.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://themebeans.com/\" target=\"_blank\">ThemeBeans</a> founder Rich Tabor released <a href=\"https://richtabor.com/merlin-wp/\" target=\"_blank\">Merlin WP</a> on <a href=\"https://github.com/richtabor/MerlinWP\" target=\"_blank\">GitHub</a> in public beta this week. The project provides a beautiful experience for installing and setting up WordPress themes with all of their plugin dependencies, Customizer settings, widgets, demo content, and more.</p>\n<p>“I was inspired by David Baker’s <a href=\"https://github.com/dtbaker/envato-wp-theme-setup-wizard\" target=\"_blank\">Envato Theme Setup Wizard</a> and was working to add it to my own themes but pivoted after realizing I was just putting a band-aid on the onboarding issues surrounding themes in particular,” Tabor said. “It wasn’t a particularly grand experience and didn’t take care of the essentials the way I was looking for.”</p>\n<p>Tabor said he wanted to make the onboarding experience much friendlier than what WordPress products are typically known for and needed a way to get his customers started on the right foot.</p>\n<p>“Over the years I’ve had countless ‘how do I get this page like your demo’ and ‘where do I even start’ questions — and my themes aren’t even particularly confusing/difficult to use.” Tabor said.</p>\n<p>Ordinarily, users have to hop from screen to screen to install a theme, recommended plugins, and apply Customizer settings. Even an experienced WordPress user often has to refer to documentation to get a theme set up with the right customizations to match the demo. The video below shows an example of Merlin WP in action as it guides a user through setting up <a href=\"https://themebeans.com/themes/york-pro\" target=\"_blank\">York Pro</a>, a fork of one of ThemeBeans’ commercial themes that is included in Merlin WP’s GitHub repo.</p>\n<div class=\"embed-vimeo\"></div>\n<p>Merlin WP makes the process of setting up a theme nearly effortless for users. It also leaves less room for error or confusion.</p>\n<p>Developers can add Merlin WP directly to their theme files. It includes a configuration file that allows for customization of any text string in the wizard. Theme developers add the Merlin class (merlin/merlin.php) and the merlin-config.php file, along with any demo content (included in the demo directory location specified in the merlin-config.php file):</p>\n<ul>\n<li><strong>content.xml</strong> — Exported demo content using the WordPress Exporter</li>\n<li><strong>widgets.wie</strong> — Exported widgets using Widget Importer and Exporter</li>\n<li><strong>customizer.dat</strong> — Exported Customizer settings using Customizer Export/Import</li>\n</ul>\n<p>Merlin WP was also developed to work seamlessly with <a href=\"http://tgmpluginactivation.com/\" target=\"_blank\">TGMPA</a>, a PHP library that many WordPress developers use to require or recommend plugins for their themes and plugins. It will automatically pull the recommended plugins into the wizard.</p>\n<p>Tabor said his targeted distribution channel is commercial themes, though he believes Merlin WP could also be useful for themes hosted on WordPress.org.</p>\n<p>“I’m honestly not sure if it would be allowed,” Tabor said. “I guess that’s where getting more eyes on the project and more input from the Theme Review team comes in handy. I have had a lot of feedback from authors who are eventually considering adding Merlin WP as an ‘up-sell feature’ for their lite offerings currently on .org.”</p>\n<p>Tabor estimates that Merlin WP will be in beta for another two weeks. There are a few issues he wants to resolve before bringing it out of beta. He is testing the wizard in his own products at ThemeBeans, which is what he built it for originally. The shop has more than 40,000 customers and Tabor plans to push the wizard live across his entire theme collection once the last few issues are resolved.</p>\n<p>Merlin WP is GPL-licensed and <a href=\"https://github.com/richtabor/MerlinWP\" target=\"_blank\">available on GitHub</a> for any developer to use in open source projects. Tabor said he is considering creating a pro version but is not currently interested in pursuing an add-on model.</p>\n<p>“I’m considering having an advanced version, with different developer-level capabilities, such as EDD Software Licensing support (where theme users can enter their license key issued from the developer in the onboarding process),” Tabor said.</p>\n<p>Tabor anticipates one of the main benefits for theme shops using Merlin WP will be a decreased support load where questions about initial setup and “how do I do this like the demo” become less common.</p>\n<p>“Customers will have what they’ve purchased right off the bat (instead of installing plugins, installing a child theme, importing content, setting menus, widgets, etc),” Tabor said. “They will likely appreciate the ease-of-use and share that experience with others.”</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 Aug 2017 01:19:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Post Status: Building a healthy remote company, with Tom Willmot — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38655\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/building-healthy-remote-company-tom-willmot-draft-podcast/\";s: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:1876:\"<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, Brian is joined by Tom Willmot, the CEO of Human Made. Human Made recently released <a href=\"https://handbook.hmn.md/\">an employee handbook</a> as an open source document for anyone to use, copy, or learn from. Tom and Brian discuss several elements of the handbook, and how they approach these things at Human Made:</p>\n<ul>\n<li>Employee onboarding</li>\n<li>Remote work processes</li>\n<li>Communication</li>\n<li>Employee feedback and mentorship</li>\n<li>HR policies</li>\n<li>And more!</li>\n</ul>\n<p>This was a fun episode. Human Made has some of the lowest turnover in our industry and it was educational to hear from Tom.</p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/a0dd5349.mp3\">https://audio.simplecast.com/a0dd5349.mp3</a>\n<p><a href=\"https://audio.simplecast.com/a0dd5349.mp3\">Direct Download</a></p>\n<h3>Sponsor: OptinMonster</h3>\n<p><a href=\"http://optinmonster.com\">OptinMonster</a> allows you to convert visitors into subscribers. You can easily create & A/B test beautiful lead capture forms without a developer. Be sure to check out their new <a href=\"http://optinmonster.com/announcing-the-inactivitysensor-activity-logs-and-more/\">Inactivity Sensor</a> technology.</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 Aug 2017 01:19:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s: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:93:\"WPTavern: User Experience Tests Show Gutenberg’s UI Elements Can Benefit From Better Timing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/user-experience-tests-show-gutenbergs-ui-elements-can-benefit-from-better-timing\";s: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:2703:\"<p>Over the past few months, <a href=\"https://wordpress.org/support/plugin/gutenberg/reviews/\">reviews for Gutenberg</a> have trended towards a love/hate relationship without much in between. To figure out why this is, Millie Macdonald and Anna Harrison of Ephox, the company behind TinyMCE, <a href=\"https://go.tinymce.com/blog/gutenberg-editor-success-lies-timing/\">analyzed the feedback</a> and concluded that many of the issues likely stem from timing.</p>\n<p>“In short, the nuances in the micro-interactions and timing of UI elements in Gutenberg are a little out of sync with what the user is doing at a point in time,” Harrison said. “For example, a user typing in a new paragraph is distracted when the decoration of the previous paragraph turns on.”</p>\n<p>A common piece of feedback is that Gutenberg’s UI is clean but also cluttered. Harrison recorded a video of users copying and pasting paragraphs into Gutenberg and Medium.</p>\n<p>In the video, toolbars and UI elements are displayed in Gutenberg during the writing process creating a cluttered look and disrupting the writing flow. In Medium, the formatting toolbar doesn’t display until text is highlighted and the + symbol disappears if it’s not interacted with.</p>\n<p></p>\n<p>Based on user testing, Harrison suggests refining the timing of when visual elements pop up in Gutenberg. “Right now, menus pop up when we are trying to type,” Harrison said. “They ought to pop up when we are trying to do something to words that have already been typed.”</p>\n<p>Harrison <a href=\"https://github.com/WordPress/gutenberg/issues/2279\">presented their findings</a> and suggestions to Gutenberg’s development team. Tammie Lister, design lead for Gutenberg, <a href=\"https://github.com/WordPress/gutenberg/issues/2279#issuecomment-321379994\">agreed</a> that getting micro-transactions right is important. “I see this as the type of refinement post version 0.9/1 can bring,” Lister said.</p>\n<p>“A few things I am slightly obsessed with is having an animation pace, story and consistency to interactions. Just something to throw in when looking at micro-interactions. I’ve also been doing some self thinking about what the ‘feel’ of emotion of Gutenberg should be. The one I keep coming back to is ‘calm’ and ‘supporting’. Just another thing to throw in when looking at these smaller details.”</p>\n<p>Developers thanked Harrison and Macdonald for collecting, analyzing, and sharing data with the team. Does Gutenberg feel heavy to you? Let us know what your experience is like writing content in Gutenberg.</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 Aug 2017 23:06: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:\"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: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:85:\"WPTavern: WordPress Support Team to Host Free Workshop August 23 on Supporting Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74257\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-support-team-to-host-free-workshop-august-23-on-supporting-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3074:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/colored-pencils.jpg?ssl=1\"><img /></a></p>\n<p>Over the past few months the WordPress Support Team has been brainstorming ways to improve support across various aspects of the community. One new idea they are pursuing is <a href=\"https://make.wordpress.org/support/2017/07/the-developers-guide-to-supporting-your-themes-a-support-workshop/\" target=\"_blank\">hosting workshops</a> where WordPress.org theme and plugin authors can present how they approach supporting their free, open source products that have been released to the community.</p>\n<p>Some users approach WordPress.org plugins and themes with realistic expectations regarding the support they might receive on tickets. Others approach these free products as if they were all built with large teams of professional support behind them, which is rarely the case. This often results in frustration, one-star reviews, and ultimately a bad reputation for products hosted in the official directories. It is also one of the primary reasons developers forgo putting products on WordPress.org and simply opt to host them on GitHub.</p>\n<p>The new workshops will offer concrete strategies for bridging the chasm of expectation regarding support that exists between developers and users. WordPress.org theme and plugin authors will share the tools and ideas they have implemented to offer support while creating a positive experience for everyone involved.</p>\n<p><a href=\"https://kpresner.com/\" target=\"_blank\">Kathryn Presner</a>, who supports hundreds of themes at Automattic, will be leading the first workshop titled “The Developers Guide to Supporting Your Themes:”</p>\n<blockquote><p>Providing support for your themes offers tremendous opportunities to educate WordPress users, from explaining how to make a child theme to offering simple CSS customisations. It also presents challenges, like figuring out how to help people who aren’t tech-savvy or need support beyond the scope of what you can provide. While many developers dread doing support, with some concrete strategies and techniques in hand, helping users doesn’t have to be a chore – and can even be fun! This session looks at how to make your themes’ users happy while feeling a sense of satisfaction from your own support efforts – a winning combination in the world of theme development.</p></blockquote>\n<p>WordPress.org theme authors will want to mark their calendars for <a href=\"http://www.timeanddate.com/worldclock/fixedtime.html?iso=20170823T1600\" target=\"_blank\">Wednesday, August 23 at 11 AM CDT</a>. The workshop will be broadcast live as a Zoom teleconference and will last for an hour, including time for a Q&A at the end. Zoom can <a href=\"https://support.zoom.us/hc/en-us/articles/201362023-System-Requirements-for-PC-Mac-and-Linux\" target=\"_blank\">run on desktop</a> and also offers <a href=\"https://zoom.us/download\" target=\"_blank\">apps for mobile devices</a>. The session will be recorded and available on WordPress.tv at a later date.</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 Aug 2017 19:19:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: WPWeekly Episode 285 – Not Every WordPress Is the Same\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74233&preview=true&preview_id=74233\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wpweekly-episode-285-not-every-wordpress-is-the-same\";s: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:2894:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I open the show by discussing our observations of social media lately. Our feeds are filled with anger and for me personally, Twitter is becoming less useful.</p>\n<p>We discussed the news of the week, including a lengthy conversation about Automattic opening up the WordPress.org ecosystem of plugins and themes to Business plan customers. Near the end of the episode, we share the features we’d like to see in a syntax highlighter for the built-in plugin and theme editors.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-foundation-to-sponsor-open-source-educational-events\">WordPress Foundation to Sponsor Open Source Educational Events</a></p>\n<p><a href=\"https://wptavern.com/woocommerce-forks-select2-releases-selectwoo-as-a-drop-in-replacement-with-improved-accessibility\">WooCommerce Forks select2, Releases selectWoo as a Drop-In Replacement with Improved Accessibility</a></p>\n<p><a href=\"https://wptavern.com/gutenberg-0-8-0-introduces-5-new-blocks-categories-text-columns-shortcode-audio-and-video\">Gutenberg 0.8.0 Introduces 5 New Blocks: Categories, Text Columns, Shortcode, Audio, and Video</a></p>\n<p><a href=\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\">WordPress.com’s Business Plan Gives Subscribers a Way to Tap into WordPress.org’s Third-party Ecosystem</a></p>\n<p><a href=\"https://wptavern.com/wordpress-4-9-to-focus-on-code-editing-and-customization-improvements-targeted-for-november-14\">WordPress 4.9 to Focus on Code Editing and Customization Improvements, Targeted for November 14</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://wpisnotwp.com/\">WPisNotWP</a> by Caspar Hübinger, is a tiny progressive web app that outlines the differences between WordPress the open-source project and WordPress.com. Contributions to the app can be made on the <a href=\"https://github.com/glueckpress/wpistnotwp.com\">project’s GitHub page</a>.</p>\n<p>A deep dive into the WordPress user roles and capabilities API by John Blackbourn.</p>\n<div class=\"embed-wrap\"></div>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 23rd 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #285:</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, 16 Aug 2017 23:55: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:\"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: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:90:\"WPTavern: Gravity Forms Stop Entries Plugin Aims to Help Sites Comply with the EU’s GDPR\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74189\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/gravity-forms-stop-entries-plugin-aims-to-help-sites-comply-with-the-eus-gdpr\";s: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:10232:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/steaming-mailbox.png?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/NRB5T25KRG\">AJ Montpetit</a>\n<p><a href=\"https://wordpress.org/plugins/wider-gravity-forms-stop-entries/\" target=\"_blank\">Wider Gravity Forms Stop Entries</a> is a new plugin that helps website owners protect the privacy of form submissions by preventing entries from being stored in the database. The plugin was created by UK-based web developer <a href=\"https://jonnya.net/\" target=\"_blank\">Jonny Allbut</a> for internal use at <a href=\"https://wider.co.uk/\" target=\"_blank\">Wider</a>, a company he set up for handling WordPress clients’ needs.</p>\n<p>One aspect of complying with the EU’s <a href=\"http://www.eugdpr.org/\" target=\"_blank\">General Data Protection Regulation</a> (GDPR) is ensuring that contact forms do not store any personally identifiable data on the server. The regulation becomes enforceable in May 2018 and sites that serve EU citizens are preparing for the deadline with audits and changes to how they handle privacy.</p>\n<p><a href=\"http://www.gravityforms.com/\" target=\"_blank\">Gravity Forms</a> doesn’t offer a built-in option to stop entries from being stored on the server but GF co-founder Carl Hancock says there are a variety of ways to accomplish this.</p>\n<p>“If all you want to do is simply email the contents of the form and not store the data in the database as part of the route you’d like to take for GDPR compliance, this plugin would be one method of doing so,” Hancock said. He also referenced Gravity Wiz’s commercial <a href=\"https://gravitywiz.com/documentation/gravity-forms-disable-entry-creation/\" target=\"_blank\">Disable Entry Creation</a> plugin. Developers can also <a href=\"https://www.gravityhelp.com/documentation/article/delete-entry-data-after-submission/\" target=\"_blank\">delete entry data after submission</a> via a hook.</p>\n<p>“However, the GDPR doesn’t preclude storing form entries in a database and is entirely dependent on the type of data you are storing and the other safeguards and functionality you have put in place,” Hancock said. “It’s a complex issue and I’m not entirely sure the EU fully understands the burden and implications that may come with it.”</p>\n<p>Ultimately, the requirement of compliance falls upon website administrators who are the ones collecting the data. It is their responsibility to select tools that will protect their users’ privacy.</p>\n<p>“While it won’t provide GDPR compliance on its own, Jonny’s extension is a much-needed step in the right direction,” digital law specialist <a href=\"https://webdevlaw.uk\" target=\"_blank\">Heather Burns</a> said. Burns consults with companies that need assistance in getting their sites GDPR compliant. “GDPR requires adherence to the <a href=\"https://www.smashingmagazine.com/2017/07/privacy-by-design-framework/\" target=\"_blank\">principles of privacy by design</a> and part of that is data minimization and deletion.”</p>\n<p>WordPress has dozens of popular contact form plugins, both free and commercial. Many of them store entries in the database in case the recipient’s email has problems, preventing the communication from becoming lost. Site administrators who are concerned about GDPR compliance will want to examine the solution they have selected for forms. Burns advised that contact form plugins need to do the following three things:</p>\n<ul>\n<li>Ensure that personal and sensitive personal data from form entries is not stored in the database;</li>\n<li>Provide configuration options to allow contact form entries to be automatically deleted after a certain period of time;</li>\n<li>Ensure that all contact form data is deleted when the plugin is deactivated or deleted.</li>\n</ul>\n<p>“Unfortunately the direction of travel has been the exact opposite: contact form entries tend to be stored in perpetuity on the database regardless of content or necessity,” Burns said. “Contact form plugins with options to automatically delete form submissions after a certain period of time are rare. I’ve even seen contact form extensions which duplicate entries to a separate table, which, all things considered, is madness. We need to be developing towards data minimization and deletion, not retention and duplication.”</p>\n<p>Last month JJ Jay <a href=\"https://tharshetests.wordpress.com/2017/06/19/wp-contact-form-remnants/\" target=\"_blank\">published</a> an analysis of how and where popular WordPress contact forms plugins store data. This is a useful reference for site administrators who are not sure how their chosen solution handles data collection and storage. She suggested a few questions for users to ask when examining contact forms:</p>\n<ul>\n<li>Can the option to store data be turned on and off?</li>\n<li>At what granularity?</li>\n<li>Can the data be deleted when the plugin is deleted?</li>\n<li>What personally identifiable data, other than the data from each form, is stored? (i.e. <a href=\"https://arstechnica.co.uk/tech-policy/2016/10/eu-dynamic-static-ip-personal-data/\" target=\"_blank\">a user’s IP address</a>)</li>\n<li>Is it possible to delete the submissions on an ad-hoc or scheduled basis?</li>\n</ul>\n<p>If you’re not sure what could be leftover in your database from other plugins, Jay has also created a “<a href=\"https://github.com/tharsheblows/mjj-whats-in-my-database\" target=\"_blank\">What’s in my database?</a>” plugin that administrators can install and access under the Tools menu. It is read-only and lists every table and its columns, so users can see if there are any surprises.</p>\n<h3>British Pregnancy Advice Service (BPAS) Hack Highlights the Danger of Storing Contact Form Entries in the Database</h3>\n<p>In educating website owners about the dangers of storing sensitive personal data, Heather Burns often cites the 2012 British Pregnancy Advice Service (BPAS) hack as one of the worst examples of the consequences of storing contact form entries in databases. The hacker, who was later jailed, stole thousands of records from the charity, which was running on an unknown outdated CMS with weak passwords. The site had not undergone a privacy impact assessment on its personal data collection and storage methods.</p>\n<p>“One of the services BPAS offers is access to abortions,” Burns said. “Many of their service users come over from Ireland, where abortion is banned under nearly all circumstances. The site had a contact form where women could enquire about abortions. BPAS thought that messages were merely passing through the site; no one within the organization had any clue that a copy of each contact form submission was stored on the database. Somewhat inevitably, the site was easily hacked by an anti-abortion activist who downloaded the database. He found himself in possession over 5,000 contact form submissions going back over five years containing women’s names, email addresses, phone numbers, and the fact that they were enquiring about abortions. He then announced his intention to publish the womens’ data on an anti-abortion forum.”</p>\n<p>The hacker was caught and arrested before he had the opportunity to publish the list. He received 32 months of jail time and BPAS was fined £200k for the data protection breaches.</p>\n<p>“As well as criticizing the charity for their technical failures, the regulator called attention to the fact that no one on the staff had thought to ask the proper questions about the tools they were using; they were also angry that the site had a legalistic privacy policy which was clearly not worth the pixels it was printed on,” Burns said. “All of these failures were deemed inadmissible and inexcusable by the data protection regulator. It is no exaggeration to say that women could have been killed because of a contact form.”</p>\n<p>Auditing contact forms is just one piece of the puzzle for those working towards GDPR compliance. Burns recommends that site administrators conduct a privacy impact assessment of personal and sensitive data that is submitted through forms. Privacy notices should also be clear about how this data is handled and how long it is retained before it is deleted.</p>\n<p>The GDPR was written to be extraterritorial and states that the regulations apply to any site or service that has European users. These sites are expected to protect EU users’ data according to European regulations. Many American company owners are not yet convinced that this is enforceable outside of EU borders and have not invested in getting their online entities to be compliant.</p>\n<p>“GDPR provides a very useful framework for user protection, which is now more important than ever,” Burns said. “I’m encouraging Americans to work to GDPR because it’s a constructive accountable framework that’s a hell of a lot better than nothing.”</p>\n<p><a href=\"https://wordpress.org/plugins/wider-gravity-forms-stop-entries/\" target=\"_blank\">Wider Gravity Forms Stop Entries</a> is currently the only plugin in the official WordPress directory that addresses GDPR concerns for a specific contact form plugin. Others may become available as the May 2018 deadline approaches. Jonny Allbut warns users in the FAQ to test the plugin with third-party GF extensions before adding it to a live site, as some extensions may rely on referencing data entries stored in form submissions.</p>\n<p>I asked Carl Hancock if Gravity Forms might make storing form entries in the database an optional feature and he confirmed they are considering it.</p>\n<p>“Yes, this is certainly possible,” Hancock said. “We try to avoid conflicts with available 3rd party add-ons for Gravity Forms to encourage their development,” Hancock said. “But unfortunately it is not always avoidable. It is a feature that has been requested numerous times in the past and I suspect with the GDPR it will be a feature that will be requested even more going forward.”</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 Aug 2017 23:03:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:46:\"Post Status: Free speech, privacy, and the web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=38615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://poststatus.com/free-speech-privacy-and-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7492:\"<p>Politics and the web are intersecting more and more. In recent news, at least three WordPress related companies have been getting broad media attention.</p>\n<p>In just a few days, we’ve seen GoDaddy <a href=\"https://www.vox.com/policy-and-politics/2017/8/14/16143820/godaddy-and-google-wont-host-daily-stormer-domain\">shut down a site</a> for violating terms and conditions, <a href=\"https://www.fastcompany.com/40454089/wordpress-bans-website-of-fascist-group-linked-to-alleged-charlottesville-killer\">as well as</a> Automattic. DreamHost received significant attention for <a href=\"https://www.dreamhost.com/blog/we-fight-for-the-users/\">refusing to release site visitor information</a> to the US Department of Justice.</p>\n<p>I think the most relevant angle for this website is to note that it’s important for web-based services to be prepared for the unexpected news cycles that revolve around web-based properties.</p>\n<p>How well does your PR team know your terms and conditions? What’s your stance on free speech, and when can that cross a line into speech or content that your service is ready to limit? The definitions can be narrow; let’s look at Automattic’s decision to shut down a site called Blood and Soil.</p>\n<p>It’s a despicable site, and it has been for a while. Automattic is aware of the sites that exist on WordPress.com, and this isn’t their first rodeo with objectionable sites receiving lots of backlash from advocacy groups. For instance, the Guccifer 2.0 person or group that hacked the Democratic National Committee was on WordPress.com, and they still are. There are countless others, some hacking related, some simply vile or hate-filled.</p>\n<p>So what makes a site cross the line for a particular service? GoDaddy’s Ben Butler <a href=\"https://www.fastcompany.com/40411086/activists-push-back-against-the-platforms-that-quietly-empower-hate-groups\">described to Fast Company</a> that they draw the line between speech and violence:</p>\n<blockquote><p>GoDaddy’s Ben Butler described to Fast Company that they draw the line between speech and violence:</p>\n<p>“We strongly support the First Amendment and are very much against censorship on the internet,” writes Ben Butler, director of the Digital Crimes Unit for <a href=\"https://www.godaddy.com/\">GoDaddy</a>, in an email. He adds that, “if a site promotes, encourages, or engages in violence against people, we will take action.”</p></blockquote>\n<p>The GoDaddy decision (which Google followed up with as well) was especially interesting because they made the decision as the domain registrar, not a content host. In that case they weren’t actually providing the hosting service.</p>\n<p>Automattic has similar policies. Specifically, they link to <a href=\"https://en.support.wordpress.com/user-guidelines/\">user guidelines</a> within their <a href=\"https://en.wordpress.com/tos/\">ToS</a>, which has a clause for “directly threatening material.”</p>\n<blockquote><p>Do not post direct and realistic threats of violence. That is, you cannot post a genuine call for violence—or death—against an individual person, or groups of persons. This doesn’t mean that we’ll remove all hyperbole or offensive language.</p></blockquote>\n<p>They also have a specific policy (not directly linked from their ToS) for <a href=\"https://en.support.wordpress.com/terrorist-activity/\">terrorist activity</a>, and a provision to allow them to remove content or users for any reason.</p>\n<p>The terrorist in Charlottesville aligned himself with Blood And Soil, prompting Automattic to pull the plug — as the line was crossed.</p>\n<p>DreamHost’s <a href=\"https://www.dreamhost.com/blog/we-fight-for-the-users/\">pushback to the government</a> was about First Amendment concerns as well, primarily with visitors:</p>\n<blockquote><p>The request from the DOJ demands that DreamHost hand over 1.3 <em>million</em> visitor IP addresses — in addition to contact information, email content, and photos of <strong>thousands</strong> of people — in an effort to determine who simply <em>visited</em> the website. (Our customer has also been notified of the pending warrant on the account.)</p>\n<p>That information could be used to identify any individuals who used this site to exercise and express political speech protected under the Constitution’s First Amendment. That should be enough to set alarm bells off in anyone’s mind.</p></blockquote>\n<p>Every host deals with requests that may not require visitor information but definitely do require account information. Automattic’s Paul Sieminski provided a helpful post on the <a href=\"https://transparency.automattic.com/2017/07/25/shining-light-on-national-security-letters/\">types of requests they get</a>, and how they handle them.</p>\n<p>The US has broad protections built into the First Amendment covering free speech. Platforms are not required to meet those protections; however, many are strident supporters of the First Amendment. Those protections are often for some of the most unpopular types of content. The Supreme Court has ruled there’s <a href=\"https://www.bostonglobe.com/opinion/2017/08/14/there-hate-speech-exception-first-amendment/q9m4IqfQvbo24nnlnPor1O/story.html\">no hate speech exception in the First Amendment</a>, and this ruling has been cited recently in a trademark case.</p>\n<p>I think the author of the above-cited op-ed makes a good point:</p>\n<blockquote><p>We can and should speak up against hate. As the Supreme Court makes clear, there’s no hate speech exception to the First Amendment. With that freedom comes a heavy burden for government officials like Baker and Walsh, who must try to keep protected speech from turning into acts of violence.</p></blockquote>\n<p>The burden is also heavy for platforms who are dedicated to providing a place for unpopular opinions. There are many times when the unpopular opinion, or anti-government opinion, is incredibly important to protect. But when speech stems over into violence, then I believe platforms have not only a right, but also a responsibility to take a stand.</p>\n<p>It’s important for organizations to be educated about and consistent with their own terms of service, company-wide. I’m afraid these hard questions about speech, rights, and responsibility will be pretty common for a while to come. And as fast as information spreads — for instance, the calls for GoDaddy to shut down a hate site this week came in a fury, part of a quickly viral Twitter post — acting quickly and consistently will be incredibly important.</p>\n<p>I’ve talked about platforms and services with some control over their user base. The obvious other side of this is that there is a whole segment of our community with no control over their users. Your theme, plugin, and WordPress itself can be used without permission by absolutely anyone, and of course that’s by design. WordPress or a WordPress-related product could be identified and criticized virally for enabling objectionable users and content</p>\n<p>As a community, are we prepared to respond to that?</p>\n<p>PS: If you’re a journalist writing about WordPress.com and issues like these, please understand the difference between WordPress.com, owned by Automattic, and WordPress the software. <a href=\"https://poststatus.com/resources/wordpress-versus-automattic/\">I wrote a handy guide for you</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 Aug 2017 18:38: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: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: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:41:\"HeroPress: The Greatest Screenplay Writer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=2033\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://heropress.com/essays/greatest-screenplay-writer/#utm_source=rss&utm_medium=rss&utm_campaign=greatest-screenplay-writer\";s: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:14463:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/081617-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress is not like any other open source communityI saw before.\" /><p>My upbringing was not quite usual Serbian upbringing. I was almost forbidden to do things I didn’t really love. My parents insisted on trying things and finding that deep passion. But I didn’t have to search and try. I always knew what I’d be when I grow up. As long as I remember, there was no doubt.</p>\n<h3>A classical musician</h3>\n<p>When I was 8 my mom took me to local music school for entrance examination. I was in! Oh, joy! Finally I was learning to play and sing, to read and write this new language. Italian. Oh, music scores too! There was a whole new world that my parents, or anyone in my family, didn’t know anything about and I was stepping into it. I was doing just fine in it.. and I couldn’t live outside of it.</p>\n<p>As time passed, I finished elementary and high music school, went to music Academy, almost finished it and then my mother died. It was 2003. Two weeks later I found out I was pregnant. There was no time for grief and I couldn’t feel the joy. I just switched off and turned to the facts: I became a mom and a wife and I needed a job.</p>\n<p>And what a job did I found. An opera prompter. Opera Prompter! God, I love that job. Every second of it for ten years. I was yelling at singers, singing, conducting, traveling, laughing and crying. My Italian was significantly improved. Working time was great – so much free time to be a mom, study for Academy, get a hobby…</p>\n<h3>Opera prompter’s hobby</h3>\n<p>In 2007 I was administrator in one English speaking forum with focus on software and hardware topics. It helped me to significantly improve my English. And my tech knowledge. Which was close to none when I registered. As one of administrators, occasionally I had to tweak site here and there. It was great! There was this code and when I would change something in code it would show on the site. Neat! I loved reading those files, finding patterns and parts written in humanly understandable forms. Later I learned those were called loops and conditionals. Also later I learned that this language is called PHP and that many other languages for building websites exist. Forum script was phpBB3.</p>\n<p>I was never a gamer. Never understood the point of game, besides finishing it. I guess PHP was to me what games are to passionate gamers. Like a puzzle or sudoku.</p>\n<p>At the same time my marriage was turning from bad into worse and in the beginning of 2008 I finally decided it was enough. We were working on Mozart’s “Don Giovanni” in Theater. I remember this so clearly because my divorce was just turning from bad into worse. Those few months lasted for centuries after which I still needed a lot of time to recover what’s left of my self-esteem. My complete mental and emotional health was destroyed after years of domestic violence.</p>\n<p>2009 was important year for me. The cognition of possibility to have local server on my own machine and test everything before executing it on live site turned out to be very helpful.</p>\n<p>In October I needed a blog script and friend recommended WordPress. It was 2.9 version. It didn’t really work well but everyone was writing about it. There were at least 5 new tutorials on various blogs every day. I was digesting them every morning with my first coffee. The ones I really liked I even reproduced in my shiny new localhost. Soon enough I developed a local monster with different widgets on each page, future posts archive, post series done with custom fields and God knows whatnot. This WordPress was slowly taking over my free time. Every second of it.</p>\n<h3>So, the WordPress it is</h3>\n<p>One day a friend of mine asked me to build him a website for his ensemble. And for money. Money? I never thought of getting money for this. This was too good of a hobby. But he’s a friend so I did it. Then another friend showed up with the same request. And another.. I became freelance WordPress developer before I could even understand what was happening. It wasn’t really a favor to friends any more. I was a single mom with mortgage. My daughter was in primary school, life costs became serious while the art-and-culture salary was silently and regularly reduced.</p>\n<blockquote><p>I was freelancing every single minute I could. Sleeping was luxury I could afford on weekends.</p></blockquote>\n<p>My dad was helping me tremendously. He was babysitting during theater’s rehearsals and performances in the evenings. When I’d get home, my daughter was sleeping, tomorrow’s meals cooked, dishes done and shining. I could go on like this but it was uncertain for how long.</p>\n<p>In the summer of 2013 I was recovering from what was supposed to be routine gallbladder surgery and what nearly cost me life. Almost fully operational, I was getting ready for next roller coaster known as a mix of school year, freelancing and theater’s season. Then my father died. Suddenly. In an accident.</p>\n<p>Oh, this screaming silence..</p>\n<p>I couldn’t think. Or breathe. For months. I needed someone to put the roller coaster on pause. Just.. Just a short one. To take a breathe. But there was no one. I was all alone with a 9 years old child who had to grow up fast. I had to grow up fast.</p>\n<blockquote><p>All of a sudden I realized that I can not afford a single mistake any more. I can not be ill, get in debts, lose job. Or mind. I was the only one I could count on.</p></blockquote>\n<p>In 2014 my theater salary got reduced once again. And again in following year. 30% in total. For ten years it never covered all of my monthly expenses but this was ridiculous. It was a time for me to stop playing it safe and see what I’m made of. That was probably the most difficult decision I have ever made. A heart breaking one. Stop being musician. So I quit being Opera Prompter and started working as a full time WordPress developer.</p>\n<h3>Well, hello, World!</h3>\n<p>I didn’t really know for which wage level my knowledge was. For years I was the only WordPress developer I knew in person. The rest were all online superstars I was learning from. So I started as a shy medior and the only WordPress developer in agency. It turns out that, for this agency needs, I was senior and soon enough I was organizing and leading development processes for new projects.</p>\n<p>From the business point of view repeating similar projects makes you “niche expert”. I do understand that. But, as many other developers out there, I don’t like repeating the same tasks or projects. Not even once. I missed variety which led me to become more active contributor on wordpress.org.</p>\n<blockquote><p>For years I was just contributing to codex here and there and never really thought about all the people behind WordPress.</p></blockquote>\n<p>In my vague image, they were a bunch of really great developers and they were doing just fine. I was learning from them so I could not possibly help them. I would just be on their way.</p>\n<p>However, in my attempt to find something interesting to keep my mind amused with, I came upon <a href=\"https://make.wordpress.org/chat/\">Slack url</a> for communication between contributors on WordPress project. What a crowd! And not just developers – everyone! Doing all kinds of different bits, and all important. How odd. WordPress is not like any other open source community I saw before. So much more open and inviting! I remember reading through channels and thinking: “I could do this”, “Oh, I’d love to learn that”, “This person is funny”.. I’m gonna stick.</p>\n<h3>Antisocial extrovert in a more open open source community</h3>\n<p>No matter how I tried, and I did try, I’m just not a people person. Among other antisocial treats, over the years I have developed a heavy dark humor which, more often than not, due to lack of social interactions I reveal in a completely wrong way. But these people seem not to mind so I thought to give it a try with them. Don’t get me wrong, <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/code-of-conduct/\">Code of Conduct</a> is extremely important in WordPress community. No community wants bullies. But rare communities accept social weirdos and misfits. And this one doesn’t just accept them, it makes them feel like fits. That was a nice change.</p>\n<p>I started attending local <a href=\"https://www.meetup.com/WP-Meetup-NS/\">Meetups</a>, even gave <a href=\"https://www.meetup.com/WP-Meetup-NS/events/235186967/\">a talk</a> on contributing to <a href=\"https://make.wordpress.org/themes/handbook/get-involved/become-a-reviewer/\">Theme Review team</a> after which I was invited to join <a href=\"https://www.toptal.com/\">Toptal platform</a> as a freelance developer. My social adventure got me volunteering on <a href=\"https://2017.belgrade.wordcamp.org/\">WordCamp Belgrade</a> and <a href=\"https://2017.europe.wordcamp.org/\">WordCamp Europe in Paris</a>. I must admit there were “too many people at the same time” moments but there were lots of ways to stay involved with controlled dose of human interactions. I chose volunteering at Experts bar and it worked out just great. I really loved all the hugs though.</p>\n<p>Today I try to keep my focus on just a few channels in make WordPress slack and my contribution wish list regularly updated. One can have only so many hours in a day. Most often you’ll find me in <a href=\"https://wordpress.slack.com/?redir=%2Fmessages%2Fdocs\">#docs</a> and <a href=\"https://wordpress.slack.com/?redir=%2Fmessages%2Fcore-docs\">#core-docs</a> channels, doing various stuff with <a href=\"https://make.wordpress.org/docs/handbook/about-the-docs-team/get-involved/\">Documentation</a> team.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/milana-cap_wcbgd.jpg\"><img class=\"alignnone wp-image-2036 size-large\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/milana-cap_wcbgd-1024x683.jpg\" alt=\"Milana, on a rooftop baclony with some other people looking at her phone\" width=\"960\" height=\"640\" /></a></p>\n<h3>The Questions</h3>\n<p>Among all the questions I get about my professional path, the most commons are “<strong>How come you made such a huge change from music to web development?</strong>“, “<strong>Did you go to school to become a developer</strong>?” and “<strong>Do you miss being musician?</strong>“. Answer to the first question is quite easy:</p>\n<p>“Being musician and writing code are pretty much the same. They both require the same parts of your mental struggle and make you go through the same emotional tortures and enlightenments.”</p>\n<p>The second question, however, is a bit more difficult to answer. In the light of the first answer, I could say that I was exposed to the required way of thinking. Practicing an instrument 6 hours per day for over a decade does teach you a couple of things about commitment. World of classical music is a world of magnificent talents and varieties which touches you all the way to the humble self where you find appreciation for being able to feel this way. Personally, I believe this is extremely important for developer – to be humble and grateful to person who helped them find this humbleness.</p>\n<p>No, I don’t have a formal developer’s education. It doesn’t seem to prevent me from being developer. And no, I don’t miss being musician. Because I never stopped being one. I listen to classical music while I code and play piano when I have a difficult programming problem to solve. Feels so natural.</p>\n<p>I’d like to say that everything turned out pretty good at the end but, as my father used to say: “Life is the greatest screenplay writer” and my life seems to be the witty one too. In expectation of future turns I’d recommend <a href=\"https://www.youtube.com/watch?v=-4788Tmz9Zo&t=884s\">Beethoven’s Symphony No.7, II movement</a>, some very loud laughs and lots of WordPress loops.</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: The Greatest Screenplay Writer\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=The%20Greatest%20Screenplay%20Writer&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fgreatest-screenplay-writer%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: The Greatest Screenplay Writer\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fgreatest-screenplay-writer%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%2Fgreatest-screenplay-writer%2F&title=The+Greatest+Screenplay+Writer\" rel=\"nofollow\" target=\"_blank\" title=\"Share: The Greatest Screenplay Writer\"></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/greatest-screenplay-writer/&media=https://heropress.com/wp-content/uploads/2017/08/081617-150x150.jpg&description=The Greatest Screenplay Writer\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: The Greatest Screenplay Writer\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/greatest-screenplay-writer/\" title=\"The Greatest Screenplay Writer\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/greatest-screenplay-writer/\">The Greatest Screenplay Writer</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, 16 Aug 2017 12:00: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:10:\"Milana Cap\";s: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:67:\"WPTavern: WordPress Mobile Apps Updated with a New Login Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74197\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-mobile-apps-updated-with-a-new-login-experience\";s: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:4732:\"<p>The WordPress mobile apps are sporting <a href=\"https://en.blog.wordpress.com/2017/08/15/an-updated-login-coming-to-the-wordpress-mobile-apps/\" target=\"_blank\">a new login experience</a> that Automattic’s mobile designers and developers released in the latest versions. The login flow has been completely redesigned to provide a more unified experience for connecting both self-hosted and WordPress.com-hosted sites. These flows were completely separate in the past and users were often confused about which one to select. The new design provides fewer opportunities for friction when logging in, an experience that likely determines many users’ first impressions of the app.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/self-hosted-login-wp-mobile-apps.png?ssl=1\"><img /></a>Self-hosted login on mobile apps\n<p>“As we reimagined the login experience, there were a few key principles guiding us: keep it simple, minimize the distinction between a site hosted at WordPress.com versus somewhere else, and avoid anything that might be too clever,” Automattic mobile lead Eric Johnson said.</p>\n<p>Users can now connect new sites by entering the URL and the mobile apps will automatically detect if the site is hosted on WordPress.com or not. The new login flow ferries users on to the next step based on what kind of site is being connected. This is available in version 8.0 of WordPress for Android and version 8.2 of WordPress for iOS.</p>\n<p>The new login experience emphasizes the ease of using magic links for logging into WordPress.com. If the user enters and email address, the app will generate an authentication link and send it via email. This allows users to login without having to remember or enter a password.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/new-login-experience-wp-mobile-apps.png?ssl=1\"><img /></a></p>\n<p>If a user is entering the world of WordPress for the first time through the mobile apps, the new login experience also offers a short tour of the some of the features included in the app. These include WordPress.com features such as notifications, Stats, and the Reader. The apps, despite being marketed as the official WordPress mobile apps, are a product of Automattic and include a commercial upgrade path for WordPress.com services.</p>\n<p>The idea of the apps functioning as a gateway to help the greater WordPress ecosystem gain more users (and eventually see some graduate to self-hosted sites), no longer seems credible now that WordPress.com has <a href=\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\" target=\"_blank\">entered the hosting space by allowing its customers to tap into third-party plugins and themes</a>.</p>\n<p>The updated login experience, while more convenient for users, continues to blur the line between self-hosted and WordPress.com-hosted sites. WordPress for Android and iOS used to have their own separate blogs but all of the news is now funneled through WordPress.com’s news blog and the @WordPressiOS and @WPAndroid Twitter accounts seemed to have been abandoned in favor of marketing updates through WordPress.com.</p>\n<p>In the past, many in the WordPress community have asked why the apps are not called the WordPress.com mobile apps, since they include features that are not central to the core publishing experience for self-hosted users. Last year when I <a href=\"https://wptavern.com/wordpress-for-android-5-7-adds-path-to-upgrade-wordpress-com-plan\" target=\"_blank\">interviewed</a> Maxime Biais, one of Automattic’s mobile engineers, he said the team had considered splitting the product into two apps.</p>\n<p>“We considered having both WordPress and WordPress.com apps, but we rejected this because it doesn’t make it more clear,” Bias said. “It’s probably even more ambiguous when someone searches the Play Store for ‘WordPress’ or ‘Blog’ and finds both WordPress and WordPress.com apps.”</p>\n<p>Now that that mobile apps have become a direct pipeline for new WordPress.com hosting customers, it may be time to re-visit the consideration of splitting the apps into two distinct products: one for WordPress.com’s commercial interests and one that officially represents the open source WordPress project for self-hosted users without any corporate interests. If the project’s official mobile apps are a key part of new users’ onboarding experience, they should accurately represent the software as an independent platform that can be hosted with and extended by any number of free and commercial products in the WordPress ecosystem.</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 Aug 2017 06:33: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: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:59:\"WPTavern: WordCamp US to Experiment With A Community Bazaar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74138\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/wordcamp-us-to-experiment-with-a-community-bazaar\";s: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:2237:\"<p>In addition to taking place in a new location this year, <a href=\"https://2017.us.wordcamp.org/\">WordCamp US</a> will have a <a href=\"https://2017.us.wordcamp.org/attendee-information/community-bazaar/\">Community Bazaar</a>. An area will be set aside in the venue allowing those chosen to showcase their WordPress communities. Raquel Landefeld, Randy Hicks, and Dustin Meza are organizing the Bazaar.</p>\n<p>Landefeld says the idea was inspired by the people who make up the WordPress Community. “We recognize that some local WordPress communities are thriving and some are just getting started,” she said.</p>\n<p>“What better way to help build community then by showcasing our local communities to the world. The thought is that smaller, newer, and communities just in their infancy, will be inspired with fresh ideas and or how-tos from the bigger and more established WordPress communities.”</p>\n<p>The idea is similar to that of a science fair where each community chosen will have a space to highlight why theirs is awesome.</p>\n<p>The purpose of the event is to inspire growth while providing an opportunity for communities to learn from each other. There will also be metrics shared such as, number of meetup and WordCamp attendees, meetups per month, and unique qualities pertaining to the local groups.</p>\n<p>The organizing team is looking for the inside scoop on local communities. “This is all about you and your local WordPress community,” Landefeld said.</p>\n<p>“This is your time to shine. Why is your community different, special, or amazing? Be showy! Forget modesty. Let your community’s awesomeness be a tool to inspire other WP communities just getting started or striving.”</p>\n<p>Last year saw record growth for WordPress community events. In 2016, more than 62,566 people attended a local meetup in 58 countries and about one-third of those were new members. A total of 115 WordCamps were hosted in 41 different countries.</p>\n<p>Those interested in participating in the Bazaar are encouraged to fill out the following <a href=\"https://2017.us.wordcamp.org/attendee-information/community-bazaar/\">submission form</a> and provide as many details as possible.</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 Aug 2017 00:45:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:77:\"WPTavern: maekit Acquires WP Remote, Plans to Add Cloud-Based Backup Services\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/maekit-acquires-wp-remote-plans-to-add-cloud-based-backup-services\";s: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:3661:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/maekit-wpremote.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://maek.it/\" target=\"_blank\">maekit</a>, a cloud-based platform that handles the business aspect of web design, has <a href=\"https://hmn.md/2017/08/10/wp-remote-finds-home-maekit/\" target=\"_blank\">acquired WP Remote from Human Made</a>. Two years after Human Made began searching for a buyer, maekit purchased WP Remote to integrate it with the company’s existing platform that caters to designers managing multiple clients.</p>\n<p>“WP Remote had remained a much-loved product with its users and despite receiving no ongoing development it had remained an iconic plugin in the WordPress community,” Human Made CEO Tom Willmot said.</p>\n<p>maekit took over WP Remote operations in March after closing the deal. According to maekit CEO Matt Holme, the company inherited 20,000 users with 120,000 WordPress websites. His team has maintained WP Remote in its original platform for the past few months before integrating it into maekit last week.</p>\n<p><a href=\"https://wpremote.com/\" target=\"_blank\">WP Remote</a> has offered unlimited, free WordPress site management (updating core, plugins, and themes with a single click) since 2010. It hasn’t received ongoing development for several years, but maekit plans to add backup features that will make bring it more up to speed with competitors like MangeWP, MainWP, and InfiniteWP.</p>\n<p>“We definitely plan to keep WP Remote free and expand its features,” Holme said. “Specifically we are looking at offering easy-to-manage cloud-based backup services. For example, hook up your Dropbox (or any other popular cloud based storage system) and schedule regular backups of your WP websites.”</p>\n<p>maekit’s acquisition of WP Remote gives the company’s customers the ability to deploy WordPress sites with one click and manage client sites and domains through a unified, white-labeled invoicing and payment system. The company has rolled out a few long-overdue bug fixes to WP Remote and Holme says the rest of maekit is functional but still technically in a closed beta mode.</p>\n<p>“Our revenue model revolves around direct sale hosting plans and also reselling integrated hosting plans for other leading global hosting providers,” Holme said. “We are refining the free invoicing and payment processing system built into maekit so that a maekit / WP Remote user can deploy a new hosted WP and charge their client a recurring monthly fee and retain the mark up they add on top of our base hosting prices as profit. This means literally no out of pocket expense for maekit / WP Remote users.”</p>\n<p>Although maekit’s one-click deployment service supports many popular CMS’s and e-commmerce platforms, including WordPress, Opencart, Drupal, Magento, and Joomla, Holme said the vast majority of the company’s customers are running on WordPress. Acquiring WP Remote brings a host of valuable new features to maekit’s customer base. maekit’s built-in client billing features, customized for freelancers and agencies, are what Holme says will differentiate the company from its competitors in the WordPress space.</p>\n<p>“I have a great deal of respect for these other WP management platforms and feel the size of the WP market means there is opportunity for all to succeed,” Holme said. “With the features of maekit also including new website deployment, invoicing, payment processing and client management, our platform is unique from the others.”</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 Aug 2017 03:50: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: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:104:\"WPTavern: Gutenberg 0.8.0 Introduces 5 New Blocks: Categories, Text Columns, Shortcode, Audio, and Video\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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-0-8-0-introduces-5-new-blocks-categories-text-columns-shortcode-audio-and-video\";s: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:5712:\"<p>Gutenberg <a href=\"https://make.wordpress.org/core/2017/08/11/whats-new-in-gutenberg-11th-august/\" target=\"_blank\">0.8.0</a> was released over the weekend with five new blocks, major improvements to existing blocks, and support for more publishing features that have been missing from the new editor’s sidebar. The release also carries out the controversial decision to <a href=\"https://wptavern.com/user-tracking-to-be-removed-from-gutenberg-in-upcoming-0-8-0-release\" target=\"_blank\">remove the opt-in usage tracking code from the plugin</a>.</p>\n<p>The new <a href=\"https://github.com/WordPress/gutenberg/pull/2102\" target=\"_blank\">Categories block</a> can be found under the Widgets section, as it’s output is based on the existing categories widget. The default display is an alphabetized list of categories, but the block settings include options to display as a dropdown, show post counts, and show hierarchy.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/categories-block.png?ssl=1\"><img /></a></p>\n<p>A new Text Columns block allows users to split text content into multiple columns. The settings include a sliding scale for selecting 2-4 columns.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/text-columns-block-e1502741151590.png?ssl=1\"><img /></a></p>\n<p>Contributors are calling the Text Block “an initial exploration” of multiple columns for text-only content. Depending on testing, it may not be the implementation that ends up landing in the plugin permanently.</p>\n<p>“We’ve been over how difficult it is to get columns right, and also how already today third parties can build this,” Joen Asmussen <a href=\"https://github.com/WordPress/gutenberg/pull/2117#issuecomment-319347010\" target=\"_blank\">said</a>. “We may very well want an entirely different implementation than this one. But perhaps it’s good to get this in now and test it. Perhaps this can help inform how a better column implementation can work down the road. In fact we might want to merge this block in now, only to take it back out later again, same as the Cover Text block. For that reason, I think it’d be good to test this.”</p>\n<p>The new Video and Audio blocks are geared towards inserting files that have already been uploaded to the media library. However, I found the text on the video block to be confusing. If I was new to WordPress and didn’t understand how oEmbed works, I would be clicking inside the video block to figure out where to paste the URL.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/video-block.png?ssl=1\"><img /></a></p>\n<p>The new Audio and Video blocks mirror the same kind of functionality that users have experienced when adding images to their sites. In the future, contributors may introduce more features to the audio block, such as additional playback types and looping, but the first iteration includes just the basics.</p>\n<p>Gutenberg 0.8.0 adds resizing handlers to the existing Image Block, making it easy for users to insert and quickly resize an image. If you review the <a href=\"https://github.com/WordPress/gutenberg/pull/2213\" target=\"_blank\">GitHub ticket</a> for this feature, it’s clear that it was not easy to implement. Image resizing has gone through several changes and may have more down the road, especially as it pertains to the behavior of the caption. Ultimately, the caption field should not be wider than the image so that the two are placed together.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/image-resizing-gutenberg.png?ssl=1\"><img /></a></p>\n<p>This release introduces a post formats selector to the post settings sidebar. It includes a suggestion based on what blocks are in use in the post. One participant on the ticket noted that the suggestion gives too much importance to the post formats selection and might be confusing to users. The suggestion persists, despite a user switching the format to the one suggested. This is because Gutenberg cannot detect if it was explicitly set by the user or if the user selected the suggestion.</p>\n<p>“I happen to agree with you: post formats should go away,” Joen Asmussen <a href=\"https://github.com/WordPress/gutenberg/pull/2307#issuecomment-321232074\" target=\"_blank\">said</a>. “In fact part of the genesis of blocks as a concept is to provide a better interface than what post formats did. So the post format selector here is strictly a back-compat thing.”</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/post-format-selector.png?ssl=1\"><img /></a></p>\n<p>Gutenberg contributors have also <a href=\"https://github.com/WordPress/gutenberg/pull/2288\" target=\"_blank\">updated</a> the <a href=\"https://github.com/WordPress/gutenberg/blob/master/docs/design.md\" target=\"_blank\">design document</a> for the project, offering more clarity on their goals and concepts they are using to build the editor:</p>\n<blockquote><p>Ultimately, the vision for Gutenberg is to make it much easier to author rich content. Through ensuring good defaults, wrapping and bundling advanced layout options blocks, and making the most important actions immediately available, authoring content with WordPress should be accessible to anyone.</p></blockquote>\n<p>The idea is to simplify content creation for users so that they only have to learn one interface – the block interface. The design document adds several new sections that elaborate on the concept of “everything is a block” and includes best practices that developers can reference when designing their own blocks.</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 Aug 2017 22:18:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:115:\"WPTavern: Early Results from NRKbeta’s Comment Quiz Plugin Show Readers Enjoy the Quiz but Rarely Leave a Comment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74105\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/early-results-from-nrkbetas-comment-quiz-plugin-show-readers-enjoy-the-quiz-but-rarely-leave-a-comment\";s: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:3492:\"<p>Earlier this year, <a href=\"https://nrkbeta.no/\" target=\"_blank\">NRKbeta</a>, the Norwegian Broadcasting Corporation’s media and technology site, <a href=\"https://wptavern.com/nrkbeta-open-sources-comment-quiz-plugin-for-wordpress\" target=\"_blank\">open sourced its comment quiz plugin for WordPress</a>. The site’s publishers have been experimenting with requiring their readers to complete a short, three-question quiz before giving access to the comment form on certain articles. The goal of the plugin was to prevent rants and off-topic responses by ensuring that commenters have read the article.</p>\n<p>NRKbeta has <a href=\"https://nrkbeta.no/2017/08/10/with-a-quiz-to-comment-readers-test-their-article-comprehension/\" target=\"_blank\">published some preliminary results</a> after six months of experimenting with a mandatory quiz before commenting.</p>\n<p>“On average, there are a lot more attempts – both correct and wrong – than actual comments,” NRKbeta journalist Ståle Grut said. “It seems many take the quiz to check how much they remember from the story – and not necessarily to leave a comment. Almost as a fun little game after reading.”</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/nkrbeta-comments.jpg?ssl=1\"><img /></a></p>\n<p>Grut reported that on average the quiz has an error rate of 72%. His team suspects that the bulk of the wrong answers are coming site’s international readership, as most of the articles are posted in Norwegian, which can be difficult to translate.</p>\n<p>The sample is still relatively small, because the team hasn’t yet created any set rules for when authors should enable the quiz.</p>\n<p>“The idea was to test it on stories that had potential for a gloomy comments section,” Grut said. “It is something we are proud to rarely have here at NRKbeta.”</p>\n<p>On one story, NRKbeta staff made an error where it was impossible to submit the correct answer to the quiz, because it wasn’t listed. As a result, this article’s quiz received more than 1,000 wrong answers.</p>\n<p>One unexpected benefit of the plugin is that it makes it more of a hurdle for readers to leave short comments, such as “nice post” that don’t add much to the conversation.</p>\n<p>“This favors the most eager with the most time on their hands,” Grut said. “From time to time this has led to a decline in quality and tone, causing him to often abandon the quiz module.”</p>\n<p>These initial conclusions are in line with what we predicted when the plugin was released: the most motivated ranters are not significantly inconvenienced by a short quiz. Keeping comment sections free of trolls is not yet something that is easy to automate. It still requires time spent in the moderation queue.</p>\n<p>After the comment quiz plugin was enabled on the site, NRKbeta counted more than 300 articles around the web that had been published about the experiment. Quizzing commenters was hailed as one of the best new ideas for warding off trolls. However, the NRKbeta team cannot yet conclude whether the plugin is a success or not.</p>\n<p>“The numbers seem to show that the quiz has worked like a little game for many readers,” Grut said. “They like to take the quiz, but not to leave a comment. Being tested on how much they remember from the article seems to be the most popular use of our quiz.”</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 Aug 2017 02:54:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:44:\"WPTavern: In Case You Missed It – Issue 23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=74121&preview=true&preview_id=74121\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6478:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1\" rel=\"attachment wp-att-50955\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>Using WordPress to Publish Law Reviews</h2>\n<p>Kevin O’Keefe of Above the Law, <a href=\"http://abovethelaw.com/2017/08/kim-jong-un-has-much-to-teach-pentagon-about-speed-gen-hyten/\">explains why</a> WordPress should be used to publish law reviews instead of printing them.</p>\n<blockquote><p>Ten years ago it would not have been as easy to set up, or license, a WordPress publishing platform by each law school. Most law professors were, and still are, publishing blogs on <a href=\"http://www.typepad.com/\">TypePad</a>, an outdated and little used publishing software, originally produced by Six Apart.</p>\n<p>Today, WordPress is running almost 70 percent of the content management systems in the world. WordPress is regularly updated and enables a multi-user platform with multiple individual sites, all of which would be needed by a law school’s ‘printing press’.</p></blockquote>\n<h2>Glutenberg Free</h2>\n<p><a href=\"https://wordpress.org/plugins/glutenburg-free/\">Gluternberg Free</a> is a WordPress plugin developed by Adam Silverstein that restores and maintains the post editing experience from WordPress 4.8.</p>\n<h2>Open Source Candy Bar Labels for WordCamps</h2>\n<p>If you’re organizing a WordCamp and want to give out Happiness bars, check out this <a href=\"https://github.com/dimensionmedia/WordCamp-Happiness-Bars\">custom label design</a> used at WordCamp Miami 2016. The assets are open sourced and available for free for other WordCamp organizers to use.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">WordCamps: have “Happiness Bars” for your next event. <a href=\"https://twitter.com/hashtag/wcmia?src=hash\">#wcmia</a> open-sourced the wrappers: <a href=\"https://t.co/LvtG3JlhAw\">https://t.co/LvtG3JlhAw</a> <a href=\"https://t.co/hailcQCsXg\">pic.twitter.com/hailcQCsXg</a></p>\n<p>— David Bisset (@dimensionmedia) <a href=\"https://twitter.com/dimensionmedia/status/896060900410445825\">August 11, 2017</a></p></blockquote>\n<p></p>\n<h2>Instead of Threading Tweets, Consider Blogging Instead</h2>\n<p>Amanda Rush <a href=\"https://www.customerservant.com/next-time-youre-thinking-threading-twitter-write-blog-post-instead/\">explains</a> the drawbacks of threading messages on Twitter and why blogging is a better option. Blog posts are easier to archive and link to, are not lost in the noise as quickly, and are a better user experience for consuming content.</p>\n<p>By the way, if you’ve already threaded a message on Twitter, Rush shares links to tools that can help capture a thread and turn it into a blog post.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://www.customerservant.com/next-time-youre-thinking-threading-twitter-write-blog-post-instead/\">The Next Time You’re Thinking About Threading On Twitter, Write A Blog Post Instead</a></p></blockquote>\n<p></p>\n<h2>The Story of HelloSales</h2>\n<p>iThemes published a <a href=\"https://ithemes.com/2017/08/10/story-of-our-newest-ithemes-product-hellosales/\">detailed article</a> on how their newest product, <a href=\"https://ithemes.com/hellosales\">HelloSales</a>, came to be. Cory Miller explains the product’s logo, name, and who the people are that are building it.</p>\n<blockquote><p>The rooster is essentially the symbol or emblem of Portugal. You’ll see it everywhere there when you go there (and I strongly encourage you to do so, even if I want to keep the place all to myself).</p>\n<p>It became obvious we wanted to include a rooster in the logo of HelloSales as a hat tip to Portugal and our team there. We also think it’s a great symbol for what we hope to help our customers do — make more money through their WooCommerce stores.</p>\n<p>Through several iterations of a name, we landed on HelloSales as a name, as yet another hat tip to the story — their company’s name, HelloDev — that led us here.</p></blockquote>\n<p>It’s a cool story and one I’d like to see more CEO and founders share when they acquire a product or business.</p>\n<h2>WordPress Telemetry Part Two</h2>\n<p>Morten Rand-Hendriksen <a href=\"https://www.linkedin.com/pulse/case-telemetry-wordpress-morten-rand-hendriksen\">updated his article</a> on the case for WordPress telemetry after a <a href=\"https://twitter.com/mor10/status/895299336375902209\">lengthy conversation</a> on Twitter.</p>\n<blockquote><p>What WordPress needs is an open debate on this topic. What are the arguments for and against? What can be gained and what is lost? Should we do this? And if so, how do we do it in an open, transparent, and responsible way that helps inform and elevate the conversation while looking after the interests of <em>all</em> WordPress users?</p></blockquote>\n<p>These are interesting questions and although the <a href=\"https://core.trac.wordpress.org/ticket/38418\">ticket</a><a href=\"https://core.trac.wordpress.org/ticket/38418\"> is closed</a> on Trac, users are encouraged to continue the discussion. In the future, I’d like to see data and other research published that explains <strong>why</strong> a major User Interface changing feature is necessary in core before so much energy is devoted to it.</p>\n<h2>Cowboy Wapuu!</h2>\n<p>In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the <a href=\"http://wapuu.jp/2015/12/12/wapuu-origins/\">unofficial mascot</a> of the WordPress project. Cowboy Wappu is the official mascot of <a href=\"https://2017.dfw.wordcamp.org/\">WordCamp Dallas/Fort Worth 2017</a> that takes place on November 11-12. Tickets are still available and include admission to the event and after-party, lunch on Saturday, and swag. Yee-Haw!</p>\n<img />Cowboy Wapuu for WordCamp Dallas/Fort Worth 2017\n<p>That’s it for issue twenty-three. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Aug 2017 01:47: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:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: WordPress 4.9 to Focus on Code Editing and Customization Improvements, Targeted for November 14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://wptavern.com/wordpress-4-9-to-focus-on-code-editing-and-customization-improvements-targeted-for-november-14\";s: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:3929:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/planning.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/Q3X736G951\">Sophie Ollis</a>\n<p>WordPress core contributors have set a tentative <a href=\"https://make.wordpress.org/core/4.9/\" target=\"_blank\">schedule for the upcoming 4.9 release</a>, which will be co-led by Mel Choyce and Weston Ruter. The development cycle kicked off in early August with Beta 1 scheduled for early October and the official release targeted for November 14.</p>\n<p>Choyce published a <a href=\"https://make.wordpress.org/core/2017/08/11/wordpress-4-9-goals/\" target=\"_blank\">list of goals</a> today that outlines what they will be aiming for in 4.9. WordPress users can expect to see some existing features polished up to be more user-friendly, including some long-awaited updates to the experience of editing theme and plugin files in the admin.</p>\n<p>Contributors are looking at <a href=\"https://core.trac.wordpress.org/ticket/6531\" target=\"_blank\">adding a nested folder structure</a> that will offer access to files deeper than two levels. They are also aiming to <a href=\"https://core.trac.wordpress.org/ticket/31779\" target=\"_blank\">add better warnings</a> for users who are editing themes and plugins, an improvement which Choyce described as “graduating from cowboy coding school.” This could help prevent users from unknowingly making small errors that could have a negative impact on their sites.</p>\n<p>Another goal for 4.9 is to improve the code editing experience by adding syntax highlighting. Contributors are examining the possibility of incorporating CodeMirror functionality into the Customizer’s custom CSS box as well as the plugin and theme file editors. An experimental <a href=\"https://github.com/WordPress/codemirror-wp\" target=\"_blank\">Syntax Highlighting Code Editor for WordPress Core</a> plugin is currently being developed on GitHub as a potential solution for a seven-year-old trac <a href=\"https://core.trac.wordpress.org/ticket/12423\" target=\"_blank\">ticket</a> for code editor improvements.</p>\n<p>Customizer improvements are also one of the main focuses for 4.9. Contributors to the Customize Snapshots feature plugin have been <a href=\"https://wptavern.com/customize-snapshots-0-6-0-adds-the-ability-to-name-and-merge-changesets\" target=\"_blank\">steadily refining</a> the ability to <a href=\"https://core.trac.wordpress.org/ticket/39896\" target=\"_blank\">draft</a> and <a href=\"https://core.trac.wordpress.org/ticket/28721\" target=\"_blank\">schedule</a> changesets in the Customizer. They are also looking at providing a better experience for <a href=\"https://core.trac.wordpress.org/ticket/39693\" target=\"_blank\">widget</a> and <a href=\"https://core.trac.wordpress.org/ticket/39692\" target=\"_blank\">menu mapping</a> when switching between themes, improving homepage settings (“<a href=\"https://core.trac.wordpress.org/ticket/16379\" target=\"_blank\">Page on Front</a>“), and displaying responsive images in the Customizer sidebar.</p>\n<p>This list of goals for 4.9 includes many more items and the release leads are approaching it with the understanding that some features and improvements may not be ready in time. One item on the list is getting in <a href=\"https://github.com/WordPress/gutenberg/issues?q=is%3Aopen+is%3Aissue+label%3A%22Core+REST+API+Task%22\" target=\"_blank\">API endpoints that Gutenberg requires</a>.</p>\n<p>Looking ahead to WordPress 5.0, new Gutenberg design lead Tammie Lister has <a href=\"https://make.wordpress.org/core/2017/08/11/revised-suggested-roadmap-for-gutenberg-and-customization/\" target=\"_blank\">proposed a revised, tentative roadmap</a> that anticipates having the new editor ready for a merge proposal in December 2017. Lister said the outline is not set in stone and Gutenberg’s path to 5.0 would be dependent on the success of the merge proposal.</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 Aug 2017 19:19: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: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:117:\"WPTavern: WordPress.com’s Business Plan Gives Subscribers a Way to Tap into WordPress.org’s Third-party Ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74048\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8395:\"<p>Earlier this year, WordPress.com <a href=\"https://wptavern.com/wordpress-com-experiments-with-allowing-business-plan-customers-to-install-third-party-plugins-and-themes\">launched an experiment</a> giving <a href=\"https://wordpress.com/business/\">Business plan subscribers</a> the ability to install third-party plugins and themes. Automattic<a href=\"https://en.blog.wordpress.com/2017/08/07/wordpress-com-business-now-supports-plugins-and-third-party-themes/\"> concluded the experiment</a> earlier this week and officially made the features part of the subscription plan.</p>\n<p>“With support for plugins and third-party themes, WordPress.com Business users will be able to connect their sites to great email and social media tools, e-commerce solutions, publishing and subscription services, and more,” Mark Armstrong said.</p>\n<p>This change is twelve years in the making. With the exception of WordPress VIP, customers have not had the ability to install third-party themes and plugins on WordPress.com.</p>\n<h2>Customers Can Only Install Custom Plugins Through The WP-Admin Interface</h2>\n<p>Customers can install plugins or themes from the WordPress.org directories or they can upload custom themes and plugins. WordPress.com has two user interfaces, one that resembles Calypso and the other is WP-Admin.</p>\n<p>Here is what adding plugins looks like using the Calypso interface. Plugins are displayed from the WordPress.org plugin directory with no way to upload a custom plugin.</p>\n<img />Adding Plugins on WordPress.com Through The Calypso Interface\n<p>This is what adding plugins looks like using the WP-Admin interface. This interface has a button that allows customers to upload a custom plugin. Automattic is aware of the discrepancy and says they’re working on streamlining both interfaces.</p>\n<img />Adding Plugins Through WP-Admin on WordPress.com\n<h2>Customers Can Upload Non 100% GPL Licensed Code to WordPress.com</h2>\n<p>The ability to upload a custom theme or plugin truly opens the door for subscribers to customize their sites. But it also allows customers to use themes and plugins that are not 100% GPL licensed. Matt Mullenweg, CEO of Automattic, has <a href=\"https://wordpress.org/news/2009/07/themes-are-gpl-too/\">made it clear</a> in the past that he will only support plugins and themes that are 100% GPL.</p>\n<blockquote><p>Even though graphics and CSS aren’t <em>required</em> to be GPL legally, the lack thereof is pretty limiting. Can you imagine WordPress without any CSS or JavaScript? So as before, we will only promote and host things on WordPress.org that are 100% GPL <a href=\"http://en.wikipedia.org/wiki/License_compatibility\">or compatible</a>.</p></blockquote>\n<p>Mullenweg has used his <a href=\"http://designcrumbs.com/automatically-blackballed\">influence in the past</a> to provoke marketplaces such as Envato to provide a 100% GPL license option to its authors. Authors who choose not to sell their items with the 100% GPL license are excluded from being able to sponsor or speak at WordCamps.</p>\n<p>Although the above quote references WordPress.org, WordPress.com is a platform that Mullenweg controls. It’s odd that the ability to upload a theme or plugin that is not 100% GPL exists on WordPress.com. I believe the feature is an oversight and will be removed in the immediate future ensuring that only themes and plugins from the official directories are allowed to be used.</p>\n<h2>Managed WordPress Hosts Have Reasons to Be Concerned</h2>\n<p>Responses to the news from members of the WordPress community are mixed. Phil Crumm, Director of Strategic Opportunities at 10up, <a href=\"https://medium.com/@philcrumm/the-curious-conundrum-of-the-new-wordpress-com-business-plan-b0044ad57acd\">published a great article</a> that examines the potential impacts this move will have on the managed WordPress hosting ecosystem and its community:</p>\n<blockquote>\n<p id=\"8b34\" class=\"graf graf--p graf-after--h3\">Within the WordPress community, there’s long been a notion that ‘more users on WordPress’ is universally good. Until now, that’s been difficult to argue: an expansive ecosystem has developed over the last decade, and many now make their living off of WordPress.</p>\n<p id=\"2813\" class=\"graf graf--p graf-after--p graf--trailing\">Despite that, WordPress.com’s Business Plan now feels like it’s oriented towards cannibalizing users from elsewhere within that ecosystem — from sites that may have ‘grown up’ and moved to another hosting provider to those that now may not know that the broader ecosystem even exists — which is objectively a step backwards for the WordPress community.</p>\n</blockquote>\n<p><a href=\"https://perezbox.com/\">Tony Perez</a>, co-founder and CEO of Sucuri, says the <a href=\"https://perezbox.com/2017/08/automattics-push-managed-wordpress-potential-impacts-hosting-ecosystem/\">implications are gravest</a> to managed WordPress hosts. “The biggest impacts however are likely to be towards those hosting companies that have invested resources (both people and dollars) into creating a vibrant Managed WordPress hosting business ecosystem,” Perez said.</p>\n<p>“Long are the days when the market was defined by Page.ly and WPEngine. Today I would consider the space to be saturated, with more flavors of Managed WordPress than ice cream at a Baskin-Robbins.”</p>\n<p><a href=\"http://chrislema.com/\">Chris Lema</a>, a member of Liquid Web’s Leadership team, <a href=\"https://perezbox.com/2017/08/automattics-push-managed-wordpress-potential-impacts-hosting-ecosystem/#comment-3456606874\">responded to the article</a> saying it’s rare for manufactures to enter the same market as their distributors or partners.</p>\n<p>“While not impossible, we rarely see manufacturers get into the same business as their distributors or retail partners,” Lema said.</p>\n<p>“That’s because it can create a lot of unwanted, unplanned for, unintended secondary consequences. But to inexpensive hosts, this is one of those head-turners, because they were assured, for oh so long, that this wasn’t the game Automattic was getting into.</p>\n<p>“But Automattic is not just a nice community player. They’re a business. With investors. And they have to think about their own bottom line. So while it’s not surprising, I think you’re right that hosts have the most to be thinking about.”</p>\n<p>Others like Scott Bolinger, have expressed cautious optimism regarding the change.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">3rd party plugins and themes can now be used on <a href=\"https://t.co/eNa4NCrrPO\">https://t.co/eNa4NCrrPO</a>. This is great news, although how great remains to be seen. <a href=\"https://t.co/TntfJJ9sLD\">https://t.co/TntfJJ9sLD</a></p>\n<p>— Scott Bolinger (@scottbolinger) <a href=\"https://twitter.com/scottbolinger/status/894627296648114176\">August 7, 2017</a></p></blockquote>\n<p></p>\n<p>Some theme and plugin authors see it as a growth opportunity. Josh Pollock, founder of <a href=\"https://calderaforms.com/\">CalderaWP,</a> is excited to see WordPress.com become a quality hosting option for his users.</p>\n<p>“As a plugin author, I like not just more places for my plug-in to be used, but more quality hosting options,” Pollock said. “Dealing with sub-optimal environments is the hardest part of being a plug-in author. I’m excited about more users and having those users be on a quality platform.”</p>\n<h2>How Much Pie Does Automattic Want?</h2>\n<p>WordPress.com offering a subset of customers the ability to access the incredible third-party WordPress plugin and theme ecosystem is a huge development, but it leaves me with a few questions. First, why is WordPress.com only now offering this feature? Why wasn’t it available years ago?</p>\n<p>WordPress.com is now competing head-to-head with managed hosts. As <a href=\"https://ma.tt/2016/12/wp-growth-council/\">initiatives are established</a> to grow the WordPress pie for all, how much of that pie does Automattic want for itself? Considering Automattic is a business backed by investors, does it matter how much they want or get?</p>\n<p>How do you feel about WordPress.com allowing subscribers to tap into the WordPress.org ecosystem?</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 Aug 2017 07:12:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:78:\"WPTavern: User Tracking to be Removed from Gutenberg in Upcoming 0.8.0 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:29:\"https://wptavern.com/?p=74044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/user-tracking-to-be-removed-from-gutenberg-in-upcoming-0-8-0-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:9564:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/asystole.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.savingchicagocpr.com/termination-resuscitation-efforts/\">Saving Chicago CPR</a>\n<p>The opt-in user tracking that was <a href=\"https://wptavern.com/gutenberg-0-7-0-adds-opt-in-usage-tracking\" target=\"_blank\">added to Gutenberg 0.7.0</a> will be pulled from the plugin in the upcoming 0.8.0 release. The data collection included in last week’s release reignited the <a href=\"https://core.trac.wordpress.org/ticket/38418\" target=\"_blank\">discussion regarding adding telemetry to WordPress</a>.</p>\n<p>James Nylen and an Automattic engineers involved in Gutenberg added the feature with the goal of improving the editor based on usage patterns. Nylen said the approach they used was very similar to Calypso’s event tracking code and that it would provide “a very useful technique to collect user experience data.” They had planned to use the data to inform various decisions, such as default order for blocks and whether some blocks are less suitable for core. Gutenberg contributors were looking into making the tracking its own module so it could be useful for other WP feature plugins and core.</p>\n<p>Shortly after the feature was added to Gutenberg, contributors began to revisit the Telemetry discussion on WordPress Trac. The topic of telemetry for core had been tabled earlier this year, as it did not fall within the three core focus areas for WordPress development in 2017. Participants requested the ticket be reopened for discussion looking toward 2018 in light of Gutenberg adding opt-in tracking.</p>\n<p>“I think it’s a terrible idea for Gutenberg, too,” Matt Mullenweg commented on the ticket. “I doubt that anything actionable or useful will come of it that couldn’t be obtained by non-data-collecting means.”</p>\n<p>Twelve hours later, James Nylen <a href=\"https://make.wordpress.org/core/2017/08/06/opt-in-usage-tracking-in-gutenberg/#comment-32882\" target=\"_blank\">commented</a> on his original announcement to notify the community that tracking will be removed from Gutenberg in the 0.8.0 release:</p>\n<blockquote><p>There’s been quite a lot of discussion on this topic across the community, much of which stems from earlier discussions like <a href=\"https://core.trac.wordpress.org/ticket/38418\" target=\"_blank\">#38418</a>, which I wasn’t aware of.</p>\n<p>Usage tracking in Core and feature projects is a much bigger topic than fits into the scope of Gutenberg right now, so I’ve removed it from the GitHub repo, and it will be removed in the 0.8 Gutenberg release.</p>\n<p>The data that it was tracking, while interesting, probably wouldn’t have been a significant factor in the long-term growth and development of Gutenberg. The discussion surrounding the data collection, however, would take up a disproportionate amount of the team’s time.</p></blockquote>\n<p>Nylen said the data collected by the plugin thus far will be deleted after 0.8 rolls out and that since it’s so early in Gutenberg’s development there was “not enough data collected to provide any sort of picture of usage.”</p>\n<h3>WordPress Telemetry Advocates Continue Lobbying for Opt-In Data Collection</h3>\n<p>The discussion about whether or not WordPress needs telemetry has continued in the form of tweetstorms, as data collection advocates make the case for data-driven decision making.</p>\n<p>“The decision not to capture metrics (telemetry) from WordPress is one that continues to have a large impact on what we (don’t) know,” Liquid Web VP of Product Chris Lema <a href=\"https://twitter.com/chrislema/status/895136427977068544\" target=\"_blank\">said</a>. “As we’re trying to make decisions about Gutenberg and metaboxes, we might ask, how big a problem is this, by number of plugins or sites. But we don’t know because we decided that we can always iterate WordPress, like we’ve always done. It’s true that we’ve done that before, but that doesn’t mean it’s either the wisest approach, nor the least risky. With so many options today, will people necessarily return? The more logical approach, in my mind, is to capture as much data as possible and to make it as public as possible, so we can all review.”</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">If the problem were lack of data, we could easily produce terabytes per day.</p>\n<p>— Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/895506034533453825\">August 10, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">seconded with the power of 1000 suns</p>\n<p>— joe guilmette <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f1f9-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" /> (@travlbum) <a href=\"https://twitter.com/travlbum/status/895539950933782528\">August 10, 2017</a></p></blockquote>\n<p></p>\n<p><a href=\"https://mor10.com/the-case-for-wordpress-telemetry/\" target=\"_blank\">WordPress Telemetry proposal</a> author Morten Rand-Hendriksen joined in the discussion with another <a href=\"https://twitter.com/mor10/status/895299336375902209\" target=\"_blank\">tweetstorm</a>:</p>\n<blockquote><p>WordPress needs a core method for collecting quantitative user data through telemetry (metrics). One of the biggest challenges WordPress faces is the lack of reliable data about global day-to-day use. Like most Open Source projects, WordPress has relied on community feedback as its primary data source, which is fine for a small project. The problem is WordPress is a Very Big Project with global reach and the majority of its users never interface with the community. </p>\n<p>I like to say we, the people who talk about, provide feedback for, and design/develop WordPress are the 1%. It might be more like 0.1%. Making decisions based on the traditional community feedback model is making decisions without knowing anything about the majority of users. Some will argue this is fine, that WordPress is developed by those who show up. That’s not a workable or responsible model for a project. We, the people who build WordPress, have a duty of care to the people we build it for. And those people are not us. ‘We can just do user testing,’ you say? Sure. Let’s do proper qualitative user testing. That requires staffing, funding, and infrastructure. User testing for a project like WordPress is non-trivial. It requires professional analysis.</p></blockquote>\n<p>Rand-Hendriksen’s tweetstorm continued with a summary of his telemetry proposal which would be opt-in based on a plugin prompted from core. The plugin would anonymize all collected data and allow for targeted data collection based on research needs. He proposes that the data be stored on servers owned by the community, separate from corporate interests, so the data can be shared openly to ensure transparency. The <a href=\"https://core.trac.wordpress.org/ticket/38418\" target=\"_blank\">ticket</a> for this feature request is currently closed.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">This discussion belongs in Trac in an open ticket. Closing it down because one person disagrees is not the Open Source way.</p>\n<p>— MortenRandHendriksen (@mor10) <a href=\"https://twitter.com/mor10/status/895307240122368001\">August 9, 2017</a></p></blockquote>\n<p></p>\n<p>“There’s a ton going on, and it’s far more important than built-in big brother centralized tracking,” Mullenweg <a href=\"https://twitter.com/photomatt/status/895678580935491588\" target=\"_blank\">said</a> in response to Rand-Hendriksen’s tweetstorm. “Do it as a plugin or with a host and show it informs a decision that we wouldn’t have taken otherwise. And remember that past usage is not a good predictor of future success, or what the world needs. We need to build iPhones not Blackberries.”</p>\n<p>During the <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\" target=\"_blank\">2016 State of the Word</a> address, Mullenweg proposed a new structure for core releases in 2017 where he would be putting on the ‘product lead’ hat and have design and user testing lead the way. As feature requests have popped up outside of the three core focus areas, Mullenweg has had to systematically shut them down or put them on hold for later in order to keep Gutenberg on track.</p>\n<p>However, it’s not surprising that the engineers leading the Gutenberg project, most of whom are employed by Automattic, wouldn’t think twice about adding user tracking. The company has <a href=\"https://data.blog/\" target=\"_blank\">a blog entirely devoted to data</a> where its data scientists write about the data pipelines they have built to help the company create a sustainable business. Historically, Automattic has strongly embraced using data in making decisions, which is why Calypso has event tracking built into it. Mullenweg is taking a different product leadership approach with the open source WordPress project.</p>\n<p>“For people unhappy with our direction, no amount of data will change their minds,” Mullenweg said in response to critics on Twitter. “The results will tell. I’m happy to stand by them the past 14 years, and believe the next 14 will validate our approach.”</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 Aug 2017 02:08:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:108:\"WPTavern: WooCommerce Forks select2, Releases selectWoo as a Drop-In Replacement with Improved Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=73999\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/woocommerce-forks-select2-releases-selectwoo-as-a-drop-in-replacement-with-improved-accessibility\";s: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:4160:\"<p>The WooCommerce development team has <a href=\"https://woocommerce.wordpress.com/2017/08/08/selectwoo-an-accessible-replacement-for-select2/\" target=\"_blank\">forked select2</a> to create a more accessible, drop-in replacement library called selectWoo. <a href=\"https://select2.github.io/\" target=\"_blank\">select2</a> is a widely used jQuery-based library for making custom drop down menus. Many users are wondering if the project has been abandoned, because the repository hasn’t seen any activity since February and 115 pull requests have piled up.</p>\n<p>In the interest of fixing some long-standing accessibility issues with the library, WooCommerce opted to fork it and has merged in some of the PRs that were submitted to the original project. SelectWoo is backwards-compatible and can be used the same way as select2 by simply replacing the select2.js file. It has been optimized for WordPress plugin development and can optionally be initialized with .selectWoo() in order to run alongside other versions of select2 that may be used by other plugins on the site.</p>\n<p>SelectWoo makes many improvements for those who are using screen readers, but it needs more accessibility testing. <a href=\"https://github.com/woocommerce/selectWoo/releases/tag/woo-1.0.0-beta.1\" target=\"_blank\">Beta 1</a> is availabe on GitHub. The WooCommerce team has even created a <a href=\"https://woocommerce.github.io/selectWoo/accessibility-testing/\" target=\"_blank\">testing page</a> with different example pages so those using screen-reading software can easily test for bugs.</p>\n<p>Forking is usually a last resort scenario for extending popular open source libraries, but the WooCommerce team wanted the flexibility of improving the project on their own timeline. One concerned developer asked the team what will happen in the future if select2 gets back on track and why they didn’t just submit pull requests to the select2 repository.</p>\n<p>“With a fork we can at least get things merged in to meet our own schedule, rather than waiting/relying on others or running custom versions,” WooCommerce lead developer Mike Jolley said. “There are other benefits, too, such as allowing our version to be namespaced to avoid conflicts in WP admin. The fork is public. Our changes can be merged back, when/if the project picks up again.”</p>\n<p>Both WordPress and Drupal core contributors have been working to <a href=\"https://github.com/select2/select2/issues/3744\" target=\"_blank\">address accessibility issues in select2</a> since 2015 when the WP Accessibility Team <a href=\"https://make.wordpress.org/accessibility/2015/09/07/accessibility-usertest-select2/\" target=\"_blank\">performed extensive testing on the library</a> to see if it was fit for use in core. Some initial planning work happened but work on these issues stalled out as select2’s maintainers became unavailable.</p>\n<p>“I’d do it with PRs if I thought they would get merged in, but I doubt they will,” WooCommerce developer Claudiu Lodromanean <a href=\"https://github.com/select2/select2/issues/3744#issuecomment-320464534\" target=\"_blank\">said</a>. “There’s been no action in this repo in about six months and the fork contains some PRs that have been waiting to get merged here for a very long time.”</p>\n<p>Forking a project can needlessly fragment its contributors by causing them to have to choose one or the other, especially as the projects diverge down the line. Motivated contributors may submit multiple PRs across both projects for improvements but most will simply contribute back to the project they use. Select2’s maintainers have not published any news about why the project has gone dormant.</p>\n<p>“There are <a href=\"https://github.com/select2/select2/pulls\" target=\"_blank\">over 100 PRs in the select2 repo</a> unmerged,” Jolley said in response to commenters asking about the necessity of the fork. “Some of these we actually need, so with the fork we’re free to merge these as needed. The accessibility issues are hurting users today, so we cannot really afford to wait.”</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 Aug 2017 03:54: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: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:65:\"WPTavern: WPWeekly Episode 284 – Catching Up with David Peralty\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74024&preview=true&preview_id=74024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wpweekly-episode-284-catching-up-with-david-peralty\";s: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:2867:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://peralty.com/\">David Peralty</a>. Peralty is a prolific writer with more than 30K articles published online for various media outlets. He also co-hosted WordPress Weekly episodes 41-75 in 2009.</p>\n<p>We discuss the rise and evolution of blog networks over the years, the current state of WordPress development, and what he thinks of Gutenberg.</p>\n<p>We have a great conversation about working remotely and how working in an office with great people focused on the same goal can be an energizing experience. Later in the show, Jacoby and I discuss the news of the week, including the idea of opt-in usage data tracking in WordPress.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/publishers-are-moving-back-to-wordpress-after-short-experiments-with-medium\">Publishers Are Moving Back to WordPress After Short Experiments with Medium</a><br />\n<a href=\"https://wptavern.com/trademark-trial-and-appeal-board-dismisses-automattics-trademark-dispute-against-chris-pearson\">Trademark Trial and Appeal Board Dismisses Automattic’s Trademark Dispute Against Chris Pearson</a><br />\n<a href=\"https://wptavern.com/gutenberg-0-7-0-adds-opt-in-usage-tracking\">Gutenberg 0.7.0 Adds Opt-In Usage Tracking</a><br />\n<a href=\"https://wptavern.com/gutenberg-development-team-confirms-meta-box-api-will-not-be-formally-deprecated\">Gutenberg Development Team Confirms Meta Box API Will Not be Formally Deprecated</a><br />\n<a href=\"https://wptavern.com/wordpress-core-fields-api-project-sees-renewed-interest\">WordPress Core Fields API Project Sees Renewed Interest</a></p>\n<h2>Picks of the Week:</h2>\n<p>Comment moderation is not the same as censorship, or is it?</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://halfelf.org/2013/censorship-in-moderation/\">Censorship in Moderation</a></p></blockquote>\n<p></p>\n<p><a href=\"https://github.com/rmccue/not-trac\">Not Trac</a> by Ryan McCue, connects to WordPress.org’s Trac instance via XML-RPC. Before using, please read McCue’s warnings about usernames and passwords.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 16th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #284:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Aug 2017 00:43:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:72:\"WPTavern: WordPress Foundation to Sponsor Open Source Educational Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73970\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/wordpress-foundation-to-sponsor-open-source-educational-events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3313:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/open-source.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/79777096@N00/6866996865\">16th st</a> – <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>The WordPress Foundation is <a href=\"http://wordpressfoundation.org/2017/call-for-organizers-introduction-to-open-source/\" target=\"_blank\">sponsoring a new series of workshops and training events</a> that will introduce people to WordPress and related open source software. The program targets communities in Latin and South America, Africa, Oceania, and Asia.</p>\n<p>“Specifically, we want to shine more light on the potential of open source software in countries where there is less participation in OSS projects,” WordPress Community Team leader Andrea Middleton said. “To help spread the word about the potential that open source has to offer, we’d like to provide financial support for two educational events this year, to be organized in parts of the world with less participation in open source.”</p>\n<p>After the success of the <a href=\"https://wptavern.com/wordcamp-incubator-program-to-launch-in-indonesia-zimbabwe-and-columbia\" target=\"_blank\">WordCamp Incubator Program</a>, which brought three new camps to Indonesia, Zimbabwe, and Colombia, there is some evidence that initiatives to bring WordPress to other parts of the world can have valuable returns. <a href=\"https://wptavern.com/harare-zimbabwe-to-host-its-2nd-wordcamp-november-4-2017\" target=\"_blank\">Harare is hosting its second WordCamp</a> in November and the local meetup group has nearly doubled over the past year. The other camps had similarly successful events and growth in meetup numbers.</p>\n<p>WordCamp Harare organizer Thabo Tswana said that one of the biggest impacts that the first WordCamp had was to introduce local attendees to the WordPress community. WordPress software is well-known across the world but many do not know that there is a strong community behind the project that they can connect with.</p>\n<p>The WordPress Foundation is looking for organizers to host “Introduction to Open Source” events that will be structured as two-hour workshops using <a href=\"https://make.wordpress.org/training/handbook/user-lessons/what-is-open-source/\" target=\"_blank\">training</a> <a href=\"https://make.wordpress.org/training/handbook/user-lessons/what-can-you-do-with-wordpress/\" target=\"_blank\">materials</a> available in the WordPress handbook. The goal is to introduce attendees to the world of open source software, the GPL license, and how it is important for WordPress as an open source project.</p>\n<p>The Foundation is subsidizing the events (up to $500) so they will be free for anyone to attend. A <a href=\"http://wordcampcentral.polldaddy.com/s/open-source-training-organizer-application\" target=\"_blank\">10-question application</a> is open for those who want to organize an event in 2017. The call for organizers says that preference will be given to organizers who are already members of a group that is part of WordPress’ meetup chapter program and areas where no WordCamp has previously been organized. Applications close August 21 and successful applicants will be notified by September 8.</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 Aug 2017 19:19: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: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:44:\"Post Status: Publish Conference, in pictures\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38424\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://poststatus.com/publish-conference-pictures/\";s: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:36810:\"<p>Pictures from <a href=\"https://poststatus.com/publish\">Post Status Publish</a> were almost all taken by <a href=\"https://poststatus.com/people/brian-richards/\">Brian Richards</a>, unless they are pictures of Brian Richards. I took those.</p>\n<p>We had a great time learning and networking in Atlanta, and here’s a snippet of our time together. The event consisted of two full days of talks from some pretty amazing speakers.</p>\n<p>Special thanks to <a href=\"https://www.liquidweb.com/managedwordpress/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Liquid Web</a> for being our platinum sponsor, and to <a href=\"https://jetpack.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Jetpack</a>, <a href=\"https://pantheon.io/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Pantheon</a>, and <a href=\"https://www.siteground.com/wordpress-hosting.htm/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">SiteGround</a> for being gold sponsors. Without them, and our wonderful attendees of course, none of this would be possible.</p>\n<p>Video is being processed and will be available to all attendees, and we’re working out how exactly to make them available for other folks who may want to see the sessions.</p>\n\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-4/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-4-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-2/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-2-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-1/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-1-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-3/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-3-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-5/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-5-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-6/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-6-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-7/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-7-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-8/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-8-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-9/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-9-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-10/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-10-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-11/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-11-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-12/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-12-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-13/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-13-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-14/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-14-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-15/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-15-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-16/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-16-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-17/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-17-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-18/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-18-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-19/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-19-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-20/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-20-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-21/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-21-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-22/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-22-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-23/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-23-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-24/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-24-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-25/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-25-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-26/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-26-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-27/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-27-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-28/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-28-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-29/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-29-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-30/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-30-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-31/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-31-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-32/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-32-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-33/\"><img width=\"100\" height=\"150\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-33-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-34/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-34-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-35/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-35-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-36/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-36-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-37/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-37-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-38/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-38-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-39/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-39-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-40/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-40-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-41/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-41-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-42/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-42-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-43/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-43-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-44/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-44-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-45/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-45-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-46/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-46-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-47/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-47-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-48/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-48-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-49/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-49-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-50/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-50-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-51/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-51-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-52/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-52-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-53/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-53-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-54/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-54-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-55/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-55-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-56/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-56-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-57/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-57-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-58/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-58-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-59/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-59-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-60/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-60-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-61/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-61-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-62/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-62-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-63/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-63-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-64/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-64-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-65/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-65-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-66/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-66-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-68/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-68-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-67/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-67-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-69/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-69-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-70/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-70-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-71/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-71-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-72/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-72-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-73/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-73-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-74/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-74-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-75/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-75-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-76/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-76-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-77/\"><img width=\"100\" height=\"150\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-77-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-78/\"><img width=\"100\" height=\"150\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-78-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-79/\"><img width=\"100\" height=\"150\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-79-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-80/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-80-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-81/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-81-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-82/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-82-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-83/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-83-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-84/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-84-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-85/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-85-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-86/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-86-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-87/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-87-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-88/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-88-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-89/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-89-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-90/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-90-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-91/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-91-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-92/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-92-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-93/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-93-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-94/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-94-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-95/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-95-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-96/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-96-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-97/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-97-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-98/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-98-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-99/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-99-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-100/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-100-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-101/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-101-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-102/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-102-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-103/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-103-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-104/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-104-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-105/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-105-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-106/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-106-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-107/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-107-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-108/\"><img width=\"150\" height=\"100\" src=\"https://12714-presscdn-0-16-pagely.netdna-ssl.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-108-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2017 18:39:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}}}}}}}}}}}}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:\"Sat, 09 Sep 2017 14:09:54 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sat, 09 Sep 2017 14:00:11 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20170804181346\";}','no'),(178,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1505009394','no'),(179,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1504966194','no'),(180,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1505009394','no'),(181,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/09/the-month-in-wordpress-august-2017/\'>The Month in WordPress: August 2017</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/equifax-launches-wordpress-powered-site-for-consumers-affected-by-security-breach\'>WPTavern: Equifax Launches WordPress-Powered Site for Consumers Affected by Security Breach</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/swfupload-will-officially-be-removed-from-wordpress\'>WPTavern: SWFUpload Will Officially Be Removed From WordPress</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordcamp-ann-arbor-to-host-second-wordcamp-warmup\'>WPTavern: WordCamp Ann Arbor to Host Second WordCamp WarmUp</a></li></ul></div>','no'),(182,'_site_transient_timeout_theme_roots','1504969924','no'),(183,'_site_transient_theme_roots','a:4:{s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";s:10:\"wellington\";s:7:\"/themes\";}','no'),(187,'category_children','a:0:{}','yes'),(188,'auth_key','E4d8OK|Z7o/JertD1riulmgZ(O$K>&8]P{s&r8TAe#(?e!OI2IQzRwp$B)Mp8_j~','no'),(189,'auth_salt','|asf(<<$lAk52`RX84JSf3^,DqqZ]kgm L%A# B;:DBCiu <n]JEcWBz?ZccPTGJ','no'),(190,'logged_in_key','?dtu<4U4O;|.yjrxAhNLyaz9S%#8I3}])~KG];Eu#E`6L>-^o90~Ka+OW/[)lQi6','no'),(191,'logged_in_salt','=PRY8ZO^qeu4X7,^Cy2TXzwN_{Llmu~X1:E3i^CJ{plQQB4Y`yzO S8= :JXS|c8','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=193 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','2017/09/espresso.jpg'),(3,4,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2017/09/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','2017/09/sandwich.jpg'),(7,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2017/09/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','2017/09/coffee.jpg'),(11,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:18:\"2017/09/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,8,'_thumbnail_id','5'),(16,8,'_customize_draft_post_name','about'),(17,9,'_thumbnail_id','4'),(18,9,'_customize_draft_post_name','contact'),(19,10,'_thumbnail_id','6'),(20,10,'_customize_draft_post_name','blog'),(21,11,'_thumbnail_id','4'),(22,11,'_customize_draft_post_name','a-homepage-section'),(23,13,'_wp_attached_file','2017/09/CRASH-Logo-Red-Aged.png'),(24,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:473;s:6:\"height\";i:484;s:4:\"file\";s:31:\"2017/09/CRASH-Logo-Red-Aged.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"CRASH-Logo-Red-Aged-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"CRASH-Logo-Red-Aged-293x300.png\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"wellington-slider-image\";a:4:{s:4:\"file\";s:31:\"CRASH-Logo-Red-Aged-473x450.png\";s:5:\"width\";i:473;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"wellington-thumbnail-small\";a:4:{s:4:\"file\";s:30:\"CRASH-Logo-Red-Aged-120x80.png\";s:5:\"width\";i:120;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"wellington-thumbnail-medium\";a:4:{s:4:\"file\";s:31:\"CRASH-Logo-Red-Aged-360x230.png\";s:5:\"width\";i:360;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"wellington-thumbnail-large\";a:4:{s:4:\"file\";s:31:\"CRASH-Logo-Red-Aged-473x380.png\";s:5:\"width\";i:473;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(25,13,'_wp_attachment_custom_header_last_used_wellington','1504917835'),(26,13,'_wp_attachment_is_custom_header','wellington'),(27,15,'_wp_attached_file','2017/09/cropped-CRASH-Logo-Red-Aged.png'),(28,15,'_wp_attachment_context','custom-logo'),(29,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:367;s:6:\"height\";i:435;s:4:\"file\";s:39:\"2017/09/cropped-CRASH-Logo-Red-Aged.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-CRASH-Logo-Red-Aged-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-CRASH-Logo-Red-Aged-253x300.png\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"wellington-thumbnail-small\";a:4:{s:4:\"file\";s:38:\"cropped-CRASH-Logo-Red-Aged-120x80.png\";s:5:\"width\";i:120;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"wellington-thumbnail-medium\";a:4:{s:4:\"file\";s:39:\"cropped-CRASH-Logo-Red-Aged-360x230.png\";s:5:\"width\";i:360;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"wellington-thumbnail-large\";a:4:{s:4:\"file\";s:39:\"cropped-CRASH-Logo-Red-Aged-367x380.png\";s:5:\"width\";i:367;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}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,16,'_wp_attached_file','2017/09/CRASH-Logo-Red-Aged-60.png'),(31,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:34:\"2017/09/CRASH-Logo-Red-Aged-60.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(32,14,'_wp_trash_meta_status','publish'),(33,14,'_wp_trash_meta_time','1504917835'),(34,17,'_wp_trash_meta_status','publish'),(35,17,'_wp_trash_meta_time','1504918136'),(36,18,'_menu_item_type','custom'),(37,18,'_menu_item_menu_item_parent','0'),(38,18,'_menu_item_object_id','18'),(39,18,'_menu_item_object','custom'),(40,18,'_menu_item_target',''),(41,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42,18,'_menu_item_xfn',''),(43,18,'_menu_item_url','http://www.crash.life/wordpress1/'),(44,18,'_menu_item_orphaned','1504918168'),(54,20,'_menu_item_type','custom'),(55,20,'_menu_item_menu_item_parent','0'),(56,20,'_menu_item_object_id','20'),(57,20,'_menu_item_object','custom'),(58,20,'_menu_item_target',''),(59,20,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(60,20,'_menu_item_xfn',''),(61,20,'_menu_item_url','http://www.crash.life/wordpress1/'),(62,20,'_menu_item_orphaned','1504918269'),(72,22,'_menu_item_type','custom'),(73,22,'_menu_item_menu_item_parent','0'),(74,22,'_menu_item_object_id','22'),(75,22,'_menu_item_object','custom'),(76,22,'_menu_item_target',''),(77,22,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(78,22,'_menu_item_xfn',''),(79,22,'_menu_item_url','http://www.crash.life/wordpress1/'),(80,22,'_menu_item_orphaned','1504918307'),(108,2,'_edit_lock','1504968433:1'),(109,2,'_edit_last','1'),(110,27,'_edit_last','1'),(111,27,'_edit_lock','1504968461:1'),(112,27,'_wp_page_template','default'),(113,29,'_edit_last','1'),(114,29,'_edit_lock','1504969113:1'),(115,29,'_wp_page_template','default'),(116,31,'_edit_last','1'),(117,31,'_edit_lock','1504968681:1'),(118,31,'_wp_page_template','default'),(119,33,'_menu_item_type','post_type'),(120,33,'_menu_item_menu_item_parent','0'),(121,33,'_menu_item_object_id','31'),(122,33,'_menu_item_object','page'),(123,33,'_menu_item_target',''),(124,33,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(125,33,'_menu_item_xfn',''),(126,33,'_menu_item_url',''),(128,34,'_menu_item_type','post_type'),(129,34,'_menu_item_menu_item_parent','0'),(130,34,'_menu_item_object_id','29'),(131,34,'_menu_item_object','page'),(132,34,'_menu_item_target',''),(133,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(134,34,'_menu_item_xfn',''),(135,34,'_menu_item_url',''),(137,35,'_menu_item_type','post_type'),(138,35,'_menu_item_menu_item_parent','0'),(139,35,'_menu_item_object_id','27'),(140,35,'_menu_item_object','page'),(141,35,'_menu_item_target',''),(142,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(143,35,'_menu_item_xfn',''),(144,35,'_menu_item_url',''),(146,36,'_menu_item_type','post_type'),(147,36,'_menu_item_menu_item_parent','0'),(148,36,'_menu_item_object_id','2'),(149,36,'_menu_item_object','page'),(150,36,'_menu_item_target',''),(151,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(152,36,'_menu_item_xfn',''),(153,36,'_menu_item_url',''),(155,37,'_wp_trash_meta_status','publish'),(156,37,'_wp_trash_meta_time','1504919131'),(157,13,'_wp_attachment_is_custom_background','wellington'),(158,38,'_wp_trash_meta_status','publish'),(159,38,'_wp_trash_meta_time','1504919290'),(160,39,'_wp_trash_meta_status','publish'),(161,39,'_wp_trash_meta_time','1504919349'),(162,40,'_wp_trash_meta_status','publish'),(163,40,'_wp_trash_meta_time','1504919546'),(164,41,'_wp_attached_file','2017/09/CRASH-Logo-Red-Aged-100.png'),(165,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:145;s:4:\"file\";s:35:\"2017/09/CRASH-Logo-Red-Aged-100.png\";s:5:\"sizes\";a:1:{s:26:\"wellington-thumbnail-small\";a:4:{s:4:\"file\";s:34:\"CRASH-Logo-Red-Aged-100-100x80.png\";s:5:\"width\";i:100;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(166,43,'_wp_attached_file','2017/09/CRASH-Logo-Red-Aged-70.png'),(167,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:48;s:6:\"height\";i:70;s:4:\"file\";s:34:\"2017/09/CRASH-Logo-Red-Aged-70.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(168,42,'_wp_trash_meta_status','publish'),(169,42,'_wp_trash_meta_time','1504966361'),(170,44,'_wp_attached_file','2017/09/CRASH-Logo-Red-Aged-100-1.png'),(171,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:69;s:6:\"height\";i:100;s:4:\"file\";s:37:\"2017/09/CRASH-Logo-Red-Aged-100-1.png\";s:5:\"sizes\";a:1:{s:26:\"wellington-thumbnail-small\";a:4:{s:4:\"file\";s:35:\"CRASH-Logo-Red-Aged-100-1-69x80.png\";s:5:\"width\";i:69;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(172,45,'_wp_trash_meta_status','publish'),(173,45,'_wp_trash_meta_time','1504966511'),(174,46,'_wp_attached_file','2017/09/CRASH-Header-Logo-Red-Aged.png'),(175,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:507;s:6:\"height\";i:125;s:4:\"file\";s:38:\"2017/09/CRASH-Header-Logo-Red-Aged.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"CRASH-Header-Logo-Red-Aged-150x125.png\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"CRASH-Header-Logo-Red-Aged-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"wellington-thumbnail-small\";a:4:{s:4:\"file\";s:37:\"CRASH-Header-Logo-Red-Aged-120x80.png\";s:5:\"width\";i:120;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"wellington-thumbnail-medium\";a:4:{s:4:\"file\";s:38:\"CRASH-Header-Logo-Red-Aged-360x125.png\";s:5:\"width\";i:360;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(176,47,'_wp_trash_meta_status','publish'),(177,47,'_wp_trash_meta_time','1504967009'),(178,50,'_wp_attached_file','2017/08/Crash-Into-Life.mp4'),(179,50,'_wp_attachment_metadata','a:9:{s:8:\"filesize\";i:2764977;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:70;s:16:\"length_formatted\";s:4:\"1:10\";s:5:\"width\";i:640;s:6:\"height\";i:360;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}}'),(180,54,'_edit_last','1'),(181,54,'_edit_lock','1504967896:1'),(182,54,'_wp_page_template','default'),(183,63,'_edit_last','1'),(184,63,'_edit_lock','1504969927:1'),(185,63,'_wp_page_template','default'),(186,65,'_edit_last','1'),(187,65,'_edit_lock','1504969699:1'),(188,66,'_wp_attached_file','2017/09/I-problem.gif'),(189,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1;s:6:\"height\";i:1;s:4:\"file\";s:21:\"2017/09/I-problem.gif\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(190,67,'_wp_attached_file','2017/09/Eye-Plank.jpg'),(191,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:246;s:4:\"file\";s:21:\"2017/09/Eye-Plank.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Eye-Plank-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Eye-Plank-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"wellington-thumbnail-small\";a:4:{s:4:\"file\";s:20:\"Eye-Plank-120x80.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"wellington-thumbnail-medium\";a:4:{s:4:\"file\";s:21:\"Eye-Plank-320x230.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:230;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:{}}}'),(192,65,'_wp_page_template','default'); /*!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=69 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,'2017-08-04 17:46:45','2017-08-04 17:46:45','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2017-08-04 17:46:45','2017-08-04 17:46:45','',0,'http://www.crash.life/wordpress1/?p=1',0,'post','',1),(2,1,'2017-08-04 17:46:45','2017-08-04 17:46:45','<h2>Experience Crash Into Life</h2>\r\nThis organization\'s activities are focused upon the spiritual growth of its members, the training of its youth, evangelistic outreach, and discipleship.\r\n<h2>Crash Into Life at a glance</h2>\r\n<p style=\"text-align: left;\">Here at Crash Into Life, Our evangelistic outreach will be based on our awareness of the current work and presence of Holy Spirit and recognizing that at all times, in all places, God is already at work in the lives of every person that we encounter, and our awareness of that grace will shape the ways in which we respond with the Gospel of Christ Jesus.</p>\r\n[video width=\"640\" height=\"360\" mp4=\"http://www.crash.life/wordpress1/wp-content/uploads/2017/08/Crash-Into-Life.mp4\"][/video]\r\n\r\n ','Home','','publish','closed','open','','home','','','2017-09-09 14:37:46','2017-09-09 14:37:46','',0,'http://www.crash.life/wordpress1/?page_id=2',0,'page','',0),(3,1,'2017-09-08 23:38:30','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2017-09-08 23:38:30','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?p=3',0,'post','',0),(4,1,'2017-09-08 23:39:14','0000-00-00 00:00:00','','Espresso','','auto-draft','open','closed','','','','','2017-09-08 23:39:01','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/espresso.jpg',0,'attachment','image/jpeg',0),(5,1,'2017-09-08 23:39:14','0000-00-00 00:00:00','','Sandwich','','auto-draft','open','closed','','','','','2017-09-08 23:39:06','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/sandwich.jpg',0,'attachment','image/jpeg',0),(6,1,'2017-09-08 23:39:14','0000-00-00 00:00:00','','Coffee','','auto-draft','open','closed','','','','','2017-09-08 23:39:10','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/coffee.jpg',0,'attachment','image/jpeg',0),(7,1,'2017-09-08 23:39:14','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','','','','','2017-09-08 23:39:14','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?page_id=7',0,'page','',0),(8,1,'2017-09-08 23:39:14','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','','','','','2017-09-08 23:39:14','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?page_id=8',0,'page','',0),(9,1,'2017-09-08 23:39:14','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','','','','','2017-09-08 23:39:14','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?page_id=9',0,'page','',0),(10,1,'2017-09-08 23:39:14','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2017-09-08 23:39:14','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?page_id=10',0,'page','',0),(11,1,'2017-09-08 23:39:14','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','','','','','2017-09-08 23:39:14','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?page_id=11',0,'page','',0),(12,1,'2017-09-08 23:39:14','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\": \"233a5adcec70bb08ed0d9989231fbabc\"\n },\n \"type\": \"option\",\n \"user_id\": 1\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\": \"70a70e28802340ae39768d89e639dc77\"\n },\n \"type\": \"option\",\n \"user_id\": 1\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\": \"38b7b82f396ae86cd0ff16a6764b914c\"\n },\n \"type\": \"option\",\n \"user_id\": 1\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 },\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\": \"233a5adcec70bb08ed0d9989231fbabc\"\n },\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"sidebars_widgets[sidebar-2]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1\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\": \"38b7b82f396ae86cd0ff16a6764b914c\"\n },\n \"type\": \"option\",\n \"user_id\": 1\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\": \"70a70e28802340ae39768d89e639dc77\"\n },\n \"type\": \"option\",\n \"user_id\": 1\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 },\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 },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Top Menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://www.crash.life/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 },\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 },\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 },\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 },\n \"twentyseventeen::nav_menu_locations[top]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1\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 },\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 },\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 },\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 },\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 },\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 },\n \"twentyseventeen::nav_menu_locations[social]\": {\n \"starter_content\": true,\n \"value\": -5,\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 7,\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 10,\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"twentyseventeen::panel_1\": {\n \"starter_content\": true,\n \"value\": 11,\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"twentyseventeen::panel_2\": {\n \"starter_content\": true,\n \"value\": 8,\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"twentyseventeen::panel_3\": {\n \"starter_content\": true,\n \"value\": 10,\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"twentyseventeen::panel_4\": {\n \"starter_content\": true,\n \"value\": 9,\n \"type\": \"theme_mod\",\n \"user_id\": 1\n }\n}','','','auto-draft','closed','closed','','76c02641-32de-4942-879c-52c76c2abad1','','','2017-09-08 23:39:14','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?p=12',0,'customize_changeset','',0),(13,1,'2017-09-09 00:34:41','2017-09-09 00:34:41','','CRASH Logo Red Aged','','inherit','open','closed','','crash-logo-red-aged','','','2017-09-09 00:34:41','2017-09-09 00:34:41','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Logo-Red-Aged.png',0,'attachment','image/png',0),(14,1,'2017-09-09 00:43:54','2017-09-09 00:43:54','{\n \"wellington::header_image\": {\n \"value\": \"http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Logo-Red-Aged.png\",\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"wellington::header_image_data\": {\n \"value\": {\n \"url\": \"http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Logo-Red-Aged.png\",\n \"thumbnail_url\": \"http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Logo-Red-Aged.png\",\n \"timestamp\": 1504917284227,\n \"attachment_id\": 13,\n \"width\": 473,\n \"height\": 484\n },\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"blogname\": {\n \"value\": \"Crash Into Life\",\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"blogdescription\": {\n \"value\": \"Community.Relationships.And.Spiritual.Healing\",\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"site_icon\": {\n \"value\": 13,\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"wellington_theme_options[site_description]\": {\n \"value\": true,\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"wellington::custom_logo\": {\n \"value\": 16,\n \"type\": \"theme_mod\",\n \"user_id\": 1\n }\n}','','','trash','closed','closed','','b5149e4c-fd2b-4569-82a6-3655a63bca8c','','','2017-09-09 00:43:54','2017-09-09 00:43:54','',0,'http://www.crash.life/wordpress1/?p=14',0,'customize_changeset','',0),(15,1,'2017-09-09 00:38:24','2017-09-09 00:38:24','http://www.crash.life/wordpress1/wp-content/uploads/2017/09/cropped-CRASH-Logo-Red-Aged.png','cropped-CRASH-Logo-Red-Aged.png','','inherit','open','closed','','cropped-crash-logo-red-aged-png','','','2017-09-09 00:38:24','2017-09-09 00:38:24','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/cropped-CRASH-Logo-Red-Aged.png',0,'attachment','image/png',0),(16,1,'2017-09-09 00:43:05','2017-09-09 00:43:05','','CRASH Logo Red Aged 60','','inherit','open','closed','','crash-logo-red-aged-60','','','2017-09-09 00:43:05','2017-09-09 00:43:05','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Logo-Red-Aged-60.png',0,'attachment','image/png',0),(17,1,'2017-09-09 00:48:56','2017-09-09 00:48:56','{\n \"wellington::header_image\": {\n \"value\": \"remove-header\",\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"wellington::header_image_data\": {\n \"value\": \"remove-header\",\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"show_on_front\": {\n \"value\": \"posts\",\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"wellington_theme_options[blog_magazine_widgets]\": {\n \"value\": false,\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"blogdescription\": {\n \"value\": \"Community . Relationships . And . Spiritual . Healing\",\n \"type\": \"option\",\n \"user_id\": 1\n }\n}','','','trash','closed','closed','','484bdd43-31ca-480f-944a-b5b12f4aed56','','','2017-09-09 00:48:56','2017-09-09 00:48:56','',0,'http://www.crash.life/wordpress1/?p=17',0,'customize_changeset','',0),(18,1,'2017-09-09 00:49:28','0000-00-00 00:00:00','','Home','','draft','closed','closed','','','','','2017-09-09 00:49:28','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?p=18',1,'nav_menu_item','',0),(20,1,'2017-09-09 00:51:09','0000-00-00 00:00:00','','Home','','draft','closed','closed','','','','','2017-09-09 00:51:09','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?p=20',1,'nav_menu_item','',0),(22,1,'2017-09-09 00:51:47','0000-00-00 00:00:00','','Home','','draft','closed','closed','','','','','2017-09-09 00:51:47','0000-00-00 00:00:00','',0,'http://www.crash.life/wordpress1/?p=22',1,'nav_menu_item','',0),(26,1,'2017-09-09 00:58:44','2017-09-09 00:58:44','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:\r\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>\r\n...or something like this:\r\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>\r\nAs a new WordPress user, you should go to <a href=\"http://www.crash.life/wordpress1/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Home','','inherit','closed','closed','','2-revision-v1','','','2017-09-09 00:58:44','2017-09-09 00:58:44','',2,'http://www.crash.life/wordpress1/2017/09/09/2-revision-v1/',0,'revision','',0),(27,1,'2017-09-09 00:59:33','2017-09-09 00:59:33','Crash Into Life has been established to assume our share of the responsibility and privilege of propagating the Gospel of Jesus Christ and making Disciples, both at home and in foreign lands, and to minister to people\'s physical, social, and spiritual needs through outreach ministries to all men and women treating them with love, building trust and respect.\r\n<p class=\"font_8\">Our Mission is to love the Lord our God with all our heart, soul, mind, and strength while loving our neighbor as ourselves. To love as He loved and walk as He walked restoring the true identity of the Church into every individual we encounter by Holy Spirits leading and continued discipleship.</p>\r\n<p class=\"font_8\">This organization\'s activities are focused upon the spiritual growth of its members, the training of its youth, evangelistic outreach, and outreach to those in need.</p>\r\n<p class=\"font_8\">Our evangelistic outreach will be based on our awareness of the current work and presence of Holy Spirit and recognizing that at all times, in all places, God is already at work in the lives of every person that we encounter, and our awareness of that grace will shape the ways in which we respond with the Gospel of Christ Jesus.</p>\r\n<p class=\"font_8\">That the World May Know who the person of Jesus Christ is!</p>\r\n\r\n<h1 class=\"font_0\">What we believe:<span class=\"wixGuard\"></span></h1>\r\n<p class=\"font_8\">We believe in God the Father, God the Son, and God the Holy Spirit, and that They are Three in One.</p>\r\n<p class=\"font_8\">The Bible is the inerrant living Word of God to be used to get to know our God and draw us into deeper relationship with Him. If it\'s in the Bible, We believe it to be Truth.</p>\r\n<p class=\"font_8\">The greatest commandment is Love, because He is Love, and became Love, so that we might know Love, become Love, and freely give it to others as it was freely given to us.</p>\r\n<p class=\"font_8\">That this Love is only received through Jesus Christ, our Lord, Savior, and coming King.</p>\r\n<p class=\"font_8\">If you confess with your mouth that Jesus is Lord and believe in your heart that God raised him from the dead, you will be saved.</p>\r\n<p class=\"font_8\">We believe Holy Spirit is our Helper sent here by Jesus to equip us and fill us with power to serve in His Church and our community to effectively go and make Disciples.</p>\r\n<p class=\"font_8\">Jesus is our model, we are to be imitators of Him and Him alone, become like Him, and do as He did.</p>','About Us','','publish','closed','closed','','about','','','2017-09-09 14:49:59','2017-09-09 14:49:59','',0,'http://www.crash.life/wordpress1/?page_id=27',0,'page','',0),(28,1,'2017-09-09 00:59:33','2017-09-09 00:59:33','About','About','','inherit','closed','closed','','27-revision-v1','','','2017-09-09 00:59:33','2017-09-09 00:59:33','',27,'http://www.crash.life/wordpress1/2017/09/09/27-revision-v1/',0,'revision','',0),(29,1,'2017-09-09 01:00:01','2017-09-09 01:00:01','<div id=\"comp-j7deykix4\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4\">\r\n<h2 id=\"comp-j7deykix4balata\" class=\"strc1balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$playbackdesktop\"></h2>\r\n<div id=\"comp-j7deykix4inlineContent\" class=\"strc1inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent\"><section id=\"comp-j7deykix5\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5\">\r\n<div id=\"comp-j7deykix5inlineContent\" class=\"strc1inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent\">\r\n<div id=\"comp-j7deykix6\" class=\"style-j7deyktt5\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6\">\r\n<div id=\"comp-j7deykix6container\" class=\"style-j7deyktt5container\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container\">\r\n<div id=\"comp-j7deykix6inlineContentParent\" class=\"style-j7deyktt5inlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deykix6inlineContent\" class=\"style-j7deyktt5inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykk1\" class=\"style-j7deykix7\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1\">\r\n<div id=\"comp-j7deykk1inlineContent\" class=\"style-j7deykix7inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent\">\r\n<div id=\"comp-j7deykk12\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykk12\">\r\n<h1 class=\"font_0\"><a href=\"http://www.crash.life/wordpress1/Brandon\"><span class=\"color_15\">Brandon Babcock</span></a></h1>\r\n</div>\r\n<div id=\"comp-j7deykk13\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykk13\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deykl1\" class=\"style-j7deykk14\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deykl1link\" class=\"g-transparent-a style-j7deykk14link\" role=\"button\" href=\"mailto:brandon@crash.life\" target=\"_self\" data-content=\"brandon@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1.$link\"><span id=\"comp-j7deykl1label\" class=\"style-j7deykk14label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"comp-j7deykl11\" class=\"style-j7deyku94\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11\">\r\n<div id=\"comp-j7deykl11container\" class=\"style-j7deyku94container\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container\">\r\n<div id=\"comp-j7deykl11balata\" class=\"style-j7deyku94balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deykl11inlineContentParent\" class=\"style-j7deyku94inlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deykl11inlineContent\" class=\"style-j7deyku94inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykm9\" class=\"style-j7deykl12\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9\">\r\n<div id=\"comp-j7deykm9bg\" class=\"style-j7deykl12bg\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$bg\"></div>\r\n<div id=\"comp-j7deykm9inlineContent\" class=\"style-j7deykl12inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent\">\r\n<div id=\"comp-j7deykm91\" class=\"style-j7deykuh\" tabindex=\"0\" role=\"button\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm91\"></div>\r\n<div id=\"comp-j7deykm92\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm92\">\r\n<h1 class=\"font_0\"><span class=\"color_15\">Josh Myers</span></h1>\r\n</div>\r\n<div id=\"comp-j7deykm93\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm93\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deyknl\" class=\"style-j7deykm94\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deyknllink\" class=\"g-transparent-a style-j7deykm94link\" role=\"button\" href=\"mailto:josh@crash.life\" target=\"_self\" data-content=\"josh@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl.$link\"><span id=\"comp-j7deyknllabel\" class=\"style-j7deykm94label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"comp-j7deyknl1\" class=\"style-j7deykut\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1\">\r\n<div id=\"comp-j7deyknl1container\" class=\"style-j7deykutcontainer\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container\">\r\n<div id=\"comp-j7deyknl1balata\" class=\"style-j7deykutbalata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deyknl1inlineContentParent\" class=\"style-j7deykutinlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deyknl1inlineContent\" class=\"style-j7deykutinlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykol\" class=\"style-j7deyknl2\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol\">\r\n<div id=\"comp-j7deykolbg\" class=\"style-j7deyknl2bg\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$bg\"></div>\r\n<div id=\"comp-j7deykolinlineContent\" class=\"style-j7deyknl2inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent\">\r\n<div id=\"comp-j7deykol1\" class=\"style-j7deykux2\" tabindex=\"0\" role=\"button\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol1\"></div>\r\n<div id=\"comp-j7deykol2\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol2\">\r\n<h1 class=\"font_0\"><span class=\"color_15\">Joel Connelly</span></h1>\r\n</div>\r\n<div id=\"comp-j7deykol3\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol3\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deykpl\" class=\"style-j7deykol4\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deykpllink\" class=\"g-transparent-a style-j7deykol4link\" role=\"button\" href=\"mailto:joel@crash.life\" target=\"_self\" data-content=\"joel@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl.$link\"><span id=\"comp-j7deykpllabel\" class=\"style-j7deykol4label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>','Meet the Team','','publish','closed','closed','','meet-the-team','','','2017-09-09 14:54:45','2017-09-09 14:54:45','',0,'http://www.crash.life/wordpress1/?page_id=29',0,'page','',0),(30,1,'2017-09-09 01:00:01','2017-09-09 01:00:01','Meet the Team','Meet the Team','','inherit','closed','closed','','29-revision-v1','','','2017-09-09 01:00:01','2017-09-09 01:00:01','',29,'http://www.crash.life/wordpress1/2017/09/09/29-revision-v1/',0,'revision','',0),(31,1,'2017-09-09 01:00:23','2017-09-09 01:00:23','<p style=\"text-align: left;\">If you’d like to contribute to our work with a one time gift, you can do it here using <a href=\"http://www.paypal.com/\">PayPal.</a></p>\r\n\r\n<h2 style=\"text-align: left;\">One-time Gift:</h2>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<div>\r\n<p style=\"text-align: left;\">If you’d like to contribute monthly or weekly to our work, you can setup recurring payments using <a href=\"http://www.paypal.com/\">PayPal.</a></p>\r\n\r\n</div>','Donate','','publish','closed','closed','','donate','','','2017-09-09 14:52:43','2017-09-09 14:52:43','',0,'http://www.crash.life/wordpress1/?page_id=31',0,'page','',0),(32,1,'2017-09-09 01:00:23','2017-09-09 01:00:23','Donate','Donate','','inherit','closed','closed','','31-revision-v1','','','2017-09-09 01:00:23','2017-09-09 01:00:23','',31,'http://www.crash.life/wordpress1/2017/09/09/31-revision-v1/',0,'revision','',0),(33,1,'2017-09-09 01:03:42','2017-09-09 01:03:42',' ','','','publish','closed','closed','','33','','','2017-09-09 01:03:42','2017-09-09 01:03:42','',0,'http://www.crash.life/wordpress1/?p=33',4,'nav_menu_item','',0),(34,1,'2017-09-09 01:03:42','2017-09-09 01:03:42',' ','','','publish','closed','closed','','34','','','2017-09-09 01:03:42','2017-09-09 01:03:42','',0,'http://www.crash.life/wordpress1/?p=34',3,'nav_menu_item','',0),(35,1,'2017-09-09 01:03:41','2017-09-09 01:03:41',' ','','','publish','closed','closed','','35','','','2017-09-09 01:03:41','2017-09-09 01:03:41','',0,'http://www.crash.life/wordpress1/?p=35',2,'nav_menu_item','',0),(36,1,'2017-09-09 01:03:41','2017-09-09 01:03:41',' ','','','publish','closed','closed','','36','','','2017-09-09 01:03:41','2017-09-09 01:03:41','',0,'http://www.crash.life/wordpress1/?p=36',1,'nav_menu_item','',0),(37,1,'2017-09-09 01:05:31','2017-09-09 01:05:31','{\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"page_on_front\": {\n \"value\": \"2\",\n \"type\": \"option\",\n \"user_id\": 1\n }\n}','','','trash','closed','closed','','e7771992-f4ee-4ad1-b220-1b8f7c7e8633','','','2017-09-09 01:05:31','2017-09-09 01:05:31','',0,'http://www.crash.life/wordpress1/2017/09/09/e7771992-f4ee-4ad1-b220-1b8f7c7e8633/',0,'customize_changeset','',0),(38,1,'2017-09-09 01:08:10','2017-09-09 01:08:10','{\n \"wellington::background_image\": {\n \"value\": \"http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Logo-Red-Aged.png\",\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"wellington::background_position_x\": {\n \"value\": \"center\",\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"wellington::background_position_y\": {\n \"value\": \"center\",\n \"type\": \"theme_mod\",\n \"user_id\": 1\n }\n}','','','trash','closed','closed','','ee438a88-130f-4afd-8e82-eb83b1bbb3a6','','','2017-09-09 01:08:10','2017-09-09 01:08:10','',0,'http://www.crash.life/wordpress1/?p=38',0,'customize_changeset','',0),(39,1,'2017-09-09 01:09:09','2017-09-09 01:09:09','{\n \"wellington::background_color\": {\n \"value\": \"#dd3333\",\n \"type\": \"theme_mod\",\n \"user_id\": 1\n },\n \"wellington::background_image\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1\n }\n}','','','trash','closed','closed','','59965e63-e720-49b9-ad71-f11cb37f1df9','','','2017-09-09 01:09:09','2017-09-09 01:09:09','',0,'http://www.crash.life/wordpress1/?p=39',0,'customize_changeset','',0),(40,1,'2017-09-09 01:12:26','2017-09-09 01:12:26','{\n \"wellington::background_color\": {\n \"value\": \"#9e0b0f\",\n \"type\": \"theme_mod\",\n \"user_id\": 1\n }\n}','','','trash','closed','closed','','56b84328-51d8-418d-b528-3c8533ee52c6','','','2017-09-09 01:12:26','2017-09-09 01:12:26','',0,'http://www.crash.life/wordpress1/2017/09/09/56b84328-51d8-418d-b528-3c8533ee52c6/',0,'customize_changeset','',0),(41,1,'2017-09-09 14:10:48','2017-09-09 14:10:48','','CRASH Logo Red Aged 100','','inherit','open','closed','','crash-logo-red-aged-100','','','2017-09-09 14:10:48','2017-09-09 14:10:48','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Logo-Red-Aged-100.png',0,'attachment','image/png',0),(42,1,'2017-09-09 14:12:41','2017-09-09 14:12:41','{\n \"wellington::custom_logo\": {\n \"value\": 43,\n \"type\": \"theme_mod\",\n \"user_id\": 1\n }\n}','','','trash','closed','closed','','096a7ee8-4bd9-4b56-8df3-484a8833c5fb','','','2017-09-09 14:12:41','2017-09-09 14:12:41','',0,'http://www.crash.life/wordpress1/?p=42',0,'customize_changeset','',0),(43,1,'2017-09-09 14:12:26','2017-09-09 14:12:26','','CRASH Logo Red Aged 70','','inherit','open','closed','','crash-logo-red-aged-70','','','2017-09-09 14:12:26','2017-09-09 14:12:26','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Logo-Red-Aged-70.png',0,'attachment','image/png',0),(44,1,'2017-09-09 14:15:03','2017-09-09 14:15:03','','CRASH Logo Red Aged 100','','inherit','open','closed','','crash-logo-red-aged-100-2','','','2017-09-09 14:15:03','2017-09-09 14:15:03','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Logo-Red-Aged-100-1.png',0,'attachment','image/png',0),(45,1,'2017-09-09 14:15:11','2017-09-09 14:15:11','{\n \"wellington::custom_logo\": {\n \"value\": 44,\n \"type\": \"theme_mod\",\n \"user_id\": 1\n }\n}','','','trash','closed','closed','','2f36f762-1a2a-41bd-9d83-34cceed5e6c7','','','2017-09-09 14:15:11','2017-09-09 14:15:11','',0,'http://www.crash.life/wordpress1/2017/09/09/2f36f762-1a2a-41bd-9d83-34cceed5e6c7/',0,'customize_changeset','',0),(46,1,'2017-09-09 14:22:56','2017-09-09 14:22:56','','CRASH Header Logo Red Aged','','inherit','open','closed','','crash-header-logo-red-aged','','','2017-09-09 14:22:56','2017-09-09 14:22:56','',0,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/CRASH-Header-Logo-Red-Aged.png',0,'attachment','image/png',0),(47,1,'2017-09-09 14:23:29','2017-09-09 14:23:29','{\n \"blogname\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"blogdescription\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1\n },\n \"wellington::custom_logo\": {\n \"value\": 46,\n \"type\": \"theme_mod\",\n \"user_id\": 1\n }\n}','','','trash','closed','closed','','5e72bf48-b5a5-4391-9ab2-f2b253cb6c84','','','2017-09-09 14:23:29','2017-09-09 14:23:29','',0,'http://www.crash.life/wordpress1/2017/09/09/5e72bf48-b5a5-4391-9ab2-f2b253cb6c84/',0,'customize_changeset','',0),(48,1,'2017-09-09 14:36:17','2017-09-09 14:36:17',' \n<h2>Experience Crash Into Life</h2>\n<p style=\"text-align: left;\">Here at Crash Into Life, Our evangelistic outreach will be based on our awareness of the current work and presence of Holy Spirit and recognizing that at all times, in all places, God is already at work in the lives of every person that we encounter, and our awareness of that grace will shape the ways in which we respond with the Gospel of Christ Jesus.</p>\n[video width=\"640\" height=\"360\" mp4=\"http://www.crash.life/wordpress1/wp-content/uploads/2017/08/Crash-Into-Life.mp4\"][/video]\n\n ','Home','','inherit','closed','closed','','2-autosave-v1','','','2017-09-09 14:36:17','2017-09-09 14:36:17','',2,'http://www.crash.life/wordpress1/2017/09/09/2-autosave-v1/',0,'revision','',0),(49,1,'2017-09-09 14:32:12','2017-09-09 14:32:12',' \r\n<h2>Experience Crash Into Life</h2>\r\nHere at Crash Into Life, Our evangelistic outreach will be based on our awareness of the current work and presence of Holy Spirit and recognizing that at all times, in all places, God is already at work in the lives of every person that we encounter, and our awareness of that grace will shape the ways in which we respond with the Gospel of Christ Jesus.\r\n\r\n<iframe width=\"854\" height=\"480\" src=\"https://www.youtube.com/embed/1iqku1F7eqM\" frameborder=\"0\" allowfullscreen></iframe>\r\n\r\n ','Home','','inherit','closed','closed','','2-revision-v1','','','2017-09-09 14:32:12','2017-09-09 14:32:12','',2,'http://www.crash.life/wordpress1/2017/09/09/2-revision-v1/',0,'revision','',0),(50,1,'2017-09-09 14:35:46','2017-09-09 14:35:46','','Crash Into Life','','inherit','open','closed','','crash-into-life','','','2017-09-09 14:35:46','2017-09-09 14:35:46','',2,'http://www.crash.life/wordpress1/wp-content/uploads/2017/08/Crash-Into-Life.mp4',0,'attachment','video/mp4',0),(51,1,'2017-09-09 14:37:46','2017-09-09 14:37:46','<h2>Experience Crash Into Life</h2>\r\nThis organization\'s activities are focused upon the spiritual growth of its members, the training of its youth, evangelistic outreach, and discipleship.\r\n<h2>Crash Into Life at a glance</h2>\r\n<p style=\"text-align: left;\">Here at Crash Into Life, Our evangelistic outreach will be based on our awareness of the current work and presence of Holy Spirit and recognizing that at all times, in all places, God is already at work in the lives of every person that we encounter, and our awareness of that grace will shape the ways in which we respond with the Gospel of Christ Jesus.</p>\r\n[video width=\"640\" height=\"360\" mp4=\"http://www.crash.life/wordpress1/wp-content/uploads/2017/08/Crash-Into-Life.mp4\"][/video]\r\n\r\n ','Home','','inherit','closed','closed','','2-revision-v1','','','2017-09-09 14:37:46','2017-09-09 14:37:46','',2,'http://www.crash.life/wordpress1/2017/09/09/2-revision-v1/',0,'revision','',0),(52,1,'2017-09-09 14:39:01','2017-09-09 14:39:01','<h2>About Us</h2>\n<p class=\"font_8\">Crash Into Life has been established to assume our share of the responsibility and privilege of propagating the Gospel of Jesus Christ and making Disciples, both at home and in foreign lands, and to minister to people\'s physical, social, and spiritual needs through outreach ministries to all men and women treating them with love, building trust and respect.</p>\n<p class=\"font_8\">Our Mission is to love the Lord our God with all our heart, soul, mind, and strength while loving our neighbor as ourselves. To love as He loved and walk as He walked restoring the true identity of the Church into every individual we encounter by Holy Spirits leading and continued discipleship.</p>\n<p class=\"font_8\">This organization\'s activities are focused upon the spiritual growth of its members, the training of its youth, evangelistic outreach, and outreach to those in need.</p>\n<p class=\"font_8\">Our evangelistic outreach will be based on our awareness of the current work and presence of Holy Spirit and recognizing that at all times, in all places, God is already at work in the lives of every person that we encounter, and our awareness of that grace will shape the ways in which we respond with the Gospel of Christ Jesus.</p>\n<p class=\"font_8\">That the World May Know who the person of Jesus Christ is!</p>\n\n<h1 class=\"font_0\"></h1>\n<h1 class=\"font_0\">What we believe:<span class=\"wixGuard\"></span></h1>\n<p class=\"font_8\">We believe in God the Father, God the Son, and God the Holy Spirit, and that They are Three in One.</p>\n<p class=\"font_8\">The Bible is the inerrant living Word of God to be used to get to know our God and draw us into deeper relationship with Him. If it\'s in the Bible, We believe it to be Truth.</p>\n<p class=\"font_8\">The greatest commandment is Love, because He is Love, and became Love, so that we might know Love, become Love, and freely give it to others as it was freely given to us.</p>\n<p class=\"font_8\">That this Love is only received through Jesus Christ, our Lord, Savior, and coming King.</p>\n<p class=\"font_8\">If you confess with your mouth that Jesus is Lord and believe in your heart that God raised him from the dead, you will be saved.</p>\n<p class=\"font_8\">We believe Holy Spirit is our Helper sent here by Jesus to equip us and fill us with power to serve in His Church and our community to effectively go and make Disciples.</p>\n<p class=\"font_8\">Jesus is our model, we are to be imitators of Him and Him alone, become like Him, and do as He did.</p>','About','','inherit','closed','closed','','27-autosave-v1','','','2017-09-09 14:39:01','2017-09-09 14:39:01','',27,'http://www.crash.life/wordpress1/2017/09/09/27-autosave-v1/',0,'revision','',0),(53,1,'2017-09-09 14:39:23','2017-09-09 14:39:23','<h2>About Us</h2>\r\n<p class=\"font_8\">Crash Into Life has been established to assume our share of the responsibility and privilege of propagating the Gospel of Jesus Christ and making Disciples, both at home and in foreign lands, and to minister to people\'s physical, social, and spiritual needs through outreach ministries to all men and women treating them with love, building trust and respect.</p>\r\n<p class=\"font_8\">Our Mission is to love the Lord our God with all our heart, soul, mind, and strength while loving our neighbor as ourselves. To love as He loved and walk as He walked restoring the true identity of the Church into every individual we encounter by Holy Spirits leading and continued discipleship.</p>\r\n<p class=\"font_8\">This organization\'s activities are focused upon the spiritual growth of its members, the training of its youth, evangelistic outreach, and outreach to those in need.</p>\r\n<p class=\"font_8\">Our evangelistic outreach will be based on our awareness of the current work and presence of Holy Spirit and recognizing that at all times, in all places, God is already at work in the lives of every person that we encounter, and our awareness of that grace will shape the ways in which we respond with the Gospel of Christ Jesus.</p>\r\n<p class=\"font_8\">That the World May Know who the person of Jesus Christ is!</p>\r\n\r\n<h1 class=\"font_0\">What we believe:<span class=\"wixGuard\"></span></h1>\r\n<p class=\"font_8\">We believe in God the Father, God the Son, and God the Holy Spirit, and that They are Three in One.</p>\r\n<p class=\"font_8\">The Bible is the inerrant living Word of God to be used to get to know our God and draw us into deeper relationship with Him. If it\'s in the Bible, We believe it to be Truth.</p>\r\n<p class=\"font_8\">The greatest commandment is Love, because He is Love, and became Love, so that we might know Love, become Love, and freely give it to others as it was freely given to us.</p>\r\n<p class=\"font_8\">That this Love is only received through Jesus Christ, our Lord, Savior, and coming King.</p>\r\n<p class=\"font_8\">If you confess with your mouth that Jesus is Lord and believe in your heart that God raised him from the dead, you will be saved.</p>\r\n<p class=\"font_8\">We believe Holy Spirit is our Helper sent here by Jesus to equip us and fill us with power to serve in His Church and our community to effectively go and make Disciples.</p>\r\n<p class=\"font_8\">Jesus is our model, we are to be imitators of Him and Him alone, become like Him, and do as He did.</p>','About','','inherit','closed','closed','','27-revision-v1','','','2017-09-09 14:39:23','2017-09-09 14:39:23','',27,'http://www.crash.life/wordpress1/2017/09/09/27-revision-v1/',0,'revision','',0),(54,1,'2017-09-09 14:40:24','2017-09-09 14:40:24','<h2 class=\"font_2\">Welcome to CRASH Into Life with Brandon</h2>\r\n<p class=\"font_8\">These are things and thoughts that represent my walk with the Lord. I will continue to add to them as He gives me time. I hope you are able to glean from them and they provoke you into a deeper walk with the Holy Spirit.</p>\r\n<p class=\"font_8\">Always be like a Berean!</p>\r\n<p class=\"font_8\">Acts 17:11, Now the Berean Jews were of more noble character than those in Thessalonica, for they received the message with great eagerness and examined the Scriptures every day to see if what Paul said was true.</p>\r\n<p class=\"font_8\">Holy Spirit is your Helper and will always help you rightly divide the Word of Truth. You should never seek to become like anyone else but Jesus. We are to be imitators of Him and Him alone. You were knit together in your mothers womb and planned before the foundations of the world and created to be uniquely you for a special purpose.</p>\r\n<p class=\"font_8\">So let us consider how we may spur one another on toward love and good deeds, not giving up meeting together, but encouraging one another to get into the fight.</p>\r\n<p class=\"font_8\">Disclaimer: I don\'t fully support any links to other ministries on this website. The Bible, Father God, Jesus, and Holy Spirit are one in the same and are the Authority in my life. Seek Them first in all things because all men are fallible, but that doesn\'t mean we can\'t glean from one another and take the best that each of us has to offer. Let\'s grow and run with this together growing the Kingdom, not doing the devil\'s work and condemning and judging our brothers and sisters tearing the body of Christ down in distractions and arguments with one another. Let Holy Spirit lead you to run together with others or run alone, whatever the season in your life. The devil divides, and a divided house will fall. Jesus is the answer, let\'s talk about the answer and not get distracted talking about the problems with one another.</p>\r\n\r\n<h3 class=\"font_3\"></h3>\r\n<h3 class=\"font_3\">Useful Links:</h3>\r\n<p class=\"font_8\">One Father, OneTeacher:</p>\r\n<p class=\"font_8\"><a>BibleGateway.com - Official Site</a></p>\r\n<p class=\"font_8\">What it can look like to try and walk out the above:</p>\r\n<p class=\"font_8\"><a>Todd White - Lifestyle Christianity</a></p>\r\n<p class=\"font_8\"><a>Todd White | Power and Love Ministries</a></p>\r\n<p class=\"font_8\"><a>Robby Dawkins</a></p>\r\n<p class=\"font_8\"><a>Dan Mohler - Neck Ministries</a></p>\r\n<p class=\"font_8\"><a>Bob Hazlett - Official Site</a></p>\r\n<p class=\"font_8\"><a>Praying Medic Home</a></p>\r\n<p class=\"font_8\"><a>Home - The Last Reformation</a></p>','Brandon','','publish','closed','closed','','brandon','','','2017-09-09 14:40:24','2017-09-09 14:40:24','',0,'http://www.crash.life/wordpress1/?page_id=54',0,'page','',0),(55,1,'2017-09-09 14:40:24','2017-09-09 14:40:24','<h2 class=\"font_2\">Welcome to CRASH Into Life with Brandon</h2>\r\n<p class=\"font_8\">These are things and thoughts that represent my walk with the Lord. I will continue to add to them as He gives me time. I hope you are able to glean from them and they provoke you into a deeper walk with the Holy Spirit.</p>\r\n<p class=\"font_8\">Always be like a Berean!</p>\r\n<p class=\"font_8\">Acts 17:11, Now the Berean Jews were of more noble character than those in Thessalonica, for they received the message with great eagerness and examined the Scriptures every day to see if what Paul said was true.</p>\r\n<p class=\"font_8\">Holy Spirit is your Helper and will always help you rightly divide the Word of Truth. You should never seek to become like anyone else but Jesus. We are to be imitators of Him and Him alone. You were knit together in your mothers womb and planned before the foundations of the world and created to be uniquely you for a special purpose.</p>\r\n<p class=\"font_8\">So let us consider how we may spur one another on toward love and good deeds, not giving up meeting together, but encouraging one another to get into the fight.</p>\r\n<p class=\"font_8\">Disclaimer: I don\'t fully support any links to other ministries on this website. The Bible, Father God, Jesus, and Holy Spirit are one in the same and are the Authority in my life. Seek Them first in all things because all men are fallible, but that doesn\'t mean we can\'t glean from one another and take the best that each of us has to offer. Let\'s grow and run with this together growing the Kingdom, not doing the devil\'s work and condemning and judging our brothers and sisters tearing the body of Christ down in distractions and arguments with one another. Let Holy Spirit lead you to run together with others or run alone, whatever the season in your life. The devil divides, and a divided house will fall. Jesus is the answer, let\'s talk about the answer and not get distracted talking about the problems with one another.</p>\r\n\r\n<h3 class=\"font_3\"></h3>\r\n<h3 class=\"font_3\">Useful Links:</h3>\r\n<p class=\"font_8\">One Father, OneTeacher:</p>\r\n<p class=\"font_8\"><a>BibleGateway.com - Official Site</a></p>\r\n<p class=\"font_8\">What it can look like to try and walk out the above:</p>\r\n<p class=\"font_8\"><a>Todd White - Lifestyle Christianity</a></p>\r\n<p class=\"font_8\"><a>Todd White | Power and Love Ministries</a></p>\r\n<p class=\"font_8\"><a>Robby Dawkins</a></p>\r\n<p class=\"font_8\"><a>Dan Mohler - Neck Ministries</a></p>\r\n<p class=\"font_8\"><a>Bob Hazlett - Official Site</a></p>\r\n<p class=\"font_8\"><a>Praying Medic Home</a></p>\r\n<p class=\"font_8\"><a>Home - The Last Reformation</a></p>','Brandon','','inherit','closed','closed','','54-revision-v1','','','2017-09-09 14:40:24','2017-09-09 14:40:24','',54,'http://www.crash.life/wordpress1/2017/09/09/54-revision-v1/',0,'revision','',0),(56,1,'2017-09-09 14:45:28','2017-09-09 14:45:28','<div id=\"comp-j7deykix1\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix1\">\r\n<div id=\"comp-j7deykix1balata\" class=\"strc1balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix1.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deykix1inlineContent\" class=\"strc1inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix1.$inlineContent\">\r\n<div id=\"comp-j7deykix2\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix1.$inlineContent.$comp-j7deykix2\">\r\n<h6 class=\"font_6\"><span class=\"color_11\">Our Leaders</span></h6>\r\n</div>\r\n<div id=\"comp-j7deykix3\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix1.$inlineContent.$comp-j7deykix3\">\r\n<p class=\"font_8\"><span class=\"color_11\">The Faces of Our Organization</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"comp-j7deykix4\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4\">\r\n<div id=\"comp-j7deykix4balata\" class=\"strc1balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deykix4inlineContent\" class=\"strc1inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent\"><section id=\"comp-j7deykix5\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5\">\r\n<div id=\"comp-j7deykix5balata\" class=\"strc1balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deykix5inlineContent\" class=\"strc1inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent\">\r\n<div id=\"comp-j7deykix6\" class=\"style-j7deyktt5\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6\">\r\n<div id=\"comp-j7deykix6container\" class=\"style-j7deyktt5container\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container\">\r\n<div id=\"comp-j7deykix6balata\" class=\"style-j7deyktt5balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deykix6inlineContentParent\" class=\"style-j7deyktt5inlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deykix6inlineContent\" class=\"style-j7deyktt5inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykk1\" class=\"style-j7deykix7\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1\">\r\n<div id=\"comp-j7deykk1bg\" class=\"style-j7deykix7bg\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$bg\"></div>\r\n<div id=\"comp-j7deykk1inlineContent\" class=\"style-j7deykix7inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent\">\r\n<div id=\"comp-j7deykk11\" class=\"style-j7deyku12\" tabindex=\"0\" role=\"button\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykk11\"></div>\r\n<div id=\"comp-j7deykk12\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykk12\">\r\n<h1 class=\"font_0\"><a href=\"http://www.crash.life/wordpress1/Brandon\"><span class=\"color_15\">Brandon Babcock</span></a></h1>\r\n</div>\r\n<div id=\"comp-j7deykk13\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykk13\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deykl1\" class=\"style-j7deykk14\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deykl1link\" class=\"g-transparent-a style-j7deykk14link\" role=\"button\" href=\"mailto:brandon@crash.life\" target=\"_self\" data-content=\"brandon@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1.$link\"><span id=\"comp-j7deykl1label\" class=\"style-j7deykk14label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"comp-j7deykl11\" class=\"style-j7deyku94\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11\">\r\n<div id=\"comp-j7deykl11container\" class=\"style-j7deyku94container\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container\">\r\n<div id=\"comp-j7deykl11balata\" class=\"style-j7deyku94balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deykl11inlineContentParent\" class=\"style-j7deyku94inlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deykl11inlineContent\" class=\"style-j7deyku94inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykm9\" class=\"style-j7deykl12\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9\">\r\n<div id=\"comp-j7deykm9bg\" class=\"style-j7deykl12bg\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$bg\"></div>\r\n<div id=\"comp-j7deykm9inlineContent\" class=\"style-j7deykl12inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent\">\r\n<div id=\"comp-j7deykm91\" class=\"style-j7deykuh\" tabindex=\"0\" role=\"button\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm91\"></div>\r\n<div id=\"comp-j7deykm92\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm92\">\r\n<h1 class=\"font_0\"><span class=\"color_15\">Josh Myers</span></h1>\r\n</div>\r\n<div id=\"comp-j7deykm93\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm93\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deyknl\" class=\"style-j7deykm94\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deyknllink\" class=\"g-transparent-a style-j7deykm94link\" role=\"button\" href=\"mailto:josh@crash.life\" target=\"_self\" data-content=\"josh@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl.$link\"><span id=\"comp-j7deyknllabel\" class=\"style-j7deykm94label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"comp-j7deyknl1\" class=\"style-j7deykut\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1\">\r\n<div id=\"comp-j7deyknl1container\" class=\"style-j7deykutcontainer\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container\">\r\n<div id=\"comp-j7deyknl1balata\" class=\"style-j7deykutbalata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deyknl1inlineContentParent\" class=\"style-j7deykutinlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deyknl1inlineContent\" class=\"style-j7deykutinlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykol\" class=\"style-j7deyknl2\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol\">\r\n<div id=\"comp-j7deykolbg\" class=\"style-j7deyknl2bg\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$bg\"></div>\r\n<div id=\"comp-j7deykolinlineContent\" class=\"style-j7deyknl2inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent\">\r\n<div id=\"comp-j7deykol1\" class=\"style-j7deykux2\" tabindex=\"0\" role=\"button\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol1\"></div>\r\n<div id=\"comp-j7deykol2\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol2\">\r\n<h1 class=\"font_0\"><span class=\"color_15\">Joel Connelly</span></h1>\r\n</div>\r\n<div id=\"comp-j7deykol3\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol3\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deykpl\" class=\"style-j7deykol4\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deykpllink\" class=\"g-transparent-a style-j7deykol4link\" role=\"button\" href=\"mailto:joel@crash.life\" target=\"_self\" data-content=\"joel@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl.$link\"><span id=\"comp-j7deykpllabel\" class=\"style-j7deykol4label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>','Meet the Team','','inherit','closed','closed','','29-revision-v1','','','2017-09-09 14:45:28','2017-09-09 14:45:28','',29,'http://www.crash.life/wordpress1/2017/09/09/29-revision-v1/',0,'revision','',0),(57,1,'2017-09-09 14:47:48','2017-09-09 14:47:48','<div id=\"comp-j7deykix1\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix1\"></div>\r\n<div id=\"comp-j7deykix4\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4\">\r\n<h2 id=\"comp-j7deykix4balata\" class=\"strc1balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$playbackdesktop\">Meet The Team:</h2>\r\n<div id=\"comp-j7deykix4inlineContent\" class=\"strc1inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent\"><section id=\"comp-j7deykix5\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5\">\r\n<div id=\"comp-j7deykix5inlineContent\" class=\"strc1inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent\">\r\n<div id=\"comp-j7deykix6\" class=\"style-j7deyktt5\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6\">\r\n<div id=\"comp-j7deykix6container\" class=\"style-j7deyktt5container\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container\">\r\n<div id=\"comp-j7deykix6inlineContentParent\" class=\"style-j7deyktt5inlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deykix6inlineContent\" class=\"style-j7deyktt5inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykk1\" class=\"style-j7deykix7\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1\">\r\n<div id=\"comp-j7deykk1inlineContent\" class=\"style-j7deykix7inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent\">\r\n<div id=\"comp-j7deykk12\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykk12\">\r\n<h1 class=\"font_0\"><a href=\"http://www.crash.life/wordpress1/Brandon\"><span class=\"color_15\">Brandon Babcock</span></a></h1>\r\n</div>\r\n<div id=\"comp-j7deykk13\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykk13\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deykl1\" class=\"style-j7deykk14\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deykl1link\" class=\"g-transparent-a style-j7deykk14link\" role=\"button\" href=\"mailto:brandon@crash.life\" target=\"_self\" data-content=\"brandon@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1.$link\"><span id=\"comp-j7deykl1label\" class=\"style-j7deykk14label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"comp-j7deykl11\" class=\"style-j7deyku94\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11\">\r\n<div id=\"comp-j7deykl11container\" class=\"style-j7deyku94container\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container\">\r\n<div id=\"comp-j7deykl11balata\" class=\"style-j7deyku94balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deykl11inlineContentParent\" class=\"style-j7deyku94inlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deykl11inlineContent\" class=\"style-j7deyku94inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykm9\" class=\"style-j7deykl12\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9\">\r\n<div id=\"comp-j7deykm9bg\" class=\"style-j7deykl12bg\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$bg\"></div>\r\n<div id=\"comp-j7deykm9inlineContent\" class=\"style-j7deykl12inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent\">\r\n<div id=\"comp-j7deykm91\" class=\"style-j7deykuh\" tabindex=\"0\" role=\"button\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm91\"></div>\r\n<div id=\"comp-j7deykm92\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm92\">\r\n<h1 class=\"font_0\"><span class=\"color_15\">Josh Myers</span></h1>\r\n</div>\r\n<div id=\"comp-j7deykm93\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm93\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deyknl\" class=\"style-j7deykm94\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deyknllink\" class=\"g-transparent-a style-j7deykm94link\" role=\"button\" href=\"mailto:josh@crash.life\" target=\"_self\" data-content=\"josh@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl.$link\"><span id=\"comp-j7deyknllabel\" class=\"style-j7deykm94label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"comp-j7deyknl1\" class=\"style-j7deykut\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1\">\r\n<div id=\"comp-j7deyknl1container\" class=\"style-j7deykutcontainer\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container\">\r\n<div id=\"comp-j7deyknl1balata\" class=\"style-j7deykutbalata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deyknl1inlineContentParent\" class=\"style-j7deykutinlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deyknl1inlineContent\" class=\"style-j7deykutinlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykol\" class=\"style-j7deyknl2\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol\">\r\n<div id=\"comp-j7deykolbg\" class=\"style-j7deyknl2bg\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$bg\"></div>\r\n<div id=\"comp-j7deykolinlineContent\" class=\"style-j7deyknl2inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent\">\r\n<div id=\"comp-j7deykol1\" class=\"style-j7deykux2\" tabindex=\"0\" role=\"button\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol1\"></div>\r\n<div id=\"comp-j7deykol2\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol2\">\r\n<h1 class=\"font_0\"><span class=\"color_15\">Joel Connelly</span></h1>\r\n</div>\r\n<div id=\"comp-j7deykol3\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol3\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deykpl\" class=\"style-j7deykol4\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deykpllink\" class=\"g-transparent-a style-j7deykol4link\" role=\"button\" href=\"mailto:joel@crash.life\" target=\"_self\" data-content=\"joel@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl.$link\"><span id=\"comp-j7deykpllabel\" class=\"style-j7deykol4label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>','Meet the Team','','inherit','closed','closed','','29-revision-v1','','','2017-09-09 14:47:48','2017-09-09 14:47:48','',29,'http://www.crash.life/wordpress1/2017/09/09/29-revision-v1/',0,'revision','',0),(58,1,'2017-09-09 14:49:59','2017-09-09 14:49:59','Crash Into Life has been established to assume our share of the responsibility and privilege of propagating the Gospel of Jesus Christ and making Disciples, both at home and in foreign lands, and to minister to people\'s physical, social, and spiritual needs through outreach ministries to all men and women treating them with love, building trust and respect.\r\n<p class=\"font_8\">Our Mission is to love the Lord our God with all our heart, soul, mind, and strength while loving our neighbor as ourselves. To love as He loved and walk as He walked restoring the true identity of the Church into every individual we encounter by Holy Spirits leading and continued discipleship.</p>\r\n<p class=\"font_8\">This organization\'s activities are focused upon the spiritual growth of its members, the training of its youth, evangelistic outreach, and outreach to those in need.</p>\r\n<p class=\"font_8\">Our evangelistic outreach will be based on our awareness of the current work and presence of Holy Spirit and recognizing that at all times, in all places, God is already at work in the lives of every person that we encounter, and our awareness of that grace will shape the ways in which we respond with the Gospel of Christ Jesus.</p>\r\n<p class=\"font_8\">That the World May Know who the person of Jesus Christ is!</p>\r\n\r\n<h1 class=\"font_0\">What we believe:<span class=\"wixGuard\"></span></h1>\r\n<p class=\"font_8\">We believe in God the Father, God the Son, and God the Holy Spirit, and that They are Three in One.</p>\r\n<p class=\"font_8\">The Bible is the inerrant living Word of God to be used to get to know our God and draw us into deeper relationship with Him. If it\'s in the Bible, We believe it to be Truth.</p>\r\n<p class=\"font_8\">The greatest commandment is Love, because He is Love, and became Love, so that we might know Love, become Love, and freely give it to others as it was freely given to us.</p>\r\n<p class=\"font_8\">That this Love is only received through Jesus Christ, our Lord, Savior, and coming King.</p>\r\n<p class=\"font_8\">If you confess with your mouth that Jesus is Lord and believe in your heart that God raised him from the dead, you will be saved.</p>\r\n<p class=\"font_8\">We believe Holy Spirit is our Helper sent here by Jesus to equip us and fill us with power to serve in His Church and our community to effectively go and make Disciples.</p>\r\n<p class=\"font_8\">Jesus is our model, we are to be imitators of Him and Him alone, become like Him, and do as He did.</p>','About Us','','inherit','closed','closed','','27-revision-v1','','','2017-09-09 14:49:59','2017-09-09 14:49:59','',27,'http://www.crash.life/wordpress1/2017/09/09/27-revision-v1/',0,'revision','',0),(59,1,'2017-09-09 14:50:17','2017-09-09 14:50:17','<div id=\"comp-j7deykix4\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4\">\r\n<h2 id=\"comp-j7deykix4balata\" class=\"strc1balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$playbackdesktop\"></h2>\r\n<div id=\"comp-j7deykix4inlineContent\" class=\"strc1inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent\"><section id=\"comp-j7deykix5\" class=\"strc1\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5\">\r\n<div id=\"comp-j7deykix5inlineContent\" class=\"strc1inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent\">\r\n<div id=\"comp-j7deykix6\" class=\"style-j7deyktt5\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6\">\r\n<div id=\"comp-j7deykix6container\" class=\"style-j7deyktt5container\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container\">\r\n<div id=\"comp-j7deykix6inlineContentParent\" class=\"style-j7deyktt5inlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deykix6inlineContent\" class=\"style-j7deyktt5inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykk1\" class=\"style-j7deykix7\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1\">\r\n<div id=\"comp-j7deykk1inlineContent\" class=\"style-j7deykix7inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent\">\r\n<div id=\"comp-j7deykk12\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykk12\">\r\n<h1 class=\"font_0\"><a href=\"http://www.crash.life/wordpress1/Brandon\"><span class=\"color_15\">Brandon Babcock</span></a></h1>\r\n</div>\r\n<div id=\"comp-j7deykk13\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykk13\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deykl1\" class=\"style-j7deykk14\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deykl1link\" class=\"g-transparent-a style-j7deykk14link\" role=\"button\" href=\"mailto:brandon@crash.life\" target=\"_self\" data-content=\"brandon@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1.$link\"><span id=\"comp-j7deykl1label\" class=\"style-j7deykk14label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykix6/=1$comp-j7deykix6.$container.$inlineContentParent.$inlineContent.$comp-j7deykk1.$inlineContent.$comp-j7deykl1.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"comp-j7deykl11\" class=\"style-j7deyku94\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11\">\r\n<div id=\"comp-j7deykl11container\" class=\"style-j7deyku94container\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container\">\r\n<div id=\"comp-j7deykl11balata\" class=\"style-j7deyku94balata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deykl11inlineContentParent\" class=\"style-j7deyku94inlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deykl11inlineContent\" class=\"style-j7deyku94inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykm9\" class=\"style-j7deykl12\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9\">\r\n<div id=\"comp-j7deykm9bg\" class=\"style-j7deykl12bg\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$bg\"></div>\r\n<div id=\"comp-j7deykm9inlineContent\" class=\"style-j7deykl12inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent\">\r\n<div id=\"comp-j7deykm91\" class=\"style-j7deykuh\" tabindex=\"0\" role=\"button\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm91\"></div>\r\n<div id=\"comp-j7deykm92\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm92\">\r\n<h1 class=\"font_0\"><span class=\"color_15\">Josh Myers</span></h1>\r\n</div>\r\n<div id=\"comp-j7deykm93\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deykm93\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deyknl\" class=\"style-j7deykm94\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deyknllink\" class=\"g-transparent-a style-j7deykm94link\" role=\"button\" href=\"mailto:josh@crash.life\" target=\"_self\" data-content=\"josh@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl.$link\"><span id=\"comp-j7deyknllabel\" class=\"style-j7deykm94label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deykl11/=1$comp-j7deykl11.$container.$inlineContentParent.$inlineContent.$comp-j7deykm9.$inlineContent.$comp-j7deyknl.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"comp-j7deyknl1\" class=\"style-j7deykut\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1\">\r\n<div id=\"comp-j7deyknl1container\" class=\"style-j7deykutcontainer\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container\">\r\n<div id=\"comp-j7deyknl1balata\" class=\"style-j7deykutbalata\" data-enable-video=\"true\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$playbackdesktop\"></div>\r\n<div id=\"comp-j7deyknl1inlineContentParent\" class=\"style-j7deykutinlineContentParent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent\">\r\n<div id=\"comp-j7deyknl1inlineContent\" class=\"style-j7deykutinlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent\">\r\n<div id=\"comp-j7deykol\" class=\"style-j7deyknl2\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol\">\r\n<div id=\"comp-j7deykolbg\" class=\"style-j7deyknl2bg\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$bg\"></div>\r\n<div id=\"comp-j7deykolinlineContent\" class=\"style-j7deyknl2inlineContent\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent\">\r\n<div id=\"comp-j7deykol1\" class=\"style-j7deykux2\" tabindex=\"0\" role=\"button\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol1\"></div>\r\n<div id=\"comp-j7deykol2\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol2\">\r\n<h1 class=\"font_0\"><span class=\"color_15\">Joel Connelly</span></h1>\r\n</div>\r\n<div id=\"comp-j7deykol3\" class=\"s_SmHkWRichTextNewSkin\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykol3\">\r\n<p class=\"font_8\"><span class=\"color_15\">Disciple of Jesus</span></p>\r\n\r\n</div>\r\n<div id=\"comp-j7deykpl\" class=\"style-j7deykol4\" data-align=\"center\" data-disabled=\"false\" data-margin=\"20\" data-should-use-flex=\"true\" data-state=\"desktop shouldUseFlex center\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl\" data-prev-text=\"Get in Touch\" data-prev-min-width=\"82\" data-prev-width=\"134\"><a id=\"comp-j7deykpllink\" class=\"g-transparent-a style-j7deykol4link\" role=\"button\" href=\"mailto:joel@crash.life\" target=\"_self\" data-content=\"joel@crash.life\" data-type=\"mail\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl.$link\"><span id=\"comp-j7deykpllabel\" class=\"style-j7deykol4label\" data-reactid=\".0.$SITE_ROOT.$desktop_siteRoot.$PAGES_CONTAINER.$centeredContent.$inlineContent.$SITE_PAGES.$rs1c2_DESKTOP.$inlineContent.$comp-j7deykix.$inlineContent.$comp-j7deykix4.$inlineContent.$comp-j7deykix5.$inlineContent.$comp-j7deyknl1/=1$comp-j7deyknl1.$container.$inlineContentParent.$inlineContent.$comp-j7deykol.$inlineContent.$comp-j7deykpl.$link.$label\">Get in Touch</span></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>','Meet the Team','','inherit','closed','closed','','29-revision-v1','','','2017-09-09 14:50:17','2017-09-09 14:50:17','',29,'http://www.crash.life/wordpress1/2017/09/09/29-revision-v1/',0,'revision','',0),(60,1,'2017-09-09 14:51:20','2017-09-09 14:51:20','<p style=\"text-align: center;\">If you’d like to contribute to our work with a one time gift, you can do it here using <a href=\"http://www.paypal.com/\">PayPal.</a></p>\r\n\r\n<h1 style=\"text-align: center;\">One-time Gift:</h1>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<div>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">If you’d like to contribute monthly or weekly to our work, you can setup recurring payments using <a href=\"http://www.paypal.com/\">PayPal.</a></p>\r\n\r\n</div>','Donate','','inherit','closed','closed','','31-revision-v1','','','2017-09-09 14:51:20','2017-09-09 14:51:20','',31,'http://www.crash.life/wordpress1/2017/09/09/31-revision-v1/',0,'revision','',0),(61,1,'2017-09-09 14:51:44','2017-09-09 14:51:44','<p style=\"text-align: left;\">If you’d like to contribute to our work with a one time gift, you can do it here using <a href=\"http://www.paypal.com/\">PayPal.</a></p>\r\n\r\n<h1 style=\"text-align: left;\">One-time Gift:</h1>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<div>\r\n<p style=\"text-align: left;\">If you’d like to contribute monthly or weekly to our work, you can setup recurring payments using <a href=\"http://www.paypal.com/\">PayPal.</a></p>\r\n\r\n</div>','Donate','','inherit','closed','closed','','31-revision-v1','','','2017-09-09 14:51:44','2017-09-09 14:51:44','',31,'http://www.crash.life/wordpress1/2017/09/09/31-revision-v1/',0,'revision','',0),(62,1,'2017-09-09 14:52:43','2017-09-09 14:52:43','<p style=\"text-align: left;\">If you’d like to contribute to our work with a one time gift, you can do it here using <a href=\"http://www.paypal.com/\">PayPal.</a></p>\r\n\r\n<h2 style=\"text-align: left;\">One-time Gift:</h2>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<div>\r\n<p style=\"text-align: left;\">If you’d like to contribute monthly or weekly to our work, you can setup recurring payments using <a href=\"http://www.paypal.com/\">PayPal.</a></p>\r\n\r\n</div>','Donate','','inherit','closed','closed','','31-revision-v1','','','2017-09-09 14:52:43','2017-09-09 14:52:43','',31,'http://www.crash.life/wordpress1/2017/09/09/31-revision-v1/',0,'revision','',0),(63,1,'2017-09-09 15:12:06','0000-00-00 00:00:00','<div>I spent most of my life claiming the label of \"Christian\" and giving it a bad name. The first part of my Christian walk started off on the right foot and was innocent enough, except that I thought it was just a check box and a get out of hell free card, but the middle part from mid high school to my late thirties I believe that my sole purpose in life was to serve as a warning to others of what not to do in life. I was one of those that needs to feel and experience everything myself rather than to heed the wisdom and warning of others.</div>\r\n<div></div>\r\n<div>Sometimes sometimes with God we have to put belief in front of understanding to get it. God is faithful in all His promises. You can trust Him to take from you everything that you lay before Him. Jesus paid the full price for all of our sin and sickness, by His stripes we are healed, but we must be willing to lay it at the foot of the cross, ask for forgiveness, repent and turn from it. Repent simply put means to change our way of thinking. We are not honoring Him by trying to bare something he already paid the price for, we lay it down trusting His sacrifice was sufficient and bigger than our problem, accepting our new nature to walk in and letting the old nature die and not come back after He\'s given us a new one. There is power in the name of Jesus. He commands us to Love him with all our heart, Love our neighbors as ourselves, and go make Disciples.</div>\r\n<div></div>\r\n<div>Disciples “Heal the sick, raise the dead, cleanse those who have leprosy, drive out demons. Freely you have received; freely give.”</div>\r\n<div></div>\r\n<div>Up until the last few years I’d lived my whole life mostly for myself and preached what little I knew about the Gospel based on mine and others experiences instead of the Word of God. I created doctrines and theologies based on half truth’s and lies of my own personal walk instead of what the Word says.</div>\r\n<div></div>\r\n<div>On April 10th of 2015 I reached a major turning point in my walk. I was mad at God for all the failings in my life. I had no understanding for a loving God that clearly didn\'t seem to love me based on my current circumstances and the fact that I never actually saw God in anyone I had met up until this point that would lead me to believe in Him fully without a doubt. I simply met lots of nice christian people that had all the same fears and doubts that I did. So I was ready to be done and I shook my fist at Him in anger saying why don’t I see what I read in the Bible. It’s either all true, or none is true. There is nothing in between. You are either real and who you say you are and this is a book of Truth or it\'s lies and garbage and I’m throwing it into the fireplace and walking away from you forever. It was 4am and I had just finished watching a youtube video on healing that seemed genuine. This is something I had no understanding for in the bible and everything I had ever seen appeared to be fake or deceiving. This is where I met Holy Spirit and my eyes were unveiled to see my Father for who He is and the price that was truly paid for me. In a place of anger and disbelief I placed my hand on my back and said \"I’m all in or I’m all out God, In the name of Jesus I command this neck and back be healed!” Immediately my back was set on fire, started cracking and making noise and all my pain left. 20 years of neck and back pain from multiple whiplash injuries left and never came back. That night Jesus and the Holy Spirit wrecked my life in the most amazing way imaginable. I spent the next 2 weeks swinging my neck and back around making myself unbelievably sore trying to find the pain that was now gone. I immediately pressed into my Father in prayer, reading scriptures, studying and researching online trying to make sense of what had happened. I was the actual recipient of this and was freaking out and having a hard time believing and wrapping my head around what had happened.</div>\r\n<div></div>\r\n<div>So with my new understanding I started praying for people and praying differently, not seeing anything yet, but trying to be obedient to my new understanding and trying to give away to others what had been given to me. About a month or so later I was in the 11am service at Pathway Community Church and during the worship service God gave me a vision of my mother, standing with arms raised high, enveloped in light, praising God, with me standing behind her and my hand on her back and I heard “Body be healed in the name of Jesus”. I really struggled with this and the simplicity of the prayer. My mother had Lupus, Rheumatoid arthritis, and Fibromyalgia. She almost didn’t come to church that morning because the pain was too great. She was typically in an electric scooter 2-3 times a week because the pain was too great to walk. I had been studying for weeks and when I was ready “I” was going to rebuke and attack every sickness in her body with prayer and commandment. I wrestled with God all Service and didn’t pray for her in the service, after service, or even out in the lobby. I was thinking this won’t work. She has too much wrong with her that “I” need to pray for. Finally, after wrestling with God and arguing with Him about the simplicity of the prayer, I finally submitted to Him out in the parking lot of Pathway. I walked over to my mom, burst into tears, explained my vision to her through my tears. Told her I’m going to place my hand on your back, pray a simple prayer, and God’s going to heal your body. I placed my hand on her back and mumbled out through the tears “body be healed in the name of Jesus”. All her pain immediately left her, I didn’t need to hear it from her, I immediately knew it by the confused and amazed look on her face and tears streaming down her face. A week later she was chasing my 2 daughters around the yard playing tag. 2 weeks later she went to the doctor for her monthly blood work that came back normal for the first time in 15 years. Every day she is continuing to be healed and renewed.</div>\r\n<div></div>\r\n<div>Over the past few years I’ve seen dozens of people healed through simple prayers of faith. I pray for a lot that do not get healed, but my experiences don’t change my new understanding. I don’t believe I have the gift of healing, I just have the same Holy Spirit living inside of me that raised Jesus from the dead. Proverbs says in all your getting get understanding. I’m beginning to understand what Sons and Daughters should look like. It’s an identity crisis that we believe what the world tells us we are, and the lies of the devil, instead of who He says we are and what we were created to be. I’m a Son, You are a Son or Daughter, and with that we are heirs to his Kingdom. We have the power to crush the works of the devil who came to kill, steal, and destroy. Resist the devil and he will flee. The devil says you can’t survive the coming storm. In Christ Jesus, filled with the Holy Spirit, We are the Storm!</div>\r\n<div></div>\r\n<div>I don’t know where your faith is for healing, but if cancer weighs 100lbs, and your faith can currently lift 1lb, pray your prayer 100 times, but each time you pray it, pray with belief and expectancy that each blow is down the lies and works of the devil. Think of Faith as like being muscle and the more you practice and exercise it the stronger it will grow. Your Father is a good good Father and knows how to give good gifts.</div>\r\n<div>He Loves You, Jesus Loves You, Holy Spirit Loves YOU!</div>','Immediate Witness and Testimony of the Holy Spirit','','draft','open','open','','','','','2017-09-09 15:12:06','2017-09-09 15:12:06','',0,'http://www.crash.life/wordpress1/?p=63',0,'post','',0),(64,1,'2017-09-09 15:05:00','2017-09-09 15:05:00','<div>I spent most of my life claiming the label of \"Christian\" and giving it a bad name. The first part of my Christian walk started off on the right foot and was innocent enough, except that I thought it was just a check box and a get out of hell free card, but the middle part from mid high school to my late thirties I believe that my sole purpose in life was to serve as a warning to others of what not to do in life. I was one of those that needs to feel and experience everything myself rather than to heed the wisdom and warning of others.</div>\r\n<div></div>\r\n<div>Sometimes sometimes with God we have to put belief in front of understanding to get it. God is faithful in all His promises. You can trust Him to take from you everything that you lay before Him. Jesus paid the full price for all of our sin and sickness, by His stripes we are healed, but we must be willing to lay it at the foot of the cross, ask for forgiveness, repent and turn from it. Repent simply put means to change our way of thinking. We are not honoring Him by trying to bare something he already paid the price for, we lay it down trusting His sacrifice was sufficient and bigger than our problem, accepting our new nature to walk in and letting the old nature die and not come back after He\'s given us a new one. There is power in the name of Jesus. He commands us to Love him with all our heart, Love our neighbors as ourselves, and go make Disciples.</div>\r\n<div></div>\r\n<div>Disciples “Heal the sick, raise the dead, cleanse those who have leprosy, drive out demons. Freely you have received; freely give.”</div>\r\n<div></div>\r\n<div>Up until the last few years I’d lived my whole life mostly for myself and preached what little I knew about the Gospel based on mine and others experiences instead of the Word of God. I created doctrines and theologies based on half truth’s and lies of my own personal walk instead of what the Word says.</div>\r\n<div></div>\r\n<div>On April 10th of 2015 I reached a major turning point in my walk. I was mad at God for all the failings in my life. I had no understanding for a loving God that clearly didn\'t seem to love me based on my current circumstances and the fact that I never actually saw God in anyone I had met up until this point that would lead me to believe in Him fully without a doubt. I simply met lots of nice christian people that had all the same fears and doubts that I did. So I was ready to be done and I shook my fist at Him in anger saying why don’t I see what I read in the Bible. It’s either all true, or none is true. There is nothing in between. You are either real and who you say you are and this is a book of Truth or it\'s lies and garbage and I’m throwing it into the fireplace and walking away from you forever. It was 4am and I had just finished watching a youtube video on healing that seemed genuine. This is something I had no understanding for in the bible and everything I had ever seen appeared to be fake or deceiving. This is where I met Holy Spirit and my eyes were unveiled to see my Father for who He is and the price that was truly paid for me. In a place of anger and disbelief I placed my hand on my back and said \"I’m all in or I’m all out God, In the name of Jesus I command this neck and back be healed!” Immediately my back was set on fire, started cracking and making noise and all my pain left. 20 years of neck and back pain from multiple whiplash injuries left and never came back. That night Jesus and the Holy Spirit wrecked my life in the most amazing way imaginable. I spent the next 2 weeks swinging my neck and back around making myself unbelievably sore trying to find the pain that was now gone. I immediately pressed into my Father in prayer, reading scriptures, studying and researching online trying to make sense of what had happened. I was the actual recipient of this and was freaking out and having a hard time believing and wrapping my head around what had happened.</div>\r\n<div></div>\r\n<div>So with my new understanding I started praying for people and praying differently, not seeing anything yet, but trying to be obedient to my new understanding and trying to give away to others what had been given to me. About a month or so later I was in the 11am service at Pathway Community Church and during the worship service God gave me a vision of my mother, standing with arms raised high, enveloped in light, praising God, with me standing behind her and my hand on her back and I heard “Body be healed in the name of Jesus”. I really struggled with this and the simplicity of the prayer. My mother had Lupus, Rheumatoid arthritis, and Fibromyalgia. She almost didn’t come to church that morning because the pain was too great. She was typically in an electric scooter 2-3 times a week because the pain was too great to walk. I had been studying for weeks and when I was ready “I” was going to rebuke and attack every sickness in her body with prayer and commandment. I wrestled with God all Service and didn’t pray for her in the service, after service, or even out in the lobby. I was thinking this won’t work. She has too much wrong with her that “I” need to pray for. Finally, after wrestling with God and arguing with Him about the simplicity of the prayer, I finally submitted to Him out in the parking lot of Pathway. I walked over to my mom, burst into tears, explained my vision to her through my tears. Told her I’m going to place my hand on your back, pray a simple prayer, and God’s going to heal your body. I placed my hand on her back and mumbled out through the tears “body be healed in the name of Jesus”. All her pain immediately left her, I didn’t need to hear it from her, I immediately knew it by the confused and amazed look on her face and tears streaming down her face. A week later she was chasing my 2 daughters around the yard playing tag. 2 weeks later she went to the doctor for her monthly blood work that came back normal for the first time in 15 years. Every day she is continuing to be healed and renewed.</div>\r\n<div></div>\r\n<div>Over the past few years I’ve seen dozens of people healed through simple prayers of faith. I pray for a lot that do not get healed, but my experiences don’t change my new understanding. I don’t believe I have the gift of healing, I just have the same Holy Spirit living inside of me that raised Jesus from the dead. Proverbs says in all your getting get understanding. I’m beginning to understand what Sons and Daughters should look like. It’s an identity crisis that we believe what the world tells us we are, and the lies of the devil, instead of who He says we are and what we were created to be. I’m a Son, You are a Son or Daughter, and with that we are heirs to his Kingdom. We have the power to crush the works of the devil who came to kill, steal, and destroy. Resist the devil and he will flee. The devil says you can’t survive the coming storm. In Christ Jesus, filled with the Holy Spirit, We are the Storm!</div>\r\n<div></div>\r\n<div>I don’t know where your faith is for healing, but if cancer weighs 100lbs, and your faith can currently lift 1lb, pray your prayer 100 times, but each time you pray it, pray with belief and expectancy that each blow is down the lies and works of the devil. Think of Faith as like being muscle and the more you practice and exercise it the stronger it will grow. Your Father is a good good Father and knows how to give good gifts.</div>\r\n<div>He Loves You, Jesus Loves You, Holy Spirit Loves YOU!</div>','Immediate Witness and Testimony of the Holy Spirit','','inherit','closed','closed','','63-revision-v1','','','2017-09-09 15:05:00','2017-09-09 15:05:00','',63,'http://www.crash.life/wordpress1/2017/09/09/63-revision-v1/',0,'revision','',0),(65,1,'2017-09-09 15:10:26','0000-00-00 00:00:00','<div><img class=\"size-medium wp-image-67 aligncenter\" src=\"http://www.crash.life/wordpress1/wp-content/uploads/2017/09/Eye-Plank-300x231.jpg\" alt=\"\" width=\"300\" height=\"231\" /></div>\r\n<div></div>\r\n<div> My greatest revelation to date in my walk with Christ is that \"I\" am the problem. It\'s pretty universal for me. In any given situation if \"I\" have a problem with someone or something \"I am the problem.\" At no point should I ever push the fault or place the blame for my anger, disappointment, lust, tiredness, unhappiness, fear, exc... (feel free to place any emotion, feeling or sin in this sentence) on someone else. This revelation did not come easy for me</div>\r\n ','An \"I\" Problem','','draft','open','open','','','','','2017-09-09 15:10:26','2017-09-09 15:10:26','',0,'http://www.crash.life/wordpress1/?p=65',0,'post','',0),(66,1,'2017-09-09 15:07:25','2017-09-09 15:07:25','','I problem','','inherit','open','closed','','i-problem','','','2017-09-09 15:07:25','2017-09-09 15:07:25','',65,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/I-problem.gif',0,'attachment','image/gif',0),(67,1,'2017-09-09 15:09:31','2017-09-09 15:09:31','','Eye Plank','','inherit','open','closed','','eye-plank','','','2017-09-09 15:09:31','2017-09-09 15:09:31','',65,'http://www.crash.life/wordpress1/wp-content/uploads/2017/09/Eye-Plank.jpg',0,'attachment','image/jpeg',0),(68,1,'2017-09-09 15:09:54','2017-09-09 15:09:54','<div><img class=\"size-medium wp-image-67 aligncenter\" src=\"http://www.crash.life/wordpress1/wp-content/uploads/2017/09/Eye-Plank-300x231.jpg\" alt=\"\" width=\"300\" height=\"231\" /></div>\r\n<div></div>\r\n<div> My greatest revelation to date in my walk with Christ is that \"I\" am the problem. It\'s pretty universal for me. In any given situation if \"I\" have a problem with someone or something \"I am the problem.\" At no point should I ever push the fault or place the blame for my anger, disappointment, lust, tiredness, unhappiness, fear, exc... (feel free to place any emotion, feeling or sin in this sentence) on someone else. This revelation did not come easy for me</div>\r\n ','An \"I\" Problem','','inherit','closed','closed','','65-revision-v1','','','2017-09-09 15:09:54','2017-09-09 15:09:54','',65,'http://www.crash.life/wordpress1/2017/09/09/65-revision-v1/',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!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),(33,2,0),(34,2,0),(35,2,0),(36,2,0),(63,3,0),(65,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=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,4),(3,3,'category','Posts by Brandon',0,0),(4,4,'category','Posts by Josh',0,0),(5,5,'category','Posts by Joel',0,0); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Menu 1','menu-1',0),(3,'Brandon\'s Posts','brandons-posts',0),(4,'Josh\'s Posts','joshs-posts',0),(5,'Joel\'s Posts','joels-posts',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=24 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','CrashIntoLife'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'locale',''),(11,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wp_user_level','10'),(13,1,'dismissed_wp_pointers',''),(14,1,'default_password_nag',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:3:{s:64:\"da4bf7c5dbb34f49c32e361b8d11e4a6f574510a894f9e56de826d8e7a886e05\";a:4:{s:10:\"expiration\";i:1505086708;s:2:\"ip\";s:13:\"184.18.73.200\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:5:\"login\";i:1504913908;}s:64:\"457343b362fef1226394a59f547c3ea35aa394ba88675881c7a47b5ff9309e28\";a:4:{s:10:\"expiration\";i:1506126061;s:2:\"ip\";s:13:\"184.18.73.200\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:5:\"login\";i:1504916461;}s:64:\"d58bc785a5005333d1311b4f6c84542696bea441d611b2a2cee554ed9711303a\";a:4:{s:10:\"expiration\";i:1505092641;s:2:\"ip\";s:13:\"184.18.73.200\";s:2:\"ua\";s:105:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.116 Safari/537.36\";s:5:\"login\";i:1504919841;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','3'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"184.18.73.0\";}'),(19,1,'wp_user-settings','libraryContent=browse'),(20,1,'wp_user-settings-time','1504918161'),(21,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(22,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(23,1,'nav_menu_recently_edited','2'); /*!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,'CrashIntoLife','4298bf2ea567c6f2377611e9e3013c3e','CrashIntoLife','accounting@crash.life','','2017-08-04 17:46:45','',0,'CrashIntoLife'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_006c500_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 2017-09-09 11:44:58