-- MySQL dump 10.16  Distrib 10.2.17-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: arrowp10_7xbfmyx
-- ------------------------------------------------------
-- Server version	10.2.17-MariaDB-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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-11-28 06:36:25','2018-11-28 06:36:25','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,'post-trashed','','',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_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=7902 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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://paulocoelhovieira.com/bg_paulocoelhovieira.com','yes'),(2,'home','http://paulocoelhovieira.com/bg_paulocoelhovieira.com','yes'),(3,'blogname','Paulo Coelho Vieira','yes'),(4,'blogdescription','Blog, Papers, Articles... Intelligence and Strategy on Patents and Innovation','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','pvieira@arrowplan.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%category%/%postname%/','yes'),(29,'rewrite_rules','a:155:{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:13:\"^attribution$\";s:36:\"index.php?bg_attribution=attribution\";s:21:\"^attribution-staging$\";s:44:\"index.php?bg_attribution=attribution-staging\";s:40:\"./(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"./(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:16:\"./(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:28:\"./(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:10:\"./(.+?)/?$\";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:57:\"wpforms_log_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:52:\"wpforms_log_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:33:\"wpforms_log_type/([^/]+)/embed/?$\";s:49:\"index.php?wpforms_log_type=$matches[1]&embed=true\";s:45:\"wpforms_log_type/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?wpforms_log_type=$matches[1]&paged=$matches[2]\";s:27:\"wpforms_log_type/([^/]+)/?$\";s:38:\"index.php?wpforms_log_type=$matches[1]\";s:42:\"bg_attribution/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"bg_attribution/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"bg_attribution/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"bg_attribution/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"bg_attribution/([^/]+)/embed/?$\";s:47:\"index.php?bg_attribution=$matches[1]&embed=true\";s:35:\"bg_attribution/([^/]+)/trackback/?$\";s:41:\"index.php?bg_attribution=$matches[1]&tb=1\";s:43:\"bg_attribution/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&paged=$matches[2]\";s:50:\"bg_attribution/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&cpage=$matches[2]\";s:39:\"bg_attribution/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?bg_attribution=$matches[1]&page=$matches[2]\";s:31:\"bg_attribution/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"bg_attribution/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"bg_attribution/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"bg_attribution/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"bg-block-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:50:\"bg-block-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:31:\"bg-block-types/([^/]+)/embed/?$\";s:46:\"index.php?bg_block_type=$matches[1]&embed=true\";s:43:\"bg-block-types/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?bg_block_type=$matches[1]&paged=$matches[2]\";s:25:\"bg-block-types/([^/]+)/?$\";s:35:\"index.php?bg_block_type=$matches[1]\";s:36:\"bg-block/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"bg-block/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"bg-block/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"bg-block/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"bg-block/([^/]+)/embed/?$\";s:41:\"index.php?bg_block=$matches[1]&embed=true\";s:29:\"bg-block/([^/]+)/trackback/?$\";s:35:\"index.php?bg_block=$matches[1]&tb=1\";s:37:\"bg-block/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&paged=$matches[2]\";s:44:\"bg-block/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&cpage=$matches[2]\";s:33:\"bg-block/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?bg_block=$matches[1]&page=$matches[2]\";s:25:\"bg-block/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"bg-block/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"bg-block/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"bg-block/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"amn_wpforms-lite/([^/]+)/embed/?$\";s:49:\"index.php?amn_wpforms-lite=$matches[1]&embed=true\";s:37:\"amn_wpforms-lite/([^/]+)/trackback/?$\";s:43:\"index.php?amn_wpforms-lite=$matches[1]&tb=1\";s:45:\"amn_wpforms-lite/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?amn_wpforms-lite=$matches[1]&paged=$matches[2]\";s:52:\"amn_wpforms-lite/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?amn_wpforms-lite=$matches[1]&cpage=$matches[2]\";s:41:\"amn_wpforms-lite/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?amn_wpforms-lite=$matches[1]&page=$matches[2]\";s:33:\"amn_wpforms-lite/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"amn_wpforms-lite/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"amn_wpforms-lite/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"amn_wpforms-lite/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"amn_wpforms-lite/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"amn_wpforms-lite/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:31:\".+?/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\".+?/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\".+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\".+?/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"(.+?)/([^/]+)/embed/?$\";s:63:\"index.php?category_name=$matches[1]&name=$matches[2]&embed=true\";s:26:\"(.+?)/([^/]+)/trackback/?$\";s:57:\"index.php?category_name=$matches[1]&name=$matches[2]&tb=1\";s:46:\"(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:41:\"(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:34:\"(.+?)/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&paged=$matches[3]\";s:41:\"(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&cpage=$matches[3]\";s:30:\"(.+?)/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&page=$matches[3]\";s:20:\".+?/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\".+?/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\".+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\".+?/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:14:\"(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&cpage=$matches[2]\";s:8:\"(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";}','yes'),(5438,'boldgrid_survey','a:2:{s:8:\"blogname\";a:1:{s:5:\"value\";s:19:\"Paulo Coelho Vieira\";}s:6:\"social\";a:2:{s:8:\"facebook\";s:42:\"https://www.facebook.com/paulocoelhovieira\";s:7:\"twitter\";s:29:\"https://twitter.com/Arrowplan\";}}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:9:{i:0;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";i:3;s:31:\"boldgrid-gallery/wc-gallery.php\";i:4;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:5;s:47:\"post-and-page-builder/post-and-page-builder.php\";i:6;s:27:\"td-composer/td-composer.php\";i:7;s:39:\"td-social-counter/td-social-counter.php\";i:8;s:24:\"wpforms-lite/wpforms.php\";}','yes'),(34,'category_base','.','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Newspaper','yes'),(41,'stylesheet','Newspaper','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','43764','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:3:{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;i:3;a:0:{}}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}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:1:{s:47:\"post-and-page-builder/post-and-page-builder.php\";a:2:{i:0;s:25:\"Boldgrid_Editor_Uninstall\";i:1;s:9:\"on_delete\";}}','no'),(82,'timezone_string','America/Recife','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'initial_db_version','38590','yes'),(93,'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'),(94,'fresh_site','0','yes'),(95,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(96,'widget_recent-posts','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(97,'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'),(98,'widget_archives','a:3:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(99,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(100,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:10:\"td-default\";a:0:{}s:11:\"td-footer-1\";a:0:{}s:11:\"td-footer-2\";a:0:{}s:11:\"td-footer-3\";a:0:{}s:23:\"boldgrid-editor-sidebar\";a:4:{i:0;s:8:\"search-3\";i:1;s:14:\"recent-posts-3\";i:2;s:10:\"archives-3\";i:3;s:12:\"categories-3\";}s:13:\"array_version\";i:3;}','yes'),(101,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'cron','a:6:{i:1546209385;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1546210521;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"a62f2e612393a7fc399274410b3ac2d6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:78;}}}}i:1546223959;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1546238185;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:1546463089;a:1:{s:16:\"td_check_version\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"three_days\";s:4:\"args\";a:0:{}s:8:\"interval\";i:259200;}}}s:7:\"version\";i:2;}','yes'),(111,'boldgrid_settings','a:8:{s:7:\"library\";a:3:{s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:7:\"2.7.6.0\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:7:\"2.7.4.0\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:7:\"2.7.4.0\";}s:15:\"plugins_checked\";a:6:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:3:{s:5:\"1.6.6\";i:1545028444;s:5:\"1.7.0\";i:1545797552;s:5:\"1.7.1\";i:1546208363;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:3:{s:5:\"1.0.1\";i:1545029161;s:5:\"1.0.3\";i:1546208363;s:5:\"1.0.2\";i:1545797364;}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:2:{s:5:\"1.6.0\";i:1545029161;s:5:\"1.6.4\";i:1546208363;}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:3:{s:5:\"1.8.1\";i:1545028464;s:5:\"1.9.2\";i:1546208363;s:5:\"1.9.1\";i:1545797534;}s:31:\"boldgrid-gallery/wc-gallery.php\";a:1:{s:3:\"1.5\";i:1546208363;}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";a:1:{s:5:\"1.6.0\";i:1546208363;}}s:20:\"boldgrid_menu_option\";i:0;s:24:\"boldgrid_feedback_optout\";s:1:\"0\";s:15:\"release_channel\";s:6:\"stable\";s:21:\"theme_release_channel\";s:6:\"stable\";s:17:\"plugin_autoupdate\";s:1:\"0\";s:16:\"theme_autoupdate\";s:1:\"0\";}','no'),(113,'boldgrid_backup_id','6f84db3d','no'),(114,'boldgrid_attribution_rebuild','1','yes'),(115,'boldgrid_staging_boldgrid_attribution_rebuild','1','yes'),(116,'boldgrid_attribution_upgraded_to_cpt','1','yes'),(117,'boldgrid_editor','a:5:{s:19:\"has_flushed_rewrite\";b:1;s:12:\"updated_maps\";i:1;s:15:\"preview_page_id\";i:70;s:7:\"notices\";a:1:{s:13:\"editor_choice\";a:1:{s:9:\"dismissed\";b:1;}}s:21:\"displayed_v1.3_notice\";i:1;}','yes'),(7881,'_site_transient_timeout_theme_roots','1546207815','no'),(7882,'_site_transient_theme_roots','a:5:{s:9:\"Newspaper\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(7900,'_site_transient_timeout_boldgrid_api_data','1546237163','no'),(7901,'_site_transient_boldgrid_api_data','O:8:\"stdClass\":5:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":29:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"1.6.4\";s:8:\"asset_id\";i:971098;s:12:\"release_date\";s:19:\"2018-12-05 21:18:02\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"5.0.0\";s:8:\"sections\";s:42893:\"{\"description\":\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.<\\/p>\\n\\n<p>The first phase is Inspiration; the guided tool creates your base website.  If you already have a website, then you can skip this step.<\\/p>\\n\\n<p>The second phase is Customization; tools to transform your website into your vision.<\\/p>\\n\",\"installation\":\"<ol>\\n<li><p>Upload the entire boldgrid-inspirations folder to the \\/wp-content\\/plugins\\/ directory.<\\/p><\\/li>\\n<li><p>Activate the plugin through the Plugins menu in WordPress.<\\/p><\\/li>\\n<li><p>You will find the Inspirations menu in your WordPress Dashboard \\/ admin panel.<\\/p><\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.6.4<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Unable to save \\\"boldgrid<em>menu<\\/em>option\\\" on settings page.<\\/li>\\n<li>Bug fix:                       Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.3<\\/h4>\\n\\n<p>Release date: Dec 4th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Coin Budget help was not toggling when clicked.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.2<\\/h4>\\n\\n<p>Release date: Nov 26th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-33   Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.1<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Update:       JIRA BGCONN-20   Removed update settings; have been moved to the BoldGrid Library packages.<\\/li>\\n<li>Bug fix:      JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Attribution page not being rebuilt \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search in the Customizer \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Recommended image sizes not working as expected.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.0<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated BoldGrid library to version 2.4.2.<\\/li>\\n<li>New feature:  JIRA BGINSP-24  Log data when there may be a connection or Ajax error.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-16  Warnings and notices within inspiration w\\/ Crio theme<\\/li>\\n<li>Bug fix:      JIRA BGINSP-23  Fixed issue: Connect Search may load with connection notice.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.7<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated to library version 2.3.5.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-14  Fatal in PHP >=7.1.0 when creating internal preview builds.<\\/li>\\n<li>Bug fix:      JIRA WPB-3767   Prevent invalid API calls for check-version.<\\/li>\\n<li>Update:       JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-3730   Updated library dependency to ^2.0.0.<\\/li>\\n<li>Update:       JIRA BGINSP-3   Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.<\\/li>\\n<li>Update:       JIRA WPB-3684   Updated composer.json, due to package changes.<\\/li>\\n<li>New feature:  JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGSTAGE-32 Fixed staging plugin install.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA BGINSP-4   Removed admin notice recommending plugin installations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3643   Ensure that deployment does not install new wporg plugins if old ones are installed.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3587   Menu assignment after deployment broken in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3570   Inspirations Select button misplaced in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3593   Changes require to help Staging support new Customizer scheduler.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updates to library.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.11<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3336   All and Default categories do not align.<\\/li>\\n<li>Bug fix:      JIRA WPB-3337   On a fresh install, Pages - New From GridBlocks fails.<\\/li>\\n<li>Bug fix:      JIRA WPB-3333   Image search only searching one provider instead of all.<\\/li>\\n<li>Bug fix:      JIRA WPB-3346   Edit Image button not working for attachment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3387   Loading GridBlocks just spins.<\\/li>\\n<li>Update:       JIRA WPB-3352   Purchase coins through BoldGrid Central.<\\/li>\\n<li>Update:       JIRA WPB-3355   Add data-image-url attribute.<\\/li>\\n<li>Update:       JIRA WPB-3382   More descriptive creative commons icon.<\\/li>\\n<li>Update:       JIRA WPB-3384   Add License details to attachment details.<\\/li>\\n<li>Update:       JIRA WPB-3383   Filter out boldgrid-gridblock-set-preview-page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3318   When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.<\\/li>\\n<li>Bug fix:      JIRA WPB-3312   Ensure activation of preferred form plugin.  Added filter for preferred slug.<\\/li>\\n<li>Bug fix:      JIRA WPB-3317   New page from GridBlocks not working.<\\/li>\\n<li>Update:       JIRA WPB-3252   Disable \'default\' category and configure \'showcase\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-3332   New from gridblocks button not showing.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.8<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3200   Added WPForms support.<\\/li>\\n<li>Update:       JIRA WPB-3292   Updated plugin URI.<\\/li>\\n<li>Update:   JIRA WPB-3296 Add Inspirations as first menu item child.<\\/li>\\n<li>Bug Fix:  JIRA WPB-3274 Plugins > Add New Updates fail in modals.<\\/li>\\n<li>New feature:  JIRA WPB-3293   Resize images during deployment vs imgr server.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.7<\\/h4>\\n\\n<ul>\\n<li>Update:      JIRA WPB-3243    Change feedback admin notice display frequency.<\\/li>\\n<li>Update:      JIRA WPB-3264 Adding twitch social media option.<\\/li>\\n<li>New Feature: Added BoldGrid Library to plugin.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3179   Gradient style being lost during normal deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3180   Open WordPress\\/BoldGrid links in attribution page in new tab.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3161   Fixed auto plugin update.<\\/li>\\n<li>Bug fix:      JIRA WPB-3162   Fixed issue creating .htaccess file in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3171   As an author, when installing a site I do not want background images to be processed.<\\/li>\\n<li>Bug fix:      JIRA WPB-3176   Background gradient \\/ url bug during deplyment.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3151   Added check and load before using get<em>plugin<\\/em>data() for updates.<\\/li>\\n<li>Bug fix:      JIRA WPB-3141   Fixed invalid updates for BoldGrid Prime theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-3158   Deployment\'s gallery updates are not saved.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3106   As an Author, I can set background images for elements.<\\/li>\\n<li>New feature:  JIRA WPB-3095   Update generic builds to display per theme channel.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2745   Fixed upgrade notices displaying when activation version was not recorded.<\\/li>\\n<li>Update:       JIRA WPB-3019   Updating attribution link creation.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3044   Automatically get Unsplash attribution.<\\/li>\\n<li>Update:       JIRA WPB-3043   Updating plugin description.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3232   Deploy Staging menu item missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-3233   BoldGrid Connect Search missing from new image widget.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2936   Updating YouTube videos for BoldGrid Dashboard\'s new release.<\\/li>\\n<li>Bug fix:      JIRA WPB-2927   Social media menu disappears.<\\/li>\\n<li>Update:       JIRA WPB-2949   Configure blog using categories.<\\/li>\\n<li>Bug fix:      JIRA WPB-2950   Added max height for reseller logos on login page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2925   Sidebar widgets don\'t match between preview and installed site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2951   Images in staging posts not being downloaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2955   Backwards compatibility - maps taking up 200px empty space.<\\/li>\\n<li>Bug fix:      JIRA WPB-2984   Attribution page 404.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2912   Fixed issue when installing plugins from the Tools Import page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2916   Inspirations deploy fatal error if an old forked plugin had the original installed.<\\/li>\\n<li>Bug fix:      JIRA WPB-2905   If installing via Author, do not update pages with survey data.<\\/li>\\n<li>Bug fix:      JIRA WPB-2910   Unterminated entity reference bug.<\\/li>\\n<li>Update:       JIRA WPB-2913   Validate email address in survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2404   iframe timeout in step 2 of Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2173   Error deleting image and redownloading.<\\/li>\\n<li>Bug fix:      JIRA WPB-2635   Start over staging affecting active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2493   Publish private posts during staging deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2796   Social media urls end in \\/username, go to 404s.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2892   Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).<\\/li>\\n<li>Update:       JIRA WPB-2900   Update verbiage of build coin cost.<\\/li>\\n<li>Bug fix:      JIRA WPB-2901   Scroll bars not visible on preview iframe in Chrome.<\\/li>\\n<li>Bug fix:                      Removing CTA hooks.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.7<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2819   Use switch instead of checkbox for Demo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2780   Theme screenshots opening directly, rather than within gallery.<\\/li>\\n<li>Update:       JIRA WPB-2825   Adjust do not display formatting.<\\/li>\\n<li>Update:       JIRA WPB-2829   Updating hook to resolve BoldGrid SEO plugin conflicts.<\\/li>\\n<li>Update:       JIRA WPB-2837   Remove loading image after selecting theme in Gallery.<\\/li>\\n<li>Update:       JIRA WPB-2839   Minor verbiage change for Add a blog.<\\/li>\\n<li>Update:       JIRA WPB-2785   Entering words with apostrophe in it for Site title displays with a Backslash.<\\/li>\\n<li>Bug fix:      JIRA WPB-2848   Customize link takes users back to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2527   \'New from GridBlocks\' preview page appearing in cart.<\\/li>\\n<li>Bug fix:      JIRA WPB-2862   Survey, invalid argument supplied for foreach.<\\/li>\\n<li>Bug fix:      JIRA WPB-2601   Inspirations Internet Explorer\\/ Stuck on loading themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2854   Downloading Image spinner never stops spinning.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2772   PHP warnings on deploy in WordPress 4.3.7.<\\/li>\\n<li>Bug fix:      JIRA WPB-2766   Plesk and WP-CLI were not getting private repo updates.<\\/li>\\n<li>Update:       JIRA WPB-2763   Update email and address on Contact Us page.<\\/li>\\n<li>Update:       JIRA WPB-2764   Remove option to add a map.<\\/li>\\n<li>Update:       JIRA WPB-2765   Allow iframes for preview builds.<\\/li>\\n<li>New feature:  JIRA WPB-2771   Update footer-company-details widget with survey data.<\\/li>\\n<li>New feature:  JIRA WPB-2777   Add an Install sample blog checkbox.<\\/li>\\n<li>New feature:  JIRA WPB-2778   Setup a blog during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2792   Staged posts (private posts) are trashed when starting over active site.<\\/li>\\n<li>Update:       JIRA WPB-2800   Ensure \'Install a blog\' works with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2801   Remove milestones classes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2779   Survey not working with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2805   Preview builds w &amp; w\\/o blogs.<\\/li>\\n<li>New feature:  JIRA WPB-2806   Add filter for Inspirations configs.<\\/li>\\n<li>Bug fix:      JIRA WPB-2808   Do not request generic builds when requesting blog as well.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.5<\\/h4>\\n\\n<ul>\\n<li>Testing:      JIRA WPB-2744   Tested on WordPress 4.7.<\\/li>\\n<li>Update:       JIRA WPB-2376   Filter the bgtfw contact blocks.<\\/li>\\n<li>Update:       JIRA WPB-2476   Update case of Company name.<\\/li>\\n<li>Update:       JIRA WPB-2747   Update Add a map verbiage.<\\/li>\\n<li>Update:       JIRA WPB-2749   Add a map to my Contact page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2658   Fix spacing issues atop Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2751   Show all in the smaller view of inspirations doesn\'t work anymore.<\\/li>\\n<li>Bug fix:      JIRA WPB-2757   Apostrophe and other strange characters installed via Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2759   DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2696   Remove placeholders from survey.<\\/li>\\n<li>New feature:  JIRA WPB-2697   Update phone numbers in widgets.<\\/li>\\n<li>New feature:  JIRA WPB-2699   Use phone number entered during survey.<\\/li>\\n<li>Update:       JIRA WPB-2704   Adjust format of how social media icons are saved.<\\/li>\\n<li>New feature:  JIRA WPB-2705   Use survey social media items when creating menu.<\\/li>\\n<li>Update:       JIRA WPB-2711   Show optional message in survey.<\\/li>\\n<li>Update:       JIRA WPB-2712   Have plus sign toggle more social icons.<\\/li>\\n<li>Update:       JIRA WPB-2723   Update phone in pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2627   Back \\/ next buttons should not be clickable.<\\/li>\\n<li>Bug fix:      JIRA WPB-2625   Behavior of last image\'s next button in Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.2<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2582   Always show arrows in Inspirations gallery.<\\/li>\\n<li>Update:       JIRA WPB-2583   Ensure first letter in theme\'s title attribute is capitalized.<\\/li>\\n<li>Update:       JIRA WPB-2599   Add placeholder for 4th step to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2551   Duplicate images.<\\/li>\\n<li>New feature:  JIRA WPB-2603   Add initial version of survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2622   Inspirations - Step 4 - Go back button installs site.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2503   Added plugin requirements to readme.txt file.<\\/li>\\n<li>Bug fix:      JIRA WPB-2539   Fix possible duplicate connection issue notice from ajax.js call.<\\/li>\\n<li>Bug fix:      JIRA WPB-2558   Don\'t display feedback widget if user hasn\'t entered their key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2559   Don\'t allow widgets to drag into welcome box area.<\\/li>\\n<li>Bug fix:      JIRA WPB-2555   Images in search results flicker.<\\/li>\\n<li>Update:       JIRA WPB-2563   Convert Attribution page to use custom post type.<\\/li>\\n<li>Update:       JIRA WPB-2568   Added fancybox and large previews to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2570   Milestone blogname change.<\\/li>\\n<li>Update:       JIRA WPB-2574   Milestone Social Media Change.<\\/li>\\n<li>Update:       JIRA WPB-2578   Milestone Contact Info Footer Change.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2544   Disable \'Install\' button after clicking it.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.13<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2531   Javascript error checking needed for mine count.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.12<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2472   Added update notice for 1.3.<\\/li>\\n<li>Bug fix:      JIRA WPB-2486   Incorrect page count on All Pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-2467   With staging disabled, Customize goes to \\\"Change Themes\\\".<\\/li>\\n<li>Update:       JIRA WPB-2488   Remove \'Permanently delete pages instead of sending to trash\'.<\\/li>\\n<li>Update:       JIRA WPB-2490   Move default option to \'install as staging\'.<\\/li>\\n<li>Update:       JIRA WPB-2491   Add \'Customize > Active Theme\' navigation to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2496   Require comment text in feedback form.<\\/li>\\n<li>Update:       JIRA WPB-2229   Update error reporting when purchasing images.<\\/li>\\n<li>Update:       JIRA WPB-2498   Change \'Company Name\' to theme name.<\\/li>\\n<li>Update:       JIRA WPB-2497   Add new dashboard videos.<\\/li>\\n<li>Bug fix:      JIRA WPB-2376   \'No search results\' method is not cleared in BGCS.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.11<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2468   Switching between boldgrid admin menu and standard wp menu no longer works.<\\/li>\\n<li>Bug fix:      JIRA WPB-2477   If you have an existing site non BG, no route for staging exists.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2446   Fixed missing build id passed on site install.<\\/li>\\n<li>Bug fix:      JIRA WPB-2426   Insert Gridblock button is missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-2443   When starting over, I get a blank page.<\\/li>\\n<li>Bug fix:      JIRA WBP-2445   Inspirations is not fetching cached themes.<\\/li>\\n<li>Update:       JIRA WPB-2458   Update \'Recommended\' verbiage in last step of Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.9<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2420   Added EOF line breaks.<\\/li>\\n<li>Bug fix:      JIRA WPB-2387   Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2324   Attribution should not show in 404 sitemap.<\\/li>\\n<li>Bug fix:      JIRA WPB-2403   No plugins recommended still showing notice.<\\/li>\\n<li>Update:       JIRA WPB-2416   Text changes for confirmation section of Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2417   Add additional text to deployment success page for staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-2421   Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...<\\/li>\\n<li>Bug fix:      JIRA WPB-2112   BoldGrid Connect Search missing for galleries.<\\/li>\\n<li>Bug fix:      JIRA WPB-2422   Fixed CSS Loading graphic animation in chrome to display properly.<\\/li>\\n<li>Bug fix:      JIRA WPB-2401   Gallery not displaying correctly in Chrome &amp;&amp; FF.<\\/li>\\n<li>Bug fix:      JIRA WPB-2423   Trying to get property of non-object in ...stock-photography.php.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2398   Error requesting free key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2399   Only show feedback widget to admins.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2389   Fixed saving BoldGrid Settings.<\\/li>\\n<li>Bug fix:      JIRA WPB-2388   Removed duplicate boldgrid_activate().<\\/li>\\n<li>Update:       JIRA WPB-2390   Update verbiage for inspirations install success.<\\/li>\\n<li>Bug fix:      JIRA WPB-2391   Hide BoldGrid Welcome Panel if key isn\'t entered yet.<\\/li>\\n<li>Bug fix:      JIRA WPB-2392   If key is less than 32 char don\'t make call to validate.<\\/li>\\n<li>Bug fix:      JIRA WPB-2393   Error messages should be removed when resubmitting keys.<\\/li>\\n<li>Bug fix:      JIRA WPB-2394   Cursor for show\\/hide log should be a pointer.<\\/li>\\n<li>Update:       JIRA WPB-2395   Update login page styling.<\\/li>\\n<li>Bug fix:      JIRA WPB-2396   Remove staging from recommended plugin notices.<\\/li>\\n<li>Bug fix:      JIRA WPB-2327   Check if framework is handling plugin recommendations before recommending.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.6<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2344   Updated readme.txt for Tested up to 4.6.1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2336   Load BoldGrid settings from the correct WP option (site\\/blog).<\\/li>\\n<li>Bug fix:      JIRA WPB-2248   Removed \'New From GridBlocks\' button on edit submission page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2332   Reset scroll position on step 2 of Inspirations to top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2339   Remove notices from Inspirations page.<\\/li>\\n<li>Update:       JIRA WPB-2208   Removed tutorials from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2359   Order \'Category Filter\' by category display order.<\\/li>\\n<li>Update:       JIRA WPB-2360   Sort themes by category and then order within category.<\\/li>\\n<li>Update:       JIRA WPB-2368   Read version constant from plugin file.<\\/li>\\n<li>Update:       JIRA WPB-2361   Add BoldGrid Connect Search to Editor\'s background image tool.<\\/li>\\n<li>Update:       JIRA WPB-2354   Preview button needs to always be visible in mobile view.<\\/li>\\n<li>Update:       JIRA WPB-2355   Remove extraneous \'Preview\' button.<\\/li>\\n<li>Bug fix:      JIRA WPB-2364   Inspirations not respecting theme release channel.<\\/li>\\n<li>Bug fix:      JIRA WPB-2370   Color in screenshot does not match preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-2373   Duplicate themes in Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2379   Wrong budget passed when going form step 2 to step 1.<\\/li>\\n<li>Update:       JIRA WPB-2380   Remove references to tutorials in deployment congrats message.<\\/li>\\n<li>Bug fix:      JIRA WPB-2383   Image Search tab appears when clicking \'Add GridBlock\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2325   Added wrapper to handle mb<em>convert<\\/em>encoding() if mbstring is not loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2313   Disabled GridBlocks in network admin pages.<\\/li>\\n<li>New feature:  JIRA WPB-2268   Changed to resized preview screenshots for Inspirations Design First concept.<\\/li>\\n<li>New feature:  JIRA WPB-2287   Adjust device preview buttons in step 2 to behave like those in editor.<\\/li>\\n<li>New feature:  JIRA WPB-2291   Auto install staging in final step if user chooses staging.<\\/li>\\n<li>Update:       JIRA WPB-2290   Changed \'Install\' button to \'Next\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-2289   Continuously clicking category in step 1 shuffles themes.<\\/li>\\n<li>Update:       JIRA WPB-2267   Added message to Inspirations when no generic themes are available.<\\/li>\\n<li>Update:       JIRA WPB-2315   Added error handling for malformed ajax results for call to \\/api\\/build\\/get-generic.<\\/li>\\n<li>Update:       JIRA WPB-2316   Add error handling for failures to fetch categories.<\\/li>\\n<li>Update:       JIRA WPB-2317   Add error handling for failures to fetch pagesets.<\\/li>\\n<li>Update:       JIRA WPB-2319   Check user capabilities before prompting for api key.<\\/li>\\n<li>Update:       JIRA WPB-2320   Ensure user has permission to edit page before allowing download<em>and<\\/em>insert<em>into<\\/em>page.<\\/li>\\n<li>Update:       JIRA WPB-2322   Sanitize user feedback before adding to options table.<\\/li>\\n<li>Update:       JIRA WPB-2323   Allow admin notices to be dismissed per user.<\\/li>\\n<li>Update:       JIRA WPB-2326   Update \'update\' class to utilize Admin Notices class.<\\/li>\\n<li>Update:       JIRA WPB-2327   Check user capabilities before showing admin notices.<\\/li>\\n<li>Update:       JIRA WPB-2331   Update confirmation messages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2269   Typo fix in Boldgrid<em>Inspirations<\\/em>Dependency<em>Plugins::print<\\/em>uninstalled_plugins().<\\/li>\\n<li>Bug fix:      JIRA WPB-2270   New From GridBlocks became unavailable.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-2172   For preview generic builds, added an option for identification for purges, etc.<\\/li>\\n<li>Bug fix:      JIRA WPB-2263   For preview sites under multisite, set the admin email address using the network admin email address.<\\/li>\\n<li>Bug fix:      JIRA WPB-2223   Reworked API key validation and connection issue notices, formatting.<\\/li>\\n<li>Misc:         JIRA WPB-2256   Updated readme.txt for Tested up to: 4.6.<\\/li>\\n<li>Rework:       JIRA WPB-2150   Moved API methods to a new class, formatting, and phpcs rework.<\\/li>\\n<li>Bug fix:      JIRA WPB-2224   Hide the email address field when widget is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2225   Fixed jQuery Migrate deprecated warning.<\\/li>\\n<li>Update:       JIRA WPB-2245   Changed feed to pull from dashboard tag on blog.<\\/li>\\n<li>Bug fix:      JIRA WPB-2265   Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.<\\/li>\\n<li>Bug fix:      JIRA WBP-2236   Errors everywhere when logging in as an Editor.<\\/li>\\n<li>Bug fix:      JIRA WPB-2234   Add current<em>user<\\/em>can checks to Boldgrid<em>Inspirations->set<\\/em>api<em>key<\\/em>callback().<\\/li>\\n<li>Bug fix:      JIRA WPB-2237   Limit ajax requests by user.<\\/li>\\n<li>Bug fix:      JIRA WPB-2240   Limit printing of configs in head.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to the tutorials page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2184   In PHP 5.2, deactivate and die properly.<\\/li>\\n<li>New feature:                  Added BoldGrid news widget to dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1994   Fixed issue with WP Theme Editor not being available.<\\/li>\\n<li>New feature:                  Added BoldGrid Feedback widget.<\\/li>\\n<li>Bug fix:      JIRA WPB-2169   Connect Search defaults to smallest image size when no recommended sizes available.<\\/li>\\n<li>Bug fix:    JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2160   New From GridBlocks, multiple pages are installed.<\\/li>\\n<li>Update:                       Changed text of getting and entering connect keys.<\\/li>\\n<li>Security:     JIRA WPB-2151   Disabled autocomplete for API key entry fields.<\\/li>\\n<li>Bug fix:      JIRA WPB-2145   Fixing issue with theme screenshots on Chrome Ubuntu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2119   For asset downloads, when Imagick is loaded, set the thread limit to 1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2125   Fixing issue where theme was overwritten without version change.<\\/li>\\n<li>Bug fix:      JIRA WPB-2104   Go back button hides all themes (Inspirations > Add Theme).<\\/li>\\n<li>Bug fix:      JIRA WPB-2107   BoldGrid Connect Search overlapping footer (Dashboard > Media).<\\/li>\\n<li>Bug fix:      JIRA WPB-2109   Session issues when starting over and importing active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2116   Changes to the order of images in a gallery are not saving.<\\/li>\\n<li>Bug fix:      JIRA WPB-2134   Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-2135   Image not replaced in Page &amp; Post Editor after using Connect Search.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to Inspirations, so admin notices are displayed at the top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2041   Fixed BoldGrid theme update check in WordPress 4.6.<\\/li>\\n<li>Testing:      JIRA WPB-2046   Tested on WordPress 4.5.3.<\\/li>\\n<li>New feature:  JIRA WPB-599    Added options for plugin and theme auto-updates via WordPress autoupdater.<\\/li>\\n<li>Update:       JIRA WPB-2008   Deploy class updated to allow for is_generic flag.<\\/li>\\n<li>Bug fix:      JIRA WPB-1950   Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2032   Fixed issue when activating key.  Added nonce to api key form.<\\/li>\\n<li>Rework:       JIRA WPB-2030   Updated the \\\"I don\'t have an API key\\\" section.<\\/li>\\n<li>New feature:  JIRA WPB-2029   Added TOS box to API key submission form.<\\/li>\\n<li>New feature:  JIRA WPB-1905   Added capability for auto-updates of boldgrid-inspirations by API response.<\\/li>\\n<li>Bug fix:      JIRA WPB-2002   Fixed theme update issue where upgrader says is up to date at times.<\\/li>\\n<li>Bug fix:      JIRA WPB-2006   Pdes and Homepage not installing correctly on Inpirations Theme Only installs.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.6<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1839   Users can now change their theme release channel.<\\/li>\\n<li>Security fix: JIRA WPB-1977   Validate nonce for feedback form diagnostic data callback and form submit.<\\/li>\\n<li>Bug fix:      JIRA WPB-1955   Fatal error: Class \'Boldgrid<em>Staging<\\/em>Plugin\' not found.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1914   Staged image used on Active page not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1886   Fixed feedback notice being displayed too often (more than a week after submitting).<\\/li>\\n<li>New feature:  JIRA WPB-1183   Refresh the Library Tab after downloading an image.<\\/li>\\n<li>Update:       JIRA WPB-1865   Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.<\\/li>\\n<li>Update:       JIRA WPB-1884   Passed WordPress 4.5.1 testing.<\\/li>\\n<li>Bug fix:      JIRA WPB-1855   Do not display feedback notice on update or setting pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1860   Fixed horizontal line through screenshot in step 2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1863   Cart does not look for watermarked images used within staged pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1891   View \\/ Download of images within receipts not working for images purchased via Staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-1893   JS errors in console when viewing attachments.<\\/li>\\n<li>Bug fix:      JIRA WPB-1900   Attribution shows in menu when menu generated using wp<em>page<\\/em>menu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1824   Fixed order of plugin deactivation and uninstall in Start Over process.<\\/li>\\n<li>Bug fix:      JIRA WPB-1814   Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.<\\/li>\\n<li>Bug fix:      JIRA WPB-1823   Fixed display of \\\"Themes\\\" H1 and the additional themes bar when choosing active or staging before installing a theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-1840   Fixing thumbnail presentation in inspirations and add new theme.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.3<\\/h4>\\n\\n<ul>\\n<li>Update:               Sync version. See version 1.1.1.1.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1833   Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1817   BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Removed feedback form bug report diagnostic report items.<\\/li>\\n<li>Bug fix:      JIRA WPB-1816   Fixed update class interference with the Add Plugins page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1809   Fixed undefined index \\\"action\\\" for some scenarios.  Optimized update class and addressed CodeSniffer items.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Reworked admin feedback notice.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Removed analysis processing and optional logging capabilities.  Added support for XHProf.<\\/li>\\n<li>Bug fix:      JIRA WPB-1805   Now adds theme update info on the Customizer Themes page.<\\/li>\\n<li>Rework:       JIRA WPB-1785   Enabled and reworked image caching for the preview server.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Reworked analysis processing.<\\/li>\\n<li>Update:       JIRA WPB-1658   Storing more reliable install data through inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-1787   When not using BoldGrid menu, cart does not dynamically update total page price.<\\/li>\\n<li>Update:       JIRA WPB-1754   Remove attribution page from search results.<\\/li>\\n<li>Bug fix:      JIRA WPB-1788   webkit css missing from \'new from gridblocks\'.<\\/li>\\n<li>New feature:  JIRA WPB-1806   Add \'BoldGrid search\' tab when replacing an image.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix:                      Fixing logo display on login screen.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Fixed analysis include for preview server.<\\/li>\\n<li>Bug fix:                      New From GridBlocks: Asset download issues.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1751   Added analysis processing and optional logging capabilities.<\\/li>\\n<li>Bug fix:      JIRA WPB-1781   Removed boldgrid<em>dismissed<\\/em>admin_notices from Start Over cleanup.<\\/li>\\n<li>New feature:  JIRA WPB-1541   Added feedback notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-1747   New From GridBlocks: For non BoldGrid themes, only load grid css.<\\/li>\\n<li>Bug fix:      JIRA WPB-1760   New From GridBlocks: Ensure page title shows on preview page.<\\/li>\\n<li>Update:       JIRA WPB-1779   New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1710   Fixed missing device preview tabs on Add New Theme preview modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1710   Fixed notice dismissal checking.<\\/li>\\n<li>Bug fix:      JIRA WPB-1749   On start over, staging menus are not deleted.<\\/li>\\n<li>Bug fix:      JIRA WPB-1755   Gallery images not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1740   Fixed \\\"In Menu\\\" messages in editor when staging plugin is not active, and fixed saving menu selections.<\\/li>\\n<li>New feature:  JIRA WPB-1726   Added optional feedback for GridBlock Add Page.<\\/li>\\n<li>Removed Ft:   JIRA WPB-1710   Removed Inspirations Add Pages; replaced by GridBlocks.<\\/li>\\n<li>Misc:         JIRA WPB-1361   Added license file.<\\/li>\\n<li>New feature:                  Don\'t assign footer contact widget if using base pagesets.<\\/li>\\n<li>Bug Fix:      JIRA WPB-1732   Fixing css issues on login screen (firefox).<\\/li>\\n<li>Bug Fix:      JIRA WPB-1687   Image search: Title, Caption, Alt Text and Description do not display on new pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.11<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1699   Added optional feedback for theme activation.<\\/li>\\n<li>New feature:  JIRA WPB-1690   Adding BoldGrid themes to All themes install menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1686   Limited items loaded in network admin pages.<\\/li>\\n<li>Improvement:  JIRA WPB-1604   Added a \\\"Cancel\\\" link to the \\\"In Menu\\\" section.<\\/li>\\n<li>Improvement:  JIRA WPB-1603   Display menu locations in the editor \\\"In Menu\\\" section.<\\/li>\\n<li>Bug fix:      JIRA WPB-1602   Corrected capitalization of \\\"None\\\" under \\\"In menu\\\" in the editor.<\\/li>\\n<li>Improvement:  JIRA WPB-1664   Gets api<em>key and site<\\/em>hash from configs instead of get_option.<\\/li>\\n<li>Bug fix:      JIRA WPB-1597   Fixing indefined index error<\\/li>\\n<li>New feature:  JIRA WPB-1649   Added reporting of PHP version and mobile ratio.<\\/li>\\n<li>Bug fix:      JIRA WPB-1598   \'Mine\' count on \'all pages\' is incorrect.<\\/li>\\n<li>Bug fix:      JIRA WPB-1647   JS error with easy-attachment-preview-size.js.<\\/li>\\n<li>Bug fix:      JIRA WPB-1651   When the BG menu is turned off, Appearance link should take you to themes.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1632   Fixed handling of subcategory<em>id in deploy<\\/em>page_sets.<\\/li>\\n<li>New feature:  JIRA WPB-1510   Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations<\\/em>Utility).<\\/li>\\n<li>Rework:       JIRA WPB-1553   Updated require and include statements for standards.<\\/li>\\n<li>Bug fix:      JIRA WPB-1563   Updated pages in which wp<em>iframe-media<\\/em>upload.css is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-1549   Resolve attribution page missing attribution for several images.png.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Add GridBlock Sets feature disabled.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed support for PHP 5.2 to deactivate plugin.<\\/li>\\n<li>Bug fix:                      Prevent click of links in add<em>new<\\/em>page_selection previews.<\\/li>\\n<li>Bug fix:      JIRA WPB-1554   Fixed undefined JavaScript variable pagenow for customizer link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1554   Fixed theme link in network dashboard nav menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1590   Fixed JavaScript error for undefined screen info in network dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1535   Fixed theme deployment issues.<\\/li>\\n<li>New feature:  JIRA WPB-1584   Added an opt-out feedback payload delivery system.<\\/li>\\n<li>New feature:  JIRA WPB-1580   Added optional feedback for customizer_start.<\\/li>\\n<li>Bug fix:      JIRA WPB-1571   Removed plugin dependency admin notice when editing an attachment (image).<\\/li>\\n<li>New feature:  JIRA WPB-1579   Added feedback opt-out in BoldGrid Settings, hidden for now.<\\/li>\\n<li>Bug fix:      JIRA WPB-1575   Addressed an issue causing mismatch color palettes on cached previews<\\/li>\\n<li>New feature:  JIRA WPB-1514   Add new pages offers page templates to choose from.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed PHP version check condition (&lt;5.3).<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1561   Fixed missing get<em>plugin<\\/em>data on update calls.<\\/li>\\n<li>New feature:  JIRA WPB-1511   Added dependency plugin notice on editor pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1553   Added support for <strong>DIR<\\/strong> in PHP &lt;=5.2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1371   JSON encoded image data for media download requests.<\\/li>\\n<li>New feature:  JIRA WPB-1332   Swapping loading GIF to CSS loading image.<\\/li>\\n<li>New feature:  JIRA WPB-1072   Storing static pages on install<\\/li>\\n<li>New feature:  JIRA WPB-1539   When deleting a page, remove it from any applicable menus as well.<\\/li>\\n<li>New feature   JIRA WPB-1542   Manage menu assignment within editor.<\\/li>\\n<li>New feature   JIRA WPB-1555   Add wp-image-## class to images during deployment.<\\/li>\\n<li>New feature   JIRA WPB-1557   Add wp-image-## class to images when adding gridblocks.<\\/li>\\n<li>Bug fix:      JIRA WPB-1506   Theme naming missing in preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-1443   Extra page listed under \'Mine\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1560   Install options not available on preview server<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.6<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1411   Added more output to the deploy log.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1462   Fixed position of dependency plugins admin notice.  Also limited to Dashboard and plugins page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1290   Fixing issues with galleries leaving empty spaces<\\/li>\\n<li>Bug fix:      JIRA WPB-1471   Made deployment plugin installation respect release channel.<\\/li>\\n<li>Rework:       JIRA WPB-1452   Remove unneeded call to \'boldgrid<em>activate<\\/em>framework\' during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-946    Fixed margin bug on step 2 additional themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-1384   Increase width of select input on image search modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1508   BoldGrid Image search box size is inconsistent.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1442   Fixing inspiration border styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1461   Updating login button styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1411   Added initialization and checks for empty image queues in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-1406   Attribution page still showing in \'All Pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1451   Active images are showing in Staging attribution page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1466   Tabs on tutorials page too small at 1035px - 1482px.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1363   Updated readme.txt for WordPress standards.<\\/li>\\n<li>New feature:  JIRA WPB-1389   When starting over theme mods are saved with a flag to recompile sass<\\/li>\\n<li>Bug fix:      JIRA WPB-1420   Content of Attribution page is overwriting page saves.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1395   Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.<\\/li>\\n<li>Rework        JIRA WPB-1374   Updated activation timestamp to use GMT\\/UTC.<\\/li>\\n<li>Bug fix:      JIRA WPB-1377   Reseller option is now set on first call to either the front end or wp_login.<\\/li>\\n<li>Bug fix:                      Adjusted handling for image purchases when errors occur.<\\/li>\\n<li>Bug fix:      JIRA WPB-1365   Purchase link on editing a page goes to wrong link.<\\/li>\\n<li>Bug fix:      JIRA WPB-1368   Inspirations step 0 text refers to nonexisting help tabs.<\\/li>\\n<li>Rework:       JIRA WPB-1378   Adjusted formatting of footer in Dashboard.<\\/li>\\n<li>Rework:       JIRA WPB-1369   Update minus signs on \'Transaction History\'.<\\/li>\\n<li>New feature:  JIRA WPB-1379   On the transactions page, show the reseller that processed the credits.<\\/li>\\n<li>Bug fix:                      Count of \'All\' pages inaccurate on \'All pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1367   Updated link for \'Lost your BoldGrid Connect Key?\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1374   Updated activation timestamp to include timezone in UTC.<\\/li>\\n<li>Bug fix:                      Attribution page shows style tags.<\\/li>\\n<li>Bug fix:                      Strict Standards fix for wp<em>kses<\\/em>allowed_html.<\\/li>\\n<li>Bug fix:                      Fixed incorrect link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0<\\/h4>\\n\\n<ul>\\n<li>Initial public release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"<h4>1.3<\\/h4>\\n\\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https:\\/\\/www.boldgrid.com\\/boldgrid-1-3-released\\/ .<\\/p>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.<\\/p>\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:17776:\"{\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:113:\"{\"inspiration\":\"Inspiration\",\"customization\":\"Customization\",\"build\":\"Build\",\"create\":\"Create\",\"design\":\"Design\"}\";s:7:\"banners\";s:151:\"{\"low\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\"}\";s:6:\"editor\";O:8:\"stdClass\":3:{s:7:\"version\";s:7:\"1.6.0.2\";s:5:\"title\";s:15:\"BoldGrid Editor\";s:8:\"asset_id\";s:6:\"900312\";}s:7:\"staging\";O:8:\"stdClass\":3:{s:7:\"version\";s:5:\"1.5.1\";s:5:\"title\";s:16:\"BoldGrid Staging\";s:8:\"asset_id\";s:6:\"876738\";}s:14:\"theme_versions\";O:8:\"stdClass\":22:{s:2:\"26\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.19.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968196;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-uptempo-1.19.2.zip\";}s:2:\"28\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968190;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-diced-1.24.2.zip\";}s:2:\"29\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968183;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-evolv-1.24.2.zip\";}s:2:\"30\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.19.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968174;s:7:\"package\";s:63:\"https://repo.boldgrid.com/themes/boldgrid-florentine-1.19.2.zip\";}s:2:\"31\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968165;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-hifidel-1.24.2.zip\";}s:2:\"32\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968158;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-hydra-1.24.2.zip\";}s:2:\"33\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968150;s:7:\"package\";s:57:\"https://repo.boldgrid.com/themes/boldgrid-linx-1.24.2.zip\";}s:2:\"34\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968145;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-pavilion-1.24.2.zip\";}s:2:\"35\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968139;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-primas-1.24.2.zip\";}s:2:\"36\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.19.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968129;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-resolve-1.19.2.zip\";}s:2:\"38\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968119;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-vacation-1.24.2.zip\";}s:2:\"40\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968114;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-gridone-1.24.2.zip\";}s:2:\"42\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.17.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968107;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-venetian-1.17.2.zip\";}s:2:\"43\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.17.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968101;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-haven-1.17.2.zip\";}s:2:\"44\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.15.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968093;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-wedge-1.15.2.zip\";}s:2:\"45\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.14.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968088;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-monument-1.14.2.zip\";}s:2:\"48\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968084;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-callaway-1.2.2.zip\";}s:2:\"49\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968080;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-swifty-1.2.2.zip\";}s:2:\"50\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968077;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.2.2.zip\";}s:2:\"51\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968074;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-westview-1.2.2.zip\";}s:2:\"52\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"0.3.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968071;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-lattice-0.3.2.zip\";}s:2:\"99\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:10:\"2018-11-27\";s:8:\"asset_id\";i:968077;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.2.2.zip\";}}s:9:\"site_hash\";s:32:\"cb28ee58b7e47c5f34ef80bad635bf36\";s:19:\"reseller_identifier\";s:3:\"IMH\";s:14:\"reseller_title\";s:16:\"InMotion Hosting\";s:17:\"reseller_logo_url\";s:78:\"./wp-content/plugins/boldgrid-inspirations/assets/images/wordpressinmotion.png\";s:20:\"reseller_website_url\";s:31:\"http://www.inmotionhosting.com/\";s:20:\"reseller_support_url\";s:52:\"http://www.inmotionhosting.com/support/edu/boldgrid/\";s:16:\"reseller_amp_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:14:\"reseller_email\";s:27:\"support@inmotionhosting.com\";s:14:\"reseller_phone\";s:14:\"1-888-321-4678\";s:16:\"reseller_css_url\";s:71:\"/wp-content/plugins/boldgrid-inspirations/assets/css/boldgrid-login.css\";s:17:\"reseller_coin_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:13:\"wporg_plugins\";O:8:\"stdClass\":3:{s:6:\"backup\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:50:\"https://plugins.svn.wordpress.org/boldgrid-backup/\";s:11:\"package_url\";s:64:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.7.1.zip\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:8:\"old_slug\";s:15:\"boldgrid-backup\";s:5:\"title\";s:15:\"BoldGrid Backup\";s:7:\"version\";s:5:\"1.7.1\";}s:6:\"editor\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:56:\"https://plugins.svn.wordpress.org/post-and-page-builder/\";s:11:\"package_url\";s:70:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.9.2.zip\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:8:\"old_slug\";s:15:\"boldgrid-editor\";s:5:\"title\";s:21:\"Post and Page Builder\";s:7:\"version\";s:5:\"1.9.2\";}s:3:\"seo\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:52:\"https://plugins.svn.wordpress.org/boldgrid-easy-seo/\";s:11:\"package_url\";s:66:\"https://downloads.wordpress.org/plugin/boldgrid-easy-seo.1.6.0.zip\";s:4:\"slug\";s:17:\"boldgrid-easy-seo\";s:8:\"old_slug\";s:12:\"boldgrid-seo\";s:5:\"title\";s:17:\"BoldGrid Easy SEO\";s:7:\"version\";s:5:\"1.6.0\";}}s:9:\"is_author\";b:0;}}s:14:\"license_status\";b:1;s:7:\"updated\";i:1546208363;}','no'),(1576,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.2\";s:7:\"version\";s:5:\"5.0.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1546206015;s:15:\"version_checked\";s:5:\"5.0.2\";s:12:\"translations\";a:0:{}}','no'),(5491,'boldgrid_customizer_first_use','2018-12-27 09:33:24','yes'),(5495,'_amn_wpforms-lite_last_checked','1546128000','yes'),(178,'boldgrid_mobile_ratio','0:4','no'),(124,'boldgrid_backup_settings','a:1:{s:16:\"backup_directory\";s:30:\"/home/arrowp10/boldgrid_backup\";}','no'),(125,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543386993;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'),(127,'boldgrid_api_key','ef1c94d49d98e5a56bb1d7dcfd9319d1','yes'),(128,'_transient_timeout_boldgrid_valid_api_key','1543386987','no'),(7821,'category_children','a:0:{}','yes'),(598,'recently_activated','a:0:{}','yes'),(133,'boldgrid_site_hash','cb28ee58b7e47c5f34ef80bad635bf36','no'),(7620,'_site_transient_timeout_bg_license_data','1546284418','no'),(7621,'_site_transient_bg_license_data','O:8:\"stdClass\":5:{s:3:\"key\";s:64:\"LFYPL2pFhryCoZ9GqI9T5G/iThzyABxVtKbwFFgdht/zEtzMXbx9hRcgMfIwjGau\";s:6:\"cipher\";s:11:\"AES-128-CBC\";s:2:\"iv\";s:42:\"W%F9%12l%D0%8A%89B%B2%EF%23%A4%81%C3%EF%E9\";s:4:\"data\";s:556:\"wIefZLpPs9glSk2jdNcN1pvtaWhaHZXEPux8i3p2vJtQjrIkOmFXcPNVbNRS8EsSg2sr2TWVZ44hwi87fRPlUhdtxC0BURufG40Vsmw3bsGjib7ZLlxX6SpVA5irHOqtu25GehxGsM8Iry9qmCcdY0vDbyfqOS6ZeeLlmj9EbI35P5fSNB3olkFch814i2I18OJ68Lv5xphfFBRgGdenTQdEurX+n5DSaVcW96AInlRkmn97Uv/9FGjALQoFralFrjyYmTWYAZOxaIOzpLYIW7PovjFSimn/IS0iOOXkQlIplcoYl3cFG/TFuH3SRo3uGANLLpnTZ5DX3bi9RY4Q0nGC+/FizvOxBwjtjDjopsLG5LWCbI2MkISSN+dhr1dYVeUsVqV9l1PeNLjEQSKxErHPTj4zPaAAlIacYYOdxxyImVz2Bu2IGGWeG3MxRLVtR6scUCgb8qDFLLAg5+PHo1KTdXeB9q7nFgLJ1UWA8MBJJ4UMkysVhC4noqURW5ylMITjcZv9/c3D4pfiYN0CfsuicqyryXvZgum3a1g5j5Q=\";s:7:\"version\";i:2;}','no'),(137,'boldgrid_backup_jobs','a:4:{i:0;a:5:{s:8:\"filepath\";s:122:\"/home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181128-063627.zip\";s:6:\"action\";s:31:\"boldgrid_backup_post_jobs_email\";s:11:\"action_data\";a:14:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:18525042;s:4:\"save\";b:1;s:10:\"total_size\";i:57415530;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:7:\"trigger\";s:11:\"Auto update\";s:8:\"filepath\";s:122:\"/home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181128-063627.zip\";s:11:\"lastmodunix\";i:1543386992;s:8:\"duration\";s:4:\"5.40\";s:11:\"db_duration\";s:4:\"0.04\";}s:11:\"post_action\";s:16:\"delete_all_prior\";s:6:\"status\";s:7:\"pending\";}i:1;a:5:{s:8:\"filepath\";s:122:\"/home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181213-043017.zip\";s:6:\"action\";s:31:\"boldgrid_backup_post_jobs_email\";s:11:\"action_data\";a:14:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:24052256;s:4:\"save\";b:1;s:10:\"total_size\";i:70282390;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:7:\"trigger\";s:11:\"Auto update\";s:8:\"filepath\";s:122:\"/home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181213-043017.zip\";s:11:\"lastmodunix\";i:1544675442;s:8:\"duration\";s:5:\"25.73\";s:11:\"db_duration\";s:4:\"0.05\";}s:11:\"post_action\";s:16:\"delete_all_prior\";s:6:\"status\";s:7:\"pending\";}i:2;a:5:{s:8:\"filepath\";s:122:\"/home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181220-144037.zip\";s:6:\"action\";s:31:\"boldgrid_backup_post_jobs_email\";s:11:\"action_data\";a:16:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:26984330;s:4:\"save\";b:1;s:10:\"total_size\";i:83986757;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:5:\"title\";N;s:11:\"description\";N;s:7:\"trigger\";s:11:\"Auto update\";s:8:\"filepath\";s:122:\"/home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181220-144037.zip\";s:11:\"lastmodunix\";i:1545316862;s:8:\"duration\";s:5:\"26.86\";s:11:\"db_duration\";s:4:\"0.05\";}s:11:\"post_action\";s:16:\"delete_all_prior\";s:6:\"status\";s:7:\"pending\";}i:3;a:5:{s:8:\"filepath\";s:122:\"/home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181224-094910.zip\";s:6:\"action\";s:31:\"boldgrid_backup_post_jobs_email\";s:11:\"action_data\";a:16:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:26969615;s:4:\"save\";b:1;s:10:\"total_size\";i:83887709;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:5:\"title\";N;s:11:\"description\";N;s:7:\"trigger\";s:11:\"Auto update\";s:8:\"filepath\";s:122:\"/home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181224-094910.zip\";s:11:\"lastmodunix\";i:1545644964;s:8:\"duration\";s:5:\"14.23\";s:11:\"db_duration\";s:4:\"0.08\";}s:11:\"post_action\";s:16:\"delete_all_prior\";s:6:\"status\";s:7:\"pending\";}}','no'),(138,'boldgrid_backup_last_backup','1545855225','no'),(5449,'wpforms_preview_page','14','yes'),(5450,'wpforms_version','1.5.0.4','yes'),(5451,'wpforms_activated','a:1:{s:4:\"lite\";i:1545903158;}','yes'),(7863,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1546206014;s:7:\"checked\";a:11:{s:19:\"akismet/akismet.php\";s:3:\"4.1\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:5:\"1.7.1\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:5:\"1.0.3\";s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";s:5:\"1.6.0\";s:31:\"boldgrid-gallery/wc-gallery.php\";s:3:\"1.5\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:5:\"1.6.4\";s:9:\"hello.php\";s:3:\"1.7\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:5:\"1.9.2\";s:27:\"td-composer/td-composer.php\";s:31:\"2.3 | built on 12.12.2018 11:28\";s:39:\"td-social-counter/td-social-counter.php\";s:31:\"4.5 | built on 12.12.2018 11:28\";s:24:\"wpforms-lite/wpforms.php\";s:7:\"1.5.0.4\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"4.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:5:\"1.7.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.7.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/boldgrid-easy-seo\";s:4:\"slug\";s:17:\"boldgrid-easy-seo\";s:6:\"plugin\";s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";s:11:\"new_version\";s:5:\"1.6.0\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/boldgrid-easy-seo/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/boldgrid-easy-seo.1.6.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-256x256.png?rev=1773296\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-128x128.png?rev=1773296\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/boldgrid-easy-seo/assets/banner-1544x500.png?rev=1773381\";s:2:\"1x\";s:72:\"https://ps.w.org/boldgrid-easy-seo/assets/banner-772x250.png?rev=1773381\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"post-and-page-builder/post-and-page-builder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/post-and-page-builder\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:6:\"plugin\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:11:\"new_version\";s:5:\"1.9.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/post-and-page-builder/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.9.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-256x256.png?rev=1768477\";s:2:\"1x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-128x128.png?rev=1768477\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/post-and-page-builder/assets/banner-1544x500.png?rev=1768477\";s:2:\"1x\";s:76:\"https://ps.w.org/post-and-page-builder/assets/banner-772x250.png?rev=1768477\";}s:11:\"banners_rtl\";a:0:{}}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.5.0.4\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/wpforms-lite.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=1371112\";s:2:\"1x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-128x128.png?rev=1371112\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=1371112\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=1371112\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:6:\"plugin\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:11:\"new_version\";s:5:\"1.6.4\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:149:\"https://wp-assets.boldgrid.com/api/asset/get?key=ef1c94d49d98e5a56bb1d7dcfd9319d1&id=971098&installed_plugin_version=1.6.4&installed_wp_version=5.0.2\";}s:31:\"boldgrid-gallery/wc-gallery.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:16:\"boldgrid-gallery\";s:6:\"plugin\";s:31:\"boldgrid-gallery/wc-gallery.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:115:\"https://wp-assets.boldgrid.com/api/open/get-asset?id=842930&installed_plugin_version=1.5&installed_wp_version=5.0.2\";}}}','no'),(143,'current_theme','Newspaper','yes'),(144,'theme_switched','','yes'),(145,'boldgrid_backup_history','a:49:{i:0;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1543386993;s:7:\"message\";s:49:\"Twenty Seventeen theme (version 1.6) deactivated.\";}i:1;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1543386993;s:7:\"message\";s:42:\"Grid One theme (version 1.24.2) activated.\";}i:2;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1543386998;s:7:\"message\";s:49:\"Akismet Anti-Spam plugin upgraded to version 4.1.\";}i:3;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1543386998;s:7:\"message\";s:49:\"BoldGrid Backup plugin upgraded to version 1.6.6.\";}i:4;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1543386998;s:7:\"message\";s:57:\"BoldGrid Backup Premium plugin upgraded to version 1.0.1.\";}i:5;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1543386998;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 1.6.0.\";}i:6;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1543386998;s:7:\"message\";s:55:\"Post and Page Builder plugin upgraded to version 1.8.1.\";}i:7;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1543387000;s:7:\"message\";s:47:\"Twenty Seventeen theme upgraded to version 1.7.\";}i:8;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1544675442;s:7:\"message\";s:144:\"Backup file created: /home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181213-043017.zip.\";}i:9;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1544675448;s:7:\"message\";s:35:\"WordPress updated to version 4.9.8.\";}i:10;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545027993;s:7:\"message\";s:35:\"WordPress updated to version 4.9.9.\";}i:11;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545028444;s:7:\"message\";s:49:\"BoldGrid Backup plugin upgraded to version 1.7.0.\";}i:12;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545028455;s:7:\"message\";s:57:\"BoldGrid Backup Premium plugin upgraded to version 1.0.1.\";}i:13;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545028462;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 1.6.0.\";}i:14;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545028474;s:7:\"message\";s:55:\"Post and Page Builder plugin upgraded to version 1.9.2.\";}i:15;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545028527;s:7:\"message\";s:57:\"BoldGrid Backup Premium plugin upgraded to version 1.0.1.\";}i:16;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545028548;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 1.6.0.\";}i:17;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545029179;s:7:\"message\";s:57:\"BoldGrid Backup Premium plugin upgraded to version 1.0.3.\";}i:18;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545029179;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 1.6.4.\";}i:19;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545029251;s:7:\"message\";s:45:\"Twenty Fifteen theme upgraded to version 2.1.\";}i:20;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545029251;s:7:\"message\";s:47:\"Twenty Seventeen theme upgraded to version 1.8.\";}i:21;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545029251;s:7:\"message\";s:45:\"Twenty Sixteen theme upgraded to version 1.6.\";}i:22;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545029310;s:7:\"message\";s:144:\"Backup file created: /home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181217-064809.zip.\";}i:23;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545030573;s:7:\"message\";s:48:\"BoldGrid Gallery plugin (version 1.5) activated.\";}i:24;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1545316863;s:7:\"message\";s:144:\"Backup file created: /home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181220-144037.zip.\";}i:25;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1545316869;s:7:\"message\";s:35:\"WordPress updated to version 5.0.1.\";}i:26;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1545644964;s:7:\"message\";s:144:\"Backup file created: /home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181224-094910.zip.\";}i:27;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1545644969;s:7:\"message\";s:183:\"Due to retention settings, the following backup was deleted: /home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181128-063627.zip\";}i:28;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1545644970;s:7:\"message\";s:35:\"WordPress updated to version 4.9.8.\";}i:29;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545787601;s:7:\"message\";s:35:\"WordPress updated to version 4.9.9.\";}i:30;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545797384;s:7:\"message\";s:57:\"BoldGrid Backup Premium plugin upgraded to version 1.0.3.\";}i:31;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545797545;s:7:\"message\";s:55:\"Post and Page Builder plugin upgraded to version 1.9.2.\";}i:32;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545797560;s:7:\"message\";s:49:\"BoldGrid Backup plugin upgraded to version 1.7.1.\";}i:33;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545855184;s:7:\"message\";s:45:\"Twenty Fifteen theme upgraded to version 2.2.\";}i:34;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545855184;s:7:\"message\";s:46:\"Twenty Nineteen theme upgraded to version 1.1.\";}i:35;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545855184;s:7:\"message\";s:47:\"Twenty Seventeen theme upgraded to version 1.9.\";}i:36;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545855184;s:7:\"message\";s:45:\"Twenty Sixteen theme upgraded to version 1.7.\";}i:37;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545855225;s:7:\"message\";s:144:\"Backup file created: /home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181226-201316.zip.\";}i:38;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545855230;s:7:\"message\";s:183:\"Due to retention settings, the following backup was deleted: /home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181213-043017.zip\";}i:39;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545903156;s:7:\"message\";s:44:\"Grid One theme (version 1.24.2) deactivated.\";}i:40;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545903156;s:7:\"message\";s:38:\"Linx theme (version 1.24.2) activated.\";}i:41;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545903158;s:7:\"message\";s:48:\"WPForms Lite plugin (version 1.5.0.4) activated.\";}i:42;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1545903171;s:7:\"message\";s:51:\"BoldGrid Easy SEO plugin (version 1.6.0) activated.\";}i:43;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1546083970;s:7:\"message\";s:40:\"Linx theme (version 1.24.2) deactivated.\";}i:44;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1546083970;s:7:\"message\";s:45:\"Twenty Fifteen theme (version 2.2) activated.\";}i:45;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1546203887;s:7:\"message\";s:47:\"Twenty Fifteen theme (version 2.2) deactivated.\";}i:46;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1546203887;s:7:\"message\";s:42:\"Newspaper theme (version 9.2.2) activated.\";}i:47;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1546203890;s:7:\"message\";s:75:\"tagDiv Composer plugin (version 2.3 | built on 12.12.2018 11:28) activated.\";}i:48;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1546203890;s:7:\"message\";s:81:\"tagDiv Social Counter plugin (version 4.5 | built on 12.12.2018 11:28) activated.\";}}','no'),(146,'theme_mods_boldgrid-gridone','a:1:{s:20:\"force_scss_recompile\";a:2:{s:6:\"active\";b:1;s:7:\"staging\";b:1;}}','yes'),(147,'widget_black-studio-tinymce','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(148,'boldgrid_widgets_created','a:0:{}','yes'),(149,'boldgrid_menus_created','a:0:{}','yes'),(151,'boldgrid_backup_latest_backup','a:17:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:27159997;s:4:\"save\";b:1;s:10:\"total_size\";i:84701026;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:5:\"title\";N;s:11:\"description\";N;s:7:\"trigger\";s:32:\"arrowman (pvieira@arrowplan.com)\";s:8:\"filepath\";s:122:\"/home/arrowp10/boldgrid_backup/boldgrid-backup-paulocoelhovieira.com_bg_paulocoelhovieira.com-6f84db3d-20181226-201316.zip\";s:11:\"lastmodunix\";i:1545855225;s:8:\"duration\";s:5:\"30.01\";s:11:\"db_duration\";s:4:\"0.07\";s:12:\"mail_success\";b:1;}','yes'),(155,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"pvieira@arrowplan.com\";s:7:\"version\";s:5:\"4.9.9\";s:9:\"timestamp\";i:1545644970;}','no'),(712,'boldgrid_backup_in_progress_data','a:1:{s:6:\"status\";s:16:\"Backup complete!\";}','yes'),(181,'boldgrid_inspirations_current_version','1.6.4','no'),(182,'boldgrid_pointers','a:4:{i:0;a:6:{s:2:\"id\";s:37:\"boldgrid_image_search_internal_only_8\";s:6:\"screen\";s:4:\"page\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:1;a:6:{s:2:\"id\";s:49:\"boldgrid_media_library_image_search_internal_only\";s:6:\"screen\";s:6:\"upload\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:3:{s:4:\"edge\";s:3:\"top\";s:5:\"align\";s:6:\"middle\";s:17:\"open_on_page_load\";b:0;}}i:2;a:6:{s:2:\"id\";s:38:\"boldgrid_image_size_do_you_need_help_8\";s:6:\"screen\";s:12:\"media-upload\";s:6:\"target\";s:11:\"#image_size\";s:5:\"title\";s:10:\"Image size\";s:7:\"content\";s:33:\"Need help choosing an image size?\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:3;a:6:{s:2:\"id\";s:29:\"boldgrid_customization_widget\";s:6:\"screen\";s:9:\"dashboard\";s:6:\"target\";s:21:\"#customization_widget\";s:5:\"title\";s:35:\"Begin customizing your new website!\";s:7:\"content\";s:120:\"Congratulations, you\'ve just installed your new website! Below you\'ll find tips to help you begin customizing your site.\";s:8:\"position\";a:2:{s:4:\"edge\";s:6:\"bottom\";s:5:\"align\";s:6:\"middle\";}}}','yes'),(186,'boldgrid_inspirations_activated_version','1.6.0','no'),(7662,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1546245017','no'),(7663,'_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:\"Wed, 19 Dec 2018 23:49:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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:42:\"https://wordpress.org/?v=5.0.3-alpha-44357\";s:7:\"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:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.0.2 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Dec 2018 23:47:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6509\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"WordPress 5.0.2 is now available! 5.0.2 is a maintenance release that addresses 73 bugs. The primary focus of this release was performance improvements in the block editor: the cumulated performance gains make it 330% faster for a post with 200 blocks. Here are a few of the additional highlights: 45 total Block Editor improvements are [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4695:\"\n<p>WordPress 5.0.2 is now available!</p>\n\n\n\n<p>5.0.2 is a maintenance release that addresses 73 bugs. The primary focus of this release was performance improvements in the block editor: the cumulated performance gains make it 330% faster for a post with 200 blocks.</p>\n\n\n\n<p>Here are a few of the additional highlights:</p>\n\n\n\n<ul><li>45 total Block Editor improvements are included (14 performance enhancements &amp; 31 bug fixes).</li><li><a href=\"https://core.trac.wordpress.org/query?component=Bundled+Theme&amp;milestone=5.0.2&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">17 Block Editor related bugs</a> have been fixed across all of the bundled themes.</li><li>Some <a href=\"https://core.trac.wordpress.org/query?component=I18N&amp;milestone=5.0.2&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">internationalization (i18n) issues</a> related to script loading have also been fixed.</li></ul>\n\n\n\n<p>For a full list of changes, please consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.0.2&amp;group=component\">list of tickets on Trac</a> or the <a href=\"https://core.trac.wordpress.org/log/branches/5.0?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=44339&amp;stop_rev=44183&amp;limit=100&amp;sfp_email=&amp;sfph_mail=\">changelog</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/download/\">download WordPress 5.0.2</a> or visit Dashboard → Updates and click <em>Update Now</em>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 5.0.2:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/babaevan/\">Alexander Babaev</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/jdtrower/\">David Trower</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/edpittol/\">Eduardo Pittol</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/greg-raven/\">Greg Raven</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">gziolo</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">iCaleb</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/khleomix/\">khleomix</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff&nbsp;Paul</a>, <a href=\"https://profiles.wordpress.org/mihaivalentin/\">mihaivalentin</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/more/\"></a><a href=\"https://profiles.wordpress.org/mmaumio/\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pratikthink/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/strategio/\">strategio</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/torontodigits/\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/volodymyrkolesnykov/\">volodymyrkolesnykov</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/ze3kr/\">ze3kr</a>, and <a href=\"https://profiles.wordpress.org/mypacecreator/\">のむらけい</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordCamp US 2019 dates announced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2018/12/wordcamp-us-2019-dates-announced/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 19:47:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6496\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"Save the date! The next WordCamp US will be held on November 1-3, 2019, in beautiful St Louis, Missouri. One of our largest events of the year, WordCamp US is a great chance to connect with WordPress enthusiasts from around the world. This is also the event that features Matt Mullenweg&#8217;s annual State of the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:705:\"\n<p>Save the date! <a href=\"https://2019.us.wordcamp.org/2018/12/12/wordcamp-us-2019-announcing-our-dates/\">The next WordCamp US</a> will be held on November 1-3, 2019, in beautiful <a href=\"https://2018.us.wordcamp.org/2018/06/15/matt-mullenweg-announces-st-louis-as-wordcamp-us-2019-2020-host-city/\">St Louis, Missouri</a>. One of our largest events of the year, WordCamp US is a great chance to connect with WordPress enthusiasts from around the world. This is also the event that features Matt Mullenweg&#8217;s annual <a href=\"https://www.youtube.com/watch?v=r5b-N2RmxS8\">State of the Word</a> address. </p>\n\n\n\n<p>We&#8217;d love to see you in St. Louis next year, so mark your calendar now!<br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6496\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.0.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 03:13:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6498\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:374:\"WordPress 5.0.1 is now available. This is a security release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. Plugin authors are encouraged to read the 5.0.1 developer notes for information on backwards-compatibility. WordPress versions 5.0 and earlier are affected by the following bugs, which are fixed in version [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Ian Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4799:\"\n<p>WordPress 5.0.1 is now available. This is a <strong>security release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>Plugin authors are encouraged to <a href=\"https://make.wordpress.org/core/2018/12/13/backwards-compatibility-breaks-in-5-0-1/\">read the 5.0.1 developer notes</a> for information on backwards-compatibility.</p>\n\n\n\n<p>WordPress versions 5.0 and earlier are affected by the following bugs, which are fixed in version 5.0.1. Updated versions of WordPress 4.9 and older releases are also available, for users who have not yet updated to 5.0.</p>\n\n\n\n<ul><li><a href=\"https://ripstech.com\">Karim El Ouerghemmi</a> discovered that authors could alter meta data to delete files that they weren&#8217;t authorized to.</li><li>Simon Scannell of <a href=\"https://blog.ripstech.com\">RIPS Technologies</a> discovered that authors could create posts of unauthorized post types with specially crafted input.</li><li><a href=\"https://twitter.com/_s_n_t\">Sam Thomas</a> discovered that contributors could craft meta data in a way that resulted in PHP object injection. </li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> discovered that contributors could edit new comments from higher-privileged users, potentially leading to a cross-site scripting vulnerability.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> also discovered that specially crafted URL inputs could lead to a cross-site scripting vulnerability in some circumstances. WordPress itself was not affected, but plugins could be in some situations. </li><li><a href=\"https://yoast.com/\">Team Yoast</a> discovered that the user activation screen could be indexed by search engines in some uncommon configurations, leading to exposure of email addresses, and in some rare cases, default generated passwords.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> and <a href=\"https://medium.com/websec\">Slavco</a> discovered that authors on Apache-hosted sites could upload specifically crafted files that bypass MIME verification, leading to a cross-site scripting vulnerability. </li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 5.0.1</a>, or venture over to <code>Dashboard → Updates</code> and click <code>Update Now</code>. Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>In addition to the security researchers mentioned above, thank you to everyone who contributed to WordPress 5.0.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron Campbell</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry Abrahamson</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/darthhexx/\">David Newman</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">Demitrious Kelly</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/hnotess/\">Hannah Notess</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mo Jangda</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, and <a href=\"https://twitter.com/p_valentyn\">Valentyn Pylypchuk</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:35:\"\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:24:\"WordPress 5.0 “Bebo”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2018/12/bebo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 06 Dec 2018 19:28: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: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=6328\";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:\"Say Hello to the New Editor We’ve made some big upgrades to the editor. Our new block-based editor is the first step toward an exciting new future with a streamlined editing experience across your site. You’ll have more flexibility with how content is displayed, whether you are building your first site, revamping your blog, or [&#8230;]\";s: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:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:52:\"https://s.w.org/images/core/5.0/videos/add-block.mp4\";s:6:\"length\";s:7:\"8086508\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:48:\"https://s.w.org/images/core/5.0/videos/build.mp4\";s:6:\"length\";s:7:\"2623964\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:56447:\"\n<h2 style=\"text-align:center\">Say Hello to the New Editor</h2>\n\n\n\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\'youtube-player\' type=\'text/html\' width=\'632\' height=\'386\' src=\'https://www.youtube.com/embed/72xdCU__XCk?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe>\n</div></figure>\n\n\n\n<p>We’ve made some big upgrades to the editor. Our new block-based editor is the first step toward an exciting new future with a streamlined editing experience across your site. You’ll have more flexibility with how content is displayed, whether you are building your first site, revamping your blog, or write code for a living.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?fit=2400%2C1200&amp;ssl=1\" alt=\"\" class=\"wp-image-6331\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?w=2400&amp;ssl=1 2400w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?resize=300%2C150&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?resize=768%2C384&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" /></figure></div>\n\n\n\n<h2 style=\"text-align:center\">Building with Blocks</h2>\n\n\n\n<p>The new block-based editor won’t change the way any of your content looks to your visitors. What it will do is let you insert any type of multimedia in a snap and rearrange to your heart’s content. Each piece of content will be in its own block; a distinct wrapper for easy maneuvering. If you’re more of an HTML and CSS sort of person, then the blocks won’t stand in your way. WordPress is here to simplify the process, not the outcome.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.0/videos/add-block.mp4\"></video></figure>\n\n\n\n<p>We have tons of blocks available by default, and more get added by the community every day. Here are a few of the blocks to help you get started:</p>\n\n\n\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6340\" data-link=\"https://wordpress.org/news/?attachment_id=6340\" class=\"wp-image-6340\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?w=500&amp;ssl=1 500w, https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?resize=150%2C150&amp;ssl=1 150w, https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Paragraph</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6341\" data-link=\"https://wordpress.org/news/?attachment_id=6341\" class=\"wp-image-6341\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Heading</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6342\" data-link=\"https://wordpress.org/news/?attachment_id=6342\" class=\"wp-image-6342\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Preformatted</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6343\" data-link=\"https://wordpress.org/news/?attachment_id=6343\" class=\"wp-image-6343\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Quote</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6344\" data-link=\"https://wordpress.org/news/?attachment_id=6344\" class=\"wp-image-6344\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Image</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6345\" data-link=\"https://wordpress.org/news/?attachment_id=6345\" class=\"wp-image-6345\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?w=500&amp;ssl=1 500w, https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?resize=150%2C150&amp;ssl=1 150w, https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Gallery</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6346\" data-link=\"https://wordpress.org/news/?attachment_id=6346\" class=\"wp-image-6346\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Cover</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6347\" data-link=\"https://wordpress.org/news/?attachment_id=6347\" class=\"wp-image-6347\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Video</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6348\" data-link=\"https://wordpress.org/news/?attachment_id=6348\" class=\"wp-image-6348\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Audio</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6349\" data-link=\"https://wordpress.org/news/?attachment_id=6349\" class=\"wp-image-6349\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Columns</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6350\" data-link=\"https://wordpress.org/news/?attachment_id=6350\" class=\"wp-image-6350\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>File</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6351\" data-link=\"https://wordpress.org/news/?attachment_id=6351\" class=\"wp-image-6351\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Code</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6352\" data-link=\"https://wordpress.org/news/?attachment_id=6352\" class=\"wp-image-6352\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>List</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6353\" data-link=\"https://wordpress.org/news/?attachment_id=6353\" class=\"wp-image-6353\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Button</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6354\" data-link=\"https://wordpress.org/news/?attachment_id=6354\" class=\"wp-image-6354\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Embeds</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6355\" data-link=\"https://wordpress.org/news/?attachment_id=6355\" class=\"wp-image-6355\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>More</figcaption></figure></li></ul>\n\n\n\n<h2 style=\"text-align:center\">Freedom to Build, Freedom to Write</h2>\n\n\n\n<p>This new editing experience provides a more consistent treatment of design as well as content. If you’re building client sites, you can create reusable blocks. This lets your clients add new content anytime, while still maintaining a consistent look and feel.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.0/videos/build.mp4\"></video></figure>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">A Stunning New Default Theme</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?fit=2400%2C1600&amp;ssl=1\" alt=\"\" class=\"wp-image-6358\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?w=2400&amp;ssl=1 2400w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" /></figure></div>\n\n\n\n<p>Introducing Twenty Nineteen, a new default theme that shows off the power of the new editor.</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/block-editor-1024x683.jpg?resize=632%2C422&#038;ssl=1\" alt=\"\" class=\"wp-image-6359\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/block-editor.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2018/12/block-editor.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/12/block-editor.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/12/block-editor.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_9\">Designed for the block editor</h3>\n\n\n\n<p>Twenty Nineteen features custom styles for the blocks available by default in 5.0. It makes extensive use of editor styles throughout the theme. That way, what you create in your content editor is what you see on the front of your site.<br></p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6427\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?w=900&amp;ssl=1 900w, https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_18\">Simple, type-driven layout</h3>\n\n\n\n<p>Featuring ample whitespace, and modern sans-serif headlines paired with classic serif body text, Twenty Nineteen is built to be beautiful on the go. It uses system fonts to increase loading speed. No more long waits on slow networks!</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen-versatile.gif?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6361\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_24\">Versatile design for all sites</h3>\n\n\n\n<p>Twenty Nineteen is designed to work for a wide variety of use cases. Whether you’re running a photo blog, launching a new business, or supporting a non-profit, Twenty Nineteen is flexible enough to fit your needs.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/themes/twentynineteen/\" style=\"color:#ffffff\">Give Twenty Nineteen a try</a></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Developer Happiness</h2>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Protect.jpg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6362\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Protect.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Protect.jpg?resize=300%2C210&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_34\">Protect</h3>\n\n\n\n<p>Blocks provide a comfortable way for users to change content directly, while also ensuring the content structure cannot be easily disturbed by accidental code edits. This allows the developer to control the output, building polished and semantic markup that is preserved through edits and not easily broken.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Compose.jpg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6363\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Compose.jpg?w=500&amp;ssl=1 500w, https://i2.wp.com/wordpress.org/news/files/2018/12/Compose.jpg?resize=300%2C210&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_39\">Compose</h3>\n\n\n\n<p>Take advantage of a wide collection of APIs and interface components to easily create blocks with intuitive controls for your clients. Utilizing these components not only speeds up development work but also provide a more consistent, usable, and accessible interface to all users.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Create.jpg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6364\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Create.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Create.jpg?resize=300%2C210&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_45\">Create</h3>\n\n\n\n<p>The new block paradigm opens up a path of exploration and imagination when it comes to solving user needs. With the unified block insertion flow, it’s easier for your clients and customers to find and use blocks for all types of content. Developers can focus on executing their vision and providing rich editing experiences, rather than fussing with difficult APIs.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/gutenberg/handbook/\" style=\"color:#ffffff\">Learn how to get started</a></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Keep it Classic</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?fit=2400%2C1130&amp;ssl=1\" alt=\"\" class=\"wp-image-6365\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?w=2400&amp;ssl=1 2400w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?resize=300%2C141&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?resize=768%2C362&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?resize=1024%2C482&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" /></figure></div>\n\n\n\n<p>Prefer to stick with the familiar Classic Editor? No problem! Support for the Classic Editor plugin will remain in WordPress through 2021.</p>\n\n\n\n<p>The Classic Editor plugin restores the previous WordPress editor and the Edit Post screen. It lets you keep using plugins that extend it, add old-style meta boxes, or otherwise depend on the previous editor. To install, visit your plugins page and click the “Install Now” button next to “Classic Editor”. After the plugin finishes installing, click “Activate”. That’s it!</p>\n\n\n\n<p>Note to users of assistive technology: if you experience usability issues with the block editor, we recommend you continue to use the Classic Editor.</p>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/plugins/classic-editor/\" style=\"color:#ffffff\">Check out the Classic Editor</a></div>\n\n\n\n<p>This release is named in homage to the pioneering Cuban jazz musician <a href=\"https://en.wikipedia.org/wiki/Bebo_Vald%C3%A9s\">Bebo Valdés</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, along with co-leads <a href=\"https://www.allancole.com/\">Allan Cole</a>, <a href=\"http://antpb.com/\">Anthony Burchell</a>, <a href=\"https://pento.net/\">Gary Pendergast</a>, <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a>, <a href=\"https://laurel.blog/\">Laurel Fulford</a>, <a href=\"https://yoast.com/about-us/team/omar-reiss/\">Omar Reiss</a>, <a href=\"https://danielbachhuber.com/\">Daniel Bachhuber</a>, <a href=\"https://matiasventura.com/\">Matías Ventura</a>, <a href=\"https://lamda.blog/\">Miguel Fonseca</a>, <a href=\"https://tam.blog/\">Tammie Lister</a>, <a href=\"https://tofumatt.com/\">Matthew Riley MacPherson</a>. They were ably assisted by the following fabulous folks. There were 423 contributors with props in this release. Pull up some Bebo Valdés on your music service of choice, and check out some of their profiles:</p>\n\n\n<a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdulwahab610\">Abdul Wahab</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afraithe\">afraithe</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/airathalitov\">Airat Halitov</a>, <a href=\"https://profiles.wordpress.org/ajitbohra\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/albertomedina\">albertomedina</a>, <a href=\"https://profiles.wordpress.org/aldavigdis\">aldavigdis</a>, <a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/alexsanford1\">Alex Sanford</a>, <a href=\"https://profiles.wordpress.org/babaevan\">Alexander Babaev</a>, <a href=\"https://profiles.wordpress.org/xyfi\">Alexander Botteram</a>, <a href=\"https://profiles.wordpress.org/alexis\">alexis</a>, <a href=\"https://profiles.wordpress.org/alexislloyd\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/amedina\">amedina</a>, <a href=\"https://profiles.wordpress.org/nosolosw\">Andr&#233;s</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/euthelup\">Andrei Lupu</a>, <a href=\"https://profiles.wordpress.org/andreiglingeanu\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/aduth\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/sumobi\">Andrew Munro</a>, <a href=\"https://profiles.wordpress.org/anevins\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/androb\">Andrew Roberts</a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">andrewserong</a>, <a href=\"https://profiles.wordpress.org/apeatling\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/ameeker\">Angie Meeker</a>, <a href=\"https://profiles.wordpress.org/annaharrison\">Anna Harrison</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/arnaudban\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arshidkv12\">Arshid</a>, <a href=\"https://profiles.wordpress.org/aprakasa\">Arya Prakasa</a>, <a href=\"https://profiles.wordpress.org/artisticasad\">Asad</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan\">Ashar Irfan</a>, <a href=\"https://profiles.wordpress.org/asvinballoo\">Asvin Balloo</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcolumbia\">bcolumbia</a>, <a href=\"https://profiles.wordpress.org/belcherj\">belcherj</a>, <a href=\"https://profiles.wordpress.org/blowery\">Ben Lowery</a>, <a href=\"https://profiles.wordpress.org/caxco93\">Benjamin Eyzaguirre</a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica\">Benjamin Zekavica</a>, <a href=\"https://profiles.wordpress.org/benlk\">benlk</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/betsela\">betsela</a>, <a href=\"https://profiles.wordpress.org/bhargavmehta\">Bhargav Mehta</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph\">Birgit Pauli-Haack</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/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentswisher\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/technosiren\">Brianna Privett</a>, <a href=\"https://profiles.wordpress.org/briannaorg\">briannaorg</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/bandonrandon\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/burhandodhy\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cantothemes\">CantoThemes</a>, <a href=\"https://profiles.wordpress.org/cathibosco\">cathibosco</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chetansatasiya\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisl27\">Chris Lloyd</a>, <a href=\"https://profiles.wordpress.org/crunnells\">Chris Runnells</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriskmnds\">chriskmnds</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/copons\">Copons</a>, <a href=\"https://profiles.wordpress.org/courtney0burton\">courtney0burton</a>, <a href=\"https://profiles.wordpress.org/mitogh\">Crisoforo Gaspar Hernandez</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/csabotta\">csabotta</a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/danielhw\">danielhw</a>, <a href=\"https://profiles.wordpress.org/daniloercoli\">daniloercoli</a>, <a href=\"https://profiles.wordpress.org/dannycooper\">DannyCooper</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davemoran118\">davemoran118</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dcavins\">David Cavins</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David Kennedy</a>, <a href=\"https://profiles.wordpress.org/dryanpress\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/davidsword\">David Sword</a>, <a href=\"https://profiles.wordpress.org/jdtrower\">David Trower</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/davidherrera\">davidherrera</a>, <a href=\"https://profiles.wordpress.org/davisshaver\">Davis</a>, <a href=\"https://profiles.wordpress.org/dciso\">dciso</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dsmart\">Derek Smart</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dlocc\">Devin Walker</a>, <a href=\"https://profiles.wordpress.org/deviodigital\">Devio Digital</a>, <a href=\"https://profiles.wordpress.org/dfangstrom\">dfangstrom</a>, <a href=\"https://profiles.wordpress.org/dhanendran\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/diegoliv\">Diego de Oliveira</a>, <a href=\"https://profiles.wordpress.org/diegoreymendez\">diegoreymendez</a>, <a href=\"https://profiles.wordpress.org/dingo_bastard\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/dixitadusara\">Dixita Dusara Gohil</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donnapep\">Donna Peplinskie</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsawardekar\">dsawardekar</a>, <a href=\"https://profiles.wordpress.org/dsifford\">dsifford</a>, <a href=\"https://profiles.wordpress.org/duanestorey\">Duane Storey</a>, <a href=\"https://profiles.wordpress.org/edpittol\">Eduardo Pittol</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/ehg\">ehg</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/epointal\">Elisabeth Pointal</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elrae\">elrae</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/ephoxjames\">ephoxjames</a>, <a href=\"https://profiles.wordpress.org/ephoxmogran\">ephoxmogran</a>, <a href=\"https://profiles.wordpress.org/sewmyheadon\">Eric Amundson</a>, <a href=\"https://profiles.wordpress.org/ericnmurphy\">ericnmurphy</a>, <a href=\"https://profiles.wordpress.org/etoledom\">etoledom</a>, <a href=\"https://profiles.wordpress.org/circlecube\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">fabiankaegy</a>, <a href=\"https://profiles.wordpress.org/fabs_pim\">fabs_pim</a>, <a href=\"https://profiles.wordpress.org/faishal\">Faishal</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/floriansimeth\">Florian Simeth</a>, <a href=\"https://profiles.wordpress.org/foobar4u\">foobar4u</a>, <a href=\"https://profiles.wordpress.org/foreverpinetree\">foreverpinetree</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fuyuko\">fuyuko</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/doomwaxer\">Gary Thayer</a>, <a href=\"https://profiles.wordpress.org/garyjones\">garyjones</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/babbardel\">George Olaru</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/georgeh\">georgeh</a>, <a href=\"https://profiles.wordpress.org/gnif\">gnif</a>, <a href=\"https://profiles.wordpress.org/goldsounds\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/grappler\">Grappler</a>, <a href=\"https://profiles.wordpress.org/greg-raven\">Greg Raven</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/bordoni\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/gwwar\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hblackett\">hblackett</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/luehrsen\">Hendrik Luehrsen</a>, <a href=\"https://profiles.wordpress.org/herbmiller\">herbmiller</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/hypest\">hypest</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianstewart\">ianstewart</a>, <a href=\"https://profiles.wordpress.org/ianbelanger\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/icaleb\">iCaleb</a>, <a href=\"https://profiles.wordpress.org/idpokute\">idpokute</a>, <a href=\"https://profiles.wordpress.org/igorsch\">Igor</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/imonly_ik\">Imran Khalid</a>, <a href=\"https://profiles.wordpress.org/intronic\">intronic</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ireneyoast\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/israelshmueli\">israelshmueli</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jd55\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/jagnew\">jagnew</a>, <a href=\"https://profiles.wordpress.org/jahvi\">jahvi</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamestryon\">jamestryon</a>, <a href=\"https://profiles.wordpress.org/jamiehalvorson\">jamiehalvorson</a>, <a href=\"https://profiles.wordpress.org/jdembowski\">Jan Dembowski</a>, <a href=\"https://profiles.wordpress.org/janalwin\">janalwin</a>, <a href=\"https://profiles.wordpress.org/jaswrks\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/octalmage\">Jason Stallings</a>, <a href=\"https://profiles.wordpress.org/yingling017\">Jason Yingling</a>, <a href=\"https://profiles.wordpress.org/vengisss\">Javier Villanueva</a>, <a href=\"https://profiles.wordpress.org/jhoffm34\">Jay Hoffmann</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">JJJ</a>, <a href=\"https://profiles.wordpress.org/sephsekla\">Joe Bailey-Roberts</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/joemaller\">joemaller</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johndyer\">johndyer</a>, <a href=\"https://profiles.wordpress.org/johnpixle\">JohnPixle</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0\">johnwatkins0</a>, <a href=\"https://profiles.wordpress.org/jomurgel\">jomurgel</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/ieatwebsites\">Jose Fremaint</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/jvisick77\">Josh Visick</a>, <a href=\"https://profiles.wordpress.org/joshuawold\">Joshua Wold</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/jryancard\">jryancard</a>, <a href=\"https://profiles.wordpress.org/jsnajdr\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/julienmelissas\">JulienMelissas</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kallehauge\">Kallehauge</a>, <a href=\"https://profiles.wordpress.org/kalpshit\">KalpShit Akabari</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevinwhoffman\">Kevin Hoffman</a>, <a href=\"https://profiles.wordpress.org/khleomix\">khleomix</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/kluny\">kluny</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/krutidugade\">krutidugade</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/notlaura\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/leahkoerper\">leahkoerper</a>, <a href=\"https://profiles.wordpress.org/lloyd\">lloyd</a>, <a href=\"https://profiles.wordpress.org/loicblascos\">Lo&#239;c Blascos</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lucasrolff\">LucasRolff</a>, <a href=\"https://profiles.wordpress.org/luigipulcini\">luigipulcini</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lucaskowalski\">Luke Kowalski</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/luminus\">Luminus</a>, <a href=\"https://profiles.wordpress.org/lynneux\">lynneux</a>, <a href=\"https://profiles.wordpress.org/macbookandrew\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/maedahbatool\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/mahdiyazdani\">Mahdi Yazdani</a>, <a href=\"https://profiles.wordpress.org/mahmoudsaeed\">mahmoudsaeed</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/marina_wp\">marina_wp</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mariusvw\">mariusvw</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/vindl\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/martinlugton\">martinlugton</a>, <a href=\"https://profiles.wordpress.org/m-e-h\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/mathiu\">mathiu</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattgeri\">MattGeri</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/maurobringolf\">maurobringolf</a>, <a href=\"https://profiles.wordpress.org/maximebj\">Maxime BERNARD-JACQUET</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/meetjey\">meetjey</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mendezcode\">mendezcode</a>, <a href=\"https://profiles.wordpress.org/woodent\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/wpscholar\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michaelhull\">Michael Hull</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/mizejewski\">Michele Mizejewski</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Migrated to @jeffpaul</a>, <a href=\"https://profiles.wordpress.org/mihaivalentin\">mihaivalentin</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/simison\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mike-haydon-swo\">Mike Haydon</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeselander\">Mike Selander</a>, <a href=\"https://profiles.wordpress.org/mikehaydon\">mikehaydon</a>, <a href=\"https://profiles.wordpress.org/mikeyarce\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/gonzomir\">Milen Petrinski - Gonzo</a>, <a href=\"https://profiles.wordpress.org/milesdelliott\">milesdelliott</a>, <a href=\"https://profiles.wordpress.org/mimo84\">mimo84</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">mirka</a>, <a href=\"https://profiles.wordpress.org/mmtr86\">mmtr86</a>, <a href=\"https://profiles.wordpress.org/boemedia\">Monique Dubbelman</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mostafas1990\">Mostafa Soufi</a>, <a href=\"https://profiles.wordpress.org/motleydev\">motleydev</a>, <a href=\"https://profiles.wordpress.org/mpheasant\">mpheasant</a>, <a href=\"https://profiles.wordpress.org/mrmadhat\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">mrwweb</a>, <a href=\"https://profiles.wordpress.org/msdesign21\">msdesign21</a>, <a href=\"https://profiles.wordpress.org/mtias\">mtias</a>, <a href=\"https://profiles.wordpress.org/desideveloper\">Muhammad Irfan</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munirkamal\">munirkamal</a>, <a href=\"https://profiles.wordpress.org/mmaumio\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/mzorz\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nagayama\">nagayama</a>, <a href=\"https://profiles.wordpress.org/nfmohit\">Nahid F. Mohit</a>, <a href=\"https://profiles.wordpress.org/nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/napy84\">napy84</a>, <a href=\"https://profiles.wordpress.org/nateconley\">nateconley</a>, <a href=\"https://profiles.wordpress.org/nativeinside\">Native Inside</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/buzztone\">Neil Murray</a>, <a href=\"https://profiles.wordpress.org/nicbertino\">nic.bertino</a>, <a href=\"https://profiles.wordpress.org/notnownikki\">Nicola Heald</a>, <a href=\"https://profiles.wordpress.org/nielslange\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/nitrajka\">nitrajka</a>, <a href=\"https://profiles.wordpress.org/njpanderson\">njpanderson</a>, <a href=\"https://profiles.wordpress.org/nshki\">nshki</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/otto42\">Otto</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pauldechov\">Paul Dechov</a>, <a href=\"https://profiles.wordpress.org/paulstonier\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pedromendonca\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pglewis\">pglewis</a>, <a href=\"https://profiles.wordpress.org/tyrannous\">Philipp Bammes</a>, <a href=\"https://profiles.wordpress.org/piersb\">piersb</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter Daalder</a>, <a href=\"https://profiles.wordpress.org/pilou69\">pilou69</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/poena\">poena</a>, <a href=\"https://profiles.wordpress.org/postphotos\">postphotos</a>, <a href=\"https://profiles.wordpress.org/potbot\">potbot</a>, <a href=\"https://profiles.wordpress.org/prtksxna\">Prateek Saxena</a>, <a href=\"https://profiles.wordpress.org/pratikthink\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/psealock\">psealock</a>, <a href=\"https://profiles.wordpress.org/ptasker\">ptasker</a>, <a href=\"https://profiles.wordpress.org/rachelmcr\">Rachel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahmohn\">Rahmohn</a>, <a href=\"https://profiles.wordpress.org/rahmon\">Rahmon</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/rakshans1\">rakshans1</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/revgeorge\">revgeorge</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/richtabor\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/richsalvucci\">richsalvucci</a>, <a href=\"https://profiles.wordpress.org/riddhiehta02\">Riddhi Mehta</a>, <a href=\"https://profiles.wordpress.org/rileybrook\">rileybrook</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/sanchothefat\">Robert O\'Rourke</a>, <a href=\"https://profiles.wordpress.org/robertsky\">robertsky</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili\">Rocio Valdivia</a>, <a href=\"https://profiles.wordpress.org/rohittm\">Rohit Motwani</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryo511\">ryo511</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/scottmweaver\">Scott Weaver</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/azchughtai\">Shahjehan Ali</a>, <a href=\"https://profiles.wordpress.org/shaileesheth\">Shailee Sheth</a>, <a href=\"https://profiles.wordpress.org/sharaz\">Sharaz Shahid</a>, <a href=\"https://profiles.wordpress.org/giventofly76\">Shaun sc</a>, <a href=\"https://profiles.wordpress.org/shaunandrews\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/shenkj\">shenkj</a>, <a href=\"https://profiles.wordpress.org/sikander\">sikander</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/siriokun\">siriokun</a>, <a href=\"https://profiles.wordpress.org/sirjonathan\">sirjonathan</a>, <a href=\"https://profiles.wordpress.org/sirreal\">sirreal</a>, <a href=\"https://profiles.wordpress.org/sisanu\">Sisanu</a>, <a href=\"https://profiles.wordpress.org/skorasaurus\">skorasaurus</a>, <a href=\"https://profiles.wordpress.org/butimnoexpert\">Slushman</a>, <a href=\"https://profiles.wordpress.org/ssousa\">Sofia Sousa</a>, <a href=\"https://profiles.wordpress.org/somtijds\">SOMTIJDS</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/spocke\">spocke</a>, <a href=\"https://profiles.wordpress.org/stagger-lee\">Stagger Lee</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevehenty\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/charlestonsw\">Store Locator Plus</a>, <a href=\"https://profiles.wordpress.org/strategio\">strategio</a>, <a href=\"https://profiles.wordpress.org/stuartfeldt\">stuartfeldt</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/tacrapo\">tacrapo</a>, <a href=\"https://profiles.wordpress.org/talldan\">talldan</a>, <a href=\"https://profiles.wordpress.org/tammie_l\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/themeroots\">ThemeRoots</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/hedgefield\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/timgardner\">timgardner</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/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tlxo\">Toni Laakso</a>, <a href=\"https://profiles.wordpress.org/skithund\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torontodigits\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/mirucon\">Toshihiro Kanai</a>, <a href=\"https://profiles.wordpress.org/itowhid06\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/travislopes\">Travis Lopes</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tjfunke001\">Tunji Ayoola</a>, <a href=\"https://profiles.wordpress.org/twoelevenjay\">twoelevenjay</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vtrpldn\">Vitor Paladini</a>, <a href=\"https://profiles.wordpress.org/volodymyrkolesnykov\">volodymyrkolesnykov</a>, <a href=\"https://profiles.wordpress.org/walterebert\">Walter Ebert</a>, <a href=\"https://profiles.wordpress.org/warmarks\">warmarks</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; 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/willybahuaud\">Willy Bahuaud</a>, <a href=\"https://profiles.wordpress.org/yahil\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yingles\">yingles</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/fierevere\">Yui</a>, <a href=\"https://profiles.wordpress.org/youthkee\">Yusuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/ze3kr\">ze3kr</a>, <a href=\"https://profiles.wordpress.org/zebulan\">zebulan</a>, <a href=\"https://profiles.wordpress.org/ziyaddin\">Ziyaddin Sadigov</a>, and <a href=\"https://profiles.wordpress.org/mypacecreator\">のむらけい (Kei Nomura)</a>.\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.0. Their efforts bring WordPress 5.0 fully translated to 37 languages at release time, with more on the way.</p>\n\n\n\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>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6328\";s: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: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:17:\"WordPress 5.0 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2018/12/wordpress-5-0-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Dec 2018 07:07:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6322\";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:388:\"The third release candidate for WordPress 5.0 is now available! WordPress 5.0 will be released on December 6, 2018. This is a big release and needs&#160;your&#160;help—if you haven’t tried 5.0 yet, now is the time! To test WordPress 5.0, you can use the&#160;WordPress Beta Tester&#160;plugin or you can&#160;download the release candidate here&#160;(zip). For details about [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2791:\"\n<p>The third release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p><strong>WordPress 5.0 will be released on </strong><a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\"><strong>December 6, 2018</strong></a>. This is a big release and needs&nbsp;<em>your</em>&nbsp;help—if you haven’t tried 5.0 yet, now is the time!</p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC3.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.0, please see the&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>This release candidate includes a fix for some scripts not loading on subdirectory installs (<a href=\"https://core.trac.wordpress.org/ticket/45469\">#45469</a>), and user locale settings not being loaded in the block editor (<a href=\"https://core.trac.wordpress.org/ticket/45465\">#45465</a>). Twenty Nineteen has also had a couple of minor tweaks.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.0 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.0. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release. An in-depth field guide to developer-focused changes is coming soon on the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development blog</a>. In the meantime, you can review the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5.0+dev-notes/\">developer notes for 5.0</a>.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>WordPress Five Point Oh<br>Is just a few days away!<br>Nearly party time!</em> <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6322\";s: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:37:\"The Month in WordPress: November 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/12/the-month-in-wordpress-november-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Dec 2018 17:43:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=6318\";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:345:\"WordPress 5.0 is almost ready for release, including an all-new content editing experience. Volunteers all across the project are gearing up for the launch and making sure everything is ready. Read on to find out what&#8217;s been happening and how you can get involved. WordPress 5.0 Close to Launch The release date for WordPress 5.0 [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:6593:\"\n<p>WordPress 5.0 is almost ready for release, including an all-new content editing experience. Volunteers all across the project are gearing up for the launch and making sure everything is ready. Read on to find out what&#8217;s been happening and how you can get involved.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.0 Close to Launch</h2>\n\n\n\n<p>The release date for WordPress 5.0 has not yet been set, but the second release candidate (RC) <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\">is now available</a>. The final release date will be determined based on feedback and testing of this RC. The Core development team has been posting <a href=\"https://make.wordpress.org/core/2018/12/03/5-0-gutenberg-status-update-dec-3/\">daily updates</a> on the progress of their work on v5.0, with the number of open issues for this release decreasing every day.<br></p>\n\n\n\n<p>The primary feature of this release is <a href=\"https://wordpress.org/gutenberg/\">the new editor</a> that will become the default WordPress experience going forward. A number of people have been seeking more direct feedback from the release leads about the progress of this release, which <a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a> has facilitated by hosting <a href=\"https://make.wordpress.org/core/2018/11/29/gutenberg-5-0-listening-office-hours/\">one-to-one discussions</a> with anyone in the community who wanted to talk with him about it. He has also published <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\">an extended FAQ</a> covering many of the questions people have been asking.<br></p>\n\n\n\n<p>Alongside the development of the new editor, the Mobile team has been working hard to bring the WordPress mobile apps up to speed. They plan to make a beta version available <a href=\"https://make.wordpress.org/mobile/2018/11/15/gutenberg-in-the-apps-what-to-expect/\">in February 2019</a>.<br></p>\n\n\n\n<p>Want to get involved in developing WordPress Core in 5.0 and beyond? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New WordPress Support Platform Goes Live</h2>\n\n\n\n<p>WordPress user documentation has long been hosted on the <a href=\"https://codex.wordpress.org/\">WordPress Codex</a>, but for the past couple of years an ambitious project has been underway to move that content to a freshly-built WordPress-based platform. This project, named “HelpHub,” is now live and <a href=\"https://wordpress.org/support/\">the official home of WordPress Support</a>.<br></p>\n\n\n\n<p>There is still plenty of content that needs to be migrated from the Codex to HelpHub, but the initial move is done and the platform is ready to have all WordPress’ user documentation moved across. HelpHub will be the first place for support, encouraging users to find solutions for themselves before posting in the <a href=\"https://wordpress.org/support/forums/\">forums</a>.<br></p>\n\n\n\n<p>Want to get involved in populating HelpHub with content, or with its future development? Follow <a href=\"https://make.wordpress.org/docs/\">the Documentation team blog</a> and join the #docs channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Spanish WordPress Community Pushes Translations Forward</h2>\n\n\n\n<p>The WordPress community in Spain has been hard at work making sure as much of the WordPress project as possible is available in Spanish. <a href=\"https://es.wordpress.org/2018/11/07/logros-equipo-traducciones-wordpress-espana/\">They have recently translated more of the project than ever</a> — including WordPress Core, WordPress.org, the mobile apps and the top 120 plugins in the Directory.<br></p>\n\n\n\n<p>This achievement has largely been possible due to the fact that <a href=\"https://make.wordpress.org/polyglots/teams/?locale=es_ES\">the Spanish translation team</a> has over 2,500 individuals contributing to it, making it the largest translation team across the whole project. <br></p>\n\n\n\n<p>Want to get involved in translating WordPress into your local language? You can <a href=\"https://translate.wordpress.org/\">jump straight into translations</a>, follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a> and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>All volunteer teams have checked in with their <a href=\"https://wordpress.org/news/2018/11/quarterly-updates-q3-2018/\">latest quarterly updates</a>.</li><li>The WordPress Support Team <a href=\"https://make.wordpress.org/support/2018/11/new-volunteer-orientation-for-wp-support-contributors-dec-9/\">is hosting an orientation</a> for new Support volunteers on December 9.</li><li><a href=\"https://2018.us.wordcamp.org/tickets/\">Tickets are now available</a> to watch the WordCamp US livestream for free.</li><li>WordPress Core <a href=\"https://core.trac.wordpress.org/ticket/45287\">has switched to a WP-CLI command</a> for generating localization files.</li><li>WordPress Coding Standards v1.2.0 <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.2.0\">has been released</a> with some really useful improvements.</li><li>The first ever <a href=\"https://2019.nordic.wordcamp.org/\">WordCamp Nordic</a> is taking place on March 7-8, 2019 with ticket sales now open.</li><li>The WordCamp Incubator program is going very well this year — <a href=\"https://make.wordpress.org/community/2018/11/27/wordcamp-incubator-2018-update-thread-november-edition/\">you can see the latest updates here</a>.</li><li>The Mobile Team is looking for testers for the upcoming v11.3 release of the WordPress mobile apps on <a href=\"https://make.wordpress.org/mobile/2018/11/21/call-for-testing-wordpress-for-android-11-3/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2018/11/21/call-for-testing-wordpress-for-ios-11-3/\">iOS</a>.</li><li>The WordCamp Europe team is looking for local communities to <a href=\"https://2019.europe.wordcamp.org/2018/11/29/call-for-host-city/\">apply to be the host city</a> for the 2020 event.</li></ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6318\";s: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: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:17:\"WordPress 5.0 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Nov 2018 23:16: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:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6287\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"The second release candidate for WordPress 5.0 is now available! This is an important milestone, as we near the release of WordPress 5.0. A final release date will be announced soon, based on feedback from this release candidate. Things are appearing very stable and we hope to announce a date soon. This is a big release [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3296:\"\n<p>The second release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p>This is an important milestone, as we near the release of WordPress 5.0. A final release date will be announced soon, based on feedback from this release candidate. Things are appearing very stable and we hope to announce a date soon. This is a big release and needs <em>your</em> help—if you haven’t tried 5.0 yet, now is the time! </p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC2.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.0, please see the <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\">previous release candidate post</a>.</p>\n\n\n\n<h2>Significant changes</h2>\n\n\n\n<ul><li>We stopped rendering&nbsp;<em>AdminNotices</em>&nbsp;compatibility component, as this previous attempt at backward compatibility was bringing in numerous incompatible banners and notices from plugins.</li><li>An update to the parser to better deal with malformed HTML that could cause a loop. We&#8217;re only aware of this in the wild being triggered once in the <a href=\"https://gutenstats.blog/\">over a million posts</a> made with Gutenberg, but it caused a loop so we wanted to fix for RC2.</li></ul>\n\n\n\n<h2>Cosmetic and minor changes in RC2</h2>\n\n\n\n<ul><li>Accessibility: Simplify sidebar tabs&nbsp;aria-labels.</li><li>Make the&nbsp;Image&nbsp;Link URL field readonly.</li><li>Internationalization: Merge&nbsp;similar text strings that differed only in capitalization.</li><li>CSS: Improve block preview&nbsp;styling.</li><li>CSS: Fix&nbsp;visual issues&nbsp;with&nbsp;Button&nbsp;block text wrap.</li><li>Fix&nbsp;getSelectedBlockClientId selector.</li><li>Fix&nbsp;Classic&nbsp;block&nbsp;not showing galleries on a grid.</li><li>Fix an issue where the block toolbar&nbsp;would cause an image to jump&nbsp;downwards when the&nbsp;<em>wide</em>&nbsp;or&nbsp;<em>full</em>&nbsp;alignments were activated.</li><li>Move editor specific styles&nbsp;from style.scss to editor.scss in&nbsp;Cover&nbsp;block.</li><li>Fix modals&nbsp;in Microsoft Edge browser.</li><li>Fix Microsoft IE11 focus loss&nbsp;after TinyMCE init.&nbsp;Add&nbsp;IE check.</li><li>Fix Microsoft IE11 input when mounting TinyMCE.</li><li>Change @package names&nbsp;to WordPress.</li></ul>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, 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\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<pre class=\"wp-block-verse\"><em>RC bittersweet.<br>We welcome in Gutenberg,<br>Vale Gutenbeard.</em></pre>\n\";s: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:\"6287\";s: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: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:31:\"WordPress 5.0 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/2018/11/wordpress-5-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Nov 2018 09:46: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6257\";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:323:\"The first release candidate for WordPress 5.0 is now available! This is an important milestone, as we near the release of WordPress 5.0.&#160;The WordPress 5.0 release date has shifted from the 27th to give more time for the RC to be fully tested. A final release date will be announced soon, based on feedback on [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Matias Ventura\";s: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:6009:\"\n<p>The first release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p>This is an important milestone, as we near the release of WordPress 5.0.&nbsp;<strong>The WordPress 5.0 release date has shifted from the 27th to give more time for the RC to be fully tested</strong>. A final release date will be announced soon, based on feedback on the RC. This is a big release and needs <em>your</em> help—if you haven’t tried 5.0 yet, now is the time!&nbsp;</p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC1.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<h2>What&#8217;s in WordPress 5.0?</h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?resize=632%2C316&#038;ssl=1\" alt=\"Screenshot of the new block editor interface.\" class=\"wp-image-6271\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?resize=1024%2C512&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?resize=300%2C150&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?resize=768%2C384&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>The new block-based post editor.</figcaption></figure>\n\n\n\n<p>WordPress 5.0 introduces the <a href=\"https://wordpress.org/gutenberg/\">new block-based post editor</a>. This is the first step toward an exciting new future with a streamlined editing experience across your site. You’ll have more flexibility with how content is displayed, whether you are building your first site, revamping your blog, or write code for a living.</p>\n\n\n\n<p>The block editor is&nbsp;<a href=\"https://gutenstats.blog/\">used on over a million sites</a>, we think it&#8217;s ready to be used on all WordPress sites. We do understand that some sites might need some extra time, though. If that&#8217;s you, please install the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor plugin</a>, you&#8217;ll continue to use the classic post editor when you upgrade to WordPress 5.0.</p>\n\n\n\n<p>Twenty Nineteen is WordPress&#8217; new default theme, it&nbsp;features custom styles for the blocks available by default in 5.0.&nbsp;Twenty Nineteen is designed to work for a wide variety of use cases. Whether you’re running a photo blog, launching a new business, or supporting a non-profit, Twenty Nineteen is flexible enough to fit your needs.</p>\n\n\n\n<p>The block editor is a big change, but that&#8217;s not all. We&#8217;ve made some smaller changes as well,&nbsp; including:</p>\n\n\n\n<ul><li>All of the previous default themes, from Twenty Ten through to Twenty Seventeen, have been updated to support the block editor.</li><li>You can improve the accessibility of the content you write, now that <a href=\"https://core.trac.wordpress.org/ticket/30421\">simple ARIA labels</a>&nbsp;can be saved in posts and pages.</li><li>WordPress 5.0 officially supports the upcoming PHP 7.3 release: if you&#8217;re using an older version, we encourage you to <a href=\"https://wordpress.org/support/upgrade-php/\">upgrade PHP</a>&nbsp;on your site.</li><li>Developers can now add translatable strings directly to your JavaScript code, using the new <a href=\"https://make.wordpress.org/core/2018/11/09/new-javascript-i18n-support-in-wordpress/\">JavaScript language packs</a>.</li></ul>\n\n\n\n<p>You can read more about the fixes and changes since  Beta 5 <a href=\"https://make.wordpress.org/core/2018/11/20/whats-new-in-gutenberg-20th-november/\">in the last update post</a>.</p>\n\n\n\n<p>For more details about what’s new in version 5.0, check out the&nbsp;<a href=\"https://wordpress.org/news/2018/10/wordpress-5-0-beta-1/\">Beta 1</a>,&nbsp;<a href=\"https://wordpress.org/news/2018/10/wordpress-5-0-beta-2/\">Beta 2</a>,&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-4/\">Beta 4</a> and&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-5/\">Beta 5</a>&nbsp;blog posts.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.0 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.0. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release. An in-depth field guide to developer-focused changes is coming soon on the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development blog</a>. In the meantime, you can review the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5.0+dev-notes/\">developer notes for 5.0</a>.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p><strong><em>If you think you’ve found a bug</em></strong><em>, you can post to the&nbsp;</em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em>Alpha/Beta area</em></a><em>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;</em><a href=\"https://make.wordpress.org/core/reports/\"><em>file one on WordPress Trac</em></a><em>, where you can also find&nbsp;</em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<p style=\"background-color:#f9f4e8\" class=\"has-background has-medium-font-size\"><em>Ruedan los bloques<br>Contando vivos cuentos<br>Que se despiertan</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:\"6257\";s: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:20:\"WordPress 5.0 Beta 5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Nov 2018 01:09:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6250\";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:360:\"WordPress 5.0 Beta 5 is now available! This software is still in development,&#160;so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. There are two ways to test this WordPress 5.0 Beta: try the&#160;WordPress Beta Tester&#160;plugin (you’ll want “bleeding edge nightlies”), or [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4738:\"\n<p>WordPress 5.0 Beta 5 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong>&nbsp;so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test this WordPress 5.0 Beta: try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (you’ll want “bleeding edge nightlies”), or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-beta5.zip\">download the beta here</a>&nbsp;(zip).</p>\n\n\n\n<p><strong>Reminder: the WordPress 5.0 release date has changed</strong>. It is now scheduled for release on&nbsp;<a href=\"https://make.wordpress.org/core/5-0/\">November 27</a>, and we need your help to get there. Here are some of the big issues that we’ve fixed since Beta 4:</p>\n\n\n\n<h2>Block Editor</h2>\n\n\n\n<p>The block editor has been updated to match the <a href=\"https://make.wordpress.org/core/2018/11/15/whats-new-in-gutenberg-15th-november-2/\">Gutenberg 4.4 release</a>, the major changes  include:</p>\n\n\n\n<ul><li>&nbsp;A <a href=\"https://github.com/WordPress/gutenberg/pull/11874\">permalink panel has been added to the document sidebar</a> to make it easier to find.</li><li>Editor document panels can now be <a href=\"https://github.com/WordPress/gutenberg/pull/11802\">programmatically removed</a>.</li><li>The uploading indicator for images and galleries has been replaced with a&nbsp;<a href=\"https://github.com/WordPress/gutenberg/pull/11876\">spinner and faded out image</a>.</li><li>The text and code editing blocks will now <a href=\"https://github.com/WordPress/gutenberg/pull/11750\">use the full width of the editor</a>.</li><li>Image handling has been improved. Images now  take up the right amount of space for <a href=\"https://github.com/WordPress/gutenberg/pull/11846\">themes with wider editors</a> (like Twenty Nineteen).<br></li><li>Hover styles are now <a href=\"https://github.com/WordPress/gutenberg/pull/10333\">correctly disabled for mobile devices</a>.</li><li>The i18n module has been refactored to benefit from <a href=\"https://github.com/WordPress/gutenberg/pull/11493\">significant performance gains</a>.</li></ul>\n\n\n\n<p>Additionally, there have been some pesky bugs fixed:</p>\n\n\n\n<ul><li>Better handling for <a href=\"https://github.com/WordPress/gutenberg/pull/11590\">links without an href</a> attribute, which were showing as <code>undefined</code>.</li><li>Japanese text (double byte characters) are <a href=\"https://github.com/WordPress/gutenberg/pull/11908\">now usable in the list block</a>.</li><li>Better handling for different text encodings (e.g. emoji) within a block <a href=\"https://github.com/WordPress/gutenberg/pull/11771\">in block validation</a>.</li></ul>\n\n\n\n<p>A full list of changes can be found in the <a href=\"https://make.wordpress.org/core/2018/11/15/whats-new-in-gutenberg-15th-november-2/\">Gutenberg 4.4 release post</a>.<br></p>\n\n\n\n<h2>PHP 7.3 Support</h2>\n\n\n\n<p>The final known PHP 7.3 compatibility issue has been fixed. You can brush up on what you need to know about PHP 7.3 and WordPress by checking out the <a href=\"https://make.wordpress.org/core/2018/10/15/wordpress-and-php-7-3/\">developer note on the Make WordPress Core blog</a>.<br></p>\n\n\n\n<h2>Twenty Nineteen</h2>\n\n\n\n<p>Work on making Twenty Nineteen ready for prime time continues on its <a href=\"https://github.com/WordPress/twentynineteen\">GitHub repository</a>. This update includes <a href=\"https://core.trac.wordpress.org/changeset/43904\">a host of tweaks and bug fixes</a>, including:</p>\n\n\n\n<ul><li>Add <code>.button</code> class support.</li><li>Fix editor font-weights for headings.</li><li>Improve support for sticky toolbars in the editor.</li><li>Improve text-selection custom colors for better contrast and legibility.</li><li>Fix editor to prevent Gutenberg&#8217;s meta boxes area from overlapping the content.</li></ul>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p><strong><em>If you think you’ve found a bug</em></strong><em>, you can post to the&nbsp;</em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em>Alpha/Beta area</em></a><em>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;</em><a href=\"https://make.wordpress.org/core/reports/\"><em>file one on WordPress Trac</em></a><em>, where you can also find&nbsp;</em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p></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:\"6250\";s: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: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:20:\"WordPress 5.0 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Nov 2018 01:27:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6241\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:359:\"WordPress 5.0 Beta 4 is now available! This software is still in development,&#160;so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. There are two ways to test the WordPress 5.0 Beta: try the&#160;WordPress Beta Tester&#160;plugin (you’ll want “bleeding edge nightlies”), or [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3700:\"\n<p>WordPress 5.0 Beta 4 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong>&nbsp;so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.0 Beta: try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (you’ll want “bleeding edge nightlies”), or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-beta4.zip\">download the beta here</a>&nbsp;(zip).</p>\n\n\n\n<p><strong>The WordPress 5.0 release date has changed</strong>, it is now scheduled for release on&nbsp;<a href=\"https://make.wordpress.org/core/5-0/\">November 27</a>, and we need your help to get there. Here are some of the big issues that we’ve fixed since Beta 3:</p>\n\n\n\n<h2>Block Editor</h2>\n\n\n\n<p>The block editor has been updated to match the <a href=\"https://make.wordpress.org/core/2018/11/12/whats-new-in-gutenberg-12th-november/\">Gutenberg 4.3 release</a>, the major changes  include:</p>\n\n\n\n<ul><li>An <a href=\"https://github.com/WordPress/gutenberg/pull/7718\">Annotations API</a>, allowing plugins to add  contextual data as you write.</li><li>More consistent keyboard navigation between blocks, as well as back-and-forth between different areas of the interface.</li><li>Improved accessibility, with additional  labelling and speech announcements.</li></ul>\n\n\n\n<p>Additionally, there have been some bugs fixed that popped up in beta 3:</p>\n\n\n\n<ul><li>Better support for plugins that have more advanced meta box usage.</li><li>Script concatenation is now supported.</li><li>Ajax calls could occasionally cause PHP errors.</li></ul>\n\n\n\n<h2>Internationalisation</h2>\n\n\n\n<p>We&#8217;ve added an API for translating your plugin and theme strings in JavaScript files! The block editor is now using this, and you can start using it, too. Check out the <a href=\"https://make.wordpress.org/core/2018/11/09/new-javascript-i18n-support-in-wordpress/\">developer note</a>&nbsp;to get started.</p>\n\n\n\n<h2>Twenty Nineteen</h2>\n\n\n\n<p>Twenty Nineteen is being polished over on its <a href=\"https://github.com/WordPress/twentynineteen\">GitHub repository</a>. This update includes <a href=\"https://core.trac.wordpress.org/changeset/43892\">a host of tweaks and bug fixes</a>, including:</p>\n\n\n\n<ul><li>Menus now  properly support keyboard and touch interactions.</li><li>A footer menu has been added for secondary page links.</li><li>Improved backwards compatibility with older versions of WordPress.</li></ul>\n\n\n\n<h2>Default Themes</h2>\n\n\n\n<p>All of the older default themes—from Twenty Ten through to Twenty Seventeen—have polished  styling in the block editor.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p><strong><em>If you think you’ve found a bug</em></strong><em>, you can post to the&nbsp;</em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em>Alpha/Beta area</em></a><em>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;</em><a href=\"https://make.wordpress.org/core/reports/\"><em>file one on WordPress Trac</em></a><em>, where you can also find&nbsp;</em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>International-<br>isation is a word with<br>many syllables.</em></p>\n\n\n\n<p><em>Meta boxes are<br>the original style block.<br>Old is new again.</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:\"6241\";s: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:\"Sun, 30 Dec 2018 20:30:17 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:\"Wed, 19 Dec 2018 23:49:49 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(7664,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1546245017','no'),(7665,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1546201817','no'),(7666,'_transient_timeout_feed_4cf2927c306176c13771b3ef386d2f5e','1546245017','no'),(7667,'_transient_feed_4cf2927c306176c13771b3ef386d2f5e','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:28:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"WPBeginner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.wpbeginner.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Beginner\'s Guide for 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Dec 2018 14:19:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.9.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:3:{i:0;a:6:{s:4:\"data\";s:57:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"12 Best Live Chat Software for Small Business Compared (2019)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://www.wpbeginner.com/showcase/7-best-live-chat-support-software-for-your-wordpress-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://www.wpbeginner.com/showcase/7-best-live-chat-support-software-for-your-wordpress-site/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Dec 2018 09:40: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:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:8:\"Showcase\";s: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:33:\"how to add live chat 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:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"live chat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:31:\"live chat plugins for 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:\"\";}i:4;a:5:{s:4:\"data\";s:17:\"live chat support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:39:\"live chat support plugins for 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:\"http://www.wpbeginner.com/?p=21890\";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:725:\"<p>Did you know that more than 67% of users on eCommerce websites abandon their shopping carts without checking out? Customers want their questions to be answered instantly, and any uncertainty with their purchase can result in losing a sale. Using a live chat support software&#8230;&#160;<strong><a href=\"https://www.wpbeginner.com/showcase/7-best-live-chat-support-software-for-your-wordpress-site/\">Read More &#187;</a></strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/showcase/7-best-live-chat-support-software-for-your-wordpress-site/\">12 Best Live Chat Software for Small Business Compared (2019)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Editorial Staff\";s: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:21631:\"<p>Did you know that more than 67% of users on eCommerce websites abandon their shopping carts without checking out? Customers want their questions to be answered instantly, and any uncertainty with their purchase can result in losing a sale. </p>\n<p>Using a live chat support software helps you instantly answer user questions and convert them into paying customers. In this article, we will share our pick of the best live chat software for your small businesses. These live chat services work perfectly with any WordPress site. </p>\n<p><img title=\"Choosing the best live chat support software for your WordPress site\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/bestlivechatsoftware.png\" alt=\"Choosing the best live chat support software for your WordPress site\" width=\"550\" height=\"340\" class=\"alignnone size-full wp-image-58791\" /></p>\n<h4>Why Add Live Chat Support to Your Website?</h4>\n<p>According to <a href=\"https://econsultancy.com/blog/63867-consumers-prefer-live-chat-for-customer-service-stats/\" title=\"eConsultancy\" rel=\"noopener nofollow\" target=\"_blank\">eConsultancy</a>, live chat has the highest satisfaction levels of any customer service channel at 73%, compared to 61% for email and 44% for phone. </p>\n<p>It is a no brainer that live chat has such a significant impact on online sales and marketing. It allows customers to get instant answers without leaving your website. A positive live chat experience can effectively help customers make the buying decision. </p>\n<p>Adding live chat support can definitely <a href=\"https://www.wpbeginner.com/wp-tutorials/ways-to-recover-woocommerce-abandoned-cart-sales/\" title=\"13 Ways to Recover WooCommerce Abandoned Cart Sales\">reduce cart abandonment</a>, increase sales, and boost conversions. But a lot of it depends on the live chat software that you use. </p>\n<p>A poor live chat support experience can have an adverse impact. You can lose sales, customers may leave with a bad impression of your brand, you may end up paying too much for the service, or fail to utilize the live chat app due to technical skills. </p>\n<p>Basically, you want to find an affordable live chat service, that is easy to use, works with WordPress, and comes with all the features to help you make more sales. </p>\n<p>That being said, let&#8217;s take a look at our expert pick of the best live chat software that you can use to grow your business.  </p>\n<h4><a title=\"LiveChat\" href=\"https://www.wpbeginner.com/refer/livechat/\" rel=\"nofollow\" target=\"_blank\">1. LiveChat</a></h4>\n<p><a title=\"LiveChat\" href=\"https://www.wpbeginner.com/refer/livechat/\" rel=\"nofollow\" target=\"_blank\"><img title=\"LiveChat\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/livechat.png\" alt=\"LiveChat\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58773\" /></a></p>\n<p>LiveChat is the industry leader in live chat software. It&#8217;s very easy to set up and install with their free LiveChat plugin for WordPress.</p>\n<p>LiveChat also offers beautifully designed live chat support apps that you and your agents can use on your laptops, tablets, and mobile devices. That means you can chat with customers while on the go, without having to login to your WordPress dashboard.</p>\n<p>You can add survey forms before and after a live chat session, so you can evaluate how your support team is doing. During your off-hours, your users can also conveniently send a support ticket directly from live chat.</p>\n<p>LiveChat integrates with dozens of other services like <a href=\"https://www.wpbeginner.com/plugins/7-best-wordpress-crm-plugins-for-your-business/\" title=\"7 Best WordPress CRM Plugins for Your Business\">popular CRM software</a>, Google Analytics, Zendesk, all the <a href=\"https://www.wpbeginner.com/showcase/best-email-marketing-services/\" title=\"7 Best Email Marketing Services for Small Business (2018)\">top email marketing services</a>, and many more. This will save you time since you won’t have to enter customer details manually into your other systems.</p>\n<p>Perhaps the best feature of LiveChat is speed. It loads extremely fast, works on all devices, and offers a much better user experience than most other live chat software.</p>\n<p>We use LiveChat on our eCommerce websites.</p>\n<p><strong>Pricing:</strong> LiveChat has different plans for businesses of all sizes. Their starter plan starts from $16 per agent per month billed annually, or $19 for month-to-month. Each plan comes with a 30 day free trial.</p>\n<p><strong>Special:</strong> WPBeginner users get 30% off the first payment when you use our <a href=\"https://www.wpbeginner.com/deals/livechat-inc-coupon/\" title=\"LiveChat Inc Coupon\">LiveChat Coupon</a>.</p>\n<h4><a title=\"Olark\" href=\"https://www.wpbeginner.com/refer/olark/\" rel=\"nofollow\" target=\"_blank\">2. Olark</a></h4>\n<p><a title=\"Olark\" href=\"https://www.wpbeginner.com/refer/olark/\" rel=\"nofollow\" target=\"_blank\"><img title=\"Olark\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/olark.png\" alt=\"Olark\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58774\" /></a></p>\n<p><a rel=\"nofollow\" target=\"_blank\" title=\"Olark\" href=\"https://www.wpbeginner.com/refer/olark/\" data-shortcode=\"true\">Olark</a> is a popular live chat solution for online businesses. It’s easy to use, and adding Olark to a WordPress site is simple. All you need to do is copy and paste a code snippet into your <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-add-and-use-widgets-in-wordpress/\" title=\"How to Add and Use Widgets in WordPress\">WordPress sidebar widget</a> or in your child theme.</p>\n<p>If you’d rather not work with code, then there is also a free <a href=\"https://wordpress.org/plugins/olark-live-chat/\" title=\"Olark Live Chat\" rel=\"noopener nofollow\" target=\"_blank\">Olark Live Chat</a> plugin which makes setup even easier.</p>\n<p>Olark offers integration with other services such as Salesforce, Zendesk, Highrise, etc.</p>\n<p>There are third-party mobile apps which allow you to connect to Olark chat from almost any iOS or Android device, so you can chat with customers on the go.</p>\n<p><strong>Pricing:</strong> Olark offers simpler pricing plan starting from $17 per agent each month. There is a 12% discount if you choose annual billing and 29% discount for two-year billing. They also offer 2-week free live chat support trial. </p>\n<h4><a title=\"Zendesk Chat\" href=\"https://www.wpbeginner.com/refer/zopim/\" rel=\"nofollow\" target=\"_blank\">3. Zendesk Chat</a></h4>\n<p><a title=\"Zendesk Chat\" href=\"https://www.wpbeginner.com/refer/zopim/\" rel=\"nofollow\" target=\"_blank\"><img title=\"Zendesk Chat\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/zendeskchat.png\" alt=\"Zendesk Chat\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58775\" /></a></p>\n<p>Zendesk is the leading help desk support software provider. They recently acquired an existing company called <a rel=\"nofollow\" target=\"_blank\" title=\"Zopim\" href=\"https://www.wpbeginner.com/refer/zopim/\" data-shortcode=\"true\">Zopim</a> to enter the live chat support market and rebranded it as Zendesk Chat. </p>\n<p>If you are already using Zendesk, then the best advantage you get is that it already integrates with your existing support software. It also works smoothly with WordPress, Salesforce, and a number of other third-party services. </p>\n<p>Zendesk Chat also offers real-time chats, advanced analytics, and AI-powered chat-bots to automate the process when no live agents are available. They have beautiful templates and customization options to create attention-seeking chat widgets. </p>\n<p><strong>Pricing:</strong> Zendesk Chat offers a limited free live chat support account for 1 concurrent chat session. Their paid plans start from $14 per month per agent. </p>\n<h4><a href=\"https://www.wpbeginner.com/refer/chaport/\" title=\"Chaport\" rel=\"noopener nofollow\" target=\"_blank\">4. Chaport</a></h4>\n<p><a href=\"https://www.wpbeginner.com/refer/chaport/\" title=\"Chaport\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Chaport\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/chaport.png\" alt=\"Chaport\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58776\" /></a></p>\n<p>If you are looking for a free live chat support software for WordPress, then you may want to checkout Chaport. They offer a free forever plan with unlimited chats, history, notifications, unlimited registered operators, and up to 5 operators online at the same time. </p>\n<p>Their software covers all the basic requirements. They have live chat support apps for mobile devices, beautiful multilingual chat widgets, reporting and analytics, third-party integrations through Zapier. </p>\n<p>Paid plans give you access to more features like typing insights, visitor notes, saved replies, file sending, auto-invitations, and more. </p>\n<p><strong>Pricing:</strong> They offer a free plan and a Pro plan starting from $9.80 per agent / month.  </p>\n<h4><a title=\"SnapEngage\" href=\"https://www.wpbeginner.com/refer/snapengage/\" rel=\"nofollow\" target=\"_blank\">5. SnapEngage</a></h4>\n<p><a title=\"SnapEngage\" href=\"https://www.wpbeginner.com/refer/snapengage/\" rel=\"nofollow\" target=\"_blank\"><img title=\"SnapEngage\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/snapengage.png\" alt=\"SnapEngage\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58777\" /></a></p>\n<p>SnapEngage offers live chat service to businesses of all sizes. It is a bit expensive than some other live chat companies on the list but offers some unique features and add-ons to justify the cost. </p>\n<p>They offer integrations with popular CRM software, call back request, automated chat invitations, and customizable chat widgets to match your site.</p>\n<p>SnapEngage also offers a SMS to Chat feature as an add-on service to their live chat software, so your visitors can directly communicate with your support team via text. Their OmniChannel chat solution allows you to help customers across different channels like Facebook, Twitter, SMS, WeChat, Zalo, and more. </p>\n<p><strong>Pricing:</strong> Their essentials plan starts from $16 per user / month, with minimum 3 users and it is billed annually with 7-day free trial. </p>\n<h4><a href=\"https://www.intercom.com/\" title=\"Intercom\" rel=\"noopener nofollow\" target=\"_blank\">6. Intercom</a></h4>\n<p><a href=\"https://www.intercom.com/\" title=\"Intercom\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Intercom\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/intercom.png\" alt=\"Intercom\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58779\" /></a></p>\n<p>Intercom is a flexible tool that helps you capture leads, engage users, and boost conversions. It offers messaging services with live chat widgets that you can automate with your own flows, add chatbots, and engage customers. </p>\n<p>It is not just a live chat support software. It can be used as an onboarding tool, support assistant, <a href=\"https://www.wpbeginner.com/beginners-guide/lead-generation-in-wordpress/\" title=\"How to Do Lead Generation in WordPress Like a Pro\">lead generation tool</a>, marketing automation, and user-engagement software. </p>\n<p>If you are just looking for a live chat software, then you may not be able to utilize Intercom&#8217;s full potential. On the other hand, if you want your live chat support software to do all these tasks, then you&#8217;ll love Intercom. </p>\n<p>It is easy to use, integrates with <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-install-google-analytics-in-wordpress/\" title=\"How to Install Google Analytics in WordPress for Beginners\">Google Analytics</a>, CRM software, <a rel=\"nofollow\" target=\"_blank\" title=\"Slack\" href=\"https://www.wpbeginner.com/refer/slack/\" data-shortcode=\"true\">Slack</a>, email marketing services, and more. </p>\n<p><strong>Pricing:</strong> Their essential plan starts from $136 / month, after which pricing is calculated based on your usage and add-ons you purchase. </p>\n<h4><a href=\"https://www.wpbeginner.com/refer/freshchat/\" title=\"Freshchat\" rel=\"noopener nofollow\" target=\"_blank\">7. Freshchat</a></h4>\n<p><a href=\"https://www.wpbeginner.com/refer/freshchat/\" title=\"Freshchat\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Freshchat\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/freshchat.png\" alt=\"Freshchat\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58782\" /></a></p>\n<p>Freshchat is another good live chat support service with awesome features that rival some of the more well-known companies on this list. </p>\n<p>Designed to be a conversation and messenger app, it allows you to start real-time chats with customers using agents or AI-powered bots. It also offers customer timeline views, live profiles, in-app campaigns, and customizable bots for automated conversations. </p>\n<p>You can connect chats to support tickets on Zendesk or on a slack channel. Your team can use smart plugs, canned responses, labels, private notes, and desktop notifications to be more productive. </p>\n<p><strong>Pricing:</strong> They offer a free live chat support service plan for up to 10 team members. Their paid plans start from $15 per user per month and are billed yearly. </p>\n<h4><a href=\"https://www.liveperson.com/\" title=\"LivePerson\" rel=\"noopener nofollow\" target=\"_blank\">8. LivePerson</a></h4>\n<p><a href=\"https://www.liveperson.com/\" title=\"LivePerson\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"LivePerson\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/liveperson.jpg\" alt=\"LivePerson\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58780\" /></a></p>\n<p>LivePerson is another powerful live chat support software with tons of awesome features to help you engage customers and increase sales. </p>\n<p>It allows you to engage your customers via live chat on your website but also through SMS, Facebook Messenger, WhatsApp, and more. You can use chatbots to create automated conversation flows and save customer information in your other third-party apps. </p>\n<p>LivePerson is targeted towards medium to large businesses and enterprise level clients. </p>\n<p><strong>Pricing:</strong> You will have to request a quote to get pricing information based on your needs. </p>\n<h4><a href=\"https://www.userlike.com/en/\" title=\"Userlike\" rel=\"noopener nofollow\" target=\"_blank\">9. Userlike</a></h4>\n<p><a href=\"https://www.userlike.com/en/\" title=\"Userlike\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Userlike\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/userlike.png\" alt=\"Userlike\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58781\" /></a></p>\n<p>Userlike is another neat live chat support software that you can use on your WordPress site. It is based in Germany and their servers are hosted in Europe. They offer <a href=\"https://www.wpbeginner.com/beginners-guide/the-ultimate-guide-to-wordpress-and-gdpr-compliance-everything-you-need-to-know/\" title=\"The Ultimate Guide to WordPress and GDPR Compliance – Everything You Need to Know\">GDPR compliant</a> services, which makes them a particularly good option for businesses in the European Union. </p>\n<p>Their software is beautifully designed offering a better experience not just for your users but also for chat agents. With a clean and clutter-free dashboard, your agents still have all the tools that you would expect from a professional live chat support service. </p>\n<p>It offers beautiful chat widgets, chatbots, integrations with all top support, CRM, and email platforms. You also get meaningful analytics reports, which helps you improve performance and overall conversions. </p>\n<p><strong>Pricing:</strong> They offer free live chat support account for 1 user. Their paid plans start from &euro;29  per month for 3 operators.</p>\n<h4><a href=\"https://www.wpbeginner.com/refer/smartsupp/\" title=\"Smartsupp\" rel=\"noopener nofollow\" target=\"_blank\">10. Smartsupp</a></h4>\n<p><a href=\"https://www.wpbeginner.com/refer/smartsupp/\" title=\"Smartsupp\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Smartsupp\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/smartsupp.png\" alt=\"Smartsupp\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58783\" /></a></p>\n<p>Smartsupp is a low-cost live chat support software that allows you to track and record user sessions on your website. This helps you see how potential customers use your website and what&#8217;s preventing them from making a purchase. </p>\n<p>It also helps you track chat conversations in Google Analytics to see your performance. It works with WordPress, Magento, <a title=\"Shopify\" href=\"https://www.wpbeginner.com/refer/shopify/\" rel=\"nofollow\" target=\"_blank\">Shopify</a>, and other <a href=\"https://www.wpbeginner.com/plugins/best-wordpress-ecommerce-plugins-compared/\" title=\"5 Best WordPress Ecommerce Plugins Compared – 2018\">popular eCommerce platforms</a>. </p>\n<p><strong>Pricing:</strong> A basic free-forever plan and their paid plans start from $8 per month per agent. </p>\n<h4><a href=\"https://www.wpbeginner.com/refer/pure-chat/\" title=\"Pure Chat\" rel=\"noopener nofollow\" target=\"_blank\">11. Pure Chat</a></h4>\n<p><a href=\"https://www.wpbeginner.com/refer/pure-chat/\" title=\"Pure Chat\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Pure Chat\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/purechat.png\" alt=\"Pure Chat\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58784\" /></a></p>\n<p>If you are looking for a free live chat software, then Pure Chat is another good alternative. It allows you to easily add beautiful live chat widgets to your websites and the free plan allows you to add 3 operators with unlimited chat history. </p>\n<p>It comes with mobile apps so that you can stay connected with customers. Your customers can send you email messages when you are offline and pre-chat form helps you collect user information to reach out later. </p>\n<p><strong>Pricing:</strong> A basic free plan, and their paid plan starts $79 / month billed annually.</p>\n<h4><a href=\"https://www.drift.com/\" title=\"Drift Live Chat\" rel=\"noopener nofollow\" target=\"_blank\">12. Drift</a></h4>\n<p><a href=\"https://www.drift.com/\" title=\"Drift Live Chat\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Drift\"  src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/driftlogo.png\" alt=\"Drift\" width=\"550\" height=\"266\" class=\"alignnone size-full wp-image-58802\" /></a></p>\n<p>Drift is a conversational marketing platform that combines the power of live chat with an automated chat bot to help you save time and increase conversions. It comes with powerful features to help you convert more website visitors into sales leads.</p>\n<p>Drift integrates with all popular CRM and <a href=\"https://www.wpbeginner.com/showcase/best-email-marketing-services/\" title=\"7 Best Email Marketing Services for Small Business (2018)\">email marketing services</a>. </p>\n<p>They offer several powerful features including Drift bot, anonymous visitor intelligence, account based marketing, scheduling for meetings, and more.</p>\n<p>While it has a lot of powerful features, Drift is not affordable for small businesses.</p>\n<p><strong>Pricing:</strong> The Standard plan starts at $50 / month billed annually, and it comes with 2 seats. If you want the bot feature, then you will have to upgrade to the Pro plan which starts at $500 / month billed annually, and it comes with 5 seats.</p>\n<h4>Our Pick: Best Live Chat Software</h4>\n<p>For small businesses, we recommend <a title=\"LiveChat\" href=\"https://www.wpbeginner.com/refer/livechat/\" rel=\"nofollow\" target=\"_blank\" >LiveChat Inc</a>. They&#8217;re the top rated live chat software in our list, and we use them on our business websites. It has all the necessary features for the right price.</p>\n<p>If you&#8217;re looking for a complete platform and cost is not an issue, then we recommend that you look into <a href=\"https://www.intercom.com/\" title=\"Intercom\" rel=\"noopener nofollow\" target=\"_blank\">Intercom</a>.</p>\n<p>If you&#8217;re looking to hire live chat agents, but not sure where to start, then we recommend using <a title=\"LTVPlus\" href=\"https://www.wpbeginner.com/refer/ltvplus/\" rel=\"nofollow\" target=\"_blank\" >LTVPlus</a>. We use them to hire affordable 24/7 live chat agents for our eCommerce website.</p>\n<p>We hope this article helped you choose the best live chat support software for your WordPress site. You may also want to learn how to <a href=\"https://www.wpbeginner.com/plugins/how-to-enable-customer-tracking-in-woocommerce-with-google-analytics/\" title=\"How to Enable Customer Tracking in WooCommerce with Google Analytics\">enable customer tracking in WooCommerce</a> with Google Analytics. </p>\n<p>If you liked this article, then please subscribe to our <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href=\"http://twitter.com/wpbeginner\" title=\"WPBeginner on Twitter\" target=\"_blank\" rel=\"nofollow\">Twitter</a> and <a href=\"https://www.facebook.com/wpbeginner\" title=\"WPBeginner on Facebook\" target=\"_blank\" rel=\"nofollow\">Facebook</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/showcase/7-best-live-chat-support-software-for-your-wordpress-site/\">12 Best Live Chat Software for Small Business Compared (2019)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://www.wpbeginner.com/showcase/7-best-live-chat-support-software-for-your-wordpress-site/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"12\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:54:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"How to Automatically Schedule Content Updates 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://www.wpbeginner.com/plugins/how-to-schedule-content-updates-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://www.wpbeginner.com/plugins/how-to-schedule-content-updates-in-wordpress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 11:39:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:24:\"schedule content updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:21:\"schedule post updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:37:\"schedule published pages 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:\"\";}i:4;a:5:{s:4:\"data\";s:24:\"schedule published posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://www.wpbeginner.com/?p=58630\";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:668:\"<p>Have you ever tried scheduling a content update in WordPress? If you did, then you likely discovered that there is no easy way to schedule changes to a published post or page. In this article, we will show you how to easily schedule content updates&#8230;&#160;<strong><a href=\"https://www.wpbeginner.com/plugins/how-to-schedule-content-updates-in-wordpress/\">Read More &#187;</a></strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/plugins/how-to-schedule-content-updates-in-wordpress/\">How to Automatically Schedule Content Updates in WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Editorial Staff\";s: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:6861:\"<p>Have you ever tried scheduling a content update in WordPress? If you did, then you likely discovered that there is no easy way to schedule changes to a published post or page. In this article, we will show you how to easily schedule content updates in WordPress and improve your editorial workflow. </p>\n<p><img title=\"Scheduling content updates in WordPress\"  src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/schedulecontentupdates-1.png\" alt=\"Scheduling content updates in WordPress\" width=\"550\" height=\"350\" class=\"alignnone size-full wp-image-58658\" /></p>\n<h4>Why Schedule Updates for Posts and Pages in WordPress?</h4>\n<p>By default, WordPress allows you to <a href=\"https://www.wpbeginner.com/beginners-guide/schedule-your-posts-in-wordpress/\" title=\"How to Schedule Your Posts in WordPress\">schedule posts to be published at a specific time</a>. However, you cannot schedule content updates for a post or page that is already published. </p>\n<p>Many bloggers and website owners frequently make changes to their <a href=\"https://www.wpbeginner.com/wp-tutorials/8-proven-methods-to-promote-old-posts-in-wordpress/\" title=\"8 Proven Methods to Promote Old Posts in WordPress\">old blog posts</a>, so they can keep their article up to date by adding new information.</p>\n<p><a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-make-a-small-business-website-step-by-step/\" title=\"How to Make a Small Business Website – Step by Step (2018)\">Business websites</a> may want to make scheduled changes to appear at a certain time. For example, when you are running a sales event or limited time promotional offer. </p>\n<p>Normally, you will have to make changes at the exact time you want them to appear. Your changes become live as soon you hit the update button. Some site owners save their changes as a draft and then copy / paste them at the right time. </p>\n<p>Wouldn&#8217;t it be nice if you can schedule your content updates just like you would schedule new posts and pages? </p>\n<p>Let&#8217;s take a look at how to easily schedule content updates in WordPress to improve your workflow and keep your old content fresh. </p>\n<h4>Scheduling Content Updates in WordPress</h4>\n<p>The first thing you need to do is install and activate the <a href=\"https://wordpress.org/plugins/tao-schedule-update/\" title=\"Tao Schedule Update\" rel=\"noopener nofollow\" target=\"_blank\">Tao Schedule Update</a> plugin. For more details, see our step by step guide on <a href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" title=\"Step by Step Guide to Install a WordPress Plugin for Beginners\">how to install a WordPress plugin</a>.</p>\n<p>Upon activation, you need to visit <strong>Posts &raquo; All Posts</strong> page in the WordPress admin area. From here you can locate the post where you want to schedule changes and then click on the &#8216;Scheduled Update&#8217; link. </p>\n<p><img title=\"Schedule an update\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/schedule-update.png\" alt=\"Schedule an update\" width=\"550\" height=\"282\" class=\"alignnone size-full wp-image-58632\" /></p>\n<p>The plugin will create a draft copy of your original post and open it in the post editor. You can now make changes to your post. </p>\n<p>Once you are done editing, click on the date and time next to the &#8216;Publish&#8217; option. </p>\n<p><img title=\"Click on date to set the schedule\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/clickondatetoschedule.png\" alt=\"Click on date to set the schedule\" width=\"550\" height=\"338\" class=\"alignnone size-full wp-image-58633\" /></p>\n<p>This will show the date and time settings. You need to enter the date and time when you want your changes to go live and then click on the &#8216;Schedule&#8217; button at the top right corner of the screen. </p>\n<p><img title=\"Set up schedule\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/setupschedule.png\" alt=\"Set up schedule\" width=\"550\" height=\"359\" class=\"alignnone size-full wp-image-58634\" /></p>\n<p>Your changes will now be scheduled and will be published automatically at the date and time you entered. </p>\n<p><strong>Scheduling Content Updates in Classic Editor</strong> </p>\n<p>If you are using the <a href=\"https://www.wpbeginner.com/plugins/how-to-disable-gutenberg-and-keep-the-classic-editor-in-wordpress/\" title=\"How to Disable Gutenberg and Keep the Classic Editor in WordPress\">older classic editor</a>, then you will see a new meta box in the right column labeled &#8216;Scheduled Update&#8217; </p>\n<p><img title=\"contentschedule-classiceditor\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/contentschedule-classiceditor.png\" alt=\"\" width=\"550\" height=\"323\" class=\"alignnone size-full wp-image-58635\" /></p>\n<p>From here you can select the date and time and when you want to publish the changes. After that, you can schedule your changes by clicking the &#8216;Save&#8217; button under the publish meta box.</p>\n<h4>Viewing and Managing Scheduled Post Updates</h4>\n<p>You can manage your scheduled post updates from the <strong>Posts &raquo; All Posts</strong> screen. All scheduled updates will be highlighted with their set release date. </p>\n<p><img title=\"Managing your scheduled post and page content updates\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/scheduledupdates.png\" alt=\"Managing your scheduled post and page content updates\" width=\"550\" height=\"291\" class=\"alignnone size-full wp-image-58637\" /></p>\n<p>From here you can delete or modify a scheduled update without affecting your original post. You can also immediately publish an update by clicking on the &#8216;Publish now&#8217; link. </p>\n<p>We hope this article helped you learn how to properly schedule content updates in WordPress. You may also want to see our tips on <a href=\"https://www.wpbeginner.com/beginners-guide/grow-your-business-online-without-a-lot-of-money/\" title=\"15 Tips to Grow Your Business Online (without A Lot of Money)\">growing your website on a shoestring budget</a>. </p>\n<p>If you liked this article, then please subscribe to our <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href=\"http://twitter.com/wpbeginner\" title=\"WPBeginner on Twitter\" target=\"_blank\" rel=\"nofollow\">Twitter</a> and <a href=\"https://www.facebook.com/wpbeginner\" title=\"WPBeginner on Facebook\" target=\"_blank\" rel=\"nofollow\">Facebook</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/plugins/how-to-schedule-content-updates-in-wordpress/\">How to Automatically Schedule Content Updates in WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://www.wpbeginner.com/plugins/how-to-schedule-content-updates-in-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:54:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"How to Use the New WordPress Block Editor (Gutenberg Tutorial)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Dec 2018 13:34: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:5:{i:0;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s: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:20:\"how to use 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:\"\";}i:2;a:5:{s:4:\"data\";s:31:\"how to use new wordpress editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:28:\"wordpress block editor guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:28:\"wordpress gutenberg tutorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://www.wpbeginner.com/?p=58643\";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:704:\"<p>In WordPress 5.0, the classic content editor was replaced with a brand new block editor, known as Gutenberg. Since then, several of our readers have asked us to create a comprehensive tutorial on how to use the Gutenberg block editor in WordPress. WordPress block editor&#8230;&#160;<strong><a href=\"https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/\">Read More &#187;</a></strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/\">How to Use the New WordPress Block Editor (Gutenberg Tutorial)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Editorial Staff\";s: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:31984:\"<p>In WordPress 5.0, the classic content editor was replaced with a brand new block editor, known as Gutenberg. Since then, several of our readers have asked us to create a comprehensive tutorial on how to use the Gutenberg block editor in WordPress.</p>\n<p>WordPress block editor is a totally new and different way of creating content in WordPress. In this tutorial, we will show you how to use the new WordPress block editor and master it to create visually stunning blog posts and pages. </p>\n<p><img title=\"Using the new WordPress block editor aka Gutenberg\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/wpgutenbergtutorial.png\" alt=\"Using the new WordPress block editor aka Gutenberg\" width=\"550\" height=\"340\" class=\"alignnone size-full wp-image-58706\" /></p>\n<h4>What&#8217;s The Difference Between Block Editor (Gutenberg) and Classic Editor?</h4>\n<p>Before we dive into the new editor, let&#8217;s first compare and understand the differences between Gutenberg Block Editor and the Classic Editor. </p>\n<p>Here is what the classic editor in WordPress looked like: </p>\n<p><img title=\"Old WordPress editor\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/old-wp-editor.png\" alt=\"Old WordPress editor\" width=\"550\" height=\"325\" class=\"alignnone size-full wp-image-58700\" /></p>\n<p>If you upgrade to <a href=\"https://www.wpbeginner.com/news/whats-new-in-wordpress-5-0-features-and-screenshots/\" title=\"What’s New in WordPress 5.0 (Features and Screenshots)\">WordPress 5.0</a>, then this is what the new block editor looks like: </p>\n<p><img title=\"New WordPress Block Editor also known as Gutenberg\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/newwpeditor.png\" alt=\"New WordPress Block Editor also known as Gutenberg\" width=\"550\" height=\"369\" class=\"alignnone size-full wp-image-58701\" /></p>\n<p>As you can see, they are two completely different editors for creating content in WordPress. </p>\n<p>The old classic editor was a text editor with formatting buttons very similar to Microsoft Word. </p>\n<p>The new editor uses a totally different approach, called &#8216;Blocks&#8217; (hence, the name Block Editor).</p>\n<p>Blocks are content elements that you add to the edit screen to create content layouts. Each item you add to your post or page is a block. </p>\n<p>You can add blocks for each paragraph, images, videos, galleries, audio, lists, and more. There are blocks for all common content elements and more can be added by <a href=\"https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/\" title=\"24 Must Have WordPress Plugins for Business Websites in 2018\">WordPress plugins</a>. </p>\n<p><strong>How is the new WordPress block editor better than the classic editor?</strong></p>\n<p>The new WordPress block editor offers a simple way to add different types of content to your posts and pages. </p>\n<p>For example, previously if you wanted to add a table in your content, then you needed a separate table plugin. </p>\n<p>With the new editor, you can simply add a table block, select your columns and rows, and start adding content. </p>\n<p><img title=\"Table block\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/tableblock.png\" alt=\"Table block\" width=\"550\" height=\"274\" class=\"alignnone size-full wp-image-58687\" /></p>\n<p>You can move content elements up and down, edit them as individual blocks, and easily create media-rich content. </p>\n<p>Most importantly, the new WordPress block editor is easy to use and learn. </p>\n<p>This gives an immense advantage to all WordPress beginners who are just <a href=\"https://www.wpbeginner.com/start-a-wordpress-blog/\" title=\"Ultimate Guide: How to Start a WordPress Blog (Step by Step)\">starting their first blog</a> or building a <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-make-a-small-business-website-step-by-step/\" title=\"How to Make a Small Business Website – Step by Step (2018)\">DIY business website</a>. </p>\n<p>That being said, let&#8217;s take a look at how to use the new WordPress block editor like a pro to create great content. </p>\n<p>Here is what we will cover in this Gutenberg tutorial: </p>\n<ol>\n<li>Using Gutenberg – The new WordPress block editor</li>\n<li>Creating a new blog post or page</li>\n<li>How to add a block in Gutenberg</li>\n<li>Working with blocks in the new editor</li>\n<li>Saving and reusing blocks in Gutenberg</li>\n<li>Publishing and post settings in Gutenberg</li>\n<li>Plugin settings in new editor</li>\n<li>Adding some common blocks in Gutenberg</li>\n<li>Exploring some new content blocks in Gutenberg</li>\n<li>Bonus tips on using Gutenberg like a pro</li>\n<li>Adding more blocks to Gutenberg Block Editor</li>\n<li>FAQs about Gutenberg</li>\n</ol>\n<p>Ready? Let&#8217;s dive in. </p>\n<h4>Using Gutenberg &#8211; The New WordPress Block Editor</h4>\n<p>The block editor is designed to be intuitive and flexible. While it looks different than the old WordPress editor, it still does all the things that you were able to do in the classic editor. </p>\n<p>Let&#8217;s start with covering the basic things that you did in the classic editor, and how they are done in the block editor. </p>\n<h4>Creating a New Blog Post or Page Using The Block Editor</h4>\n<p>You will start creating a new blog post or page like you normally would. Simply click on <strong>Posts &raquo; Add New</strong> menu in your WordPress admin. If you are creating a page, then go to <strong>Pages &raquo; Add New</strong> menu.</p>\n<p><img title=\"Adding a new post\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/addnewpost.png\" alt=\"Adding a new post\" width=\"550\" height=\"249\" class=\"alignnone size-full wp-image-58703\" /></p>\n<p>This will launch the new block editor.</p>\n<h4>How to Add a Block in Gutenberg</h4>\n<p>The first block of every post or page is the title. </p>\n<p>After that, you can use the mouse to move below the title or press the tab key on your keyboard to move down and start writing. </p>\n<p><img title=\"Adding a post title in Gutenberg\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/post-title.png\" alt=\"Adding a post title in Gutenberg\" width=\"550\" height=\"229\" class=\"alignnone size-full wp-image-58647\" /></p>\n<p>By default, the next block is a paragraph block. This allows users to start writing right away. </p>\n<p>However, if you want to add something different, then you can click on the add new block button on the top left corner of the editor, below an existing block, or on the left side of a block. </p>\n<p><img title=\"Add new block button\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/addblockbuttons.gif\" alt=\"Add new block button\" width=\"550\" height=\"306\" class=\"alignnone size-full wp-image-58649\" /></p>\n<p>Clicking on the button will show the add block menu with a search bar on top and commonly used blocks below. </p>\n<p>You can click on tabs to browse block categories or type in the keyword to quickly search for a block. </p>\n<p><img title=\"Finding and adding blocks in Gutenberg\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/addingblock.gif\" alt=\"Finding and adding blocks in Gutenberg\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58651\" /></p>\n<p>If you don&#8217;t want to use a mouse to click on the button, then you can use a keyboard shortcut by typing / to search and add a block. </p>\n<p><img title=\"Select and add a block while writing\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/selectblockwhilewriting.gif\" alt=\"\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58648\" />   </p>\n<h4>Working with Blocks in The New Editor</h4>\n<p>Each block comes with its own toolbar which appears on top of the block. The buttons in the toolbar would change depending on the block you are editing. </p>\n<p>For example, in this screenshot, we are working in a paragraph block which shows basic formatting buttons like: text alignment, bold, italic, insert-link, and strikethrough buttons. </p>\n<p><img title=\"Each block comes with its own toolbar\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/blocktoolbar.png\" alt=\"Each block comes with its own toolbar\" width=\"550\" height=\"264\" class=\"alignnone size-full wp-image-58650\" /></p>\n<p>Apart from the toolbar, each block can also have its own block settings which would appear in the right column of your edit screen. </p>\n<p><img title=\"Block settings\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/blocksettings.png\" alt=\"Block settings\" width=\"550\" height=\"325\" class=\"alignnone size-full wp-image-58654\" /></p>\n<p>You can move blocks up and down by simple drag and drop or by clicking the up and down buttons next to each block. </p>\n<p><img title=\"Moving a block up and down\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/moveup.png\" alt=\"Moving a block up and down\" width=\"550\" height=\"229\" class=\"alignnone size-full wp-image-58653\" /></p>\n<h4>Saving and Reusing Blocks in Gutenberg</h4>\n<p>One of the best things about blocks is that they can be saved and reused individually. This is particularly helpful for bloggers who frequently need to add specific content snippets to their articles. </p>\n<p>Simply click on the menu button located at the right corner of each block&#8217;s toolbar. From the menu, select &#8216;Add to reusable blocks&#8217; option.</p>\n<p><img title=\"Saving a block to reuse later\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/addreusableblock.png\" alt=\"Saving a block to reuse later\" width=\"550\" height=\"310\" class=\"alignnone size-full wp-image-58662\" /></p>\n<p>You will be asked to provide a name for this reusable block. Enter a name for your block and then click on the save button. </p>\n<p><img title=\"Giving a name to reusable block\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/reusableblockname.png\" alt=\"Giving a name to reusable block\" width=\"550\" height=\"241\" class=\"alignnone size-full wp-image-58663\" /> </p>\n<p>The block editor will now save the block as a reusable block. </p>\n<p>Now that you have saved a block, let&#8217;s see how to add the reusable block into other WordPress posts and pages on your site. </p>\n<p>Simply edit the post or page where you want to add the reusable block. From the post edit screen, click on the add block button. </p>\n<p>You will find your saved block under the &#8216;Reusable&#8217; tab. You can also find it by typing its name in the search bar.  </p>\n<p><img title=\"Insert a reusable block\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/insertreusableblock.png\" alt=\"Insert a reusable block\" width=\"550\" height=\"294\" class=\"alignnone size-full wp-image-58665\" /></p>\n<p>You can take your mouse over it to see a quick preview of the block. Simply click on the block to insert it into your post or page. </p>\n<p>All reusable blocks are stored in your WordPress database, and you can manage them by clicking on the &#8216;manage all reusable blocks&#8217; link. </p>\n<p><img title=\"Manage your reusable blocks\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/managereusableblocks.png\" alt=\"Manage your reusable blocks\" width=\"550\" height=\"340\" class=\"alignnone size-full wp-image-58666\" /></p>\n<p>This will bring you to the block manager page. From here, you can edit or delete any of your reusable blocks. You can also export reusable blocks and use them on any other WordPress website. </p>\n<p><img title=\"Import export reusable blocks in WordPress\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/importexportblocks.png\" alt=\"Import export reusable blocks in WordPress\" width=\"550\" height=\"290\" class=\"alignnone size-full wp-image-58667\" /></p>\n<h4>Publishing and Managing Options in Gutenberg Block Editor</h4>\n<p>Each WordPress post contains a lot of metadata. This includes information like publish date, <a href=\"https://www.wpbeginner.com/beginners-guide/categories-vs-tags-seo-best-practices-which-one-is-better/\" title=\"Categories vs Tags – SEO Best Practices for Sorting your Content\">categories and tags</a>, <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-add-featured-image-or-post-thumbnails-in-wordpress/\" title=\"How to Add Featured Images or Post Thumbnails in WordPress\">featured images</a>, and more. </p>\n<p>All these options are neatly placed in the right column on the editor screen.</p>\n<p><img title=\"Document settings in Gutenberg the new WordPress editor\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/documentsettings.png\" alt=\"Document settings in Gutenberg the new WordPress editor\" width=\"550\" height=\"351\" class=\"alignnone size-full wp-image-58669\" /></p>\n<h4>Plugin Options in Gutenberg</h4>\n<p>WordPress plugins are able to take advantage of the block editor&#8217;s API to integrate their own settings within the edit screen. </p>\n<p>Some popular plugins are already available as blocks. For example, <a href=\"https://wpforms.com\" title=\"WPForms\">WPForms</a>, the best <a href=\"https://www.wpbeginner.com/plugins/5-best-contact-form-plugins-for-wordpress-compared/\" title=\"5 Best Contact Form Plugins for WordPress Compared\">WordPress form builder plugin</a> allows you to add forms into your content using a widget block. </p>\n<p><img title=\"WPForms block in new Gutenberg editor\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/wpformsblock.gif\" alt=\"WPForms block in new Gutenberg editor\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58677\" /></p>\n<p>Here is how <a href=\"https://www.wpbeginner.com/plugins/how-to-install-and-setup-wordpress-seo-plugin-by-yoast/\" title=\"How to Install and Setup WordPress SEO Plugin by Yoast\">Yoast SEO</a> allows you to edit your SEO settings in the new editor: </p>\n<p><img title=\"Yoast SEO settings in new Gutenberg editor\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/yoastsettings.png\" alt=\"Yoast SEO settings in new Gutenberg editor\" width=\"550\" height=\"319\" class=\"alignnone size-full wp-image-58678\" /></p>\n<p><a href=\"https://wordpress.org/plugins/woocommerce/\" title=\"WooCommerce\" rel=\"noopener nofollow\" target=\"_blank\">WooCommerce</a> also comes with widget blocks that you can easily add to any of your WordPress posts and pages. </p>\n<p><img title=\"WooCommerce products block\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/productsblock.png\" alt=\"WooCommerce products block\" width=\"550\" height=\"329\" class=\"alignnone size-full wp-image-58679\" /></p>\n<h4>Adding Some Common Blocks in New Editor</h4>\n<p>Basically, the new editor can do everything the classic editor did. However, you will be doing things way quicker and elegantly than before. </p>\n<p><strong>1. Adding an image in new WordPress editor</strong> </p>\n<p>There is a ready to use image block in the new WordPress editor. Simply add the block and then upload an image file or select from the media library. </p>\n<p><img title=\"Image block in new WordPress editor\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/imageblock.png\" alt=\"Image block in new WordPress editor\" width=\"550\" height=\"234\" class=\"alignnone size-full wp-image-58680\" /></p>\n<p>You can also drag and drop images from your computer, and the editor will automatically create an image block for it.</p>\n<p>Once you have added an image, you will be able to see the block settings where you can add metadata for the image like alt text, size, and add a link to the image. </p>\n<p><img title=\"Image block settings\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/imageblocksettings.jpg\" alt=\"Image block settings\" width=\"550\" height=\"350\" class=\"alignnone size-full wp-image-58681\" /> </p>\n<p><strong>2. Adding a link in new block Editor</strong> </p>\n<p>The block editor comes with several blocks where you can add text. Most commonly used one is the paragraph block which comes with an insert link button in the toolbar. </p>\n<p>All other commonly used text blocks also include a link button in the toolbar. </p>\n<p><img title=\"Link button in the list block\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/linkbutton.png\" alt=\"Link button in the list block\" width=\"550\" height=\"182\" class=\"alignnone size-full wp-image-58682\" /></p>\n<p>You can also insert a link using the keyboard shortcut, which is Command + K for Mac and CTRL + K on Windows computers. </p>\n<p><strong>3. Adding an image gallery in Gutenberg</strong> </p>\n<p>The gallery block works like the image block. You add it and then upload or select image files. </p>\n<p><img title=\"Adding image gallery in new WordPress editor\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/galleryblock.jpg\" alt=\"Adding image gallery in new WordPress editor\" width=\"550\" height=\"316\" class=\"alignnone size-full wp-image-58683\" /></p>\n<p><strong>4. Adding shortcodes in WordPress posts using Gutenberg</strong> </p>\n<p>All your shortcodes will work just like they did in the classic editor. You can simply add them to a paragraph block, or you can use the shortcode block. </p>\n<p><img title=\"Adding a shortcode block\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/shortcodeblock.png\" alt=\"Adding a shortcode block\" width=\"550\" height=\"161\" class=\"alignnone size-full wp-image-58704\" /></p>\n<h4>Exploring Some New Content Blocks in Gutenberg</h4>\n<p>The Gutenberg editor promises to solve some long-standing usability issues in WordPress by introducing some new blocks. </p>\n<p>Following are some of the favorites that we believe users will find immensely helpful. </p>\n<p><strong>1. Adding an image next to some text in WordPress</strong></p>\n<p>Using the old editor, many of our users were unable to place an image next to the text. You can do this now with the <strong>Media &amp; Text</strong> block. </p>\n<p><img title=\"Media and Text block\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/mediaandtextblock.jpg\" alt=\"Media and Text block\" width=\"550\" height=\"287\" class=\"alignnone size-full wp-image-58684\" /></p>\n<p>This simple block comes with two blocks placed side-by-side allowing you to easily add an image and add some text next to it. </p>\n<p><strong>2. Adding a button in WordPress posts and pages</strong> </p>\n<p>Adding a button to your blog posts or pages was another annoyance in the classic editor. You either had to use a plugin that created a shortcode for the button, or you had to switch to HTML mode and write code. </p>\n<p>Gutenberg comes with a button block that allows you to quickly add a button to any post or page. </p>\n<p><img title=\"Adding a button block in Gutenberg\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/buttonblock.jpg\" alt=\"Adding a button block in Gutenberg\" width=\"550\" height=\"285\" class=\"alignnone size-full wp-image-58685\" /></p>\n<p>You can add a link for your button, change colors, and choose from three button styles. </p>\n<p><strong>3. Adding beautiful cover images in blog posts and landing pages</strong> </p>\n<p>Another cool feature that you may want to try is the &#8216;Cover&#8217; block, which allows you to add cover images to your posts and pages. </p>\n<p>A cover image is a wider image often used as a cover for a new section in a page or the beginning of a story. They look beautiful and allow you to create engaging content layouts. </p>\n<p>Simply add a cover block and then upload the image you want to use. You can choose an overlay color for the cover or make it a fixed background image to create <a href=\"https://www.wpbeginner.com/wp-themes/how-to-add-a-parallax-effect-to-any-wordpress-theme/\" title=\"How to Add a Parallax Effect to Any WordPress Theme\">parallax effect</a> when users scroll down the page. </p>\n<p><img title=\"The cover image block in Gutenberg editor\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/coverimage.jpg\" alt=\"The cover image block in Gutenberg editor\" width=\"550\" height=\"314\" class=\"alignnone size-full wp-image-58686\" /></p>\n<p><strong>4. Creating tables inside articles</strong> </p>\n<p>The classic editor didn&#8217;t have a button to <a href=\"https://www.wpbeginner.com/plugins/how-to-add-tables-in-wordpress-posts-and-pages-no-html-required/\" title=\"How to Add Tables in WordPress Posts and Pages (No HTML Required)\">add tables into your WordPress posts</a>. You had to use a plugin or create a table writing custom CSS and HTML. </p>\n<p>New Gutenberg editor comes with a default Table block, which makes it super easy to add tables into your posts and pages. Simply add the block and then select the number of columns and rows you want to insert. </p>\n<p><img title=\"Table block\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/tableblock.png\" alt=\"Table block\" width=\"550\" height=\"274\" class=\"alignnone size-full wp-image-58687\" /></p>\n<p>You can now go ahead and start adding data to table rows. You can always add more rows and columns if needed. There are also two basic style options available. </p>\n<p><strong>5. Creating multi-column content</strong></p>\n<p>Creating multi-column content was another issue that the classic editor didn&#8217;t handle at all. The block editor allows you to add Columns block, which basically adds two columns of paragraph blocks.</p>\n<p><img title=\"Multi-column content\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/multicolumntext.png\" alt=\"Multi-column content\" width=\"550\" height=\"302\" class=\"alignnone size-full wp-image-58688\" /></p>\n<p>This columns block is quite flexible. You can add up to 6 columns in a row and even use other blocks inside each column. </p>\n<h4>Bonus Tips to Use Gutenberg like a Pro</h4>\n<p>Looking at the new block editor, you may be wondering whether you will be spending more time adding and adjusting blocks than creating actual content? </p>\n<p>Well, the new editor is incredibly fast and even very basic usage for a few minutes will allow you to instantly add blocks without even thinking. </p>\n<p>Pretty soon you will realize how much faster your workflow will become with this new approach. </p>\n<p>For power users, here are some bonus tips to help you work even faster with the new WordPress editor. </p>\n<p><strong>1. Move the block toolbar to the top.</strong> </p>\n<p>As you may have noticed in the screenshots that there is a toolbar that appears on top of every block. You can move this toolbar to the top of the editor. </p>\n<p>Simply click on the three-dot button at the top right corner of the screen and then select the Top Toolbar option. </p>\n<p><img title=\"Move the block toolbar to the top of the editor\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/toptoolbar.png\" alt=\"Move the block toolbar to the top of the editor\" width=\"550\" height=\"296\" class=\"alignnone size-full wp-image-58689\" /></p>\n<p><strong>2. Use keyboard shortcuts</strong> </p>\n<p>Gutenberg comes with several handy shortcuts that will make your workflow even better. The first one you should start using right away is the /. </p>\n<p>Simply enter / and then start typing, and it will show you matching blocks that you can instantly add. </p>\n<p>For more shortcuts, click on the three-dot menu on the top-right corner of your screen and then select &#8216;Keyboard Shortcuts&#8217;. </p>\n<p><img title=\"Launch keyboard shortcuts\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/launchkeyboardshortcuts.png\" alt=\"Launch keyboard shortcuts\" width=\"550\" height=\"380\" class=\"alignnone size-full wp-image-58691\" /></p>\n<p>This will bring up a popup with the list of all the keyboard shortcuts that you can use. The list will have different shortcuts for Windows and Mac users. </p>\n<p><strong>3. Drag and drop media to automatically create media blocks</strong></p>\n<p>Gutenberg allows you to just drag and drop files anywhere on the screen and it will automatically create a block for you. </p>\n<p>You can drop a single image or video file, and it will create the block for you. You can also drop multiple image files to create a gallery block. </p>\n<p><img title=\"Drag and drop gallery block in new WordPress editor\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/dragndropgallery.gif\" alt=\"Drag and drop gallery block in new WordPress editor\" width=\"550\" height=\"309\" class=\"alignnone size-full wp-image-58692\" /></p>\n<p><strong>4. Adding YouTube, Twitter, Facebook, <a rel=\"nofollow\" target=\"_blank\" title=\"Vimeo\" href=\"https://www.wpbeginner.com/refer/vimeo/\" data-shortcode=\"true\">Vimeo</a>, and other embeds</strong> </p>\n<p>Gutenberg introduces new embed blocks to the block editor. There is a block for all supported embed types including YouTube, Twitter, Facebook, and more. </p>\n<p><img title=\"Embed blocks\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/embedblocks.jpg\" alt=\"Embed blocks \" width=\"550\" height=\"338\" class=\"alignnone size-full wp-image-58693\" /></p>\n<p>However, you can just copy and paste the embed URL at any point, and it will automatically create a block for you.</p>\n<p>For example, if you added a YouTube video URL, it will automatically create a YouTube embed block and display the video. </p>\n<p><img title=\"YouTube embed\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/youtubeembed.jpg\" alt=\"YouTube embed\" width=\"550\" height=\"310\" class=\"alignnone size-full wp-image-58694\" /></p>\n<h4>Adding More Blocks to Gutenberg Block Editor in WordPress</h4>\n<p>The new block editor in WordPress allows developers to create their own blocks. There are some awesome WordPress plugins offering block bundles for the new editor.  </p>\n<p>Here are a few of them: </p>\n<p><strong><a href=\"https://wordpress.org/plugins/advanced-gutenberg/\" title=\"Advanced Gutenberg\" rel=\"noopener nofollow\" target=\"_blank\">1. Advanced Gutenberg</a></strong> </p>\n<p><a href=\"https://wordpress.org/plugins/advanced-gutenberg/\" title=\"Advanced Gutenberg\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Advanced Gutenberg\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/advancedgutenberg.png\" alt=\"Advanced Gutenberg\" width=\"550\" height=\"177\" class=\"alignnone size-full wp-image-58695\" /></a> </p>\n<p>Advanced Gutenberg comes with several blocks for popular content elements like WooCommerce product slider, testimonials, maps, counter, tabs, accordions, and more. </p>\n<p>It also gives you advanced control on which users can access blocks based on their <a href=\"https://www.wpbeginner.com/beginners-guide/wordpress-user-roles-and-permissions/\" title=\"Beginner’s Guide to WordPress User Roles and Permissions\">user roles</a>. You can create user profiles and select which blocks they can add. </p>\n<p><strong><a href=\"https://wordpress.org/plugins/stackable-ultimate-gutenberg-blocks/\" title=\"Stackable – Gutenberg Blocks\" rel=\"noopener nofollow\" target=\"_blank\">2. Stackable – Gutenberg Blocks</a></strong></p>\n<p><a href=\"https://wordpress.org/plugins/stackable-ultimate-gutenberg-blocks/\" title=\"Stackable – Gutenberg Blocks\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Stackable - Gutenberg Blocks\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/stackablegutenberg.png\" alt=\"Stackable - Gutenberg Blocks\" width=\"550\" height=\"180\" class=\"alignnone size-full wp-image-58696\" /></a> </p>\n<p>Stackable &#8211; Gutenberg Blocks is a collection of beautifully designed Gutenberg blocks that you can use on your website. It includes blocks for the container, posts, feature grid, accordion, image box, icon list, call to action, and more. </p>\n<p><strong><a href=\"https://wordpress.org/plugins/editor-blocks/\" title=\"Editor Blocks for Gutenberg\" rel=\"noopener nofollow\" target=\"_blank\">3. Editor Blocks</a></strong> </p>\n<p><a href=\"https://wordpress.org/plugins/editor-blocks/\" title=\"Editor Blocks for Gutenberg\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Editor blocks for Gutenberg\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/editorblocks.png\" alt=\"Editor blocks for Gutenberg\" width=\"550\" height=\"247\" class=\"alignnone size-full wp-image-58697\" /></a></p>\n<p>Editor Blocks is another neat collection of Gutenberg blocks that you can use. It comes with useful blocks like author profile, hero image, <a href=\"https://www.wpbeginner.com/plugins/how-to-add-beautiful-pricing-tables-in-wordpress-no-coding-required/\" title=\"How to Add Beautiful Pricing Tables in WordPress (No Coding Required)\">pricing table</a>, brands, features, and more. </p>\n<h4>FAQs about Gutenberg &#8211; The New Block Editor in WordPress</h4>\n<p>Since Gutenberg became the new WordPress editor, we have been getting a lot of questions. Here are the answers to some of the most frequently asked questions about Gutenberg. </p>\n<p><strong>1. What happens to my older posts and pages? Can I still edit them?</strong></p>\n<p>Your old posts and pages are completely safe and unaffected by the Gutenberg. You can still edit them, and Gutenberg will automatically open them in a block containing the classic editor. </p>\n<p><img title=\"Editing older articles in new WordPress editor\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/oldarticles-1.png\" alt=\"Editing older articles in new WordPress editor\" width=\"550\" height=\"305\" class=\"alignnone size-full wp-image-58698\" /></p>\n<p>You can edit them inside the old editor, or you can convert older articles into blocks and use the new block editor. </p>\n<p><strong>2. Can I still keep using the old editor?</strong> </p>\n<p>Yes, you can still keep using the old editor. Simply install and activate the <a href=\"https://wordpress.org/plugins/classic-editor/\" title=\"Classic Editor\" rel=\"noopener nofollow\" target=\"_blank\">Classic Editor</a> plugin. </p>\n<p>Upon activation, it will disable the block editor, and you will be able to continue using the classic editor. </p>\n<p>Please note that Classic Editor will be supported until 2022.  </p>\n<p><strong>3. What to do if the new editor doesn&#8217;t work with a plugin or theme I am using? </strong></p>\n<p>Project Gutenberg was under development for a long time. This gave plugin and theme authors plenty of time to test their code for compatibility. </p>\n<p>However, there is still a chance that some plugins and themes may not work well with the new editor. In that case, you can install the classic editor plugin, request the developer to add Gutenberg support, or simply find an alternative plugin or theme. </p>\n<p><strong>4. How to learn more Gutenberg tips and tricks?</strong> </p>\n<p>WPBeginner is the best place to learn about the new block editor in WordPress. We are the largest WordPress resource site on the internet. </p>\n<p>We will be publishing new articles and updating our old resources to help you master the new block editor.</p>\n<p>Meanwhile, if you have any questions, feel free to reach out to us by leaving a comment or by using the <a href=\"https://www.wpbeginner.com/contact/\" title=\"Contact WPBeginner\">contact form</a> on our website. </p>\n<p>We hope this Gutenberg tutorial helped you learn how to use the new WordPress block editor. You may also want to see our <a href=\"https://www.wpbeginner.com/wordpress-performance-speed/\" title=\"The Ultimate Guide to Boost WordPress Speed &amp; Performance\">complete WordPress performance guide</a> for improving your website speed.</p>\n<p>If you liked this article, then please subscribe to our <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href=\"http://twitter.com/wpbeginner\" title=\"WPBeginner on Twitter\" target=\"_blank\" rel=\"nofollow\">Twitter</a> and <a href=\"https://www.facebook.com/wpbeginner\" title=\"WPBeginner on Facebook\" target=\"_blank\" rel=\"nofollow\">Facebook</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/\">How to Use the New WordPress Block Editor (Gutenberg Tutorial)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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: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://www.wpbeginner.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s: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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:21:{s:6:\"server\";s:17:\"Sucuri/Cloudproxy\";s:4:\"date\";s:29:\"Sun, 30 Dec 2018 20:30:18 GMT\";s:12:\"content-type\";s:24:\"text/html; charset=UTF-8\";s:14:\"content-length\";s:5:\"16517\";s:11:\"x-sucuri-id\";s:5:\"14016\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:25:\"strict-transport-security\";a:2:{i:0;s:16:\"max-age=31536000\";i:1;s:16:\"max-age=31536000\";}s:23:\"content-security-policy\";a:2:{i:0;s:26:\"upgrade-insecure-requests;\";i:1;s:26:\"upgrade-insecure-requests;\";}s:4:\"vary\";s:22:\"Accept-Encoding,Cookie\";s:13:\"last-modified\";s:29:\"Sat, 29 Dec 2018 14:20:25 GMT\";s:4:\"etag\";s:20:\"\"4085-57e29e1855d70\"\";s:13:\"cache-control\";s:41:\"public, must-revalidate, proxy-revalidate\";s:7:\"expires\";s:29:\"Mon, 31 Dec 2018 14:20:25 GMT\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:15:\"referrer-policy\";s:26:\"no-referrer-when-downgrade\";s:6:\"pragma\";s:6:\"public\";s:16:\"content-encoding\";s:4:\"gzip\";s:14:\"x-sucuri-cache\";s:3:\"HIT\";s:13:\"accept-ranges\";s:5:\"bytes\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(7668,'_transient_timeout_feed_mod_4cf2927c306176c13771b3ef386d2f5e','1546245017','no'),(7669,'_transient_feed_mod_4cf2927c306176c13771b3ef386d2f5e','1546201817','no'),(7670,'_transient_timeout_feed_29f7869e391c2a2c562f0042f814b9de','1546245018','no'),(7671,'_transient_feed_29f7869e391c2a2c562f0042f814b9de','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"IsItWP – WordPress Technology Lookup Tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://www.isitwp.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Dec 2018 18:48: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.9.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"18 Best WordPress Comments Plugins to Boost Engagement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://www.isitwp.com/best-wordpress-comment-plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://www.isitwp.com/best-wordpress-comment-plugins/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Dec 2018 10:49:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:29:\"best wordpress comment plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:31:\"best wordpress comments plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:18:\"wordpress comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=226336\";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:628:\"<p>Are you looking for the best WordPress comments plugins for your website? Creating an active comment section on your WordPress blog is important to building a strong relationship with your readers and driving traffic to your site. A comment section that&#8217;s bustling with conversation will make your blog a place that users want to return [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-wordpress-comment-plugins/\">18 Best WordPress Comments Plugins to Boost Engagement</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:26145:\"<p>Are you looking for the best WordPress comments plugins for your website? Creating an active comment section on your WordPress blog is important to building a strong relationship with your readers and driving traffic to your site. A comment section that&#8217;s bustling with conversation will make your blog a place that users want to return to again and again. But it can be difficult to generate valuable comments on your blog.</p>\n<p>That&#8217;s why, in this article, we&#8217;re going to share with you the 18 best WordPress comment plugins to help you generate more comments, manage your comments, and grow your blog. Let&#8217;s jump in! </p>\n<h3><a href=\"https://www.isitwp.com/refer/decomments/\" target=\"_blank\" rel=\"nofollow\">1.De:comments</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/decomments/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/decomments.png\" alt=\"decomments-best-wordpress-comment-plugins\" width=\"740\" height=\"278\" class=\"alignnone size-full wp-image-226356\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/decomments.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/decomments-300x113.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nDe:comments is the most powerful WordPress plugin for comments. This premium plugin offers a range of tools to help you increase engagement on your blog. </p>\n<p>You can totally revamp your comment section and allow your readers to do a variety of things like vote on comments to like and dislike them, use a social login feature and sign in with their existing accounts, share comments on social media, and more. Users can even add images, GIFs, videos, tweets, and more to their comments. </p>\n<p>One of their stand-out features is their Badge System which rewards and encourages the most active users by adding gamification to the commenting process. All of this helps turn your comment section into a more entertaining place to be. </p>\n<p><a href=\"https://www.isitwp.com/refer/decomments/\" target=\"_blank\" rel=\"nofollow\">Get Started with De:comments Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/akismet/\" target=\"_blank\" rel=\"nofollow\">2. Akismet</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/akismet/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/akismet.jpg\" alt=\"akismet-best-wordpress-comment-plugins\" width=\"740\" height=\"239\" class=\"alignnone size-full wp-image-226357\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/akismet.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/akismet-300x97.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nAkismet is one of the most used WordPress comment plugins on the market. This plugin will filter spam comments for you so your website can keep it&#8217;s credibility. </p>\n<p>Instead of wasting time moderating comments from bots and deleting comments containing links to suspicious sites, this plugin does it all for you. You&#8217;ll never have to deal with annoying spam comments again &#8211; which makes Akismet a must-have for your comment section. </p>\n<p>You can get Akismet&#8217;s Personal plan for free which is great for bloggers and personal websites. But if you&#8217;re running a commercial website, you&#8217;ll need to upgrade to their Plus plan for $5 per month, per site.</p>\n<p>Want more information about Akismet? Check out our full <a href=\"https://www.isitwp.com/wordpress-plugins/akismet/\">Akismet review</a>.    </p>\n<p><a href=\"https://www.isitwp.com/refer/akismet/\" target=\"_blank\" rel=\"nofollow\">Get Started with Akismet Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/jetpack-comments/\" target=\"_blank\" rel=\"nofollow\">3. Jetpack Comments</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/jetpack-comments/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/jetpack.png\" alt=\"jetpack-comments-wordpress-comment-plugins\" width=\"740\" height=\"463\" class=\"alignnone size-full wp-image-226359\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/jetpack.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/jetpack-300x188.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nJetpack Comments is a great WordPress plugin that makes it easier for your readers to comment on your blog. The Jetpack Comments plugin replaces your default comment section with a new comment system that has social media login integration.</p>\n<p>Instead of having to make an all new account just to comment on your blog, users can sign in with their existing WordPress, Facebook, or Twitter account. Visitors also have the choice of leaving a comment as a guest or using their social networking username. </p>\n<p>This sleek-looking, easy-to-use comment system is simple to install and you also have the option to customize the color scheme to match your brand.  </p>\n<p>For a more detailed review of Jetpack, check out our <a href=\"https://www.isitwp.com/wordpress-plugins/jetpack/\">complete JetPack review</a>.</p>\n<p><a href=\"https://www.isitwp.com/refer/jetpack-comments/\" target=\"_blank\" rel=\"nofollow\">Get Started with Jetpack Comments Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/thrive-comments/\" target=\"_blank\" rel=\"nofollow\">4. Thrive Comments</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/thrive-comments/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/thrive-comments.png\" alt=\"thrive-comments-comment-plugin\" width=\"740\" height=\"225\" class=\"alignnone size-full wp-image-226360\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/thrive-comments.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/thrive-comments-300x91.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nThrive Comments is another option we consider to be one of the best WordPress comments plugins. This powerful plugin collects all of the most addictive elements of social media and community forums and adds them to your WordPress comments. </p>\n<p>Your visitors get the satisfaction of seeing other users &#8220;like&#8221; their comments and they get to earn achievement badges by commenting. The plugin also includes features that allow users to feel validated by receiving &#8220;up-votes&#8221; and getting their comments featured. </p>\n<p>With Thrive Comments you get extensive reporting on visitor activity over time too. You can see stats about your most active commenters, find out which of your posts are most popular for commenting, and track your engagement progress. </p>\n<p><a href=\"https://www.isitwp.com/refer/thrive-comments/\" target=\"_blank\" rel=\"nofollow\">Get Started with Thrive Comments Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/wordpress-comment-rating-plugin/\" target=\"_blank\" rel=\"nofollow\">5. WordPress Comment Rating Plugin</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/wordpress-comment-rating-plugin/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wordpress-comment-rating-plugin.png\" alt=\"wordpress-comment-rating-plugin\" width=\"740\" height=\"367\" class=\"alignnone size-full wp-image-226361\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wordpress-comment-rating-plugin.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wordpress-comment-rating-plugin-300x149.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nThe WordPress Comment Rating Plugin is a simple and easy-to-use plugin that allows users to rate the comments in a post. The plugin can also sort comments by most popular. </p>\n<p>Users will be encouraged to engage more in the comment section when their comments get great ratings and rise to the top of the pack. </p>\n<p>You can purchase a regular license for the WordPress Comment Rating Plugin for only $22 which comes with future updates and 6 months of support from wpbuddy. </p>\n<p><a href=\"https://www.isitwp.com/refer/wordpress-comment-rating-plugin/\" target=\"_blank\" rel=\"nofollow\">Get Started with WordPress Comment Rating Plugin Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/disqus-comment-system/\" target=\"_blank\" rel=\"nofollow\">6. Disqus Comment System</a></h3>\n<p><a href=\"https://wordpress.org/plugins/disqus-comment-system/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/disqus.png\" alt=\"disqus-comment-system-wordpress-plugin\" width=\"740\" height=\"251\" class=\"alignnone size-full wp-image-226362\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/disqus.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/disqus-300x102.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nDisqus Comment System is one of the most popular commenting systems for WordPress sites. With the Disqus Comment System you can replace the default WordPress comment section with theirs. Their interactive comment section will help you increase engagement, grow relationships with your visitors, and retain readers. And their 1-click installation seamlessly integrates with WordPress which means you don&#8217;t have to know a thing about code. </p>\n<p>With Disqus you can bring users back to your website with email and browser notifications, users can vote for comments, as well as add fun elements to their comments like photos, videos, mentions, and more. </p>\n<p>Users also get flexible social login options and you can sort discussions by oldest, newest, and best comments. </p>\n<p><a href=\"https://wordpress.org/plugins/disqus-comment-system/\" target=\"_blank\" rel=\"nofollow\">Get Started with Disqus Comment System Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/disable-comments/\" target=\"_blank\" rel=\"nofollow\">7. Disable Comments</a></h3>\n<p><a href=\"https://wordpress.org/plugins/disable-comments/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/disablecomments.png\" alt=\"disable-comments-wordpress-plugin\" width=\"740\" height=\"256\" class=\"alignnone size-full wp-image-226363\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/disablecomments.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/disablecomments-300x104.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nWhile <a href=\"https://optinmonster.com/to-allow-blog-comments-or-not-heres-what-the-data-shows/\">data shows that you should allow comments on your blog</a>, you may occasionally want to disable comments on your WordPress posts. You can easily do it with the Disable Comments plugin. </p>\n<p>This free plugin allows WordPress administrators to disable comments on any post type like <a href=\"https://optinmonster.com/50-blog-post-ideas-that-you-can-write-about-today/\" target=\"_blank\">blog posts</a>, pages, and attachments. If you want to disable comments on specific individual posts you can or you can disable comments on your entire <a href=\"https://www.isitwp.com/how-to-make-a-website-step-by-step/\" target=\"_blank\">WordPress website</a>. </p>\n<p><a href=\"https://wordpress.org/plugins/disable-comments/\" target=\"_blank\" rel=\"nofollow\">Get Started with Disable Comments Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/commentluv/\" target=\"_blank\" rel=\"nofollow\">8. CommentLuv</a></h3>\n<p><a href=\"https://wordpress.org/plugins/commentluv/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/commentluv.png\" alt=\"comment-luv-wordpress-comments-plugin\" width=\"740\" height=\"258\" class=\"alignnone size-full wp-image-226364\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/commentluv.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/commentluv-300x105.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nCommentLuv is another WordPress comments plugin that comes with a variety of features for your comment section to grow traffic to your site and increase engagement.</p>\n<p>With CommentLuv, users can add their Twitter link to their comments, add keywords, and you can add a top commenter widget. The plugin also fights off spam comments and readers have the opportunity to register for your site to unlock advanced CommentLuv features like dofollow links and more.  </p>\n<p><a href=\"https://wordpress.org/plugins/commentluv/\" target=\"_blank\" rel=\"nofollow\">Get Started with CommentLuv Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/facebook-plugins/\" target=\"_blank\" rel=\"nofollow\">9. Facebook Plugins, Comments &#038; Dialogs for WordPress</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/facebook-plugins/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/facebookplugins.png\" alt=\"facebook-plugin-best-wordpress-comment-plugins\" width=\"740\" height=\"378\" class=\"alignnone size-full wp-image-226366\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/facebookplugins.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/facebookplugins-300x153.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nFacebook Plugins, Comments &#038; Dialogs for WordPress is a comment plugin that enables you to integrate many Facebook features with the comment section on your website. </p>\n<p>They offer 11 different Facebook plugins that can be added to your site with only 1 line of code. Facebook plugins  include: Facebook comments, like button, share button, send button, and more. </p>\n<p>With this comment and <a href=\"https://www.isitwp.com/best-wordpress-social-media-plugins/\">social media plugin</a>, the users on your site who also use Facebook will have everything they need to interact with your posts in one place. </p>\n<p><a href=\"https://www.isitwp.com/refer/facebook-plugins/\" target=\"_blank\" rel=\"nofollow\">Get Started with Facebook Plugins, Comments &#038; Dialogs for WordPress Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/comments-from-facebook/\" target=\"_blank\" rel=\"nofollow\">10. WpDevArt Facebook Comments</a></h3>\n<p><a href=\"https://wordpress.org/plugins/comments-from-facebook/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdevart.png\" alt=\"wpdevart-best-comment-plugins-wordpress\" width=\"740\" height=\"337\" class=\"alignnone size-full wp-image-226369\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdevart.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpdevart-300x137.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nWpDevArt Facebook Comments is another great plugin to integrate Facebook with your comment section on WordPress. The WpDevArt Facebook Comments plugin is a tool that allows you to show Facebook comments to visitors on your website.</p>\n<p>This user-friendly plugin is available for free. You can upgrade to the pro version to get access to features like the ability to choose the color scheme, set the background color, and 39 awesome animation effects.</p>\n<p><a href=\"https://wordpress.org/plugins/comments-from-facebook/\" target=\"_blank\" rel=\"nofollow\">Get Started with WpDevArt Facebook Comments Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/comment-approved/\" target=\"_blank\" rel=\"nofollow\">11. Comment Approved</a></h3>\n<p><a href=\"https://wordpress.org/plugins/comment-approved/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/commentapproved.png\" alt=\"comment-approved-wordpress-plugin\" width=\"740\" height=\"313\" class=\"alignnone size-full wp-image-226375\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/commentapproved.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/commentapproved-300x127.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nComment Approved is a simple WordPress plugin that will send out a customizable notification to a user who has left a comment on your website once the comment has been approved by you. </p>\n<p>This plugin is free to download and it&#8217;s a great way to encourage users to return to your site. </p>\n<p><a href=\"https://wordpress.org/plugins/comment-approved/\" target=\"_blank\" rel=\"nofollow\">Get Started with Comment Approved Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/subscribe-to-comments-reloaded/\" target=\"_blank\" rel=\"nofollow\">12. Subscribe To Comments Reloaded</a></h3>\n<p><a href=\"https://wordpress.org/plugins/subscribe-to-comments-reloaded/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/subscribe-to-comments-reloaded.png\" alt=\"subscribe-to-comments-reloaded-plugin\" width=\"740\" height=\"255\" class=\"alignnone size-full wp-image-226381\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/subscribe-to-comments-reloaded.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/subscribe-to-comments-reloaded-300x103.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nSubscribe to Comments Reloaded is another popular WordPress plugin that gets users to return to your website again and again. </p>\n<p>This plugin enables users to sign up to receive email notifications any time a user replies or comments on a post that they&#8217;ve already commented on. </p>\n<p>Subscribe to Comments Reloaded also comes with a subscription manager that commenters can use to unsubscribe from certain posts or suspend all notifications when they don&#8217;t want to be updated on conversations any longer. </p>\n<p><a href=\"https://wordpress.org/plugins/subscribe-to-comments-reloaded/\" target=\"_blank\" rel=\"nofollow\">Get Started with Subscribe To Comments Reloaded Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/yoast-comment-hacks/\" target=\"_blank\" rel=\"nofollow\">13. Yoast Comment Hacks</a></h3>\n<p><a href=\"https://wordpress.org/plugins/yoast-comment-hacks/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/yoast-comment-hacks.png\" alt=\"yoast-comment-hacks-plugins\" width=\"740\" height=\"258\" class=\"alignnone size-full wp-image-226384\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/yoast-comment-hacks.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/yoast-comment-hacks-300x105.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nYou might already be aware of Yoast SEO, one of the most popular <a href=\"https://www.isitwp.com/best-seo-tools-to-grow-your-site-traffic/\">SEO plugins</a>. But Yoast has another amazing plugin for comments called Yoast Comment Hacks.</p>\n<p>Yoast Comment Hacks adds small hacks to the default WordPress comment section to make it easier to manage. For instance, it adds cleaner comment notification emails. It also adds a button in the WordPress toolbar to email all of the commenters on your post at once. </p>\n<p>Another awesome feature is the ability to redirect first-time commenters to a thank you page that encourages them to sign up for your email list. </p>\n<p><a href=\"https://wordpress.org/plugins/yoast-comment-hacks/\" target=\"_blank\" rel=\"nofollow\">Get Started with Yoast Comment Hacks Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/simple-comment-editing/\" target=\"_blank\" rel=\"nofollow\">14. Simple Comment Editing </a></h3>\n<p><a href=\"https://wordpress.org/plugins/simple-comment-editing/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/simplecommentediting.png\" alt=\"simple-comment-editing-wordpress-plugin\" width=\"740\" height=\"255\" class=\"alignnone size-full wp-image-226390\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/simplecommentediting.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/simplecommentediting-300x103.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nThe Simple Comment Editing plugin for WordPress is a tool that lets anonymous users edit and/or delete their comments for up to 5 minutes. </p>\n<p>Users can spend more time leaving you a thoughtful comment with the ability to edit and delete. </p>\n<p>All you have to do is install the plugin and the rest is done for you. </p>\n<p><a href=\"https://wordpress.org/plugins/simple-comment-editing/\" target=\"_blank\" rel=\"nofollow\">Get Started with Simple Comment Editing Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/no-page-comment/\" target=\"_blank\" rel=\"nofollow\">15. No Page Comment </a></h3>\n<p><a href=\"https://wordpress.org/plugins/no-page-comment/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/nopagecomment.png\" alt=\"no-page-comment-wordpress-comment-plugin\" width=\"740\" height=\"342\" class=\"alignnone size-full wp-image-226397\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/nopagecomment.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/nopagecomment-300x139.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nNo Page Comment is a great WordPress plugin that gives you complete control over your comment section. This plugin lets you choose whether comments are enabled or disabled by default on all new posts, pages, and custom post types. At the same time, you also have the ability to individually enable comments on posts or pages. </p>\n<p>You can also quickly disable all comments for a specific post type. </p>\n<p><a href=\"https://wordpress.org/plugins/no-page-comment/\" target=\"_blank\" rel=\"nofollow\">Get Started with No Page Comment Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/wpdiscuz/\" target=\"_blank\" rel=\"nofollow\">16. Comments &#8211; wpDiscuz</a></h3>\n<p><a href=\"https://wordpress.org/plugins/wpdiscuz/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdiscuz.png\" alt=\"wpdiscuz-best-wordpress-comment-plugins\" width=\"740\" height=\"253\" class=\"alignnone size-full wp-image-226403\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdiscuz.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpdiscuz-300x103.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nThe wpDiscuz plugin for WordPress is another plugin that&#8217;s loaded with features to make your comment section more enjoyable for your readers. </p>\n<p>With wpDiscuz you can add an interactive comment box to posts and other content types. You also get access to notifier buttons that give you live updates of new comments. Other features include full integration with social network login plugins, a &#8220;Load More Comments&#8221; button, and more. </p>\n<p>This powerful WordPress comments plugin also claims to bring the fastest commenting experience due to it&#8217;s boosted core. </p>\n<p><a href=\"https://wordpress.org/plugins/wpdiscuz/\" target=\"_blank\" rel=\"nofollow\">Get Started with Comments &#8211; wpDiscuz Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/postmatic/\" target=\"_blank\" rel=\"nofollow\">17. Replyable</a></h3>\n<p><a href=\"https://wordpress.org/plugins/postmatic/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/replyable.png\" alt=\"replyable-best-wordpress-comment-plugins\" width=\"740\" height=\"249\" class=\"alignnone size-full wp-image-226407\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/replyable.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/replyable-300x101.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nReplyable by Postmatic is a WordPress plugin that takes comment subscription to another level. </p>\n<p>Users can sign up to get email notifications anytime someone comments on your blog posts. But with Replyable&#8217;s machine-learning, no one will get annoyed by receiving too many emails. Replyable rates comments for relevance and only sends the best to subscribers. If users want to reply to a comment all they have to do is reply to the email.</p>\n<p>The plugin is free to download but if you want premium features like the ability to reply to comments right from your inbox, it costs $2.99 per month.  </p>\n<p><a href=\"https://wordpress.org/plugins/postmatic/\" target=\"_blank\" rel=\"nofollow\">Get Started with Replyable Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/heyoya-voice-comments-reviews/\" target=\"_blank\" rel=\"nofollow\">18. Voice Comments &#038; Reviews &#8211; Heyoya</a></h3>\n<p><a href=\"https://wordpress.org/plugins/heyoya-voice-comments-reviews/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/heyoya.png\" alt=\"voice-comments-reviews-heyoya\" width=\"740\" height=\"257\" class=\"alignnone size-full wp-image-226415\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/heyoya.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/heyoya-300x104.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nVoice Comments &#038; Reviews by Heyoya is an awesome WordPress plugin that lets users leave voice comments on your posts. This fun and unique way to interact is a great way to keep users entertained and on your site for longer. </p>\n<p>You can install it by copying and pasting only 1 line of code and you can use the plugin in over 20 different languages. It also comes with Heyoya Mobile so you can record and track voice comments on the go.</p>\n<p>With voice commenting you can have more personal conversations with your readers and provide an experience they won&#8217;t get on other sites.     </p>\n<p><a href=\"https://wordpress.org/plugins/heyoya-voice-comments-reviews/\" target=\"_blank\" rel=\"nofollow\">Get Started with Voice Comments &#038; Reviews &#8211; Heyoya Today!</a></p>\n<p>We hope you enjoyed this article on the 18 best WordPress comments plugins. Now you have a bunch of great tools to increase the activity in your comment section and manage all the new comments you&#8217;ll receive. </p>\n<p>If you liked this post, check out our article on <a href=\"https://www.isitwp.com/legit-ways-to-make-money-online-blogging/\">30 ways to make money online</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-wordpress-comment-plugins/\">18 Best WordPress Comments Plugins to Boost Engagement</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://www.isitwp.com/best-wordpress-comment-plugins/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Wufoo Alternative – WPForms vs Wufoo (Which One is Better?)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 12:48:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:25:\"best contact form plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:36:\"comparison between wpforms and wufoo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:16:\"wpforms vs wufoo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.isitwp.com/?p=227294\";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:625:\"<p>Are you looking for a Wufoo alternative? If you want to add a contact form to your WordPress website, making sure you pick the contact form plugin that&#8217;s the best choice for you is important. So, if you&#8217;re curious about which is the better contact form builder, WPForms vs Wufoo, you&#8217;re in the right place. [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/\">Wufoo Alternative &#8211; WPForms vs Wufoo (Which One is Better?)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:19576:\"<p>Are you looking for a Wufoo alternative? If you want to add a contact form to your WordPress website, making sure you pick the contact form plugin that&#8217;s the best choice for you is important. So, if you&#8217;re curious about which is the better contact form builder, WPForms vs Wufoo, you&#8217;re in the right place. </p>\n<p>In this article, we&#8217;ll compare WPForms vs Wufoo so that you can determine which plugin is the best for your website. </p>\n<p>We&#8217;ll break down each contact form plugin and see how they measure up in each of the following categories:</p>\n<ul>\n<li>Ease of Use</li>\n<li>Features</li>\n<li>Support</li>\n<li>Price</li>\n</ul>\n<p>Ready to dive in to the comparison between WPForms and Wufoo? Ok, let&#8217;s get started!</p>\n<h3> Ease of Use: WPForms vs Wufoo</h3>\n<p>Being able to easily create forms with your contact form plugin of choice is important, especially for beginners. If you&#8217;re have difficulties creating a form, you&#8217;re wasting precious time and you&#8217;ll be missing out on connecting with customers and converting website visitors into leads and sales. After all, what good is a contact form plugin if you don&#8217;t even know how to use it. </p>\n<h3>Wufoo: Ease of Use</h3>\n<p><a href=\"https://www.wufoo.com/\" target=\"_blank\" rel=\"nofollow\">Wufoo</a> is an online contact form builder by SurveyMonkey that claims users can create a beautiful contact form in minutes with their drag and drop builder.  </p>\n<p>To add a form field to your contact form, you simply drag the form field from the list of choices on the left over to your contact form on the right. You can also use one of their pre-made templates to get you started. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-draganddrop.png\" alt=\"wufoo-comparison\" width=\"740\" height=\"450\" class=\"alignnone size-full wp-image-227307\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-draganddrop.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-draganddrop-300x182.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>While adding form fields to your contact form seems simple enough, the rest of the Wufoo interface looks dated and isn&#8217;t very user-friendly. The Field Settings and Form Settings are limited in what you can customize as well. </p>\n<p>Wufoo gives you the option of choosing a theme in the form builder too. But you can&#8217;t preview what each theme will look like. You have to pick a theme blindly and then hit the View Form button which will open up a new tab. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themes.png\" alt=\"wufoo-vs-wpforms-themes\" width=\"740\" height=\"390\" class=\"alignnone size-full wp-image-227311\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themes.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themes-300x158.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>When you use their Theme Designer, the interface isn&#8217;t drag and drop like they implied it was. There are also a ton of options for customization which can be overwhelming. If chosen, some of these styles can really end up hurting your brand more than helping it. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themedesigner.png\" alt=\"wufoo-vs-wpforms-drag-and-drop\" width=\"740\" height=\"469\" class=\"alignnone size-full wp-image-227309\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themedesigner.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themedesigner-300x190.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Plus, there&#8217;s another issue when you embed a form onto your site. The background, header, and border style all disappear in order to make sure the form integrates on your website perfectly. This means if you want to keep everything you&#8217;ve just designed, you&#8217;ve got to go back and apply those elements with HTML or CSS. Which can be a complicated task for beginners. </p>\n<p>So, while Wufoo claims you can create a form in no time at all, it actually takes a lot of experimenting and clicking around to create a form. </p>\n<h3>WPForms: Ease of Use</h3>\n<p>On the other hand, <a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> is the most user-friendly contact form builder available. WPForms focuses on usability and simplicity and it truly is a drag and drop contact form builder that requires no coding at all. </p>\n<p>WPForms comes with a number of pre-designed templates for any type of form that you want to create. While Wufoo offers more templates, they&#8217;re very difficult to locate in your account. But you can access all of WPForm&#8217;s templates right in the WPForms Form Editor. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-templates.png\" alt=\"wpforms vs wufoo- templates\" width=\"740\" height=\"355\" class=\"alignnone size-full wp-image-227322\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-templates.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-templates-300x144.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Adding new form fields to your contact form is super easy with WPForms. Simply drag and drop the form field you want onto your contact form. You can click on the form fields to make changes and you can see your changes in real-time on your form with the preview panel.   </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-dragdrop.png\" alt=\"wpforms-drag-and-drop-vs-wufoo\" width=\"740\" height=\"367\" class=\"alignnone size-full wp-image-227324\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-dragdrop.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-dragdrop-300x149.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Plus, WPForms offers a variety of form fields for your contact form right out of the box. For instance, some of their unique form fields include:</p>\n<ul>\n<li>File Upload</li>\n<li>Star Rating</li>\n<li>Checkboxes</li>\n<li>GDPR Agreement</li>\n<li>CAPTCHA</li>\n<li>Password</li>\n<li>Net Promoter Score</li>\n</ul>\n<p>WPForms also allows you to <a href=\"https://www.isitwp.com/legit-ways-to-make-money-online-blogging/\">make money online</a> easily with their built-in payment form fields like Single and Multiple Items, Dropdown Items, Credit Card, Total, and more so that you can accept online payments right from your WordPress website. </p>\n<p>On top of all of the awesome elements you can add to your contact form, once you&#8217;re finished designing, you can <a href=\"https://www.isitwp.com/add-contact-form-wordpress-website/\">embed your contact form on your website</a> with 1 click. </p>\n<p>So, if you want a <a href=\"https://www.isitwp.com/best-wordpress-contact-form-plugins/\">contact form plugin</a> that makes it easy to create a contact form right away and comes with a ton of extra built-in features, WPForms is the way to go. </p>\n<p><strong>Winner: WPForms</strong></p>\n<h3>Features: WPForms vs Wufoo</h3>\n<p>Not only does a contact form plugin need to be easy to use, but it should also come with all the features you need to create a powerful contact form for your website. If you choose a contact form plugin and find out you can only accomplish the basics with it, or have to fork over a bunch more money for the extra features you need, then it&#8217;s not a good choice. That&#8217;s why having a variety of features is so important.</p>\n<h3>Wufoo: Features</h3>\n<p>Compared to WPForms, Wufoo&#8217;s feature set is very limited. While Wufoo has a number of basic form fields like name, address, rating and file upload, they don&#8217;t offer as many unique form fields like WPForms does. </p>\n<p>In fact, here is a list of some of the features that Wufoo is missing compared to WPForms:</p>\n<ul>\n<li>No specialty form fields like WPForms GDPR Agreement, Net Promoter Score, and others</li>\n<li>Each Wufoo plan restricts the number of forms entries you can receive, even with the highest priced one</li>\n<li>Since Wufoo hosts your forms for you, there are upload storage limitations</li>\n<li>You can only <a href=\"https://www.isitwp.com/best-wordpress-analytics-solutions-compared/\">track your analytics</a> with the 2 most expensive plans</li>\n<li>You can only accept online payments with the 2 highest plans</li>\n<li>There are conditional logic limitations, even on paid accounts</li>\n</ul>\n<p>So, not only is it more difficult to create a form on Wufoo but they don&#8217;t offer many of the features you&#8217;ll need for your contact form as your business grows. And when the limitations outweigh the features, it&#8217;s time to consider a different contact form builder.</p>\n<h3>WPForms: Features</h3>\n<p>In comparison to the limited features of Wufoo, <a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> is bursting at the seams with built-in features. You&#8217;ll have access to every element you need to make your contact form as powerful and unique as you need it to be. </p>\n<p>The following is a list of just some of the stand-out features that WPForms offers:</p>\n<ul>\n<li><strong>Smart Conditional Logic</strong> &#8211; You can create as many conditional rules as you want</li>\n<li><strong>Unlimited Forms</strong> &#8211; You can create an unlimited number of forms and receive an unlimited number of entries, on any plan</li>\n<li><strong>Unlimited File Storage</strong> &#8211; Upload an unlimited amount of files and easily save and locate them in your media library</li>\n<li><strong>Entry Management</strong> &#8211; Manage all your entries right from the WPForms dashboard in an organized way</li>\n<li><strong>Spam Protection</strong> &#8211; Protect your forms from spam with built-in honeypot spam protection, CAPTCHA, customize your own CAPTCHA, or use Google reCAPTCHA</li>\n<li><strong>Automatic Form Confirmations</strong> &#8211; Let users know that you&#8217;ve received their entry with 3 different form confirmation types &#8211; Message, Show Page, and Redirect</li>\n<li><strong>Survey and Polls</strong> &#8211; Create surveys and polls for your site and get reports that display your results for easy analysis of data</li>\n<li><strong>Partial Form Saving</strong> &#8211; Don&#8217;t miss out on leads with the ability to capture information partial form entries</li>\n<li><strong>Geolocation Tracking</strong> &#8211; Find out where your customers are located with geolocation tracking so you can send them messages that are relevant to them and their location</li>\n<li><strong>Post Submissions</strong> &#8211; Accept guest post submissions for <a href=\"https://www.isitwp.com/how-to-start-a-blog-step-by-step/\">your WordPress blog</a> through the front-end of your website with post submissions for forms</li>\n<li><strong>Online Signature Capability</strong> &#8211; Collect signatures right on your forms for agreements and contracts</li>\n<li><strong>Form Permissions and Access Controls</strong> &#8211; You can protect your forms with passwords, schedule start and stop dates for your forms, and limit the number of entries you&#8217;ll accept</li>\n<li><strong>Email Marketing Integration</strong> &#8211; Connect your form to <a href=\"https://www.isitwp.com/best-email-marketing-services-compared/\">email marketing services</a> like Mailchimp or Constant Contact</li>\n</ul>\n<p>With the outstanding number of WPForms features you get for almost any of their plans, your options for creating high-converting forms are limitless.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3>Support: WPForms vs Wufoo</h3>\n<p>Even if you&#8217;re experienced with form builders or websites, things can go wrong sometimes and you&#8217;ll want to know that you have help any time a problem arises. When choosing a new contact form builder, you need ample support in case you run into any issues when creating your forms or managing your account. </p>\n<h3>Wufoo: Support</h3>\n<p>With Wufoo, you only have 2 ways of accessing support: You can either send them a message through their generic contact form or you can search through articles in the Help Center. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-support.png\" alt=\"wufoo vs wpforms support\" width=\"740\" height=\"365\" class=\"alignnone size-full wp-image-227325\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-support.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-support-300x148.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Wufoo gives no guarantees or assurances for when they&#8217;ll answer your message if you use their contact form for support. They could take a few hours to reply or a few days, you just don&#8217;t know.</p>\n<p>The Help Center isn&#8217;t always useful either. For example, when we typed in &#8220;not getting email notifications&#8221; into the keyword search bar, no articles came up for troubleshooting this issue. In a similar circumstance, customers would be forced to contact Wufoo via their contact form and hope for a speedy reply. </p>\n<h3>WPForms: Support</h3>\n<p>On the other hand, WPForms offers a variety of support channels for their customers. Not only does WPForms offer more support but you can rest-assured that your questions will be answered as soon as possible.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-support-2.png\" alt=\"wpforms-support\" width=\"740\" height=\"477\" class=\"alignnone size-full wp-image-227327\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-support-2.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-support-2-300x193.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>You can access the support ticket system to get your questions answered. The WPForms team lets customers know that they answer support tickets within 24 hours on weekdays. So, you won&#8217;t have to wonder when you&#8217;ll get a solution to your problem.  </p>\n<p>They also provide you with a Documentation section that includes documentation, reference materials, and tutorials in categories such as: </p>\n<ul>\n<li>Getting Started</li>\n<li>Functionality</li>\n<li>Styling</li>\n<li>Extending</li>\n<li>Addons</li>\n<li>Account Management</li>\n</ul>\n<p>WPForms also offers another amazing resource for support, their blog. You can find a ton of articles and tutorials,  with screenshots included, that will show you how to do pretty much anything with WPForms. Plus their blog gives you tips and tricks on how to create high-converting, beautiful forms. </p>\n<p>If you&#8217;re looking for more comprehensive support for a form builder, look no further than WPForms. </p>\n<p><strong>Winner: WPForms</strong></p>\n<h3>Price: WPForms vs Wufoo</h3>\n<p>The cost of the <a href=\"https://wpforms.com/\" target=\"_blank\">online form builder</a> you choose is typically one of the most important factors, especially if you&#8217;re just starting out and budget is an issue. You never want to pay too much and get too little in return, so remember to do your research to compare price vs. what you get. </p>\n<h3>Wufoo: Price</h3>\n<p>Wufoo has 5 different plans to choose from. They offer a free plan, but like we mentioned previously, you can only create 5 forms and receive 100 entries. Clearly, the free plan is not suited for any business. </p>\n<p>They offer 4 expensive premium plans, ranging from $14.08/month to $183.25/month. When billed yearly the Professional plan works out to be a whopping $349.00 (more if you pay monthly), and you&#8217;re still only allowed to receive 5000 entries. The Advanced plan costs a staggering $889/year for 25,000 entries and access to all the features they offer. And to be able to get 200,000 entries, you&#8217;ll have to fork over an astounding $2199/year. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-pricing.png\" alt=\"wufoo-pricing\" width=\"740\" height=\"313\" class=\"alignnone size-full wp-image-227332\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-pricing.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-pricing-300x127.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Wufoo also charges you if you exceed the amount of entries allowed for the month. You&#8217;ll get charged $0.05 for each entry you receive that&#8217;s over the limit, which can really put you in the red. </p>\n<p>So, with Wufoo, you&#8217;re paying a ton of money and not getting a lot to show for it. </p>\n<h3>WPForms: Price</h3>\n<p><a href=\"https://wpforms.com/pricing/\" target=\"_blank\">WPForms</a> on the other hand is much more affordable and you get a lot more bang for your buck. They offer a free version and 4 different premium plans ranging from $39.50/year for the Basic plan to $299.50/year for the Elite plan. </p>\n<p>As you can see, all of WPForm&#8217;s premium plans are far less costly than even Wufoo&#8217;s Basic plan with a ton of limitations. </p>\n<p>All of WPForms premium plans are unlimited. You can create as many different forms as you want and receive an unlimited number of form entries. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-price-1.png\" alt=\"wpforms-pricing\" width=\"742\" height=\"369\" class=\"alignnone size-full wp-image-227331\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-price-1.png 742w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-price-1-300x149.png 300w\" sizes=\"(max-width: 742px) 100vw, 742px\" /></p>\n<p>With WPForms most popular plan, Pro, you only pay $199.50/year and you get access to almost every feature they offer including email marketing service integration. But with the equivalent Wufoo plan, you&#8217;ll be paying $349.00/year.  </p>\n<p>Overall, with WPForms you&#8217;ll be paying way less for an amazing, easy-to-use tool that&#8217;s chock full with a ton of features. And with Wufoo, you&#8217;ll be paying an arm and a leg for less than half of the features that WPForms offers. </p>\n<p><strong>Winner: WPForms</strong></p>\n<h3>Conclusion: WPForms vs Wufoo: Which is Better?</h3>\n<p>While Wufoo appears to be a user-friendly contact form builder, upon closer inspection it&#8217;s much more difficult to use. Not only is there issues with the interface but Wufoo just doesn&#8217;t have a feature set to write home about. You&#8217;ll also have to take a big handful out of your wallet every month to use it and you don&#8217;t even to receive as many form entries as you want. And who wants to put a limit on the leads and sales you could be getting?</p>\n<p>WPForms is the clear winner. You want a contact form builder that&#8217;s easy-to-use and comes with a ton of features that will make your contact form even mightier. You can get all that with WPForms, and for a reasonable price too. <a href=\"https://wpforms.com/\" target=\"_blank\">Get Started with WPForms Today!</a> </p>\n<p>We hope we&#8217;ve helped you find an awesome alternative to Wufoo in WPForms. If you liked this article and want to check out more of our contact form plugins comparisons, check out our article on the <a href=\"https://www.isitwp.com/best-wordpress-contact-form-plugins/\">7 Best Contact Form Plugins Compared</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/\">Wufoo Alternative &#8211; WPForms vs Wufoo (Which One is Better?)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"How to Create a Popup Form in WordPress (Step by Step)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.isitwp.com/create-popup-form/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://www.isitwp.com/create-popup-form/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Dec 2018 12:05:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s: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:12:\"optinmonster\";s: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:5:\"popup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:20:\"wordpress optin form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.isitwp.com/?p=225603\";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:601:\"<p>Looking to create a popup form for your website? That’s a fantastic idea! Few things convert visitors to subscribers, followers, and customers than popup campaigns. That’s why, in this article, we’re going to show you how to create a popup form the easy way, step-by-step. Why Create a Popup Form? When it comes to growing [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/create-popup-form/\">How to Create a Popup Form in WordPress (Step by Step)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15043:\"<p>Looking to create a popup form for your website? That’s a fantastic idea! Few things convert visitors to subscribers, followers, and customers than popup campaigns.</p>\n<p>That’s why, in this article, we’re going to show you how to create a popup form the easy way, step-by-step.</p>\n<h3>Why Create a Popup Form?</h3>\n<p>When it comes to growing your email list, popup stays way ahead of the curve compared to any other types of optin forms. With popups, users have seen their conversions increase by as much as 600%. </p>\n<p>However, some users don&#8217;t like popups because of its intrusive nature. People hate popups when they&#8217;re being shoved into reader’s faces whenever they visit your site.</p>\n<p>This is why you need a clever popup solution like OptinMonster. <a href=\"https://optinmonster.com\" target=\"_blank\">OptinMonster</a> lets you easily create any type of optin forms, including a popup form. Best of all, you can control every aspect of your popup campaign from how and when it triggers to who it’s shown to. That way, you can grow your email list without being intrusive.  </p>\n<p><a href=\"https://optinmonster.com\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/optinmonster.jpg\" alt=\"OptinMonster\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-224558\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/optinmonster.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/optinmonster-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/optinmonster-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>And, of course, it has seamless integration with all the most popular email marketing services.</p>\n<p>There are a vast number of templates available, so you can get started immediately, without having to build your popup from scratch (though you can if you want to!). </p>\n<p>To get it, head to <a href=\"https://optinmonster.com\" target=\"_blank\">OptinMonster’s official website</a> and sign up. Don’t forget to use our special code <strong>SAVE10</strong> at checkout to get 10% off just for being an IsItWP reader!</p>\n<h3>1. Build Your Campaign</h3>\n<p>Log into your OptinMonster account. From there, you’ll be taken to your dashboard. Get started by clicking the green <strong>Create Campaign</strong> button.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Create-Campaign.png\" alt=\"Create Campaign\" width=\"775\" height=\"137\" class=\"alignnone size-full wp-image-226022\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Create-Campaign.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Create-Campaign-300x53.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Create-Campaign-768x136.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Next, you’ll be asked to choose a campaign type. Click <strong>Popup</strong> since you want to create a popup form.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Popup.png\" alt=\"Choose Popup\" width=\"480\" height=\"360\" class=\"alignnone size-full wp-image-226023\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Popup.png 480w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Popup-300x225.png 300w\" sizes=\"(max-width: 480px) 100vw, 480px\" /></p>\n<p>Select your favorite campaign template to get started. Simply hover over the design you like best and click <strong>Use Template</strong>. For this tutorial, we’re using the Balance template.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Template.png\" alt=\"Choose Template\" width=\"775\" height=\"337\" class=\"alignnone size-full wp-image-226024\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Template.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Template-300x130.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Template-768x334.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>From there, you’ll be asked to name your campaign and choose which of your websites you’d like your popup form to appear on. Once you’ve filled out the fields, click the <strong>Start Building</strong> button.</p>\n<p>Like magic, you’ll be taken to the campaign builder. You’ll see the default version of whatever template you chose. Since we chose Balance, this is what it looks like:</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Default-Campaign.png\" alt=\"Default Campaign\" width=\"748\" height=\"380\" class=\"alignnone size-full wp-image-226025\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Default-Campaign.png 748w, https://www.isitwp.com/wp-content/uploads/2018/12/Default-Campaign-300x152.png 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></p>\n<p>Now you can begin tweaking the template to make it completely your own.</p>\n<h3>2. Customize Your Campaign</h3>\n<p>Every great popup has a great picture, so we’ll start there. Click on the default image to open the Editing Image Element section on the left. Then, click <strong>Select to Replace Image</strong>.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Replace-Image.png\" alt=\"Replace Image\" width=\"775\" height=\"338\" class=\"alignnone size-full wp-image-226026\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Replace-Image.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Replace-Image-300x131.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Replace-Image-768x335.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You’ll be able to choose an image from your existing image library (if you’ve uploaded anything before), or you can choose to upload a new image from your computer.</p>\n<p>Once your image is looking fabulous, move onto the <strong>headline text</strong>. Simply click on it to select it. Once selected, an editing area will pop up on the left. Go ahead and write your own headline and fiddle with the text elements as needed. You can change the font, the size, the color, and anything else you want to make it perfect.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Headline.png\" alt=\"Edit Headline\" width=\"775\" height=\"356\" class=\"alignnone size-full wp-image-226027\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Headline.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Headline-300x138.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Headline-768x353.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Next, follow the same steps to customize the <strong>body text</strong>.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Body-Content.png\" alt=\"Edit Body Content\" width=\"775\" height=\"343\" class=\"alignnone size-full wp-image-226028\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Body-Content.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Body-Content-300x133.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Body-Content-768x340.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Don’t forget to click the green <strong>Save</strong> button in the top right. Save as often as you need to throughout the building process to make sure you retain all your changes.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Save-Campaign.png\" alt=\"Save Campaign\" width=\"775\" height=\"72\" class=\"alignnone size-full wp-image-226029\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Save-Campaign.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Save-Campaign-300x28.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Save-Campaign-768x71.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>If needed, you can also change the look and text for your <strong>email optin field</strong>. Simply click on it to edit it, the same as everything else. There will be options on the left to change the field’s text as well as the color and style of the submit button.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Email-Box.png\" alt=\"Edit Email Box\" width=\"775\" height=\"298\" class=\"alignnone size-full wp-image-226030\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Email-Box.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Email-Box-300x115.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Email-Box-768x295.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Speaking of submissions… Now it’s time to connect your email marketing service to your popup!</p>\n<h3>3. Enable Email Integration</h3>\n<p>Since most popup campaigns these days are used to gain leads and subscribers, this step is one of the most important.</p>\n<p>OptinMonster integrates with all the most popular email service providers; however, for this guide, we’ll be using MailChimp.<br />\nStart by clicking on the <strong>Integrations</strong> tab at the top of the screen, and then click <strong>Add New Integration</strong> on the left-hand side.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Add-New-Integration.png\" alt=\"Add New Integration\" width=\"775\" height=\"338\" class=\"alignnone size-full wp-image-226031\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Add-New-Integration.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Add-New-Integration-300x131.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Add-New-Integration-768x335.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Select MailChimp from the dropdown menu.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Select-EMS.png\" alt=\"Select EMS\" width=\"289\" height=\"380\" class=\"alignnone size-full wp-image-226032\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Select-EMS.png 289w, https://www.isitwp.com/wp-content/uploads/2018/12/Select-EMS-228x300.png 228w\" sizes=\"(max-width: 289px) 100vw, 289px\" /></p>\n<p>Fill out the fields for your MailChimp account label and API. You can get these from your MailChimp account. If you need help with this aspect, simply follow the documentation provided by OptinMonster.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Connect-to-MailChimp.png\" alt=\"Connect to MailChimp\" width=\"197\" height=\"380\" class=\"alignnone size-full wp-image-226033\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Connect-to-MailChimp.png 197w, https://www.isitwp.com/wp-content/uploads/2018/12/Connect-to-MailChimp-156x300.png 156w\" sizes=\"(max-width: 197px) 100vw, 197px\" /></p>\n<p>Then, click the green <strong>Connect to MailChimp</strong> button to continue.</p>\n<p>You’ll then be asked to choose which of your lists you want your form for connect to. Click the one you want.</p>\n<p>Bam! Email integration has now been completed. Onto the next step!</p>\n<h3>4. Configure the Display Rules</h3>\n<p>Click on <strong>Display Rules</strong> at the top of the page. From there, you’ll be shown a page that looks like this:</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Display-Rules.png\" alt=\"Display Rules\" width=\"775\" height=\"340\" class=\"alignnone size-full wp-image-226034\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Display-Rules.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Display-Rules-300x132.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Display-Rules-768x337.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Configure your display rules however you like. Simply click through each section and fiddle with it until you’re satisfied.</p>\n<h3>5. Hit Publish</h3>\n<p>Now, it’s time to make your campaign live! Hit the <strong>Publish</strong> tab at the top of the screen. Then, click the toggle so it turns green and says <strong>LIVE</strong>.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Publish.png\" alt=\"Publish\" width=\"775\" height=\"361\" class=\"alignnone size-full wp-image-226035\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Publish.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Publish-300x140.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Publish-768x358.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Don’t forget to hit the <strong>Save</strong> button one last time!</p>\n<p>From there, scroll down to the <strong>Platform</strong> option. Select <strong>WordPress</strong> and then follow the instructions provided.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Platform.png\" alt=\"Choose Platform\" width=\"775\" height=\"334\" class=\"alignnone size-full wp-image-226036\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Platform.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Platform-300x129.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Platform-768x331.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You’re nearly there! One step to go.</p>\n<h3>6. Make Your Popup Form Live on WordPress</h3>\n<p>Log into your WordPress dashboard. There should now be an OptinMonster tab on the left-hand side. Click on it to see a list of all your campaigns. If you don’t see the campaign you made, hit the <strong>Refresh</strong> button.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Refresh-Campaigns.png\" alt=\"Refresh Campaigns\" width=\"775\" height=\"200\" class=\"alignnone size-full wp-image-226037\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Refresh-Campaigns.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Refresh-Campaigns-300x77.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Refresh-Campaigns-768x198.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Once your campaign shows up, click the <strong>Go Live</strong> link.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Go-Live.png\" alt=\"Go Live\" width=\"775\" height=\"200\" class=\"alignnone size-full wp-image-226038\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Go-Live.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Go-Live-300x77.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Go-Live-768x198.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>That’s it! You’re done. Now, your popup form will show up on your website.</p>\n<p>We hope this tutorial helped you learn how to create a popup form for your WordPress website.</p>\n<p>If you found this guide useful, you might also like our list of the <a href=\"https://www.isitwp.com/best-wordpress-plugins-marketers/\" title=\"[Expert Pick] 18 Best WordPress Plugins for Marketers\">best plugins for marketers</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/create-popup-form/\">How to Create a Popup Form in WordPress (Step by Step)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://www.isitwp.com/create-popup-form/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Bloom Alternative: OptinMonster vs. Bloom (Compared)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://www.isitwp.com/optinmonster-vs-bloom/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://www.isitwp.com/optinmonster-vs-bloom/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Dec 2018 14:02:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"Bloom vs. OptinMonster\";s: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:27:\"how to create an optin form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:23:\"lead generation plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=226898\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:599:\"<p>Want to generate more leads, conversions, and sales from your website traffic? If so, then OptinMonster and Bloom are 2 of the most popular lead generation tools you can use. But if you’re wondering which one to choose, we’ll help you to make the right choice. In this article, we’ll compare OptinMonster vs. Bloom and [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/optinmonster-vs-bloom/\">Bloom Alternative: OptinMonster vs. Bloom (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:23842:\"<p>Want to generate more leads, conversions, and sales from your website traffic? If so, then <a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> and <a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> are 2 of the most <a href=\"https://www.isitwp.com/best-wordpress-lead-generation-plugins-compared/\">popular lead generation tools</a> you can use. But if you’re wondering which one to choose, we’ll help you to make the right choice. </p>\n<p>In this article, we’ll compare OptinMonster vs. Bloom and show you the important differences between them so you can decide which tool you should use on your site for lead generation. </p>\n<p>We’ll compare the 2 plugins based on the following 6 points:</p>\n<ol>\n<li>General Overview</li>\n<li>Campaign Types and Templates</li>\n<li>Targeting and Triggers</li>\n<li>Campaign Creation and Customization – Ease of Use</li>\n<li>Pricing – Value for Money</li>\n<li>Documentation and Support</li>\n</ol>\n<h3>1. OptinMonster vs. Bloom – General Overview</h3>\n<p><strong>What&#8217;s OptinMonster?</strong></p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-best-lead-generation-software.jpg\" alt=\"optinmonster-best-lead-generation-software\" width=\"775\" height=\"349\" class=\"alignnone size-full wp-image-226931\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-best-lead-generation-software.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-best-lead-generation-software-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-best-lead-generation-software-768x346.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p><a href=\"https://www.isitwp.com/wordpress-plugins/optinmonster/\">OptinMonster</a> is the best, most popular lead generation and conversion software available on the market. It comes with powerful features to help publishers, eCommerce sites, and agencies to grow their email lists, boost pageviews, reduce cart abandonment, and increase sales. It’s used by over 700,000 websites online today. </p>\n<p>OptinMonster is a Software as a Service (SaaS) solution that you can use on nearly every website platform including CMS platforms like WordPress, Drupal, and Magento; eCommerce platforms like Shopify and WooCommerce; and <a href=\"https://www.isitwp.com/best-website-builders-for-beginners-compared-2018/\">website builders</a> like Squarespace, Weebly, and Blogger. </p>\n<p>You can install OptinMonster on your website easily by adding a custom JavaScript code to your site’s pages. It’s even easier on WordPress with its free WordPress API plugin. </p>\n<p>OptinMonster has inbuilt integration for every major email marketing service. There’re over 30 <a href=\"https://www.isitwp.com/best-email-marketing-services-compared/\">email marketing services</a> you can connect with your OptinMonster campaigns to boost your marketing. </p>\n<p><strong>What&#8217;s Bloom?</strong></p>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/bloom-wordpress-email-optin-plugin.jpg\" alt=\"bloom-wordpress-email-optin-plugin\" width=\"775\" height=\"311\" class=\"alignnone size-full wp-image-226932\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/bloom-wordpress-email-optin-plugin.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/bloom-wordpress-email-optin-plugin-300x120.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/bloom-wordpress-email-optin-plugin-768x308.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p><a href=\"https://www.isitwp.com/wordpress-plugins/bloom/\">Bloom</a> is one of the most powerful email optin and lead generation plugins for WordPress. It was created by one of the leading WordPress theme companies, <a href=\"https://www.isitwp.com/refer/elegant-themes/\" target=\"_blank\" rel=\"nofollow\">Elegant Themes</a>; the company behind popular <a href=\"https://www.isitwp.com/wordpress-themes/divi-theme-review/\">Divi theme</a> and its power plugin Divi Builder. Elegant Themes’s themes and plugins, including Bloom, are used by over 500,000 <a href=\"https://www.isitwp.com/how-to-make-a-website-step-by-step/\">WordPress websites</a> online. </p>\n<p>Bloom brings to the table amazing features including highly effective optin types, elegant templates, targeting, and triggers to allow you to gain more subscribers. Using this plugin, you can create beautiful optin forms easily and display them in various locations on your site to grow your email list. It has integration with 16 of the best email marketing services.  </p>\n<p>Unlike OptinMonster, Bloom is exclusively a WordPress solution. It’s a plugin you’ll need to install on your WordPress site and host the plugin&#8217;s resources on your own server. Whereas OptinMonster is centrally hosted and you only link the resources with your site; meaning it tends to add less load time to your server. </p>\n<h3>2. Campaign Types and Templates</h3>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> allows you to create 6 primary optin types:</p>\n<ol>\n<li>Pop up optin</li>\n<li>Fly in optin</li>\n<li>Inline optin</li>\n<li>Below content</li>\n<li>Widget area optin</li>\n<li>Locked content optin</li>\n</ol>\n<p>As you click <strong>New Optin</strong> to get started, you’ll see a new page with these 6 option types. You should choose one to proceed.  </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-optin-form-types.jpg\" alt=\"bloom-optin-form-types\" width=\"745\" height=\"431\" class=\"alignnone size-full wp-image-219870\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-optin-form-types.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-optin-form-types-300x174.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p>Next, you can choose a template for your optin form. There’re more than 100 elegant, professional-looking pre-made templates available within Bloom. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-opt-in-form-templates.jpg\" alt=\"bloom-opt-in-form-templates\" width=\"745\" height=\"407\" class=\"alignnone size-full wp-image-219874\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-opt-in-form-templates.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-opt-in-form-templates-300x164.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p>You can choose one of the templates, customize it, and add your new email optin to your site. Bloom is a great plugin for creating email optin forms. </p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> lets you do more than just create optin forms or email signup forms. And that’s why OptinMonster uses <strong>Campaigns</strong> instead of optins. Besides generating more leads, campaigns help to increase engagement and sales directly on your site. For example, you can create campaigns with <a href=\"https://optinmonster.com/features/countdown-timer/\" target=\"_blank\">countdown timers</a> which create urgency and boost sales. </p>\n<p>With OptinMonster, you can create 5 main types of campaigns:</p>\n<ol>\n<li>Popup</li>\n<li>Fullscreen</li>\n<li>Slide-in</li>\n<li>Floating bar</li>\n<li>Inline</li>\n</ol>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-campaign-types.jpg\" alt=\"optinmonster-campaign-types\" width=\"775\" height=\"281\" class=\"alignnone size-full wp-image-226934\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-campaign-types.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-campaign-types-300x109.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-campaign-types-768x278.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>OptinMonster lets you create all the same types of optins Bloom can create and also adds 2 additional campaigns: Fullscreen campaigns and floating bar campaigns. Both of these campaigns are highly effective to grab more users attention.</p>\n<p>For example, <a href=\"https://optinmonster.com/features/fullscreen-welcome-gate/\" target=\"_blank\">fullscreen welcome mat</a> lets you grab your visitors’ attention the minute they land on your site. The fullscreen overlay helps to present a targeted offer for anything in a distraction-free way. Similarly, a <a href=\"https://optinmonster.com/features/floating-bar/\" target=\"_blank\">floating bar</a> is a highly effective campaign that lets you get users’ attention without annoying them, as it remains sticky at the top or bottom of the page. </p>\n<p>After you choose a campaign type in step 1, you can choose a template in step 2. OptinMonster features a separate collection of templates for each campaign type. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/choose-optinmonster-campaign-template.jpg\" alt=\"choose-optinmonster-campaign-template\" width=\"775\" height=\"499\" class=\"alignnone size-full wp-image-226933\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/choose-optinmonster-campaign-template.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/choose-optinmonster-campaign-template-300x193.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/choose-optinmonster-campaign-template-768x494.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>OptinMonster makes it easy with campaign-specific templates. For each campaign, it has a selection of tailor-made templates, each built for a specific purpose. Plus, the templates show a great diversity and uniqueness from each other. </p>\n<p><strong>Winner</strong>: OptinMonster. For its ability to create optin forms as well as campaigns for more conversions. The additional campaign types, Fullscreen Welcome Map and Floating Bar, also prove OptinMonster a winner. Regarding templates, Bloom’s large collection of templates certainly gives users plenty of design options; however, keeping them all in an unsorted bundle makes it hard for users to pick one with ease. </p>\n<h3>3. Targeting and Triggers</h3>\n<p>Targeting features and triggers are very important for optin campaigns. Now, let’s see OptinMonster vs. Bloom based on their features for targeting and triggers. </p>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> features powerful display settings to allow you configure where and when your option appears. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-settings.jpg\" alt=\"bloom-display-settings\" width=\"745\" height=\"407\" class=\"alignnone size-full wp-image-219877\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-settings.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-settings-300x164.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p>It allows to use 6 types of triggers for automatic popups and fly-in optins: </p>\n<ol>\n<li>Timed delay – optin triggers after a specific duration of time a user is on your site</li>\n<li>Bottom of post – optin appears when a user reaches the bottom of a post</li>\n<li>After scrolling – displays optin after a user scrolls a defined percentage of the way down your page</li>\n<li>After commenting – shows optin once a user comments on a post/ page</li>\n<li>After purchasing – optin appears right after a user completes the checkout process</li>\n<li>After inactivity – displays a popup or fly in optin if it detects a user is inactive on a page for long time</li>\n</ol>\n<p>With Bloom, you can choose specific locations to display your optins. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/bloom-targeting.png\" alt=\"bloom-targeting\" width=\"177\" height=\"330\" class=\"alignnone size-full wp-image-226936\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/bloom-targeting.png 177w, https://www.isitwp.com/wp-content/uploads/2018/12/bloom-targeting-161x300.png 161w\" sizes=\"(max-width: 177px) 100vw, 177px\" /></p>\n<p>Then, you can also refine optin targeting by defining particular pages and posts to display and not to display optin forms.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-specific-post-options.jpg\" alt=\"bloom-display-specific-post-options\" width=\"745\" height=\"407\" class=\"alignnone size-full wp-image-219878\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-specific-post-options.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-specific-post-options-300x164.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> has much more powerful display rules than Bloom offers. You can add all the triggers Bloom allows you to use and a whole lot more. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-display-rules.jpg\" alt=\"optinmonster-display-rules\" width=\"775\" height=\"657\" class=\"alignnone size-full wp-image-226937\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-display-rules.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-display-rules-300x254.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-display-rules-768x651.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You can actually set up advanced targeting rules with OptinMonster. Here’re just a few of them: </p>\n<ul>\n<li><a href=\"https://optinmonster.com/features/geo-location-targeting/\" target=\"_blank\">Geo-location targeting</a> &#8211; You can show relevant campaigns based on your users’ locations. It’s great for retail stores and location-specific offers.</li>\n<li><a href=\"https://optinmonster.com/features/onsite-retargeting/\" target=\"_blank\">OnSite Retargeting</a> &#8211; It lets you target your repeat visitors with new campaigns based on their previous interactions on your site.</li>\n<li><a href=\"https://optinmonster.com/features/device-based-targeting/\" target=\"_blank\">Device-Based Targeting</a> &#8211; Lets you create campaigns for phones, tablets, and desktops. This enhances user-experience as well as site engagement.</li>\n<li><a href=\"https://optinmonster.com/features/adblock-detection/\" target=\"_blank\">AdBlock Detection</a> &#8211; You can display specific campaigns for visitors using AdBlock software.</li>\n</ol>\n<p>These advanced targeting features are available exclusively on OptinMonster. Similarly, it has powerful triggers.  </p>\n<p>One of the most powerful OptinMonster triggers is <a href=\"https://optinmonster.com/features/exit-intent/\" target=\"_blank\">Exit Intent Technology</a>, which is its signature feature. This smart technology helps to convert abandoning visitors into subscribers and customers. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2016/01/exitintent-optinmonster.gif\" alt=\"Exit Intent technology in OptinMonster\" width=\"900\" height=\"400\" class=\"alignnone size-full wp-image-546\" /></p>\n<p>Exit Intent Technology detects user behavior and prompts them with a targeted campaign at the precise moment they’re about to exit your page. It’s great for reducing your shopping cart abandonment rate and for various content marketing campaigns. </p>\n<p><strong>Winner:</strong> OptinMonster. For its advanced targeting options and triggers like OnSite Retargeting, Geo-Location Targeting, Exit-Intent Technology, etc.</p>\n<h3>4. Campaign Creation and Customization – Ease of Use</h3>\n<p>With both Bloom and OptinMonster, campaign creation starts with the selection of a campaign type and a template. Once you’ve selected a template, you can customize the template, set triggers, and publish. </p>\n<p>With <a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a>, you can configure your optin form content, layout, styling, and everything you want to change. There’re a number of design options available for forms, image orientations, optin borders and edges, and limitless colors. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-design-options.jpg\" alt=\"bloom-design-options\" width=\"745\" height=\"407\" class=\"alignnone size-full wp-image-219875\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-design-options.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-design-options-300x164.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p>However, its optin editor interface looks old-fashioned in the age of visual page builders. You’ll need to click the <strong>Preview</strong> button to see any changes you made. </p>\n<p>In contrast, <a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> provides a true visual editor for editing your campaigns. Once you’ve selected a template, you’ll see your campaign editor and see the changes you make live as you edit. You don’t need to click any preview buttons. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2016/01/drag-and-drop-countdown-timer.gif\" alt=\"\" width=\"800\" height=\"524\" class=\"alignnone size-full wp-image-221003\" /></p>\n<p>Editing your campaign elements is very easy as you can click directly on any part of your campaign you want to change and start editing with the tools that appear on the left-hand screen. </p>\n<p><strong>Winner:</strong> OptinMonster. For its simple and user-friendly visual editing interface.</p>\n<h3>5.Pricing – Value for Money</h3>\n<p>Both Bloom and OptinMonster are paid solutions, yet you may want to know which offers the best value for your money. So, here’s a head-to-head Bloom vs. OptinMonster pricing comparison. </p>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> has 2 pricing plans: Yearly Access and Lifetime Access. </p>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/elegant-themes-pricing.jpg\" alt=\"elegant-themes-pricing\" width=\"775\" height=\"346\" class=\"alignnone size-full wp-image-226938\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/elegant-themes-pricing.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/elegant-themes-pricing-300x134.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/elegant-themes-pricing-768x343.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Yearly Access costs $89 per year, whereas the Lifetime Access costs $249. Both plans provide you with access to all the themes and plugins released by Elegant Themes and you can use them on unlimited sites. </p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> features 4 main pricing plans: Basic, Plus, Pro, and Growth. </p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-pricing.jpg\" alt=\"optinmonster-pricing\" width=\"775\" height=\"506\" class=\"alignnone size-full wp-image-226939\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-pricing.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-pricing-300x196.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-pricing-768x501.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>OptinMonster pricing plans are based on the number of sites, the number of campaigns, campaign targeting and triggers, reporting features, and more. </p>\n<p>The <strong>Basic</strong> plan includes essential tools to get more subscribers from your existing site traffic. With this plan, you can use OptinMonster on 1 website and you can create up to 3 campaigns.  It costs $9 per month when billed annually. </p>\n<p>The <strong>Plus</strong> plan allows you 3 website licenses and unlimited campaigns. With this plan, you can use powerful targeting and triggers like MonsterLinks, Exit Intent Technology, etc. It costs $19 per month when billed annually. </p>\n<p>The most popular OptinMonster plan is <strong>Pro</strong>. This plan allows you to add campaigns on 5 websites. You can remove <strong>Powered by OptinMonster</strong> branding with this plan. It includes the most powerful OptinMonster features. It costs $29 per month when billed annually. </p>\n<p><strong>Growth</strong> is the most expensive plan and costs $49 per month when billed annually. With this plan, you can use OptinMonster on 10 websites and you’ll get premium support. </p>\n<p>The pricing plans for Bloom and OptinMonster seem incomparable as they&#8217;re based on such different factors. The Bloom plugin, with any plan, seems to be a good deal as it comes bundled with all of their themes and plugins. If you want to use them, it’s a fair plan; yet you’ll miss the advanced features that OptinMonster provides. </p>\n<p>OptinMonster’s pricing plans seem quite high; however, its powerful features make it well worth the money. If you choose Bloom, you can’t use highly effective Exit Intent Technology, Geo-Location Targeting, OnSite Retargeting, features. </p>\n<p><strong>Winner:</strong> Tie. </p>\n<h3>6. Documentation and Support</h3>\n<p>Elegant Themes has a rich documentation guide for <a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> users. There’re 3 getting started articles and more articles on creating optins using Bloom. These tutorials are simple and comprehensive. </p>\n<p>If you need further support, you can contact their support team via chat or email. You’ll also have access to the Elegant Themes&#8217; support forum where you can post your questions. </p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> features an even bigger documentation collection with more than 200 articles. These articles help you to work easily with OptinMonster. </p>\n<p>If you need technical support, you can log into your OptinMonster member area and email the support team. The queries are responded to within 24 hours. OptinMonster members can also get support via live chat. </p>\n<p><strong>Winner:</strong> Tie. </p>\n<h3>Conclusion</h3>\n<p>OptinMonster is, without question, the best lead generation and conversion optimization software. Its advanced campaign types, targeting options, and triggers make it the far superior lead generation tool for WordPress as well as other website platforms. </p>\n<p>Bloom is also a powerful lead generation tool you can use exclusively for WordPress. It’s great for creating email optin forms. However, if you want more features, like cart abandonment reduction, geo-location targeting, etc., you&#8217;ll need to choose the Bloom alternative: OptinMonster. </p>\n<p>Hence, <a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> is the perfect choice for publishers, eCommerce sites, and businesses who want to grow their email lists and boost their conversions and sales. However, you can consider <a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> if you just need a basic lead generation tool, or if you already have your eye on other plugins or themes by Elegant Themes that would make their bundled pricing offer worth it to you. </p>\n<p>We hope this article helped you to decide between OptinMonster or Bloom for your site. You may also want to read our head-to-head comparison between <a href=\"https://www.isitwp.com/shopify-vs-woocommerce/\">Shopify vs. WooCommerce</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/optinmonster-vs-bloom/\">Bloom Alternative: OptinMonster vs. Bloom (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://www.isitwp.com/optinmonster-vs-bloom/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"10 Best WordPress Table Plugins to Organize Data (Compared)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://www.isitwp.com/10-best-wordpress-table-plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://www.isitwp.com/10-best-wordpress-table-plugins/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Dec 2018 12:46: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:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"table\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"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:32:\"https://www.isitwp.com/?p=225618\";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:616:\"<p>Do you want to create an Excel-style table on your WordPress website? With tables, you can compare features for different products easily. It is a great way to create easy-to-read lists of your products with multiple columns and rows. In this article, we have handpicked some of the best WordPress table plugins that you can [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/10-best-wordpress-table-plugins/\">10 Best WordPress Table Plugins to Organize Data (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15776:\"<p>Do you want to create an Excel-style table on your WordPress website? With tables, you can compare features for different products easily. It is a great way to create easy-to-read lists of your products with multiple columns and rows.</p>\n<p>In this article, we have handpicked some of the best WordPress table plugins that you can use to create tables on your website. In fact, we used a table plugin (TablePress) to create a table of our own, to showcase the first 5 plugins on our list! Check it out below.</p>\n<h3>At a Glance: Best WordPress Table Plugins</h3>\n\n<table id=\"tablepress-10\" class=\"tablepress tablepress-id-10\">\n<thead>\n<tr class=\"row-1 odd\">\n	<th class=\"column-1\">Plugin</th><th class=\"column-2\">Price</th><th class=\"column-3\">Active Installs / Sales</th>\n</tr>\n</thead>\n<tbody class=\"row-hover\">\n<tr class=\"row-2 even\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/ninja-tables-pro-addon/\" target=\"_blank\" title=\"Ninja Tables\" rel=\"nofollow\">Ninja Tables</a></td><td class=\"column-2\">from $39</td><td class=\"column-3\">10,000+</td>\n</tr>\n<tr class=\"row-3 odd\">\n	<td class=\"column-1\"><a href=\"https://wordpress.org/plugins/tablepress/\" target=\"_blank\" title=\"TablePress\" rel=\"nofollow\">TablePress</a></td><td class=\"column-2\">Free</td><td class=\"column-3\">700,000+</td>\n</tr>\n<tr class=\"row-4 even\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/css3-responsive-tables/\" target=\"_blank\" title=\"CSS3 Responsive Tables\" rel=\"nofollow\">CSS3 Responsive Tables</a></td><td class=\"column-2\">from $20 / year</td><td class=\"column-3\">10,000+</td>\n</tr>\n<tr class=\"row-5 odd\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/advanced-tables/\" target=\"_blank\" title=\"Advanced Tables\" rel=\"nofollow\">Advanced Tables</a></td><td class=\"column-2\">from $21 / year</td><td class=\"column-3\">500+</td>\n</tr>\n<tr class=\"row-6 even\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/arprice/\" target=\"_blank\" title=\"ARPrice\" rel=\"nofollow\">ARPrice</a></td><td class=\"column-2\">from $23 / year</td><td class=\"column-3\">3000+</td>\n</tr>\n</tbody>\n</table>\n<!-- #tablepress-10 from cache -->\n<h3>How to Choose the Best WordPress Table Plugin?</h3>\n<p>There&#8217;re many free and premium WordPress table plugins on the market. It can be confusing for beginners to select the best Excel-style table plugin for their WordPress website simply because they get overwhelmed with the amount of options. </p>\n<p>The easiest way to cut through the confusion and evaluate your <a href=\"https://www.isitwp.com/top-wordpress-plugins/\">WordPress plugin</a> needs, is to compare your requirements with the features of the available plugins.</p>\n<p>Table plugins have features like <a href=\"https://www.isitwp.com/best-wordpress-page-builders-compared/\" title=\"7 Best Drag and Drop WordPress Page Builders Compared (2018)\">drag and drop builders</a>, filters, sorting, pagination, responsive design, styling options, media support, and import/export functionalities.</p>\n<p>To make this task even easier for you, we&#8217;ve listed the top WordPress table plugins in this article. You can quickly go through each plugin and its features to decide which is the best table plugin for your WordPress website.</p>\n<p>That said, let&#8217;s take a look at the best WordPress table plugins you can try.</p>\n<h3><a href=\"https://www.isitwp.com/refer/ninja-tables-pro-addon/\" target=\"_blank\" title=\"Ninja Tables\" rel=\"nofollow\">1. Ninja Tables</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/ninja-tables-pro-addon/\" target=\"_blank\" title=\"Ninja Tables\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninjatables.jpg\" alt=\"Ninja Tables\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225723\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninjatables.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/ninjatables-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/ninjatables-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Ninja Tables is a premium WordPress table plugin. It comes with a drag and drop table builder that you can use quickly rearrange columns and rows. It also has media support, so you can add images and other data in your tables.</p>\n<p>The plugin has color options for columns and rows. You can add custom styles to your tables and enhance the user experience. Ninja Tables allows you to create fully responsive tables that look great on all screen sizes.</p>\n<h3><a href=\"https://wordpress.org/plugins/tablepress/\" target=\"_blank\" title=\"TablePress\" rel=\"nofollow\">2. TablePress</a></h3>\n<p><a href=\"https://wordpress.org/plugins/tablepress/\" target=\"_blank\" title=\"TablePress\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/tablepressplugin.jpg\" alt=\"TablePress\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225728\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/tablepressplugin.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/tablepressplugin-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/tablepressplugin-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>TablePress is the most popular free WordPress table plugin on the market. It allows you to create simple, beautiful tables easily. It has a spreadsheet-like interface in the backend that helps you add data without writing a single line of code.</p>\n<p>You can add the tables into your pages, posts, and widget areas using shortcodes. TablePress supports filters, pagination, and sorting. It enables you to import/export tables from Excel, CSV, HTML, and JSON files. For an example of TablePress in action, scroll up and look at the table on this article!</p>\n<h3><a href=\"https://www.isitwp.com/refer/css3-responsive-tables/\" target=\"_blank\" title=\"CSS3 Responsive Tables\" rel=\"nofollow\">3. CSS3 Responsive Tables</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/css3-responsive-tables/\" target=\"_blank\" title=\"CSS3 Responsive Tables\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/cssresponsivetables.jpg\" alt=\"CSS3 Responsive Tables\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225725\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/cssresponsivetables.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/cssresponsivetables-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/cssresponsivetables-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>CSS3 Responsive Tables is a responsive WordPress table plugin. It can be used to create tables and compare prices for different products. You can add unlimited rows and columns with tons of options for the tables.</p>\n<p>It comes with over 20 color choices, 2 table styles, active columns, hover color styles, and more. The plugin supports icons, tooltips, and ribbons. It also enables you to import/export data to other file formats easily.</p>\n<h3><a href=\"https://www.isitwp.com/refer/advanced-tables/\" target=\"_blank\" title=\"Advanced Tables\" rel=\"nofollow\">4. Advanced Tables</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/advanced-tables/\" target=\"_blank\" title=\"Advanced Tables\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/advancedtables.jpg\" alt=\"Advanced Tables\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225722\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/advancedtables.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/advancedtables-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/advancedtables-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Advanced Tables is another premium table plugin for WordPress. It allows you to create simple, Excel-style tables easily. With a shortcode, you can display your table in your WordPress posts or pages. It has media support which means you can insert images into the columns and rows of your tables.</p>\n<p>Plus, you can add a sticky header that floats along with the table. It supports sorting, pagination, and custom styles for your WordPress tables.</p>\n<h3><a href=\"https://www.isitwp.com/refer/arprice/\" target=\"_blank\" title=\"ARPrice\" rel=\"nofollow\">5. ARPrice</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/arprice/\" target=\"_blank\" title=\"ARPrice\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/arprice.jpg\" alt=\"ARPrice\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225726\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/arprice.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/arprice-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/arprice-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>As the name suggests, ARPrice is a pricing table plugin for WordPress. It comes with over 300 pricing table templates to make your work easy when creating pricing plans and comparison tables.</p>\n<p>It has a real-time editor. You can simply select a theme, drag and drop tools, change colors, and customize the table as needed. It also allows you to add images and ribbons to your WordPress tables.</p>\n<h3><a href=\"https://wordpress.org/plugins/table-maker/\" target=\"_blank\" title=\"Table Maker\" rel=\"nofollow\">6. Table Maker</a></h3>\n<p><a href=\"https://wordpress.org/plugins/table-maker/\" target=\"_blank\" title=\"Table Maker\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/tablemaker.jpg\" alt=\"Table Maker\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225727\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/tablemaker.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/tablemaker-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/tablemaker-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Table Maker is a free, responsive WordPress table plugin. It enables you to create comparison tables, specification tables, and top list tables on your WordPress website easily. It has predefined icons, custom headers, sub-headers, and color choices.</p>\n<p>It supports labeling for columns and rows. It features center align and image uploading options. You can use shortcodes to display tables anywhere on your <a href=\"https://www.isitwp.com/how-to-make-a-website-step-by-step/\">WordPress website</a>.</p>\n<h3><a href=\"https://www.isitwp.com/refer/league-table/\" target=\"_blank\" title=\"League Table\" rel=\"nofollow\">7. League Table</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/league-table/\" target=\"_blank\" title=\"League Table\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/leaguetable.jpg\" alt=\"League Table\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225724\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/leaguetable.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/leaguetable-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/leaguetable-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>League Table is a powerful premium WordPress table plugin. It comes with 105 options per table, 17 options per cell, and 13 general options. It has an advanced multi-column sorting system that you can use to create any type of table.</p>\n<p>It has a spreadsheet-like editor which allows you to input data and manage your tables easily. You can highlight any cell property with colors. The most unique feature of this plugin is its support for typographical styles and mathematical formulas.</p>\n<h3><a href=\"https://wordpress.org/plugins/ultimate-tables/\" target=\"_blank\" title=\"Ultimate Tables\" rel=\"nofollow\">8. Ultimate Tables</a></h3>\n<p><a href=\"https://wordpress.org/plugins/ultimate-tables/\" target=\"_blank\" title=\"Ultimate Tables\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/ultimatetables.jpg\" alt=\"Ultimate Tables\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225719\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/ultimatetables.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/ultimatetables-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/ultimatetables-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Ultimate Tables is another free WordPress table plugin. It allows you to create and manage tables easily from your WordPress admin area. It has a widget that you can use to display tables in your sidebar, footer, and other widgetized areas of your website.</p>\n<p>It allows you to add HTML, CSS, and text in the table cells. Ultimate Tables has support for pagination, shortcode, search box, and custom designs.</p>\n<h3><a href=\"https://wordpress.org/plugins/wpdatatables/\" target=\"_blank\" title=\"WP Data Tables\" rel=\"nofollow\">9. wpDataTables</a></h3>\n<p><a href=\"https://wordpress.org/plugins/wpdatatables/\" target=\"_blank\" title=\"WP Data Tables\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdatatables.jpg\" alt=\"wpDataTables\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225720\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdatatables.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/wpdatatables-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/wpdatatables-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>wpDataTables is one of the most popular free WordPress table plugins. It allows you to upload Excel, CSV, JSON, and XML files to create tables in WordPress quickly.</p>\n<p>It has custom options to change colors, rename headings, reorder data, and add CSS to style your tables. The plugin allows you to add up to 150 rows in total.</p>\n<h3><a href=\"https://wordpress.org/plugins/data-tables-generator-by-supsystic/\" target=\"_blank\" title=\"Data Tables Generator\" rel=\"nofollow\">10. Data Tables Generator</a></h3>\n<p><a href=\"https://wordpress.org/plugins/data-tables-generator-by-supsystic/\" target=\"_blank\" title=\"Data Tables Generator\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/datatablegenerator.jpg\" alt=\"Data Table Generator\" width=\"775\" height=\"339\" class=\"alignnone size-full wp-image-225721\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/datatablegenerator.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/datatablegenerator-300x131.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/datatablegenerator-768x336.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Data Tables Generator is a popular table plugin for WordPress. It allows you to create beautiful, responsive tables from your WordPress dashboard without writing any code. It supports diagrams, graphics, and charts. You can create diagrams from the data in your table.</p>\n<p>It enables you to customize the colors for columns and rows. You can allow your users to export data from your frontend into PDF, Excel, and CSV files. It also supports mathematical formulas.</p>\n<p>We hope this list helped you find the best WordPress table plugin for your needs. If you found this post useful, you may also want to check out our list of the <a href=\"https://www.isitwp.com/best-wordpress-calendar-plugins/\" title=\"7 Best WordPress Calendar Plugins (Google Calendar Sync)\">best WordPress calendar plugins (Google calendar sync)</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/10-best-wordpress-table-plugins/\">10 Best WordPress Table Plugins to Organize Data (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://www.isitwp.com/10-best-wordpress-table-plugins/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"21 Best WordPress Themes for Podcasting (Compared)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.isitwp.com/best-wordpress-themes-podcasting/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://www.isitwp.com/best-wordpress-themes-podcasting/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Dec 2018 12:10:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Resources\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"premium 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:\"\";}i:2;a:5:{s:4:\"data\";s:20:\"wordpress podcasting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:27:\"wordpress responsive themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=225606\";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:625:\"<p>If you’re looking for the best WordPress themes for podcasting, you’ve landed on the right post. We know exactly what a successful podcaster’s website needs. From eye-catching design to embedded audio feeds, the right theme can make all the difference. That’s why we’re going to share our picks for the 21 best WordPress themes for [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-wordpress-themes-podcasting/\">21 Best WordPress Themes for Podcasting (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:31099:\"<p>If you’re looking for the best WordPress themes for podcasting, you’ve landed on the right post. We know exactly what a successful podcaster’s website needs. From eye-catching design to embedded audio feeds, the right theme can make all the difference.</p>\n<p>That’s why we’re going to share our picks for the 21 best WordPress themes for podcasting.</p>\n<h2 class=\"tablepress-table-name tablepress-table-name-id-11\">Quick Look: Top 5 Best Themes for Podcasting</h2>\n\n<table id=\"tablepress-11\" class=\"tablepress tablepress-id-11\">\n<thead>\n<tr class=\"row-1 odd\">\n	<th class=\"column-1\">Theme</th><th class=\"column-2\">Price</th><th class=\"column-3\">Unique Feature</th><th class=\"column-4\">Released By</th>\n</tr>\n</thead>\n<tbody class=\"row-hover\">\n<tr class=\"row-2 even\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/artisanthemes-pepperplus/\" target=\"_blank\" title=\"Pepper+\" rel=\"nofollow\">1. Pepper+</a></td><td class=\"column-2\">$129</td><td class=\"column-3\">Grid layouts and modules.</td><td class=\"column-4\">Artisan Themes</td>\n</tr>\n<tr class=\"row-3 odd\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/themify-music/\" target=\"_blank\" title=\"Music\" rel=\"nofollow\">2. Music</a></td><td class=\"column-2\">$49</td><td class=\"column-3\">You can embed a music player.</td><td class=\"column-4\">Themify</td>\n</tr>\n<tr class=\"row-4 even\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/podcaster/\" target=\"_blank\" title=\"Podcaster\" rel=\"nofollow\">3. Podcaster</a></td><td class=\"column-2\">$49</td><td class=\"column-3\">Unlimited episode archive pages.</td><td class=\"column-4\">Themestation</td>\n</tr>\n<tr class=\"row-5 odd\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/studiopress-monochrome/\" target=\"_blank\" title=\"Monochrome\" rel=\"nofollow\">4. Monochrome</a></td><td class=\"column-2\">$129.95</td><td class=\"column-3\">Uses the Genesis framework.</td><td class=\"column-4\">StudioPress</td>\n</tr>\n<tr class=\"row-6 even\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/castilo/\" target=\"_blank\" title=\"Castilo\" rel=\"nofollow\">5. Castilo</a></td><td class=\"column-2\">$45</td><td class=\"column-3\">Speedy and developer-friendly.</td><td class=\"column-4\">liviu_cerchez </td>\n</tr>\n</tbody>\n</table>\n<!-- #tablepress-11 from cache -->\n<h3><a href=\"https://www.isitwp.com/refer/artisanthemes-pepperplus/\" target=\"_blank\" rel=\"nofollow\">1. Pepper+</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/artisanthemes-pepperplus/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/pepperplus.jpg\" alt=\"pepperplus\" width=\"695\" height=\"350\" class=\"alignnone size-full wp-image-225771\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/pepperplus.jpg 695w, https://www.isitwp.com/wp-content/uploads/2018/12/pepperplus-300x151.jpg 300w\" sizes=\"(max-width: 695px) 100vw, 695px\" /></a></p>\n<p>Pepper+ is an easy to use <a href=\"https://www.isitwp.com/best-responsive-wordpress-themes/\" title=\"50+ Best Responsive WordPress Themes to Create a Mobile-Ready Site\">responsive theme</a> designed for those who&#8217;re interested in building a website, regardless of their experience. There&#8217;re both pro and newbie tools available out of the box to help you design a clean, elegant site for podcasting. </p>\n<p>Many of the features allow you to flesh out your page without digging into the code. Simple drag and drop modules let you set up a live podcast along with the ability to add the podcast from the previous week on the same page. </p>\n<p>Combine those features with their ad-friendly interface and unlimited sidebar menu and it’s easy to see why Pepper+ is our top theme for podcast websites.</p>\n<p><a href=\"https://www.isitwp.com/refer/artisanthemes-pepperplus/\" target=\"_blank\" rel=\"nofollow\">Get Started with Pepper+ Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/themify-music/\" target=\"_blank\" rel=\"nofollow\">2. Music</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/themify-music/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/music.jpg\" alt=\"music\" width=\"775\" height=\"242\" class=\"alignnone size-full wp-image-225773\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/music.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/music-300x94.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/music-768x240.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>The name, Music, accurately sums up the focus of this WordPress theme. It works well for all forms of artists, writers, musicians, and podcast hosts. </p>\n<p>You can build a single page parallax website, or a multipage platform depending on the size and scope of your business plan. If you want to feature old podcasts you can do so with ease as this theme comes out of the box with a music player that lets you upload custom tracks for your viewers. </p>\n<p>Music also comes with pre-designed templates and artist pages to make your building experience fluent and easy. Save time and develop a professional looking page in no time. </p>\n<p><a href=\"https://www.isitwp.com/refer/themify-music/\" target=\"_blank\" rel=\"nofollow\">Get Started with Music Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/podcaster/\" target=\"_blank\" rel=\"nofollow\">3. Podcaster</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/podcaster/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/podcaster.png\" alt=\"podcaster\" width=\"775\" height=\"289\" class=\"alignnone size-full wp-image-225775\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/podcaster.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/podcaster-300x112.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/podcaster-768x286.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Podcaster comes with its own audio and video players; however, you can also use oEmbed. </p>\n<p>Choose between light or dark versions of the theme&#8217;s design, and customize the header with the images of your choice. It also features a nifty parallax scrolling feature for your home page.</p>\n<p>It&#8217;s optimized to work with BluBrry PowerPress and Seriously Simple Podcasting.</p>\n<p><a href=\"https://www.isitwp.com/refer/podcaster/\" target=\"_blank\" rel=\"nofollow\">Get Started with Podcaster Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/studiopress-monochrome/\" target=\"_blank\" rel=\"nofollow\">4. Monochrome</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/studiopress-monochrome/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/monochrome.jpg\" alt=\"monochrome\" width=\"775\" height=\"250\" class=\"alignnone size-full wp-image-225777\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/monochrome.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/monochrome-300x97.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/monochrome-768x248.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Monochrome is a premium WordPress theme for people who want to build their website from the ground up with a suite of amazing tools. It starts with the general theme and text of your site. You can add new text, change colors and fonts, adjust headers, and more; all while watching it change in real time. </p>\n<p>You can then use the deluxe toolkit to add in modules for your podcast as you record it live, or even set up pages for backdated podcasts for listeners who may have missed a show. </p>\n<p>Top all that off with fluent mobile and tablet responsiveness and the ability to translate your text, it’s easy to see why podcasters can’t get enough of the Monochrome theme. </p>\n<p><a href=\"https://www.isitwp.com/refer/studiopress-monochrome/\" target=\"_blank\" rel=\"nofollow\">Get Started with Monochrome Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/castilo/\" target=\"_blank\" rel=\"nofollow\">5. Castilo</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/castilo/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/castilo.jpg\" alt=\"castilo\" width=\"740\" height=\"442\" class=\"alignnone size-full wp-image-227463\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/castilo.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/castilo-300x179.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a></p>\n<p>The media-rich header area is the crown jewel of the Castilo theme. With the right image or video, you can create a truly eye-catching website that visitors won&#8217;t be able to click away from.</p>\n<p>We also really appreciate the statistics feature in the backend. Get reports on your total listeners, listening sources, total listens, and more!</p>\n<p><a href=\"https://www.isitwp.com/refer/castilo/\" target=\"_blank\" rel=\"nofollow\">Get Started with Castilo Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/artisanthemes-nayma/\" target=\"_blank\" rel=\"nofollow\">6. Nayma</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/artisanthemes-nayma/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/nayma.jpg\" alt=\"nayma\" width=\"775\" height=\"243\" class=\"alignnone size-full wp-image-225780\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/nayma.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/nayma-300x94.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/nayma-768x241.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>If you have an idea that you want to translate to a website, Nayma is the superior choice for new designers. The theme comes out of the box with their Artisan collection of pre-loaded templates. You can pick the one that’s closest to what you want to build, install it with 1 click, and edit it to your liking. </p>\n<p>You can also design your podcasting site from scratch with a whole host of designer tools that don’t take years of coding experience. Build your pages using serious power with minimum effort and learning curve. The easy-to-use modules make placing, designing, and publishing your new website a breeze. </p>\n<p><a href=\"https://www.isitwp.com/refer/artisanthemes-nayma/\" target=\"_blank\" rel=\"nofollow\">Get Started with Nayma Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/themify-elegant/\" target=\"_blank\" rel=\"nofollow\">7. Elegant</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/themify-elegant/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/elegant.jpg\" alt=\"elegant\" width=\"748\" height=\"276\" class=\"alignnone size-full wp-image-225781\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/elegant.jpg 748w, https://www.isitwp.com/wp-content/uploads/2018/12/elegant-300x111.jpg 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></a></p>\n<p>Elegant is the name of the theme and the way your site is going to look when you’re done installing and tweaking it. The theme removes all of the cumbersome animations and graphical effects and instead focuses purely on content. </p>\n<p>If you want to build a podcast website without frills, this is a good choice, regardless of your skill level. You can quickly put together a website that works on desktops, smartphones, and tablets. You can also tweak it in real time and make sure you’re making the changes you’re intending to make, which saves you even more time. </p>\n<p><a href=\"https://www.isitwp.com/refer/themify-elegant/\" target=\"_blank\" rel=\"nofollow\">Get Started with Elegant Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/themify-ultra/\" target=\"_blank\" rel=\"nofollow\">8. Ultra</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/themify-ultra/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Ultra.png\" alt=\"Ultra\" width=\"775\" height=\"272\" class=\"alignnone size-full wp-image-225787\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Ultra.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Ultra-300x105.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Ultra-768x270.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Ultra is made by the creators of Elegant, Themify, but they beefed up Ultra for those who&#8217;re looking for a little more from their WordPress theme. This premium theme comes with a whopping 40+ pre-made designs that you can customize on your own. </p>\n<p>It seamlessly blends with your existing plugins and comes with 12 additional plugins out of the box that can help you develop a podcast website plus. You can add a detailed blog, image gallery past podcasts, and much more with Ultra. </p>\n<p><a href=\"https://www.isitwp.com/refer/themify-ultra/\" target=\"_blank\" rel=\"nofollow\">Get Started with Ultra Today!</a></p>\n<h3><a href=\"https://wordpress.org/themes/tracks/\" target=\"_blank\" rel=\"nofollow\">9. Tracks</a></h3>\n<p><a href=\"https://wordpress.org/themes/tracks/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/tracks.jpg\" alt=\"tracks\" width=\"775\" height=\"233\" class=\"alignnone size-full wp-image-225789\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/tracks.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/tracks-300x90.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/tracks-768x231.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>If you’re looking for a dark, simple, and intuitive <a href=\"https://www.isitwp.com/best-free-wordpress-blog-themes/\" title=\"62 Best Free WordPress Blog Themes (2018)\">free WordPress theme</a> for your brand website, Tracks can help you create the perfect site. The tools provided allow you to create whatever kind of site you want, allowing you to edit from header to footer, and everywhere in-between. </p>\n<p>Use a preset layout, or create your own in minutes with Tracks <a href=\"https://www.isitwp.com/best-wordpress-page-builders-compared/\" title=\"7 Best Drag and Drop WordPress Page Builders Compared (2018)\">drag and drop builder</a> that lets you set things up the way you want them to look. Create a custom search bar and incorporate other plugins you may have been previously using to bring together your past work and make your future podcasts available to a wider audience. </p>\n<p><a href=\"https://wordpress.org/themes/tracks/\" target=\"_blank\" rel=\"nofollow\">Get Started with Tracks Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/secondlinethemes-satchmo/\" target=\"_blank\" rel=\"nofollow\">10. Satchmo</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/secondlinethemes-satchmo/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/satchmo.png\" alt=\"satchmo\" width=\"775\" height=\"280\" class=\"alignnone size-full wp-image-225791\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/satchmo.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/satchmo-300x108.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/satchmo-768x277.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Satchmo is a theme designed specifically for podcasters looking to build a professional, reputable website in a short time. It gives you a full suite of customization features, but that’s hardly the most interesting part of this WordPress theme. </p>\n<p>It also supports various podcasting plugins like PowerPress and Seriously Simple Podcasting, making it ideal for people who are already familiar and invested with those plugins. Furthermore, there&#8217;s an MP3 player that lets you upload custom MP3 files so you can upload all of your podcasts in one place. </p>\n<p><a href=\"https://www.isitwp.com/refer/secondlinethemes-satchmo/\" target=\"_blank\" rel=\"nofollow\">Get Started with Satchmo Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/secondlinethemes-gumbo/\" target=\"_blank\" rel=\"nofollow\">11. Gumbo</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/secondlinethemes-gumbo/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/gumbo.png\" alt=\"gumbo\" width=\"750\" height=\"350\" class=\"alignnone size-full wp-image-225792\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/gumbo.png 750w, https://www.isitwp.com/wp-content/uploads/2018/12/gumbo-300x140.png 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" /></a></p>\n<p>Gumbo is another excellent podcast theme for people who want to build their brand but don’t have much coding experience. This latest creation from Secondline Themes is designed to help you bring your ideas to life with their host of tools and resources that allow you to create without coding. </p>\n<p>You can translate your videos from websites like SoundCloud and YouTube, so you if you already have an existing audience from existing videos, you can transfer your content seamlessly. Combine those features with their mobile and tablet compatibility right out of the box, and you’re looking at one powerhouse of a theme for podcast creators. </p>\n<p><a href=\"https://www.isitwp.com/refer/secondlinethemes-gumbo/\" target=\"_blank\" rel=\"nofollow\">Get Started with Gumbo Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/cssigniter-oscillator/\" target=\"_blank\" rel=\"nofollow\">12. Oscillator</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/cssigniter-oscillator/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/oscillator-1.jpg\" alt=\"oscillator theme\" width=\"740\" height=\"396\" class=\"alignnone size-full wp-image-227465\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/oscillator-1.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/oscillator-1-300x161.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a></p>\n<p>Oscillator is a theme meant for artists and musicians, but it also works well with podcasts too! Combine flashy images and designs with bold and classic headers, footers, and fonts, and you’re working towards creating a website that will have people coming back for more. </p>\n<p>Instead of uploading music to the music player, you can upload your podcasts directly to the plugin responsible for this aspect of your site. Once they&#8217;ve been uploaded to the MP3 player, you can allow users to download your previous podcasts for easy listening experiences. </p>\n<p>Oscillator also includes a range of tools to help you develop high-quality content and rank for Google. You’ll get an added bonus of an SEO optimized website with all your audio files. This really is the best of both worlds. </p>\n<p><a href=\"https://www.isitwp.com/refer/cssigniter-oscillator/\" target=\"_blank\" rel=\"nofollow\">Get Started with Oscillator Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/cssigniter-oxium/\" target=\"_blank\" rel=\"nofollow\">13. Oxium</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/cssigniter-oxium/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/oxium.jpg\" alt=\"oxium\" width=\"719\" height=\"350\" class=\"alignnone size-full wp-image-225795\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/oxium.jpg 719w, https://www.isitwp.com/wp-content/uploads/2018/12/oxium-300x146.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/oxium-330x160.jpg 330w\" sizes=\"(max-width: 719px) 100vw, 719px\" /></a></p>\n<p>Oxium offers podcasters something in a theme that most others fail to deliver on. Besides uploading your audio files to the included player, you can create custom playlists based on topics, hosts, length, and more. Create your own playlists the way you want. </p>\n<p>Once you’ve created your podcast playlist, you’ll have full reign over the theme’s website builder that lets you add new modules in a single click. Design a website that’s professional, fun, or somewhere in-between. Oxium will not hold you back in the creativity department.  </p>\n<p><a href=\"https://www.isitwp.com/refer/cssigniter-oxium/\" target=\"_blank\" rel=\"nofollow\">Get Started with Oxium Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/mojomarketplace-medias/\" target=\"_blank\" rel=\"nofollow\">14. Medias</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/mojomarketplace-medias/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/medias.jpg\" alt=\"medias\" width=\"775\" height=\"317\" class=\"alignnone size-full wp-image-225797\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/medias.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/medias-300x123.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/medias-768x314.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Medias is a little more laid back and made for those looking for a simple, yet intuitive theme. The general look is either a light theme or dark, but you can change all of the variables within the design with a few clicks.</p>\n<p>When you create new content on Medias, you’ll have 4 post types to choose from including standard post, audio, gallery, or video. It doesn’t matter how you upload your podcast (whether it’s audio only or video), you’ll have no problem delivering fresh new content to your viewers. </p>\n<p><a href=\"https://www.isitwp.com/refer/mojomarketplace-medias/\" target=\"_blank\" rel=\"nofollow\">Get Started with Medias Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/upthemes-amplify/\" target=\"_blank\" rel=\"nofollow\">15. Amplify</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/upthemes-amplify/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Amplify.png\" alt=\"Amplify\" width=\"775\" height=\"358\" class=\"alignnone size-full wp-image-225799\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Amplify.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Amplify-300x139.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Amplify-768x355.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Amplify is normally for musicians, but it works equally well for podcast owners who want to build their brand and allow more people to see their work. </p>\n<p>Out of the box, Amplify works with <a href=\"https://www.isitwp.com/wordpress-plugins/beaver-builder/\" title=\"Beaver Builder Review 2018: Is It the Best Drag and Drop Builder?\">Beaver Builder</a>, a drag and drop page builder. You’ll be able to create your website, add multiple pages, and upload previous podcasts with this module based design system.</p>\n<p>Combine that with the ability to offer your content for download to viewers, and it’s easy to see why podcast creators like this theme. </p>\n<p><a href=\"https://www.isitwp.com/refer/upthemes-amplify/\" target=\"_blank\" rel=\"nofollow\">Get Started with Amplify Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/audiotheme-obsidian/\" target=\"_blank\" rel=\"nofollow\">16. Obsidian</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/audiotheme-obsidian/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/obsidian.png\" alt=\"obsidian\" width=\"775\" height=\"317\" class=\"alignnone size-full wp-image-225800\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/obsidian.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/obsidian-300x123.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/obsidian-768x314.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Obsidian gives you complete control and gives you all the tools you need for success. Besides the modern-yet-classy volcanic ash color scheme, you’ll be able to add a whole host of music/podcast themed pages right to your site. </p>\n<p>You can create a schedule so that viewers know when your next show is airing and where they can watch. It’s also possible to create a discography of all of your past podcasts by subject, year, guests, and more. </p>\n<p>The icing on the cake is the ability to go through and tweak existing templates to make them fit your brand, your style, and your podcast. </p>\n<p><a href=\"https://www.isitwp.com/refer/audiotheme-obsidian/\" target=\"_blank\" rel=\"nofollow\">Get Started with Obsidian Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/audiotheme-promenade/\" target=\"_blank\" rel=\"nofollow\">17. Promenade</a></h3>\n<p><a href=\" https://www.isitwp.com/refer/audiotheme-promenade/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/promenade.png\" alt=\"promenade\" width=\"722\" height=\"360\" class=\"alignnone size-full wp-image-225801\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/promenade.png 722w, https://www.isitwp.com/wp-content/uploads/2018/12/promenade-300x150.png 300w\" sizes=\"(max-width: 722px) 100vw, 722px\" /></a></p>\n<p>Looking for something elegant, minimal, yet totally responsive to your artistic decisions when crafting your site? Promenade is the theme you’re looking for. </p>\n<p>You can upload all of your content and highlight important pieces for your viewers with just a couple of short clicks. This is great for people who want to easily let their viewers know when a new podcast has been uploaded. </p>\n<p>Promenade also comes with various custom fonts and header/footer styles that allow you the freedom to build your site, your way.</p>\n<p><a href=\"https://www.isitwp.com/refer/audiotheme-promenade/\" target=\"_blank\" rel=\"nofollow\">Get Started with Promenade Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/secondlinethemes-dixie/\" target=\"_blank\" rel=\"nofollow\">18. Dixie</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/secondlinethemes-dixie/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/dixie.png\" alt=\"dixie\" width=\"775\" height=\"221\" class=\"alignnone size-full wp-image-225802\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/dixie.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/dixie-300x86.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/dixie-768x219.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Dixie was designed for a wide range of podcast creators. It doesn’t matter if you’re an experienced coder or a complete newbie, Dixie has you covered. </p>\n<p>This theme was created specifically for people who operate podcasts, as it supports the most important podcast-themed plugins on the market: PowerPress and SeriouslySimplePodcasting. On top of that, you can upload your MP3s, or even import your videos and audio from SoundCloud, YouTube, MixCloud, and more. </p>\n<p><a href=\"https://www.isitwp.com/refer/secondlinethemes-dixie/\" target=\"_blank\" rel=\"nofollow\">Get Started with Dixie Today!</a></p>\n<h3><a href=\"https://wordpress.org/themes/podcast/\" target=\"_blank\" rel=\"nofollow\">19. Podcast</a></h3>\n<p><a href=\"https://wordpress.org/themes/podcast/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/podcast-1.jpg\" alt=\"podcast\" width=\"740\" height=\"408\" class=\"alignnone size-full wp-image-227462\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/podcast-1.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/podcast-1-300x165.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a></p>\n<p>It doesn’t get much more obvious who a theme is for than having a name like Podcast. The Podcast theme is specifically for audio streamers looking to create an easy website to feature their brand, past podcasts, and future podcasts as they&#8217;re released. </p>\n<p>You can make small adjustments to the design by choosing from 7 different color palettes and adjusting the sidebar/header/footer area to your liking. All-in-all, if you want something basic that gets the job done, Podcast is the answer. </p>\n<p><a href=\"https://wordpress.org/themes/podcast/\" target=\"_blank\" rel=\"nofollow\">Get Started with Podcast Today!</a></p>\n<h3><a href=\"https://wordpress.org/themes/challenger/\" target=\"_blank\" rel=\"nofollow\">20. Challenger</a></h3>\n<p><a href=\"https://wordpress.org/themes/challenger/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/challenger.jpg\" alt=\"challenger\" width=\"775\" height=\"235\" class=\"alignnone size-full wp-image-225804\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/challenger.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/challenger-300x91.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/challenger-768x233.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Challenger is a new theme with a slew of features that make it the ideal choice for the budding podcaster. You can create your site in a few minutes with Challenger’s easy-to-use interface system that lets you click, drag, and drop exactly the way you want. </p>\n<p>This theme also comes with 4 sections for widgets, over 50 social media icons, and the ability to customize your header and add optin features to get your viewers to sign up for your mailing list. You can use Challenger to grow your audience and upload your content in real time so your listeners can have the best experience, every time. </p>\n<p><a href=\"https://wordpress.org/themes/challenger/\" target=\"_blank\" rel=\"nofollow\">Get Started with Challenger Today!</a></p>\n<h3><a href=\"https://wordpress.org/themes/chosen/\" target=\"_blank\" rel=\"nofollow\">21. Chosen</a></h3>\n<p><a href=\"https://wordpress.org/themes/chosen/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/chosen-theme.jpg\" alt=\"chosen theme\" width=\"740\" height=\"492\" class=\"alignnone size-full wp-image-227464\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/chosen-theme.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/chosen-theme-300x199.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a></p>\n<p>Chosen is an ideal choice if you want to create a page that draws in listeners and keeps them there. You can build an engaging website with information about yourself, guests on your podcasts, future topics, and more. </p>\n<p>You can upload your podcasts and integrate an eCommerce store if you want to sell merchandise that relates to your brand or affiliate brands. Chosen doesn’t stop there; its customization features are vast and allow you to pick and choose how you want your website to look. It’s your page, so they make sure it feels that way. </p>\n<p><a href=\"https://wordpress.org/themes/chosen/\" target=\"_blank\" rel=\"nofollow\">Get Started with Chosen Today!</a></p>\n<p>We hope this article helped you discover the best WordPress themes for podcasting.</p>\n<p>If you enjoyed this post, you might also like our list of the <a href=\"https://www.isitwp.com/best-wordpress-themes-affiliate-marketing/\" title=\"27 Best WordPress Themes for Affiliate Marketing\">27 best themes for affiliate marketers</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-wordpress-themes-podcasting/\">21 Best WordPress Themes for Podcasting (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://www.isitwp.com/best-wordpress-themes-podcasting/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"23 Best WordPress Themes for Non-profits and Charity Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://www.isitwp.com/best-wordpress-themes-non-profits-charity-websites/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://www.isitwp.com/best-wordpress-themes-non-profits-charity-websites/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Dec 2018 05:03: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:4:{i:0;a:5:{s:4:\"data\";s:9:\"Resources\";s: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:21:\"best wordpress themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:16:\"donation website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:34:\"nonprofit charity themes 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:32:\"https://www.isitwp.com/?p=225116\";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:687:\"<p>Are you looking for the best WordPress themes for non-profits and charity organizations? If you’re running a non-profit organization, it’s best to create your charity website in WordPress. There’re plenty of WordPress themes specifically designed to help you collect more donations, showcase your charity works, add event calendars, etc. so you can extend your helping [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-wordpress-themes-non-profits-charity-websites/\">23 Best WordPress Themes for Non-profits and Charity Websites</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:43715:\"<p>Are you looking for the best WordPress themes for non-profits and charity organizations? If you’re running a non-profit organization, it’s best to create your charity website in WordPress. There’re plenty of WordPress themes specifically designed to help you collect more donations, showcase your charity works, add event calendars, etc. so you can extend your helping hands to more people in need. </p>\n<p>In this article, we’ll share the 23 best WordPress themes for non-profits and charity websites. </p>\n<p>If you want a quick sneak peak of the top themes on the list, here it is:</p>\n<h2 class=\"tablepress-table-name tablepress-table-name-id-8\">Sneak Peak - Best WordPress Themes for Non-profits</h2>\n\n<table id=\"tablepress-8\" class=\"tablepress tablepress-id-8\">\n<thead>\n<tr class=\"row-1 odd\">\n	<th class=\"column-1\">Theme</th><th class=\"column-2\">Price</th><th class=\"column-3\">Uniqueness</th><th class=\"column-4\">Released by</th>\n</tr>\n</thead>\n<tbody class=\"row-hover\">\n<tr class=\"row-2 even\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/mojomarketplace-charity-foundation/\" target=\"_blank\" rel=\"nofollow\">Charity Foundation</a></td><td class=\"column-2\">$59</td><td class=\"column-3\">Integrated with PayPal &amp; Stripe</td><td class=\"column-4\">WPlook on Mojo Marketplace</td>\n</tr>\n<tr class=\"row-3 odd\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/artisanthemes-nayma/\" target=\"_blank\" rel=\"nofollow\">Nayma</a></td><td class=\"column-2\">$129 </td><td class=\"column-3\">Multipurpose theme with one-click demo installer</td><td class=\"column-4\">Artisan Themes</td>\n</tr>\n<tr class=\"row-4 even\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/anarieldesign-zeko/\" target=\"_blank\" rel=\"nofollow\">Zeko</a></td><td class=\"column-2\">$59</td><td class=\"column-3\">6 Pre-built Templates Included for Charity Sites</td><td class=\"column-4\">Anariel Design</td>\n</tr>\n<tr class=\"row-5 odd\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/studiopress-outreach-pro/\" target=\"_blank\" rel=\"nofollow\">Outreach Pro</a></td><td class=\"column-2\">$99.95</td><td class=\"column-3\">6 Layout Options Included</td><td class=\"column-4\">StudioPress</td>\n</tr>\n<tr class=\"row-6 even\">\n	<td class=\"column-1\"><a href=\"https://www.isitwp.com/refer/organizedthemes-grassroots/\" target=\"_blank\" rel=\"nofollow\">Grassroots</a></td><td class=\"column-2\">$50</td><td class=\"column-3\">Supports Full Screen Background Videos and Images</td><td class=\"column-4\">Organized Themes</td>\n</tr>\n</tbody>\n</table>\n<!-- #tablepress-8 from cache -->\n<h3>Creating a Non-profit Charity Website in WordPress</h3>\n<p>WordPress is the most popular content management system (CMS) platform available today. It’s used by about 30% of all websites online including <a href=\"https://www.isitwp.com/popular-big-name-brands-using-wordpress/\">the world’s top brands</a>, magazines, and charity foundations. </p>\n<p>To start a non-profit website in WordPress, you’ll need 3 things: WordPress software, a domain name, and a hosting account. WordPress is an open source software which is always available for free whereas you’ll need to buy a <a href=\"https://www.isitwp.com/difference-between-domain-name-and-web-hosting-revealed/\">domain name and hosting</a>. </p>\n<p>A <a href=\"https://www.isitwp.com/how-to-register-a-domain-name/\">domain name</a> normally costs $14 per year and a hosting plan costs around $7.99 per month. So the total cost for starting a website can be a bit high. But you don’t need to worry anymore because <a href=\"https://www.isitwp.com/refer/bluehost/\" target=\"_blank\" rel=\"nofollow\">Bluehost</a> has a special deal for our users. </p>\n<p><a href=\"https://www.isitwp.com/refer/bluehost/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/03/create-a-wordpress-account-on-bluehost.jpg\" alt=\"create a blog on bluehost\" width=\"775\" height=\"483\" class=\"alignnone size-full wp-image-218254\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/03/create-a-wordpress-account-on-bluehost.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/03/create-a-wordpress-account-on-bluehost-300x187.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/03/create-a-wordpress-account-on-bluehost-768x479.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Bluehost now offers you WordPress hosting for just $2.75 per month plus a free domain along with the hosting. In addition, you’ll get a free SSL certificate for securing your domain. </p>\n<p>Once you have your own hosting account and a domain name, you can start making your charity website. If you need detailed instructions, here’s our step-by-step guide on <a href=\"https://www.isitwp.com/how-to-make-a-website-step-by-step/\">how to make a WordPress site</a>. </p>\n<p>Now, let’s go ahead and check out the best WordPress themes for non-profits and charity websites. </p>\n<h3><a href=\"https://www.isitwp.com/refer/mojomarketplace-charity-foundation/\" target=\"_blank\" rel=\"nofollow\">1. Charity Foundation</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/mojomarketplace-charity-foundation/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-foundation-wordpress-theme.jpg\" alt=\"charity-foundation-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225122\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-foundation-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-foundation-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-foundation-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Charity Foundation is a feature-rich WordPress theme for non-profits and charity foundations. It helps you build a complete charity website where you can showcase all types of content about your organization, raise funds for your cause, and organize events. </p>\n<p>The theme allows you to accept 1-time as well as recurring donations (weekly or monthly). It has inbuilt integration for PayPal and Stripe for collecting donations. Plus, you can also add an online store with WooCommerce. </p>\n<p>It features custom share buttons, unlimited color schemes, 9 custom post types, unlimited widget areas, custom logo options, child theme support, and more. </p>\n<p><a href=\"https://www.isitwp.com/refer/mojomarketplace-charity-foundation/\" target=\"_blank\" rel=\"nofollow\">Get started with Charity Foundation today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/artisanthemes-nayma/\" target=\"_blank\" rel=\"nofollow\">2. Nayma</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/artisanthemes-nayma/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/nayma-wordpress-theme.jpg\" alt=\"nayma-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225123\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/nayma-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/nayma-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/nayma-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Nayma is a stylish <a href=\"https://www.isitwp.com/best-wordpress-multi-purpose-themes/\">multipurpose theme for WordPress</a>. You can use this theme for creating a wide range of websites including a non-profit charity site, blog, photography, wedding, or agency portfolio site. It comes with some finely-crafted demo sites which you can install in WordPress with a single click and use with little customization. </p>\n<p>Similarly, it includes 20 ready-to-use modules such as a blog, call-to-action, portfolio, services, slogan, testimonials, etc. All you need to do to create a website is to combine and customize the modules. There’s nothing you’ll need to do from scratch. </p>\n<p>The theme supports your favorite plugins like WPForms, WooCommerce, WPML, and more so you can easily make your site more interactive. It’s a great theme for displaying your charity works and inviting more people to your cause. </p>\n<p><a href=\"https://www.isitwp.com/refer/artisanthemes-nayma/\" target=\"_blank\" rel=\"nofollow\">Get started with Nayma today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/anarieldesign-zeko/\" target=\"_blank\" rel=\"nofollow\">3. Zeko</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/anarieldesign-zeko/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/zeko-wordpress-charity-theme.jpg\" alt=\"zeko-wordpress-charity-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225124\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/zeko-wordpress-charity-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/zeko-wordpress-charity-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/zeko-wordpress-charity-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Zeko is a powerful charity WordPress theme for raising awareness and promoting your cause. It comes bundled with essential non-profit and charity features like donations, eCommerce integration, newsletter, and community. It has full integration with the Give plugin which allows you to accept donations from multiple payment providers, set donation goals, etc. </p>\n<p>The Zeko theme includes 6 pre-designed page templates to suit the purposes of non-profits. The theme is easy to customize with live previews using WordPress&#8217; Live Customizer. If you like its demo website, you can instantly install it on your site with 1 click, customize it, and go live. </p>\n<p>It also supports <a href=\"https://www.isitwp.com/best-wordpress-page-builders-compared/\">popular page builder plugins</a> like Beaver Builder, Elementor, and SiteOrigin so you can enjoy the flexibility to create a design like you want. </p>\n<p><a href=\"https://www.isitwp.com/refer/anarieldesign-zeko/\" target=\"_blank\" rel=\"nofollow\">Get started with Zeko today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/studiopress-outreach-pro/\" target=\"_blank\" rel=\"nofollow\">4. Outreach Pro</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/studiopress-outreach-pro/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/08/outreachpro.jpg\" alt=\"Outreach Pro\" width=\"775\" height=\"400\" class=\"alignnone size-full wp-image-221672\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/08/outreachpro.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/08/outreachpro-300x155.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/08/outreachpro-768x396.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Outreach Pro is a beautiful WordPress theme for non-profits, charity organizations, and churches. It’s a StudioPress theme built on top of their popular theme framework, Genesis. The Genesis Framework is popular for its smart options to make your site SEO-friendly, easy customization, speed, and responsive design. </p>\n<p>The theme features stunning sliders with options to add messages to your site&#8217;s users. There’re multiple custom page templates, header customization options, custom menus, layout options, and more to help you build your site. Plus, the theme customizer lets you see all the changes you’re making in the real time. </p>\n<p>Outreach Pro is 100% responsive so your site content will look great on all devices including cell phones, tablets, and desktops. </p>\n<p><a href=\"https://www.isitwp.com/refer/studiopress-outreach-pro/\" target=\"_blank\" rel=\"nofollow\">Get started with Outreach Pro today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/organizedthemes-grassroots/\" target=\"_blank\" rel=\"nofollow\">5. Grassroots</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/organizedthemes-grassroots/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/grassroots-wordpress-theme.jpg\" alt=\"grassroots-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225125\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/grassroots-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/grassroots-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/grassroots-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Grassroots is a wonderful WordPress theme designed to help you create an amazing site for your organization. It allows you to add a hero section with a full-screen video or image background with your most important messages at the top of your pages.</p>\n<p>It’s created with the WooCommerce Campaign extension plugin to allow you to raise funds directly on your site. There’re options to display your sponsors, staff, contact details, your location and office hours, and more. It also has deep integration with <a href=\"https://www.isitwp.com/wordpress-plugins/the-events-calendar/\">The Events Calendar</a> to present your upcoming events. </p>\n<p>It’s easy to customize with the drag and drop homepage options. You can change your site logo, colors, background colors and images, fonts, etc. easily and create the website you’ve always dreamed of. </p>\n<p><a href=\"https://www.isitwp.com/refer/organizedthemes-grassroots/\" target=\"_blank\" rel=\"nofollow\">Get started with Grassroots today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/organizedthemes-forward/\" target=\"_blank\" rel=\"nofollow\">6. Forward</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/organizedthemes-forward/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/forward-wordpress-theme.jpg\" alt=\"forward-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225126\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/forward-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/forward-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/forward-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Forward is an elegant theme for non-profits and charity organizations. It has full support for WooCommerce and its Campaign Extension plugin so you can raise funds and sell products directly on your site. You can easily create <strong>Donate Now</strong> sections to entice more people to donate to your good cause. </p>\n<p>The theme has options to create a beautiful blog to showcase your latest news and articles. Similarly, it lets you add staff page and sponsors to display who&#8217;s working hard for the organization. You can also add a Facebook widget, newsletter, Google maps, contact widget, etc. to help people find your work. </p>\n<p>It’s a mobile-responsive theme which works great on smartphones as well as on desktop monitors. </p>\n<p><a href=\"https://www.isitwp.com/refer/organizedthemes-forward/\" target=\"_blank\" rel=\"nofollow\">Get started with Forward today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/anarieldesign-maisha/\" target=\"_blank\" rel=\"nofollow\">7. Maisha</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/anarieldesign-maisha/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/maisha-wp-theme-for-non-profits.jpg\" alt=\"maisha-wp-theme-for-non-profits\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225127\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/maisha-wp-theme-for-non-profits.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/maisha-wp-theme-for-non-profits-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/maisha-wp-theme-for-non-profits-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Maisha is a powerful charity theme for WordPress. It comes packed with all the features your non-profit charity website will ever need. It has a beautiful design with plenty of space to communicate your messages, powerful donation options, and a highly customizable appearance. </p>\n<p>The Maisha theme includes 4 stand-out non-profit charity website features. First, it has powerful donation options with the Give plugin. Second, it has full WooCommerce support so you can sell products for your charity. Third, you can easily create newsletter subscription forms to build an email list. And, finally, it integrates with BuddyPress to help you create a community. </p>\n<p>It’s easy to customize with the Live Customizer. You can live preview all the changes as you edit. </p>\n<p><a href=\"https://www.isitwp.com/refer/anarieldesign-maisha/\" target=\"_blank\" rel=\"nofollow\">Get started with Maisha today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/organizedthemes-foundation/\" target=\"_blank\" rel=\"nofollow\">8. Foundation</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/organizedthemes-foundation/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/foundation-wordpress-charity-theme.jpg\" alt=\"foundation-wordpress-charity-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225128\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/foundation-wordpress-charity-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/foundation-wordpress-charity-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/foundation-wordpress-charity-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Foundation is a feature-rich responsive WordPress theme designed to empower you to create an amazing website for your charity foundation. It has a highly customizable design that you can use to easily change your logo, background, colors etc. </p>\n<p>The Foundation theme has a complete set of donation tools to help you add a donation bar, call-to-action buttons, donation widgets on your inside posts, etc. You can accept donations directly using PayPal or a custom URL. It also allows you to collect money for a specific project, set a goal, and show your progress toward the goal in an impressive way. </p>\n<p>More features include social media integration, options to add your organization&#8217;s sponsors, a MailChimp widget for newsletter sign ups, a featured page widget, and more. </p>\n<p><a href=\"https://www.isitwp.com/refer/organizedthemes-foundation/\" target=\"_blank\" rel=\"nofollow\">Get started with Foundation today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/churchthemes-maranatha/\" target=\"_blank\" rel=\"nofollow\">9. Maranatha</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/churchthemes-maranatha/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/10/Maranatha.png\" alt=\"Maranatha\" width=\"775\" height=\"322\" class=\"alignnone size-full wp-image-223815\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/10/Maranatha.png 775w, https://www.isitwp.com/wp-content/uploads/2018/10/Maranatha-300x125.png 300w, https://www.isitwp.com/wp-content/uploads/2018/10/Maranatha-768x319.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Maranatha is a creative WordPress church theme suitable for religious and non-profit organizations. It features a long parallax scrolling homepage with options to add images or a video in the background. </p>\n<p>The theme comes with a powerful sermon management tool which allows you to add audio, video, or text as sermons. You can easily organize and present your sermons by topic, series, book, speaker, and month. Similarly, it has a powerful events calendar tool which lets you add your upcoming events and recurring events on your site. </p>\n<p>Other features include a sticky menu bar, custom logo, custom colors, custom styled map, footer widgets, site search, blog, etc. It’s a great theme to start your non-profit website. </p>\n<p><a href=\"https://www.isitwp.com/refer/churchthemes-maranatha/\" target=\"_blank\" rel=\"nofollow\">Get started with Maranatha today!</a></p>\n<h3><a href=\"https://wordpress.org/themes/benevolent/\" target=\"_blank\" rel=\"nofollow\">10. Benevolent</a></h3>\n<p><a href=\"https://wordpress.org/themes/benevolent/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/benevolent-wordpress-theme.jpg\" alt=\"benevolent-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225129\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/benevolent-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/benevolent-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/benevolent-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Benevolent is a free responsive WordPress theme for non-profit organizations. It’s a highly customizable and versatile theme so you can experience variations of your site design with it. Built with the latest WordPress Live Customizer, you can easily customize your site with real-time live previews.  </p>\n<p>It features stunning sliders, a community section, stats counter, a client section, a banner with call-to-action buttons, social media, etc. on your homepage. It has 4 widget areas in the footer where you can add recent posts, popular posts, social media buttons, and a featured post widget. You can also use these widgets in your site&#8217;s sidebar. </p>\n<p>The Benevolent theme is optimized for SEO and speed. Above all, you can experience smooth navigation on all types of devices as it’s fully responsive. </p>\n<p><a href=\"https://wordpress.org/themes/benevolent/\" target=\"_blank\" rel=\"nofollow\">Get started with Benevolent today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/themify-ultra/\" target=\"_blank\" rel=\"nofollow\">11. Ultra</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/themify-ultra/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/ultra-wordpress-theme.jpg\" alt=\"ultra-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225130\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/ultra-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/ultra-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/ultra-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Ultra is a highly flexible multipurpose theme for WordPress. It’s a great creation by Themify which comes bundled up with the <a href=\"https://www.isitwp.com/best-wordpress-page-builders-compared/\">popular page builder plugin</a> Themify Builder. With the power of the Themify Builder, you can explore unlimited design possibilities with this theme. </p>\n<p>The Ultra theme comes with 15 beautifully designed demos and 60+ pre-made layouts which you can import on your site with 1 click, replace dummy content with your content, and make your website ready in no time. You can create new or edit the imported layouts easily with the drag and drop page builder. </p>\n<p>To create a non-profit website with Ultra, you can use the pre-designed charity layout or create your own design with the available widgets and addons. </p>\n<p><a href=\"https://www.isitwp.com/refer/themify-ultra/\" target=\"_blank\" rel=\"nofollow\">Get started with Ultra today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/churchthemes-exodus/\" target=\"_blank\" rel=\"nofollow\">12. Exodus</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/churchthemes-exodus/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/exodus-wordpress-theme.jpg\" alt=\"exodus-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225131\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/exodus-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/exodus-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/exodus-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Exodus is a minimalist WordPress theme perfect for churches and other religious organizations. It has a simple and clean layout which is sure to impress. It has everything you’ll want in a church website, including options to add sermons in the text, audio, or video format; show your organization’s events; staff profiles; ministries; and locations.  </p>\n<p>With Exodus, you can add stunning image and video sliders with a call-to-action button on the homepage. Moreover, you can add and edit dropdown menus, blog, image gallery, custom colors, fonts, headers, sidebars, etc. The customization process is very simple with the Live Customizer. </p>\n<p>It’s a beginner-friendly theme so you can configure entire theme&#8217;s settings and build a site without writing any code. If you need any support, you can check the documentation guides and videos on the theme&#8217;s website. </p>\n<p><a href=\"https://www.isitwp.com/refer/churchthemes-exodus/\" target=\"_blank\" rel=\"nofollow\">Get started with Exodus today!</a></p>\n<h3><a href=\"https://wordpress.org/themes/charity-review/\" target=\"_blank\" rel=\"nofollow\">13. Charity Review</a></h3>\n<p><a href=\"https://wordpress.org/themes/charity-review/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-review-theme.jpg\" alt=\"charity-review-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225132\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-review-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-review-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-review-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>If you want to start your charity website with a minimal budget, Charity Review is a good choice for you. It’s a free WordPress theme designed for charity and non-profit organizations, NGOs, and INGOs. </p>\n<p>Charity Review theme has a highly customizable design. You can easily add and customize custom menu, social media, call-to-action buttons, banner sliders, testimonials, blog layouts, footer widgets, colors, etc. using the Live Customizer. </p>\n<p>It has full support for WooCommerce, Event Manager, and other major plugins. With WooCommerce, you can create an online store, sell your products, and raise funds for your charity organization. </p>\n<p><a href=\"https://wordpress.org/themes/charity-review/\" target=\"_blank\" rel=\"nofollow\">Get started with Charity Review today!</a></p>\n<h3><a href=\"https://wordpress.org/themes/idyllic/\" target=\"_blank\" rel=\"nofollow\">14. Idyllic</a></h3>\n<p><a href=\"https://wordpress.org/themes/idyllic/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/idyllic-charity-wp-theme.jpg\" alt=\"idyllic-charity-wp-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225133\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/idyllic-charity-wp-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/idyllic-charity-wp-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/idyllic-charity-wp-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Idyllic is yet another beautiful <a href=\"https://www.isitwp.com/best-free-wordpress-blog-themes/\">free WordPress theme</a> suitable for small portfolio sites, blogs, and non-profit charity sites. It features multiple sections on the front page including beautiful widgets, multiple navigation and social menus, and more. You can easily customize each section and create any design you want. </p>\n<p>The Idyllic theme is a WooCommerce-ready theme so you can easily create a shop page to sell products and raise funds for your cause. It allows you to share your recent news and updates on the blog section. To honor your donors and inspire more people to donate, it has an Awesome Donors section. </p>\n<p>If you want more features, you can add them by installing your favorite plugins. It supports all the major WordPress plugins including bbPress, Polylang, Jetpack, etc. </p>\n<p><a href=\"https://wordpress.org/themes/idyllic/\" target=\"_blank\" rel=\"nofollow\">Get started with Idyllic today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/charity-wp/\" target=\"_blank\" rel=\"nofollow\">15. Charity WP</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/charity-wp/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-wp-theme.jpg\" alt=\"charity-wp-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225134\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-wp-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-wp-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-wp-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Charity WP is one of the most popular charity themes in ThemeForest&#8217;s marketplace. It’s a powerful WordPress theme perfect for charity, non-profit, or non-governmental organization (NGO) websites that&#8217;re looking to collect donations and help the needy. </p>\n<p>The Charity WP theme includes the powerful plugin Donate to make the donation process better and more effective on your site. Similarly, it has an events plugin integrated to create attractive events with a countdown. It also has the WooCommerce plugin to allow you to create a shop page and to sell products for fundraising. </p>\n<p>To create new layouts or customize your existing pages, you can use the drag and drop page builder. You can combine, mix, and match different types of content blocks and build the site you want to make. But, if you like the available theme demos, you can import 1 with a single click and get started. </p>\n<p><a href=\"https://www.isitwp.com/refer/charity-wp/\" target=\"_blank\" rel=\"nofollow\">Get started with Charity WP today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/charity-hub/\" target=\"_blank\" rel=\"nofollow\">16. Charity Hub</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/charity-hub/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-hub-wordpress-theme.jpg\" alt=\"charity-hub-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225135\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-hub-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-hub-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-hub-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Charity Hub is a brilliant charity theme that is thoughtfully designed for charity non-profit organization, donation, church, and fundraising websites. It comes with a creative custom post type called <strong>cause</strong> to let you present your charity causes impressively. With this custom post type, you can easily add a donate call-to-action button, percentage bar to show donations collected toward a donation goal, tables, and timeline elements. </p>\n<p>In order to collect donations, it has PayPal and Stripe integrated. The inbuilt donation system automatically sends a donation successful message to the donors after it’s processed. It helps to maintain trust and transparency in your organization. </p>\n<p>Other features include a 1-click demo importer, page builder support, parallax or video background in your desired sections, unlimited colors, etc. If you want to create a shop page, you can do that with WooCommerce. </p>\n<p><a href=\"https://www.isitwp.com/refer/charity-hub/\" target=\"_blank\" rel=\"nofollow\">Get started with Charity Hub today!</a></p>\n<h3><a href=\"https://wordpress.org/themes/charity-fundraiser/\" target=\"_blank\" rel=\"nofollow\">17. Charity Fundraiser</a></h3>\n<p><a href=\"https://wordpress.org/themes/charity-fundraiser/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-fundraiser-theme.jpg\" alt=\"charity-fundraiser-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225136\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-fundraiser-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-fundraiser-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-fundraiser-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>The Charity Fundraiser theme does exactly what its name says. That’s to help you raise funds for your cause. It’s a beautiful WordPress theme created with charity organizations in mind. It provides a great layout filled with options to display your causes and collect donations. </p>\n<p>Main features of the theme include easy theme customization options, logo upload, social media links, sliders, contact page, etc. You can also install and use WooCommerce as it has full support for the plugin. </p>\n<p>Charity Fundraiser has a fully responsive design to give a superb look on all devices irrespective of their screen size or resolution. </p>\n<p><a href=\"https://wordpress.org/themes/charity-fundraiser/\" target=\"_blank\" rel=\"nofollow\">Get started with Charity Fundraiser today!</a></p>\n<h3><a href=\"https://wordpress.org/themes/skt-charity/\" target=\"_blank\" rel=\"nofollow\">18. SKT Charity</a></h3>\n<p><a href=\"https://wordpress.org/themes/skt-charity/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/skt-charity-wordpress-theme.jpg\" alt=\"skt-charity-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225137\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/skt-charity-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/skt-charity-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/skt-charity-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>SKT Charity is a yet another simple and beautiful WordPress charity and non-profit theme. It comes with a bundle of useful features and functionalities to help you create a simple charity website. </p>\n<p>The theme lets you add sliders with a message on your site&#8217;s homepage. Then, you can add different sections, including a featured cause section, events, top donors, volunteers, and recent news. It allows you to add social media links, a newsletter signup form, and your contact address in your website&#8217;s header. </p>\n<p>Theme customization is very easy as it’s built with the powerful Live Customizer. It allows you to easily and quickly customize everything on your site with live previews. </p>\n<p><a href=\"https://wordpress.org/themes/skt-charity/\" target=\"_blank\" rel=\"nofollow\">Get started with SKT Charity today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/donatenow/\" target=\"_blank\" rel=\"nofollow\">19. DonateNow</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/donatenow/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/donatenow-wordpress-themes-for-non-profits.jpg\" alt=\"donatenow-wordpress-themes-for-non-profits\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225138\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/donatenow-wordpress-themes-for-non-profits.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/donatenow-wordpress-themes-for-non-profits-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/donatenow-wordpress-themes-for-non-profits-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>DonateNow is a stunning retina-ready WordPress charity and donation theme suitable for any organization looking to collect donations. It comes with a powerful donation plugin to allow you to create a complete donation system in WordPress. There’re plenty of easy shortcodes, and options to add a donation form, donations list, donation target, target progress bar, collected funds, and more. </p>\n<p>The theme includes a highly intuitive drag and drop frontend page builder. The page builder interface allows you to create new content sections and also customize your existing content sections easily by dragging, dropping, and editing elements by simply clicking on them. </p>\n<p>Other features include multiple post formats, multiple layout styles, slider areas, portfolio options, and custom backgrounds. The theme has the option to enable or disable the responsive design. </p>\n<p><a href=\"https://www.isitwp.com/refer/donatenow/\" target=\"_blank\" rel=\"nofollow\">Get started with DonateNow today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/charity-wordpress-theme/\" target=\"_blank\" rel=\"nofollow\">20. Charity</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/charity-wordpress-theme/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-wordpress-theme.jpg\" alt=\"charity-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225139\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/charity-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/charity-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Charity is yet another brilliant WordPress theme for charity and non-profit organizations. It’s a fully responsive theme built on the Twitter Bootstrap framework that fits well on any screen. </p>\n<p>The Charity theme has integrated donation features to add donate call-to-action buttons, collected donation amount, donation goal with a progress bar, etc. It also includes handy shortcodes for flexible columns, colored buttons, toggles, tabs, custom highlights, and more. </p>\n<p>With this theme, you’ll also get a premium slider plugin for free. Other features include unlimited colors, Easy Digital Downloads integration, PayPal support, etc. </p>\n<p><a href=\"https://www.isitwp.com/refer/charity-wordpress-theme/\" target=\"_blank\" rel=\"nofollow\">Get started with Charity today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/kunco/\" target=\"_blank\" rel=\"nofollow\">21. Kunco</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/kunco/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/kunco-wordpress-themes-for-non-profits.jpg\" alt=\"kunco-wordpress-themes-for-non-profits\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225140\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/kunco-wordpress-themes-for-non-profits.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/kunco-wordpress-themes-for-non-profits-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/kunco-wordpress-themes-for-non-profits-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Kunco is a brilliant charity, crowd funding, and fundraising theme for WordPress. You can create a full-fledged non-profit website using this theme. It has the power of popular plugins like WPBakery Page Builder, Slider Revolution, Give, WooCommerce, and more in it which offer limitless features and design possibilities at your disposal. </p>\n<p>The Kunco theme comes with 5 beautifully designed homepage demos which you can import with 1 click and use for your site with little customization. You can customize your entire site design easily with its theme options panel. </p>\n<p>Other features of the theme are parallax and video section for any page, child theme support, Google fonts, color customization, and much more. </p>\n<p><a href=\"https://www.isitwp.com/refer/kunco/\" target=\"_blank\" rel=\"nofollow\">Get started with Kunco today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/goodwish/\" target=\"_blank\" rel=\"nofollow\">22. Goodwish</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/goodwish/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/goodwish-wordpress-theme.jpg\" alt=\"goodwish-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225141\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/goodwish-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/goodwish-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/goodwish-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Goodwish is a charity, non-profit, and fundraising theme for WordPress. As its name says, it’s the perfect theme for organizations and individuals who wish good for others and work hard to help people in need. Fully compatible with the Give plugin, you can easily create a donation system on your site and start collecting donations for your cause. </p>\n<p>The Goodwish theme is very powerful as it has integrated premium plugins WPBakery Page Builder and Slider Revolution for extended design possibilities. It also has inbuilt features to allow you to create events on your site.  </p>\n<p>Moreover, there’re 8 importable homepage designs out of the box, social media options, color options, inner page layouts, and more. </p>\n<p><a href=\"https://www.isitwp.com/refer/goodwish/\" target=\"_blank\" rel=\"nofollow\">Get started with Goodwish today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/charitious/\" target=\"_blank\" rel=\"nofollow\">23. Charitious</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/charitious/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/charitious-wordpress-theme.jpg\" alt=\"charitious-wordpress-theme\" width=\"775\" height=\"453\" class=\"alignnone size-full wp-image-225142\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/charitious-wordpress-theme.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/charitious-wordpress-theme-300x175.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/charitious-wordpress-theme-768x449.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Charitious is a premium non-profit fundraising charity WordPress theme. Built with the powerful donation and crowdfunding plugin WP Fundraising, it has a complete set of features to display your causes and collect funds. </p>\n<p>The theme includes the Elementor page builder plugin to let you customize and design beautiful pages. There’re 4 beautifully-crafted homepages provided with the theme. You can import the demo sites with 1 click to use on your site with little customization. </p>\n<p>Other features include Google fonts, retina-ready design, font awesome icons, smooth animation, parallax sections, Google maps integration, and more. It’s a great theme with amazing features. </p>\n<p><a href=\"https://www.isitwp.com/refer/charitious/\" target=\"_blank\" rel=\"nofollow\">Get started with Charitious today!</a></p>\n<p>We hope this article helped you to find the best WordPress themes for non-profits and charity websites. </p>\n<p>You may also want to see our handpicked list of the <a href=\"https://www.isitwp.com/best-wordpress-themes-for-travel-blogs/\">best WordPress travel blog themes</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-wordpress-themes-non-profits-charity-websites/\">23 Best WordPress Themes for Non-profits and Charity Websites</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://www.isitwp.com/best-wordpress-themes-non-profits-charity-websites/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Ninja Forms Alternative: WPForms vs. Ninja Forms (Compared)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://www.isitwp.com/wpforms-vs-ninja-forms/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://www.isitwp.com/wpforms-vs-ninja-forms/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Dec 2018 15:39:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Resources\";s: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:34:\"contact form plugins for 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:\"\";}i:2;a:5:{s:4:\"data\";s:24:\"ninja forms alternatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:22:\"wordpress contact form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.isitwp.com/?p=226180\";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:616:\"<p>Looking for the perfect forms plugin for your WordPress site? If you did some online research, you probably found WPForms and Ninja Forms being recommended by top WordPress blogs. Now you&#8217;re likely wondering which one to choose! If so, then we’re here to help you out. In this article, we’ll compare WPForms vs. Ninja Forms [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/wpforms-vs-ninja-forms/\">Ninja Forms Alternative: WPForms vs. Ninja Forms (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:24595:\"<p>Looking for the perfect forms plugin for your WordPress site? If you did some online research, you probably found <a href=\"http://wpforms.com/\" target=\"_blank\">WPForms</a> and <a href=\"https://www.isitwp.com/refer/ninja-forms/\" target=\"_blank\" rel=\"nofollow\">Ninja Forms</a> being recommended by top WordPress blogs. Now you&#8217;re likely wondering which one to choose!</p>\n<p>If so, then we’re here to help you out. In this article, we’ll compare WPForms vs. Ninja Forms and show you the important differences so you can decide which plugin is the perfect solution to your site. </p>\n<p>We’ll compare the 2 plugins based on the following 5 points: </p>\n<ol>\n<li>General Overview</li>\n<li>Ease of Use</li>\n<li>Features</li>\n<li>Pricing</li>\n<li>Support</li>\n</ol>\n<h3>1. WPForms vs. Ninja Forms – General Overview</h3>\n<p><strong>What Is WPForms?</strong> </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-home.png\" alt=\"wpforms-overview-contact-form-plugin\" width=\"740\" height=\"336\" class=\"alignnone size-full wp-image-225788\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-home.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-home-300x136.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p><a href=\"https://www.isitwp.com/wordpress-plugins/wpforms/\">WPForms</a> is the most beginner-friendly WordPress contact form plugin on the market. It allows you to create beautiful contact forms easily on your <a href=\"https://www.isitwp.com/how-to-make-a-website-step-by-step/\">WordPress site</a>. It provides a very simple, intuitive user interface so you can create a wide variety of WordPress forms all by yourself in a matter of minutes. </p>\n<p>The WPForms plugin comes in a free Lite version as well as several premium versions. It has over 1 million active installations on WordPress.org. The plugin has 4.9 out of 5 average user ratings from 3000+ votes its received on WordPress.org. Users are loving it! </p>\n<p>WPForms was created by the same folks who run the largest unofficial WordPress resource site, <a href=\"https://www.wpbeginner.com/\" target=\"_blank\">WPBeginner</a>. In case you&#8217;re not familiar: WPBeginner is best known for their beginner-friendly tutorials on different WordPress topics. </p>\n<p><strong>What’s Ninja Forms?</strong></p>\n<p><a href=\"https://www.isitwp.com/refer/ninja-forms/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-home.jpg\" alt=\"ninja-forms-home\" width=\"775\" height=\"292\" class=\"alignnone size-full wp-image-226332\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-home.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-home-300x113.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-home-768x289.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p><a href=\"https://www.isitwp.com/wordpress-plugins/ninja-forms/\">Ninja Forms</a> is one of the <a href=\"https://www.isitwp.com/best-wordpress-contact-form-plugins/\">most popular WordPress form plugins</a> available today. It comes with an easy-to-use drag and drop form builder to let you create contact forms in WordPress. You can use the extensive set of form fields included to create unlimited forms with this plugin. </p>\n<p>Like WPForms, Ninja Forms also comes in both free and premium versions. It also has over 1 million active installations on WordPress.org. Ninja Forms has 4.4 out of 5 average user ratings from 900+ votes its received on WordPress.org. If you compare the two plugins on the basis of their average user reviews, WPForms stands ahead of Ninja Forms. </p>\n<p>Ninja Forms was created by a team of WordPress professionals dubbed WP Ninjas.</p>\n<h3>2. Ease of Use</h3>\n<p><strong>Creating a Form with WPForms</strong></p>\n<p>The top goal of creating <a href=\"http://wpforms.com/\" target=\"_blank\">WPForms</a> was to make WordPress form creation as easy and simple as possible. Hence, WPForms stands out from the crowd when it comes to simplicity and user-friendliness. </p>\n<p>To create a new form with WPForms, go to <strong>WPForms &raquo; Add New</strong> from your WordPress dashboard. There, you’ll see a number of pre-made templates to choose from. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2017/01/wpforms-form-templates.png\" alt=\"wpforms form templates\" width=\"775\" height=\"480\" class=\"alignnone size-full wp-image-219792\" srcset=\"https://www.isitwp.com/wp-content/uploads/2017/01/wpforms-form-templates.png 775w, https://www.isitwp.com/wp-content/uploads/2017/01/wpforms-form-templates-300x186.png 300w, https://www.isitwp.com/wp-content/uploads/2017/01/wpforms-form-templates-768x476.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You can choose a template to get started quickly. If you want to add more fields to the pre-made form, you can drag them from the left-side fields panel to the right-side form editor. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-simple.png\" alt=\"wpforms vs surveymonkey ease of use\" width=\"740\" height=\"357\" class=\"alignnone size-full wp-image-225812\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-simple.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-simple-300x145.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-simple-330x160.png 330w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>You can customize each field by clicking the <strong>Field Options</strong>. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/field-options-wpforms.jpg\" alt=\"field-options-wpforms\" width=\"775\" height=\"536\" class=\"alignnone size-full wp-image-226334\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/field-options-wpforms.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/field-options-wpforms-300x207.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/field-options-wpforms-768x531.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You can customize the form name, reCAPTCHA, anti-spam honeypot, notifications, and confirmation emails from <strong>Settings</strong>. You can connect your form with <a href=\"https://www.isitwp.com/best-email-marketing-services-compared/\">email marketing platforms</a> like Constant Contact, MailChimp, etc. from the <strong>Marketing</strong> option. And you can set up PayPal and Stripe to accept payments from the <strong>Payments</strong> option. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-settings.jpg\" alt=\"wpforms settings\" width=\"740\" height=\"363\" class=\"alignnone size-full wp-image-227245\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-settings.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-settings-300x147.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>It’s that easy. Once you finish adding fields to your form and review all the settings, you can click the <strong>Save</strong> button at the top of your screen. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/save-form-wpforms.jpg\" alt=\"save-form-wpforms\" width=\"775\" height=\"198\" class=\"alignnone size-full wp-image-226337\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/save-form-wpforms.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/save-form-wpforms-300x77.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/save-form-wpforms-768x196.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Next to the Save button, you&#8217;ll see an <strong>Embed</strong> option. If you click on that, you’ll get a shortcode for your new form which you can paste anywhere on your site to add the form. </p>\n<p>Adding WPForms to your WordPress posts and pages is easy with the WPForms widget available in post editor menu. To add a contact form to a post or page, you’ll need to open the post or page and click the WPForms widget icon. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/add-forms-widget-post-editor-wpforms.jpg\" alt=\"add-forms-widget-post-editor-wpforms\" width=\"775\" height=\"304\" class=\"alignnone size-full wp-image-226338\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/add-forms-widget-post-editor-wpforms.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/add-forms-widget-post-editor-wpforms-300x118.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/add-forms-widget-post-editor-wpforms-768x301.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Then, select the form you want to add. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/select-form-wpforms.jpg\" alt=\"select-form-wpforms\" width=\"775\" height=\"398\" class=\"alignnone size-full wp-image-226339\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/select-form-wpforms.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/select-form-wpforms-300x154.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/select-form-wpforms-768x394.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>And that’s it! Now you can publish or update that page to view how your form looks live on your site. Below is a screenshot of what a simple contact form looks like: </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/contact-form-example-wpform.jpg\" alt=\"contact-form-example-wpform\" width=\"775\" height=\"557\" class=\"alignnone size-full wp-image-226341\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/contact-form-example-wpform.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/contact-form-example-wpform-300x216.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/contact-form-example-wpform-768x552.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>If you want to show your form in sidebars or any widget-ready areas, you can find the WPForms widget in <strong>Appearance &raquo; Widegts</strong>.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-widget.jpg\" alt=\"wpforms-widget\" width=\"775\" height=\"267\" class=\"alignnone size-full wp-image-226340\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-widget.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-widget-300x103.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-widget-768x265.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You can drag the widget to any widget-ready area you want to display the form. </p>\n<p><strong>Creating a Form with Ninja Forms</strong></p>\n<p><a href=\"https://www.isitwp.com/refer/ninja-forms/\" target=\"_blank\" rel=\"nofollow\">Ninja Forms</a> has updated its interface multiple times to make it more user-friendly. Now, it also has quite a similar form making interface like that of WPForms. </p>\n<p>To create a new form with Ninja Forms, you&#8217;ll need to visit <strong>Ninja Forms &raquo; Add New</strong> from your dashboard. There, you’ll see a number of form templates to start with, including a blank form. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-templates.jpg\" alt=\"ninja-forms-templates\" width=\"775\" height=\"605\" class=\"alignnone size-full wp-image-226342\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-templates.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-templates-300x234.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-templates-768x600.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You can pick a template and get started quickly; however, you may not be able to use all of the ones featured unless you’ve purchased their most expensive plan. Ninja Forms shows all of the available form templates, including those you don’t have access to, which makes it a bit confusing and cluttered. </p>\n<p>On the other hand, WPForms shows only the templates you can actually use as per the plan you’ve installed. It keeps WPForms nice and tidy.</p>\n<p>After you’ve selected a template, you’ll see the form building interface shown below. To add new fields to your form, click the <strong>Add</strong> icon. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/create-form-ninjaforms.jpg\" alt=\"create-form-ninjaforms\" width=\"775\" height=\"493\" class=\"alignnone size-full wp-image-226343\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/create-form-ninjaforms.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/create-form-ninjaforms-300x191.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/create-form-ninjaforms-768x489.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Then, you’ll see all the fields appear on the right side. Now you can drag them to the left side form editor and build your form. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/edit-form-ninjaforms.jpg\" alt=\"edit-form-ninjaforms\" width=\"775\" height=\"427\" class=\"alignnone size-full wp-image-226344\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/edit-form-ninjaforms.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/edit-form-ninjaforms-300x165.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/edit-form-ninjaforms-768x423.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You can configure notifications, confirmation messages, and success emails from the <strong>Emails &#038; Actions</strong> option. You can configure display settings, restrictions, and calculations from the <strong>Advanced</strong> option. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-settings.jpg\" alt=\"ninja-forms-settings\" width=\"775\" height=\"416\" class=\"alignnone size-full wp-image-226345\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-settings.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-settings-300x161.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-settings-768x412.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Once you create and customize your form, you can click <strong>Publish</strong>. </p>\n<p>To use the form in your WordPress posts and pages, you can use the Ninja Forms widget on page/post editor. It has an interface similar to WPForms. </p>\n<p>To add a contact form to a post or page, you’ll need to open the post or page and click the Ninja Forms widget icon. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/add-forms-widget-post-editor-ninjaforms.jpg\" alt=\"add-forms-widget-post-editor-ninjaforms\" width=\"775\" height=\"318\" class=\"alignnone size-full wp-image-226346\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/add-forms-widget-post-editor-ninjaforms.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/add-forms-widget-post-editor-ninjaforms-300x123.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/add-forms-widget-post-editor-ninjaforms-768x315.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Select the form you want to add and update that page. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/select-form-ninjaforms.jpg\" alt=\"select-form-ninjaforms\" width=\"775\" height=\"420\" class=\"alignnone size-full wp-image-226347\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/select-form-ninjaforms.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/select-form-ninjaforms-300x163.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/select-form-ninjaforms-768x416.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Then, you can view how your form looks. Here&#8217;s how your basic form will look like. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/contact-form-exmple-ninjaforms.jpg\" alt=\"contact-form-exmple-ninjaforms\" width=\"775\" height=\"582\" class=\"alignnone size-full wp-image-226348\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/contact-form-exmple-ninjaforms.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/contact-form-exmple-ninjaforms-300x225.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/contact-form-exmple-ninjaforms-768x577.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Like WPForms, it also has a widget that you can use in sidebars and other widget-ready areas on your site. You can find the widget in <strong>Appearance &raquo; Widegts</strong>.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-widget.jpg\" alt=\"ninja-forms-widget\" width=\"775\" height=\"241\" class=\"alignnone size-full wp-image-226349\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-widget.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-widget-300x93.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-widget-768x239.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p><strong>Winner</strong>: WPForms. For its clean interface showing only the templates you have access to. Plus, its <strong>Embed</strong> option with a shortcode to let you add the form easily anywhere on your site. </p>\n<h3>3. Features</h3>\n<p>The strength of <a href=\"http://wpforms.com/\" target=\"_blank\">WPForms</a> is its ability to create simple contact forms as well as advanced forms like payment forms, user registration forms, <a href=\"https://www.isitwp.com/create-a-survey-in-wordpress/\">surveys and polls</a>, newsletter subscription forms, etc. It has all the features you need to build multipurpose forms in WordPress. </p>\n<p>Here’re just a few of WPForms&#8217; major features:</p>\n<ul>\n<li>Spam Protection with anti-spam honeypot and reCAPTCHA</li>\n<li>Smart conditional logic</li>\n<li>Email marketing integration with AWeber, MailChimp, Drip, and other popular services</li>\n<li>Survey and polls addon</li>\n<li>Better entry management at dashboard to view all entries at one place</li>\n<li>Accept payments and donations with PayPal and Stripe</li>\n</ul>\n<p>All these features combined make WPForms THE complete tool for WordPress forms. </p>\n<p><a href=\"https://www.isitwp.com/refer/ninja-forms/\" target=\"_blank\" rel=\"nofollow\">Ninja Forms</a>, on the other hand, also has powerful features tailor-made for you. However, most of its features are only available in the form of extensions. You&#8217;ll have to buy each extension separately or obtain them via a premium plan. </p>\n<p>There’re main 2 disadvantages to choosing Ninja Forms over WPForms in terms of features: </p>\n<p>1. If you buy the extensions separately, you’ll need to invest more money. Most of the extensions are priced at $49 each, so it gets costly in a hurry.</p>\n<p>2. WPForms addons are just a click away, whereas Ninja Forms addons require you to follow the entire <a href=\"https://www.isitwp.com/install-wordpress-plugin/\">WordPress plugin installation process</a> to install each addon. That means you need to download the extension file, upload it to your dashboard, install it, and then activate it.</p>\n<p>Apart from the existing features, Ninja Forms is highly flexible and extendible. It’s built with hundreds of functions, action hooks, and filters that developers can use to build custom functionalities. </p>\n<p><strong>Winner</strong>: It’s a tie. However, WPForms makes most features easier to use overall and addons just 1 click away. </p>\n<h3>4. Pricing</h3>\n<p>Both WPForms and Ninja Forms offer free and premium versions. You can install the lite versions directly onto your site&#8217;s dashboard from the WordPress.org plugin directory and use them for free. For advanced features and addons, you’ll need to upgrade to their premium plans. </p>\n<p><a href=\"http://wpforms.com/\" target=\"_blank\">WPForms</a> has 4 primary pricing plans. For businesses starting out, it has the <strong>Basic</strong> plan which costs $39.50. But, to use ALL of WPForms&#8217; features and addons, you&#8217;ll need to buy the most expensive plan, <strong>Elite</strong>, which costs $299. </p>\n<p><a href=\"https://wpforms.com/pricing/\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-pricing.jpg\" alt=\"wpforms-pricing\" width=\"775\" height=\"420\" class=\"alignnone size-full wp-image-226350\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-pricing.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-pricing-300x163.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-pricing-768x416.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p><a href=\"https://www.isitwp.com/refer/ninja-forms/\" target=\"_blank\" rel=\"nofollow\">Ninja Forms</a> has 3 main pricing plans to let you use its features and extensions, or you can also buy individual extensions and use them with their free plan. </p>\n<p><a href=\"https://www.isitwp.com/refer/ninja-forms/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-pricing.jpg\" alt=\"ninja-forms-pricing\" width=\"775\" height=\"420\" class=\"alignnone size-full wp-image-226351\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-pricing.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-pricing-300x163.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/ninja-forms-pricing-768x416.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>The most basic Ninja Forms plan, <strong>Personal</strong>, costs $99; and the most expensive plan, <strong>Agency</strong>, costs $499. Their price range is far higher than that of WPForms. </p>\n<p>There’re many features you’ll get for less money with WPForms. For example, you can create multi-column forms with any WPForms plan, including its Lite version; but you’ll need to buy the <strong>Layout and Styles</strong> addon or the <strong>Personal</strong> plan to use the same feature with Ninja Forms. </p>\n<p>Similarly, you can get <strong>Constant Contact</strong> integration for free with all versions of WPForms, but you’ll need to purchase a separate extension or buy the <strong>Personal</strong> plan to unlock that function for Ninja Forms. </p>\n<p><strong>Winner:</strong> WPForms. It offers powerful features at a very reasonable price. </p>\n<h3>5. Support</h3>\n<p><a href=\"http://wpforms.com/\" target=\"_blank\">WPForms</a> has hundreds of beginner-friendly tutorials on how to use the plugin with ease. You can find the answer nearly all of your queries in their documentation. </p>\n<p>The Lite version&#8217;s users can post their queries on WordPress.org. Their support team is very responsive, as the user ratings show. The Premium version&#8217;s users can open support tickets and get personalized support via email. </p>\n<p><a href=\"https://www.isitwp.com/refer/ninja-forms/\" target=\"_blank\" rel=\"nofollow\">Ninja Forms</a> also has detailed documentation to help you with the most common issues. You can get simple tutorials to use the plugin. If you need technical support, you can contact them via their contact page by opening a support ticket. </p>\n<p><strong>Winner:</strong> It’s a tie. </p>\n<h3>Conclusion</h3>\n<p>WPForms is a great form builder plugin for WordPress. It provides a really simple, user-friendly interface for building forms. It has a complete set of features which you can use with ease. The plugin is also very affordable for small businesses. </p>\n<p>Ninja Forms is also a powerful WordPress form builder plugin. Its interface is user-friendly; however, it can&#8217;t compare with WPForms’ clean interface. The Ninja Forms plugin brings advanced features to the table that you might find handy, but it’s quite costly to obtain them all. </p>\n<p>Hence, <a href=\"http://wpforms.com/\" target=\"_blank\">WPForms</a> is the clear winner from the users’ point of view. However, advanced developers may find <a href=\"https://www.isitwp.com/refer/ninja-forms/\" target=\"_blank\" rel=\"nofollow\">Ninja Forms</a> more useful due to its developer-friendly options. </p>\n<p>We hope this article helped you to decide between WPForms or Ninja Forms for your site. You may also want to read our in-depth comparison between <a href=\"https://www.isitwp.com/wpforms-vs-gravity-forms/\">WPForms vs. Gravity Forms</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/wpforms-vs-ninja-forms/\">Ninja Forms Alternative: WPForms vs. Ninja Forms (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://www.isitwp.com/wpforms-vs-ninja-forms/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"25 Best Tools for Freelancers to Scale a Real Business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://www.isitwp.com/best-tools-for-freelancers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://www.isitwp.com/best-tools-for-freelancers/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Dec 2018 10:31: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:4:{i:0;a:5:{s:4:\"data\";s:9:\"Resources\";s: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:24:\"free and premium plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:18:\"freelancer plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:16:\"freelancer tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.isitwp.com/?p=225113\";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:618:\"<p>Are you looking for the best tools for freelancers? No matter what kind of freelancing you do, the right tools can help you increase your productivity, stay organized, and secure clients with ease. In this article, we’ll share our handpicked list of the 25 best tools for freelancers. Get your clicking finger reading because you’re [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-tools-for-freelancers/\">25 Best Tools for Freelancers to Scale a Real Business</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:31916:\"<p>Are you looking for the best tools for freelancers? No matter what kind of freelancing you do, the right tools can help you increase your productivity, stay organized, and secure clients with ease.</p>\n<p>In this article, we’ll share our handpicked list of the 25 best tools for freelancers. Get your clicking finger reading because you’re going to want to visit these links!</p>\n<h3><a href=\"https://wpforms.com\" target=\"_blank\">1. WPForms</a></h3>\n<p><a href=\"https://wpforms.com\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/wpforms.png\" alt=\"WPForms\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-224560\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/wpforms.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/wpforms-300x135.png 300w, https://www.isitwp.com/wp-content/uploads/2018/11/wpforms-768x347.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Every freelance website needs a killer contact form in order to succeed. Fortunately for you, WPForms is the <a href=\"https://www.isitwp.com/best-wordpress-contact-form-plugins/\" title=\"7 Best WordPress Contact Form Plugins Compared (2018)\">best contact form plugin for WordPress</a> available on the market.</p>\n<p>However, WPForms is capable of so much more than an average contact form plugin. It can also be used as a booking form to make appointments with potential clients.</p>\n<p>Or, with the signature addon, you can use it to securely get client signatures on contracts, terms of services agreements, or services documents.</p>\n<p><a href=\"https://wpforms.com\" target=\"_blank\">Get Started with WPForms Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/timedoctor/\" target=\"_blank\" rel=\"nofollow\">2. Time Doctor</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/timedoctor/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Time-Doctor.jpg\" alt=\"Time Doctor\" width=\"748\" height=\"270\" class=\"alignnone size-full wp-image-225179\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Time-Doctor.jpg 748w, https://www.isitwp.com/wp-content/uploads/2018/11/Time-Doctor-300x108.jpg 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></a></p>\n<p>Tracking your time helps increase your productivity. When you’re “on the clock,” even as a freelancer, you’ll free that gentle pressure to finish quickly and efficiently. Time Doctor is simple to use, and will keep you from giving into your urges to procrastinate.</p>\n<p>Better still, Time Doctor can be used to log your hours for clients. If you’re working for hourly rates, this tool is a must-have in order to make sure you’re paid what you earned.</p>\n<p><a href=\"https://www.isitwp.com/refer/timedoctor/\" target=\"_blank\" rel=\"nofollow\">Get Started with Time Doctor Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/startbooking/\" target=\"_blank\" rel=\"nofollow\">3. StartBooking</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/startbooking/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/StartBooking-1.png\" alt=\"StartBooking\" width=\"775\" height=\"241\" class=\"alignnone size-full wp-image-225180\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/StartBooking-1.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/StartBooking-1-300x93.png 300w, https://www.isitwp.com/wp-content/uploads/2018/11/StartBooking-1-768x239.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>StartBooking is a plugin for WordPress websites designed so business owners and freelancers can effortlessly schedule appointments with clients.</p>\n<p>As a freelancer, you can use this plugin to create and track your meetings with potential clients and steady clients. It allows you to personalize your client schedule sheets so you can get the full potential out of every meet-up.</p>\n<p>Organize your schedule, save relevant meeting information, and so much more; all from the comfort of your WordPress dashboard.</p>\n<p><a href=\"https://www.isitwp.com/refer/startbooking/\" target=\"_blank\" rel=\"nofollow\">Get Started with StartBooking Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/birchpress/\" target=\"_blank\" rel=\"nofollow\">4. BirchPress</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/birchpress/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/birchpress.jpg\" alt=\"birchpress\" width=\"775\" height=\"300\" class=\"alignnone size-full wp-image-225181\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/birchpress.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/birchpress-300x116.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/birchpress-768x297.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>If StartBooking isn’t your cup of tea, then you may prefer BirchPress as your online booking tool. BirchPress puts booking in the hands of your clients, allowing them to schedule your services online via its handy-dandy forms.</p>\n<p>With BirchPress, you can create booking forms, schedule appointments with clients, and even accept online payments. It has an intuitive form building interface that’s very beginner-friendly.</p>\n<p><a href=\"https://www.isitwp.com/refer/birchpress/\" target=\"_blank\" rel=\"nofollow\">Get Started with BirchPress Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/easy-digital-downloads-custom-deliverables/\" target=\"_blank\" rel=\"nofollow\">5. Easy Digital Downloads Custom Deliverables</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/easy-digital-downloads-custom-deliverables/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/EDD-Custom-Deliverables.jpg\" alt=\"customdeliverablesdesign\" width=\"748\" height=\"298\" class=\"alignnone size-full wp-image-225182\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/EDD-Custom-Deliverables.jpg 748w, https://www.isitwp.com/wp-content/uploads/2018/11/EDD-Custom-Deliverables-300x120.jpg 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></a></p>\n<p>Easy Digital Downloads Customs Deliverables is the perfect freelancer tool if you want an easy way to deliver files and receive payments. The smooth interface allows you to create an account and link multiple clients to your account. </p>\n<p>As you complete your work, you can add the files to your client&#8217;s account and they can download and view them with 1 click. Easy Digital Downloads Customs Deliverables is an incredibly easy way for you stay organized and deliver your work files with a quick click of your mouse. </p>\n<p><a href=\"https://www.isitwp.com/refer/easy-digital-downloads-custom-deliverables/\" target=\"_blank\" rel=\"nofollow\">Get Started with Easy Digital Downloads Custom Deliverables Today!</a></p>\n<h3><a href=\"https://trello.com/\" target=\"_blank\" rel=\"nofollow\">6. Trello</a></h3>\n<p><a href=\"https://trello.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Trello.jpg\" alt=\"Trello\" width=\"775\" height=\"286\" class=\"alignnone size-full wp-image-225183\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Trello.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/Trello-300x111.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/Trello-768x283.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>It doesn’t matter if you’re a freelancer who works in a group, or a lone wolf, you can benefit from Trello. The goal of this online program and fully-featured application is to make organizing your tasks for the day, week, month, and even year a breeze! </p>\n<p>Trello has a number of features including the ability to make task cards. Simply put, you organize your tasks for the day, whether it be writing assignments, image creation, or HTML work, and as you complete the tasks you can check them off. The sense of organization will give you some serious peace of mind and make your work day a piece of cake. </p>\n<p><a href=\"https://trello.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with Trello Today!</a></p>\n<h3><a href=\"https://pomodoneapp.com/\" target=\"_blank\" rel=\"nofollow\">7. PomoDoneApp</a></h3>\n<p><a href=\"https://pomodoneapp.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/PomoDoneApp.jpg\" alt=\"PomoDoneApp\" width=\"748\" height=\"279\" class=\"alignnone size-full wp-image-225184\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/PomoDoneApp.jpg 748w, https://www.isitwp.com/wp-content/uploads/2018/11/PomoDoneApp-300x112.jpg 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></a></p>\n<p>Are you a freelancer who already works with programs like Asana, Evernote, and Trello? If so, PomoDoneApp is a fantastic way to bring all of your work together from those platforms in 1 easy-to-use application. </p>\n<p>As you finish your work assignments from clients, you can use your free PomoDoneApp account to create files and upload them directly to your client&#8217;s account. Once your client logs in, they can click on your uploaded work files and access them instantly.</p>\n<p><a href=\"https://pomodoneapp.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with PomoDoneApp Today!</a></p>\n<h3><a href=\"https://www.skype.com/en/\" target=\"_blank\" rel=\"nofollow\">8. Skype</a></h3>\n<p><a href=\"https://www.skype.com/en/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Skype.jpg\" alt=\"Skype\" width=\"775\" height=\"286\" class=\"alignnone size-full wp-image-225185\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Skype.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/Skype-300x111.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/Skype-768x283.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>We all know communication is important, especially if you’re a freelancer. Skype is a common, but necessary, free tool that you should download now if you haven&#8217;t already. </p>\n<p>When using Skype, you can communicate with clients through text-based instant messages. But there&#8217;s more to it than that! This application allows you to have voice calls, including groups calls, so that you can easily collaborate and get your questions answered and your workflow going in the right direction.</p>\n<p><a href=\"https://www.skype.com/en/\" target=\"_blank\" rel=\"nofollow\">Get Started with Skype Today!</a></p>\n<h3><a href=\"https://asana.com\" target=\"_blank\" rel=\"nofollow\">9. Asana</a></h3>\n<p><a href=\"https://asana.com\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Asana.png\" alt=\"Asana\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225186\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Asana.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/Asana-300x135.png 300w, https://www.isitwp.com/wp-content/uploads/2018/11/Asana-768x347.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Not freelancing on your own? If you have an entire team to manage, then Asana is the perfect project management tool.</p>\n<p>Asana organizes your team’s tasks and conversations in one easy-access area, keeping you from wasting time with multiple emails. Thanks to taking email inboxes out of the picture, Asana keeps teams on track, boosts efficiency, increases productivity, and bolsters better communication.</p>\n<p><a href=\"https://asana.com\" target=\"_blank\" rel=\"nofollow\">Get Started with Asana Today!</a></p>\n<h3><a href=\"https://zoom.us/\" target=\"_blank\" rel=\"nofollow\">10. Zoom</a></h3>\n<p><a href=\"https://zoom.us/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Zoom.jpg\" alt=\"Zoom\" width=\"748\" height=\"168\" class=\"alignnone size-full wp-image-225187\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Zoom.jpg 748w, https://www.isitwp.com/wp-content/uploads/2018/11/Zoom-300x67.jpg 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></a></p>\n<p>Zoom is a communication tool for freelancers who prefer to voice chat with their clients. You can create a free account and start setting up your client list right away. </p>\n<p>When it comes time to make a phone call, Zoom offers a host of features such as text chat in videos for link sharing, you can video chat using your default webcam, and you can even record your calls in case you need to review them at a later time. </p>\n<p><a href=\"https://zoom.us/\" target=\"_blank\" rel=\"nofollow\">Get Started with Zoom Today!</a></p>\n<h3><a href=\"https://www.dropbox.com/\" target=\"_blank\" rel=\"nofollow\">11. Dropbox</a></h3>\n<p><a href=\"https://www.dropbox.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Dropbox.jpg\" alt=\"Dropbox\" width=\"748\" height=\"232\" class=\"alignnone size-full wp-image-225188\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Dropbox.jpg 748w, https://www.isitwp.com/wp-content/uploads/2018/11/Dropbox-300x93.jpg 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></a></p>\n<p>Dropbox is an easy-to-use organization tool for freelancers who have multiple clients. You can create individual folders and give other users (your clients) access to specific folders.</p>\n<p>As you complete your writing, image, or video assignment you can upload it to Dropbox for review. Both client and freelancer can work within the folder at the same time. If you’re looking for a tool to help collaborate with clients and save you time, look no further than Dropbox. </p>\n<p><a href=\"https://www.dropbox.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with Dropbox Today!</a></p>\n<h3><a href=\"https://slack.com/\" target=\"_blank\" rel=\"nofollow\">12. Slack</a></h3>\n<p><a href=\"https://slack.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Slack.jpg\" alt=\"Slack\" width=\"748\" height=\"300\" class=\"alignnone size-full wp-image-225189\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Slack.jpg 748w, https://www.isitwp.com/wp-content/uploads/2018/11/Slack-300x120.jpg 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></a></p>\n<p>Slack is a communication tool all freelancers should use when working with a wide range of clients, or even with a small team of clients within the same business. </p>\n<p>You can communicate directly with individuals, make conversations private, create group chats, and instantly search your previous conversations with a search bar at the top of the screen. Slack has revolutionized the way we communicate!</p>\n<p><a href=\"https://slack.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with Slack Today!</a></p>\n<h3><a href=\"https://basecamp.com/\" target=\"_blank\" rel=\"nofollow\">13. Basecamp</a></h3>\n<p><a href=\"https://basecamp.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/basecamp.jpg\" alt=\"basecamp\" width=\"748\" height=\"144\" class=\"alignnone size-full wp-image-225190\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/basecamp.jpg 748w, https://www.isitwp.com/wp-content/uploads/2018/11/basecamp-300x58.jpg 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></a></p>\n<p>Basecamp is a slick, easy-to-use platform that allows for seamless communication for freelancers and clients.  When you make a free account, you’ll be able to create folders where you can list your tasks.</p>\n<p>Once you get your clients on board, you can assign them to the tasks and you guys can work together within the folder to lay out current work, view future work, and return to previous jobs to make sure they&#8217;re done correctly. Basecamp is the perfect tool for those seeking a simple-yet-powerful project management platform.</p>\n<p><a href=\"https://basecamp.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with Basecamp Today!</a></p>\n<h3><a href=\"https://gsuite.google.com/\" target=\"_blank\" rel=\"nofollow\">14. G Suite</a></h3>\n<p><a href=\"https://gsuite.google.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/G-Suite.jpg\" alt=\"G Suite\" width=\"775\" height=\"262\" class=\"alignnone size-full wp-image-225191\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/G-Suite.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/G-Suite-300x101.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/G-Suite-768x260.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>G Suite is an all-in-one tool for busy freelancers. There&#8217;re multiple platforms within G Suite (also known as Google Apps) to help keep you organized and productive. </p>\n<p>When you open up G Suite, you’ll see a slew of features like a calendar, access to Google Docs, a Cloud-based sharing system, and more! You can go in and edit the calendar, make appointments, create documents, and easily share them with your clients when you’re finished. </p>\n<p><a href=\"https://gsuite.google.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with G Suite Today!</a></p>\n<h3><a href=\"https://evernote.com/\" target=\"_blank\" rel=\"nofollow\">15. Evernote</a></h3>\n<p><a href=\"https://evernote.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Evernote.jpg\" alt=\"Evernote\" width=\"775\" height=\"286\" class=\"alignnone size-full wp-image-225192\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Evernote.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/Evernote-300x111.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/Evernote-768x283.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>As a freelancer, one of the biggest problems you&#8217;ll likely face is remembering every little thing you need to do on your schedule. You may have a pocket notebook, and that’s great; however, wouldn’t it be better to have unlimited space and access to it any time? If that sounds appealing, you need Evernote. </p>\n<p>Evernote is an accessible application you can use on your smartphone, laptop, or tablet. Quickly jot down notes, appointments, ideas, and future plans; then access them again whenever you need to in seconds.</p>\n<p><a href=\"https://evernote.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with Evernote Today!</a></p>\n<h3><a href=\"https://www.lastpass.com/\" target=\"_blank\" rel=\"nofollow\">16. LastPass</a></h3>\n<p><a href=\"https://www.lastpass.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/LastPass.jpg\" alt=\"LastPass\" width=\"748\" height=\"220\" class=\"alignnone size-full wp-image-225193\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/LastPass.jpg 748w, https://www.isitwp.com/wp-content/uploads/2018/11/LastPass-300x88.jpg 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></a></p>\n<p>Tired of remembering 20+ passwords for all of the sites you frequent daily? If so, LastPass is exactly what you need. This program has a free and premium version that helps you come up with passwords for all of the websites you visit. </p>\n<p>But LastPass takes it a step further by recording and encrypting your passwords so you’ll never have to remember them again. Plus, you’ll never have to worry about falling victim to a hacker. All-in-all, it’s a must-have tool for everyone. </p>\n<p><a href=\"https://www.lastpass.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with LastPass Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/freshbooks/\" target=\"_blank\" rel=\"nofollow\">17. FreshBooks</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/freshbooks/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/FreshBooks.jpg\" alt=\"FreshBooks\" width=\"775\" height=\"286\" class=\"alignnone size-full wp-image-225194\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/FreshBooks.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/FreshBooks-300x111.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/FreshBooks-768x283.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>FreshBooks is an accounting software designed for freelancers and business owners who want to easily manage their funds. There&#8217;s a ton of options available in both the free and premium versions of the application. </p>\n<p>You can easily create and send invoices for quick payments. It’s a breeze to manage your money as their system is clean, user-friendly, and offers features that every budding freelancer needs to grow with. </p>\n<p><a href=\"https://www.isitwp.com/refer/freshbooks/\" target=\"_blank\" rel=\"nofollow\">Get Started with FreshBooks Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/constant-contact/\" target=\"_blank\" rel=\"nofollow\">18. Constant Contact</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/constant-contact/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/constant-contact.png\" alt=\"constant contact\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225195\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/constant-contact.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/constant-contact-300x135.png 300w, https://www.isitwp.com/wp-content/uploads/2018/11/constant-contact-768x347.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>If you’re looking to create and send highly-effective emails to your subscribers, Constant Contact is a great choice. As one of the best email marketing services available, it integrates well with the world’s best lead generation plugins, like <a href=\"https://optinmonster.com\" target=\"_blank\">OptinMonster</a>.</p>\n<p>The customization options are nearly endless, and there are dozens of pre-made templates to get you rolling. Plus, their 24/7 support team is always just a live chat or email away from helping you resolve any issue that may come up.</p>\n<p><a href=\"https://www.isitwp.com/refer/constant-contact/\" target=\"_blank\" rel=\"nofollow\">Get Started with Constant Contact Today!</a></p>\n<h3><a href=\"https://buffer.com/\" target=\"_blank\" rel=\"nofollow\">19. Buffer</a></h3>\n<p><a href=\"https://buffer.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Buffer.jpg\" alt=\"Buffer\" width=\"775\" height=\"286\" class=\"alignnone size-full wp-image-225196\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Buffer.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/Buffer-300x111.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/Buffer-768x283.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>As a freelancer, there&#8217;s a good chance you have multiple social media accounts that you use to advertise your business and meet new clients. However, sometimes it can be a drag updating your social media accounts multiple times a day. Buffer makes social media easy. </p>\n<p>You can program multiple accounts and schedule posts for the future. Many people use the application to make their weekly posts and schedule them for set times. Obviously, you can keep an eye on your account; but, once you schedule your posts for the day, you’re good to go! Set up your social media posts, forget them, and focus on what you do best.</p>\n<p><a href=\"https://buffer.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with Buffer Today!</a></p>\n<h3><a href=\"https://www.canva.com/\" target=\"_blank\" rel=\"nofollow\">20. Canva</a></h3>\n<p><a href=\"https://www.canva.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Canva.png\" alt=\"Canva\" width=\"775\" height=\"288\" class=\"alignnone size-full wp-image-225197\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Canva.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/Canva-300x111.png 300w, https://www.isitwp.com/wp-content/uploads/2018/11/Canva-768x285.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Images are great conversion tools. Whether you use them for landing pages or blog posts, visual elements increase your chances of success.<br />\nWith Canva, you can design your own images, infographics, icons, and banners without an expensive piece of editing software. And it’s so easy to use, you can do all of your visuals yourself, without having to hire a professional designer.</p>\n<p>Canva runs in your browser and comes with a ton of free templates to assist you. Once you’ve finished, simply export your creation, save it, and use it on your freelance website.</p>\n<p><a href=\"https://www.canva.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with Canva Today!</a></p>\n<h3><a href=\"http://piktochart.com/\" target=\"_blank\" rel=\"nofollow\">21. Piktochart</a></h3>\n<p><a href=\"http://piktochart.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/piktochart.jpg\" alt=\"piktochart\" width=\"775\" height=\"286\" class=\"alignnone size-full wp-image-225198\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/piktochart.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/piktochart-300x111.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/piktochart-768x283.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>When you’re a freelancer, it can be challenging for you to hire a designer, check on progress, make changes, etc. Piktochart is here to make your life easier.</p>\n<p>Piktochart uses an intuitive interface that allows you to make infographics, reports, flyers, posters, and presentations. You’ll be able to go in and create your item of choice with a simple drop and drag system that gives you flexibility and customization options beyond your wildest dreams!  </p>\n<p><a href=\"http://piktochart.com/\" target=\"_blank\" rel=\"nofollow\">Get Started with Piktochart Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/livechat-inc/\" target=\"_blank\" rel=\"nofollow\">22. LiveChat Inc.</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/livechat-inc/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/LiveChat-Inc.png\" alt=\"LiveChat Inc\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-225199\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/LiveChat-Inc.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/LiveChat-Inc-300x135.png 300w, https://www.isitwp.com/wp-content/uploads/2018/11/LiveChat-Inc-768x347.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Never miss another opportunity to answer a potential client’s questions. With LiveChat Inc., you can connect with your website’s visitors instantly and provide them with answers right when they need it most.</p>\n<p>With this real-time chat plugin for your freelancing website, you can sway clients to buying your products or services just by talking to them. The best freelancer is an available freelancer!</p>\n<p>LiveChat Inc. also provides reports on how to place your chat box for optimal engagement, as well as an in-depth analysis of how your visitors are interacting with it.</p>\n<p><a href=\"https://www.isitwp.com/refer/livechat-inc/\" target=\"_blank\" rel=\"nofollow\">Get Started with LiveChat Inc. Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/editorial-calendar/\" target=\"_blank\" rel=\"nofollow\">23. Editorial Calendar</a></h3>\n<p><a href=\"https://wordpress.org/plugins/editorial-calendar/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Editorial-Calendar.png\" alt=\"Editorial Calendar\" width=\"775\" height=\"236\" class=\"alignnone size-full wp-image-225201\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Editorial-Calendar.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/Editorial-Calendar-300x91.png 300w, https://www.isitwp.com/wp-content/uploads/2018/11/Editorial-Calendar-768x234.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Prefer to look at the big picture? If you&#8217;re a freelance blogger (or simply a freelancer with a blog), then Editorial Calendar is a must-have. It allows you to see posts that have already been published, as well as scheduled posts, for the entire month. </p>\n<p>One of our favorite features of this plugin is it allows you to move your posts via a simple drag and drop interface. You can easily set up your schedule for the month, edit posts from within the plugin, and make quick changes as needed.</p>\n<p>Editorial Calendar allows you to schedule posts from multiple authors, making future planning easy as pie. </p>\n<p><a href=\"https://wordpress.org/plugins/editorial-calendar/\" target=\"_blank\" rel=\"nofollow\">Get Started with Editorial Calendar Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/collabpress/\" target=\"_blank\" rel=\"nofollow\">24. CollabPress</a></h3>\n<p><a href=\"https://wordpress.org/plugins/collabpress/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/CollabPress.jpg\" alt=\"CollabPress\" width=\"775\" height=\"273\" class=\"alignnone size-full wp-image-225204\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/CollabPress.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/CollabPress-300x106.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/CollabPress-768x271.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>CollabPress is a developer tool for WordPress users that helps freelancers schedule posts and activities. In other words, you can put your work projects in the background and check off the list as you complete each task. </p>\n<p>This application comes with a calendar, email reminders, and an intuitive activity log. If you’re tired of being disorganized, then Collabpress is a plugin that&#8217;ll make your life easier.</p>\n<p><a href=\"https://wordpress.org/plugins/collabpress/\" target=\"_blank\" rel=\"nofollow\">Get Started with CollabPress Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/q2w3-fixed-widget/\" target=\"_blank\" rel=\"nofollow\">25. Q2W3 Fixed Widget</a></h3>\n<p><a href=\"https://wordpress.org/plugins/q2w3-fixed-widget/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/Q2W3-Fixed-Widget.jpg\" alt=\"Q2W3 Fixed Widget\" width=\"775\" height=\"230\" class=\"alignnone size-full wp-image-225205\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/Q2W3-Fixed-Widget.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/Q2W3-Fixed-Widget-300x89.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/Q2W3-Fixed-Widget-768x228.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>The Q2W3 Fixed Widget was designed for freelancers who want to build a website with ease. The main function of this application is to allow you to quickly and easily organize segments within your content. </p>\n<p>You can make easy-to-follow planners and informative pieces by quickly dragging and placing headers, widgets, and content boxes. If you’re a freelancer and having trouble with your website, then the Q2W3 Fixed Widget plugin can help! </p>\n<p>We especially love the option to promote your freelancing services via a sticky widget on your WordPress website.</p>\n<p><a href=\"https://wordpress.org/plugins/q2w3-fixed-widget/\" target=\"_blank\" rel=\"nofollow\">Get Started with Q2W3 Fixed Widget Today!</a></p>\n<p>We hope this article helped you discover the best tools for freelancers.</p>\n<p>If you found this post useful, you might also like our in-depth comparison of the <a href=\"https://www.isitwp.com/best-email-marketing-services-compared/\" title=\"9 Best Email Marketing Services Compared (2018)\">9 best email marketing services</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-tools-for-freelancers/\">25 Best Tools for Freelancers to Scale a Real Business</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://www.isitwp.com/best-tools-for-freelancers/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"How to Track Affiliate Links in Google Analytics (Easy Way)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.isitwp.com/how-to-track-affiliate-links-google-analytics/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://www.isitwp.com/how-to-track-affiliate-links-google-analytics/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Dec 2018 12:59:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s: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:16:\"Google Analytics\";s: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:35:\"google analytics affiliate tracking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:24:\"monsterinsights tutorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=225285\";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:625:\"<p>Want to learn how to track affiliate links in Google Analytics? By tracking your affiliate links, you can find out exactly how your users are interacting with them on your site. Then, using the gathered data, you can optimize your links for better conversions and revenue. In this article, we’ll show you how to track [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/how-to-track-affiliate-links-google-analytics/\">How to Track Affiliate Links in Google Analytics (Easy Way)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11862:\"<p>Want to learn how to track affiliate links in Google Analytics? By tracking your affiliate links, you can find out exactly how your users are interacting with them on your site. Then, using the gathered data, you can optimize your links for better conversions and revenue. </p>\n<p>In this article, we’ll show you how to track affiliate links in Google Analytics in 3 easy steps. </p>\n<h3>Why Track Affiliate Links?</h3>\n<p>Without a doubt, affiliate marketing is one of the most popular ways to <a href=\"https://www.isitwp.com/legit-ways-to-make-money-online-blogging/\">make money online</a>. If you have a good amount of regular traffic coming to your <a href=\"https://www.isitwp.com/how-to-make-a-website-step-by-step/\">WordPress site</a>, you can earn a tidy sum of money by adding affiliate links on your site. Affiliate links are links to sales pages for other people’s products with your affiliate id attached. So, when people buy products through that link, you earn a certain amount of commission money. </p>\n<p>When managed properly, affiliate marketing can give you good perennial income. However, successful affiliate marketing isn’t possible without proper data and analytics. You need actual statistics on how your users are interacting with the affiliate links to optimize said links and to run affiliate marketing campaigns well. </p>\n<p>That’s why you need to track your affiliate links. Here’re few benefits of affiliate link tracking: </p>\n<ul>\n<li><strong>Get actual data on user interaction:</strong> You can find out exactly how users interact with your affiliate links. Analyze where people are clicking the most.</li>\n<li><strong>Identify your most profitable links:</strong> Find out which links are leading to the most conversions and focus on them.</li>\n<li><strong>See most converting pages:</strong> View which pages are leading most affiliate sales and optimize them for more revenue.</li>\n</ul>\n<p>In a nutshell, affiliate tracking helps you to see how users view and interact with your affiliate links. It provides comprehensive data with which you can optimize your affiliate marketing strategies and maximize your earnings. </p>\n<h3>Tracking Your WordPress Affiliate Links in Google Analytics</h3>\n<p>Google Analytics is the best web analytics platform available on the market. It helps you track your entire website traffic and their interactions on your site. As such, affiliate tracking is just 1 type of metric that Google Analytics tracks. </p>\n<p>Although Google Analytics has the ability to track a wide variety of metrics, advanced tracking like affiliate links and eCommerce reports are a bit tricky for beginners to set up. Fortunately, there’s an EASY way to use Google Analytics in WordPress: <a href=\"https://www.monsterinsights.com/\" target=\"_blank\">MonsterInsights</a>.  </p>\n<p><a href=\"https://www.monsterinsights.com/\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/monsterinsights-plugin-wordpress.jpg\" alt=\"MonsterInsights\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-224562\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/monsterinsights-plugin-wordpress.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/monsterinsights-plugin-wordpress-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/monsterinsights-plugin-wordpress-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>MonsterInsights is the most popular WordPress Google Analytics plugin on the web. It simplifies the whole process of using Google Analytics in WordPress. Using MonsterInsights, you can set up Google Analytics affiliate tracking in just 2 minutes. </p>\n<p>But, before that, you’ll need to add and manage your affiliate links properly in WordPress. So, we’ve parted this tutorial in 3 steps as given below: </p>\n<h3>Step 1: Managing Your Affiliate Links in WordPress Using ThirstyAffiliates</h3>\n<p><a href=\"https://www.isitwp.com/wordpress-plugins/thirstyaffiliates/\">ThirstyAffiliates</a> is the <a href=\"https://www.isitwp.com/best-wordpress-plugins-for-affiliate-marketers/\">best affiliate management plugin for WordPress</a>. It allows you to add your affiliate links from one place in your dashboard, organize them by categories, and manage them efficiently. Most importantly, it allows you to cloak your affiliate links (i.e. to transform long complex affiliate links into short pretty links). </p>\n<p>For example, here’s what an affiliate link normally looks like: </p>\n<p><strong>https://example.com/products/?product_id=123&#038;affiliate_id</strong></p>\n<p>Now, you can cloak the link and make it short like the branded URL shown below:</p>\n<p><strong>http://www.yoursite.com/recommends/product-name</strong></p>\n<p>The main benefit of managing affiliate links with ThirstyAffiliates is that it stores your affiliate links in your site&#8217;s backend, so you can find the links easily anytime you want to add them to content. They’re searchable by names. </p>\n<p>Second, cloaking transforms long, ugly affiliate links into pretty links. It also makes the affiliate links look like internal links which are actually external. This prevents your users from seeing direct affiliate links and enhances your chances of getting more clicks.</p>\n<p>Best of all, using an affiliate link management plugin allows you to easily track your affiliate links in Google Analytics. MonsterInsights affiliate tracking also uses cloaked links for tracking.</p>\n<p>So, your first task is to <a href=\"https://www.isitwp.com/refer/thirstyaffiliates/\" target=\"_blank\" rel=\"nofollow\">install ThirstyAffiliates</a> and add your affiliate links to its interface. It’s easy to add and manage your affiliate links using this plugin. </p>\n<p>If you need detailed instructions, check out our tutorial on <a href=\"https://www.wpbeginner.com/plugins/how-to-add-affiliate-links-in-wordpress-with-thirstyaffiliates/\" target=\"_blank\">how to add affiliate links in WordPress with ThirstyAffiliates</a>. </p>\n<p>After you add and manage your affiliate links with ThirstyAffiliates, you’re ready to set up affiliate tracking with MonsterInsights. </p>\n<h3>Step 2. Setting Up Affiliate Tracking in Google Analytics Using MonsterInsights</h3>\n<p>Setting up affiliate tracking with MonsterInsights is really simple. It’ll take just a few clicks to complete the setup process.</p>\n<p>To get started, you’ll need to <a href=\"https://www.monsterinsights.com/\" target=\"_blank\">install MonsterInsights</a> on your WordPress site. Then, connect your site with Google Analytics using MonsterInsights. It’s easy to set up Google Analytics with this plugin. </p>\n<p>If you need detailed instructions, here’s our step-by-step guide on <a href=\"https://www.isitwp.com/install-google-analytics-wordpress-site/\">how to set up Google Analytics in WordPress with MonsterInsights</a>. </p>\n<p>After the setup process is complete, you’re ready to set up affiliate tracking. </p>\n<p>Navigate to <strong>Insights &raquo; Settings</strong> from your WordPress dashboard and then click on the <strong>Tracking</strong> tab at the top of the page. Then, go to the <strong>Affiliate Links</strong> tab in the left taskbar.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/monsterinsights-affiliate-tracking-setup.png\" alt=\"monsterinsights-affiliate-tracking-setup\" width=\"775\" height=\"680\" class=\"alignnone size-full wp-image-225308\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/monsterinsights-affiliate-tracking-setup.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/monsterinsights-affiliate-tracking-setup-300x263.png 300w, https://www.isitwp.com/wp-content/uploads/2018/11/monsterinsights-affiliate-tracking-setup-768x674.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>There, you’ll see 2 fields:</p>\n<p><strong>1) Set path for internal links to track as outbound links:</strong></p>\n<p>In this field, you’ll need to specify the path for internal links to track as outbound links. When using an affiliate management plugin like <a href=\"https://www.isitwp.com/refer/thirstyaffiliates/\" target=\"_blank\" rel=\"nofollow\">ThirstyAffiliates</a>, your affiliate links will look like an internal link. </p>\n<p>For example, your affiliate may look like this:  <strong>http://yoursite.com/recommends/product-name</strong></p>\n<p>In the above example, the link looks like an internal link however it redirects to an outbound link (i.e. an affiliate link). And, your affiliate links are cloaked with <strong>/recommends/</strong>.  </p>\n<p>Now, you’ll need to paste <strong>/recommends/</strong> in this field, so that Google Analytics can identify which internal links are affiliate links. If you use multiple prefixes, you can separate them with a comma: /recommends/,/out/.</p>\n<p><strong>2) Label for those links:</strong></p>\n<p>The label in your Google Analytics report lets you identify where the click came from. For example, you can add a label <strong>aff</strong> to your affiliate links.</p>\n<p>After you complete these 2 fields, click <strong>Save Changes</strong>.</p>\n<p>That’s it. You’re done with affiliate link tracking setup.</p>\n<h3>Step 3: Viewing Affiliate Link Tracking Reports</h3>\n<p>Now that you’ve set up affiliate tracking in WordPress with MonsterInsights, you may be curious how to view the reports. So, here it is!</p>\n<p>With MonsterInsights, you can view your most important <a href=\"https://www.monsterinsights.com/feature/google-analytics-dashboard/\" target=\"_blank\">analytics reports right inside your WordPress dashboard</a>. To view your affiliate reports, go to <strong>Insights &raquo; Reports &raquo; Publishers</strong> from your WordPress dashboard.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/affiliate-links-reports-monsterinsights-dashboard-reports.png\" alt=\"affiliate-links-reports-monsterinsights-dashboard-reports\" width=\"775\" height=\"882\" class=\"alignnone size-full wp-image-225305\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/affiliate-links-reports-monsterinsights-dashboard-reports.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/affiliate-links-reports-monsterinsights-dashboard-reports-264x300.png 264w, https://www.isitwp.com/wp-content/uploads/2018/11/affiliate-links-reports-monsterinsights-dashboard-reports-768x874.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>This report shows you the 10 best affiliate links for your site. If you want to see more than that, you can click the <strong>View All Affiliate Links Report</strong> button at the bottom of the report. That will redirect you to <strong>Behavior &raquo; Events Top Events</strong> in your Google Analytics account. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/top-events-ga-reports.png\" alt=\"top-events-ga-reports\" width=\"775\" height=\"457\" class=\"alignnone size-full wp-image-225310\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/top-events-ga-reports.png 775w, https://www.isitwp.com/wp-content/uploads/2018/11/top-events-ga-reports-300x177.png 300w, https://www.isitwp.com/wp-content/uploads/2018/11/top-events-ga-reports-768x453.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>We hope this article helped you to learn how to track affiliate links in Google Analytics. </p>\n<p>You may also want to see our guide on <a href=\"https://www.isitwp.com/create-amazon-affiliate-store-wordpress-make-money/\">how to create an Amazon affiliate store with WordPress</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/how-to-track-affiliate-links-google-analytics/\">How to Track Affiliate Links in Google Analytics (Easy Way)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://www.isitwp.com/how-to-track-affiliate-links-google-analytics/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:28:\"https://www.isitwp.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s: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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";s:17:\"Sucuri/Cloudproxy\";s:4:\"date\";s:29:\"Sun, 30 Dec 2018 20:30:17 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:11:\"x-sucuri-id\";s:5:\"14003\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:25:\"strict-transport-security\";a:2:{i:0;s:44:\"max-age=31536000; includeSubdomains; preload\";i:1;s:13:\"max-age=86400\";}s:23:\"content-security-policy\";s:26:\"upgrade-insecure-requests;\";s:10:\"set-cookie\";s:98:\"srv_id=9c4564d9ab24308e506a24325193b11c; expires=Sat, 29-Dec-18 10:49:09 GMT; max-age=3600; path=/\";s:4:\"vary\";s:6:\"Cookie\";s:7:\"expires\";s:29:\"Thu, 19 Nov 1981 08:52:00 GMT\";s:13:\"cache-control\";s:35:\"no-store, no-cache, must-revalidate\";s:6:\"pragma\";s:8:\"no-cache\";s:4:\"etag\";s:34:\"\"32309e69cd3e7e9e7aeaf079ce8e2646\"\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:9:\"x-backend\";s:22:\"awesomemotive-web3.com\";s:14:\"x-sucuri-cache\";s:3:\"HIT\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(5524,'wpforms_review','a:2:{s:4:\"time\";i:1545903291;s:9:\"dismissed\";b:0;}','yes'),(7822,'td_011','a:7:{s:12:\"firstInstall\";s:14:\"themeInstalled\";s:13:\"td_log_status\";s:3:\"off\";s:28:\"td_timestamp_install_plugins\";s:9:\"installed\";s:23:\"td_social_drag_and_drop\";a:16:{s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:10:\"googleplus\";b:1;s:9:\"pinterest\";b:1;s:8:\"whatsapp\";b:1;s:8:\"linkedin\";s:0:\"\";s:6:\"reddit\";s:0:\"\";s:4:\"mail\";s:0:\"\";s:5:\"print\";s:0:\"\";s:6:\"tumblr\";s:0:\"\";s:8:\"telegram\";s:0:\"\";s:11:\"stumbleupon\";s:0:\"\";s:2:\"vk\";s:0:\"\";s:4:\"digg\";s:0:\"\";s:4:\"line\";s:0:\"\";s:5:\"viber\";s:0:\"\";}s:10:\"td_version\";s:5:\"9.2.2\";s:9:\"td_011_tp\";i:1546203955;s:7:\"td_011_\";s:1:\"1\";}','yes'),(7867,'widget_td_block_social_counter_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5475,'boldgrid_static_pages','a:1:{s:5:\"pages\";a:2:{s:16:\"pages_in_pageset\";a:6:{i:0;O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"278\";s:16:\"page_revision_id\";s:4:\"2475\";s:10:\"page_title\";s:4:\"Home\";s:9:\"page_slug\";s:4:\"home\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:11872:\"\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color5-background-color color5-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div style=\"background-color: transparent;\">\n<h2 class=\"color3-color\" style=\"text-align: center;\">The Best In The Industry</h2>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 64px;\">\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<div style=\"padding: 1.5em 3em; margin: 10px 0px;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-left color1-text-default color1-background-color\">\n<h4 class=\"color2-color\">A Different Approach</h4>\n<p class=\"\">At NTP Consulting, we believe the spirit under which your company was formed is a vital part of its future growth. We won&rsquo;t tell you to change your corporate culture or anything else that makes your business an amazingly unique enterprise.</p>\n<p class=\"\">At NTP Partners Consulting, we don&rsquo;t get our testimonials by asking our clients for them &ndash; we wait for them to develop organically in emails, commentary or blog posts.</p>\n&nbsp;\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More </a></p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\n<div style=\"background-color: transparent;\" class=\"\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded wp-image-38\" style=\"margin-top: 13px; margin-bottom: 13px;\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl.jpg\" alt=\"e7rlgujjazc\" data-imhwpb-asset-id=\"695290\" width=\"600\" height=\"600\">\n\n&nbsp;\n<p class=\"\">Though our services are divided into basic areas of marketing, finance, production and growth, we treat all our clients as individuals and don&rsquo;t think a one-sized-fits-all solution will work. We&rsquo;ll help you develop a customized plan to your unique position.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12 added-element\">\n<div style=\"background-color: transparent;\" class=\"\">\n<h4 class=\"\">Quality Over Quantity</h4>\n<p class=\"\">Because we have so many brilliant consultants in a wide variety of industries, we&rsquo;ve been able to pick the very best advice for re-inventing your business into a dynamic, thriving enterprise where people are lining up to get in and share the experience. If you&rsquo;ve dreamed of making your business extraordinary, our Business Renovation Program will take you there.</p>\n<p class=\"\">We believe in honoring the unique personalities, culture and market that has grown your business so far, and hire only the very best consultants to help you take your business into the future with success beyond your wildest dreams.</p>\n<p class=\"\">Although you can tell a lot about a business or service by looking at its website, the best way to see what they can do is by looking through their customer&rsquo;s eyes and seeing what they&rsquo;ve accomplished.</p>\n\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div>\n<ul class=\"\"><li>Optimize Performance</li>\n 	<li>Contract Consultants</li>\n</ul></div>\n</div>\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div>\n<ul class=\"\"><li>Costs in Advance</li>\n 	<li>Technology Planning</li>\n</ul></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color2-background-color color2-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 41px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color1-color\" style=\"text-align: center;\">Services</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 83px;\">\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-39\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft.jpg\" alt=\"jwimshwif14\" data-imhwpb-asset-id=\"695291\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">&nbsp;Makeover</h4>\n<p class=\"\" style=\"text-align: center;\">Whether you need to have some serious work done on your social media marketing, we have marketing experts who can help.</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-40\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps.jpg\" alt=\"unrkg2jh1j0\" data-imhwpb-asset-id=\"695292\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">Flow Finance</h4>\n<p class=\"\" style=\"text-align: center;\">What if running finance was about being able to capture the very best out of every new possibility that was presented to you?</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-41\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x.jpg\" alt=\"jrh5laq-mis\" data-imhwpb-asset-id=\"695293\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">Production Plus</h4>\n<p class=\"\" style=\"text-align: center;\">Production Plus puts the world&rsquo;s top manufacturing and operations gurus into action cutting your overhead.</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 14px; margin-bottom: 14px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-42\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74.jpg\" alt=\"t5bva-q_m_y\" data-imhwpb-asset-id=\"695294\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">Dynamic Growth</h4>\n<p class=\"\" style=\"text-align: center;\">If it&rsquo;s time to take your business to the next level, Dynamic Growth will get you there quickly and efficiently. Let us take you there!</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color5-background-color color5-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 20px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color3-color\" style=\"text-align: center;\">Testimonials</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 20px;\">\n<div class=\"col-md-3 col-sm-4 col-xs-12\">\n<h4 style=\"text-align: center;\"><img class=\"aligncenter bg-img bg-img-circle wp-image-43\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh.jpg\" alt=\"aslrezyut4c\" data-imhwpb-asset-id=\"695295\" width=\"140\" height=\"140\"></h4>\n<h4 style=\"text-align: center;\">Alan Smith</h4>\n</div>\n<div class=\"col-md-9 col-sm-8 col-xs-12\">\n<div style=\"padding: 2em 3em; margin-top: 10px; margin-bottom: 10px;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-left color1-text-default color1-background-color\">\n<p class=\"\" style=\"font-size: 16px;\">After we dealt poorly with a product recall, we were worried that our business was going to fail. We had marketing people who could tell us how to promote our products, but nobody could tell us how to regain our customers&rsquo; trust and loyalty. NTP&rsquo;s Marketing Makeover put us back in the game.</p>\n\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 64px;\">\n<div class=\"col-md-3 col-sm-4 col-xs-12\">\n<h4 style=\"text-align: center;\"><img class=\"aligncenter size-full bg-img bg-img-circle wp-image-44\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf.jpg\" alt=\"3hoaon9mc88\" data-imhwpb-asset-id=\"695296\" width=\"140\" height=\"140\"></h4>\n<h4 class=\"\" style=\"text-align: center;\">Aimee Lee</h4>\n</div>\n<div class=\"col-md-9 col-sm-8 col-xs-12\">\n<div style=\"padding: 2em 3em; margin-top: 10px; margin-bottom: 10px;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-left color1-text-default color1-background-color\">\n<p class=\"\" style=\"font-size: 16px;\">We knew we had a great product, but we didn&rsquo;t know how to take the business to the next level so that we could see real success. The comprehensive Dynamic Growth program offered by NTP worked with us every step of the way so we could grow our company without sacrificing our company spirit. We just made Fortune 500!</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color2-background-color color2-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 20px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div>\n<h2 class=\"color1-color\" style=\"text-align: center;\">About Our Company</h2>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 89px;\">\n<div class=\"col-md-4 col-sm-5 col-xs-12\">\n<div class=\"\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded-bottom-left bg-img-rounded-top-left wp-image-45\" style=\"margin-top: 15px; margin-bottom: 15px;\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d.jpg\" alt=\"ttpmpll_2lc\" data-imhwpb-asset-id=\"695297\" width=\"600\" height=\"600\"></div>\n</div>\n<div class=\"col-md-4 col-sm-7 col-xs-12\">\n<div style=\"padding: 2.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-edged color1-text-default color1-background-color\">\n<p class=\"\"><img class=\"aligncenter bg-img bg-img-1 wp-image-46\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n.jpg\" alt=\"wnz7_5evuwu\" data-imhwpb-asset-id=\"695298\" width=\"240\" height=\"240\"></p>\n&nbsp;\n<p class=\"\">Determined to create something better, our company was formed to help small businesses reach that next level without losing their personality. Fortune 500 and some of the best marketers in the world created a dynamic company of consultants who were able to take a small business in hand and turn it into a growing, dynamic powerhouse.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12\">\n<div style=\"padding: 2.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-edged color1-text-default color1-background-color\">\n<p class=\"\">We believe that creating growth is only helpful if the company is able to continue. Destroying a company&rsquo;s spirit in the interest of growth only leads to a failed enterprise.</p>\n<p class=\"\">Because of this value, we&rsquo;re always happy to go above and beyond for your company, reaching out to our extensive network of contact to develop the perfect program so your company can realize an amazing level of dynamic growth.</p>\n<p class=\"\">We don&rsquo;t want you to change. We&rsquo;ll help you get there without sacrificing your values.</p>\n&nbsp;\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More&nbsp; </a></p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n\";s:14:\"checklist_html\";N;s:6:\"layout\";s:8:\"homepage\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";s:2:\"33\";s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:1;O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"67\";s:16:\"page_revision_id\";s:3:\"326\";s:10:\"page_title\";s:12:\"Blogging 101\";s:9:\"page_slug\";s:12:\"blogging-101\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:2491:\"\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h3>Pages vs. Posts</h3>\r\n<p class=\"mod-reset\"><img class=\"alignright wp-image-47\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/clock-imhwpb-ueaegla4i1gpi5i.jpg\" alt=\"clock\" data-imhwpb-asset-id=\"788447\" height=\"390\" width=\"293\" style=\"margin-bottom: 20px;\"></p>\r\nIf you\'re new to WordPress you may be wondering what\'s the big deal behind <em><strong>Pages</strong></em> and <em><strong>Posts</strong></em>. At first glance they appear to be one and the same: if you were to create either a new page or a new post you\'d be presented with nearly identical interfaces and in many cases the public appearance of pages and posts will look the same.\r\n\r\nDon\'t let this fool you. There\'s a very fundamental difference between the two and that difference is what makes CMSs, like WordPress, great platforms for integrating blogs with traditional websites.\r\n<h4>Pages</h4>\r\nThink about the kind of pages that make up a typical website. Most often you\'ll see pages like \"Home\", \"About Us\", \"Services\", \"Contact Us\", etc. Within WordPress these are often treated as <em><strong>Pages</strong></em>; documents that have no particular regard for the time they were posted.\r\n\r\nFor example, when you visit the \"About Us\" page of your favorite company\'s website you don\'t expect the content to be very different from what was available there a week ago.\r\n\r\n<!--more Read more > -->\r\n<h4>Posts</h4>\r\nNow take a moment to think of your favorite news website. A news site is an ideal example of when you\'d expect content to be different from the last time you visited &mdash; after all, news just wouldn\'t be news if it weren\'t current. In the case of news sites, <em><strong>Posts</strong></em> are most often used to write articles.\r\n\r\nWhen you publish a post within WordPress it knows to treat the post differently than the way it treats a page. For example, when you enable a blog within your BoldGrid theme, it will list all of your published posts in reverse chronological order on your <em><strong>Blog</strong></em> page.\r\n\r\nYour BoldGrid site can contain both pages and posts, i.e. you may have an \"About Author\" page to compliment your weekly blog. When done well, utilizing pages and posts in this way can help you build a more engaging experience for your visitors.\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</div>\n\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:2;O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"68\";s:16:\"page_revision_id\";s:3:\"331\";s:10:\"page_title\";s:16:\"Basic Taxonomies\";s:9:\"page_slug\";s:16:\"basic-taxonomies\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:1947:\"\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h3>Categories and Tags</h3>\r\n<p class=\"mod-reset\"><img class=\"aligncenter size-full wp-image-48\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/desktop-imhwpb-j5ip7kfq9yw9dlf.jpg\" alt=\"desktop\" data-imhwpb-asset-id=\"788448\" height=\"450\" width=\"900\"></p>\r\n\r\nIf you write about a variety of subjects, categories can help your readers find the posts that are most relevant to them. For instance, if you run a consulting business, you may want some of your posts to reflect work you\'ve done with previous clients, while having other posts act as informational resources. In this particular case, you can set up 2 categories: one labeled <em><strong>Projects</strong></em> and another labeled <em><strong>Resources</strong></em>. You\'d then place your posts in their respective categories.\r\n\r\n<!--more Read more > -->\r\n\r\nCategories are accessible from the post editor. There you can create new categories and assign them to your posts.\r\n\r\nTags, on the other hand, allow you to label your posts with relevant topics. For instance, within one of your resource posts you may choose to write about a set of project management tools. While you can certainly create a new category called \"Project Management Tools,\" you may not plan to write about the topic often enough to justify giving it a dedicated category. Instead, you may want to tag your post with several topics that exists within the post; e.g. <em><strong>project management tools, communication, time tracking</strong></em>, etc.\r\n\r\nWhat\'s great about tags is that they are searchable and provide your users another way to find content on your site. Anyone searching for \"project management tools\" will be able to locate any posts you\'ve tagged with those words!\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</div>\n\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:3;O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"69\";s:16:\"page_revision_id\";s:4:\"1683\";s:10:\"page_title\";s:23:\"Tips For Better Writing\";s:9:\"page_slug\";s:23:\"tips-for-better-writing\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:1956:\"\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h3>Plan Your Content</h3>\r\n<p class=\"mod-reset\"><img class=\"alignright wp-image-49\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/laptop-imhwpb-id7lp8imt7hfuys.jpg\" alt=\"laptop\" data-imhwpb-asset-id=\"788449\" height=\"225\" width=\"300\" style=\"margin-bottom: 20px;\"></p>\r\nIf you\'re considering adding a blog to your site, you\'ll want to have a plan beforehand. Planning your blog will help your subject matter remain consistent over time. It\'ll also help you determine whether or not there\'s enough material to maintain a steady stream of posts.\r\n\r\nOne pitfall many new bloggers run into is starting a blog that isn\'t posted to frequently enough. A shortage of recent posts can give your visitors a bad impression of your business. One may think \"I wonder if they&rsquo;re still in business\" or \"they may want to hire a writer.\"\r\n\r\nA blog, like any other customer facing aspect of your business, communicates your brand. If it isn\'t maintained and given proper attention, people will notice. Post regularly and keep your content fresh. Give your audience a reason to visit often.\r\n<p class=\"\"><!--more Read more > --></p>\r\n&nbsp;\r\n<h3>Find Your Audience</h3>\r\nWhile on the topic of audiences, you\'ll likely want to identify yours early on. If your blog is going to be set up to compliment a business, your target audience will likely be the same as your consumer base; you\'re then writing for the same people that buy your product. You\'ll want to allow any marketing material you\'ve used inform the style and tone of your writing. Think of your blog as an extension of your company\'s brand.\r\n\r\nIf, on the other hand, your business is completely new or you don\'t happen to be selling anything in particular, this is the time to start thinking about your brand ...\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"0\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:4;O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"28\";s:16:\"page_revision_id\";s:4:\"2703\";s:10:\"page_title\";s:8:\"About Us\";s:9:\"page_slug\";s:8:\"about-us\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:4549:\"\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2>Helping Your Business Build Success</h2>\r\n<h4>Develop Your Path to Greatness</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nAt Amazing Business Consulting, our business is helping your business succeed. Whether you need help with business planning, need back office support or need to change up your game to higher-level executive action, we\'ve got programs and services you need to make your business rock.\r\n\r\nFounded by Bradley Jessup in 1995, we\'ve had over 20 years\' experience in helping entrepreneurs develop success in their business and personal lives. Our focus is finding areas where your business could be more productive and successful and then helping you develop the path to get it there.\r\n<div class=\"mod-space\"></div>\r\n<div class=\"gridblock\">\r\n<p class=\"p-button-primary\"><a class=\"button-primary\" href=\"#\">Customer Testimonials</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-50\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780426\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-Y9nzl9tA3Lw-360x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"14|landscape\" width=\"360\" class=\"wp-image-51\"></p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<h2>Professional Services</h2>\r\nWe offer a variety of professional services that help you achieve your business goals. Do you need help with building a comprehensive business plan to get financing? What about one-on-one mentoring to take your career to the next level? We\'ve got that.\r\n\r\n</div>\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-sHzMcXkJNrw-360x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"14|landscape\" width=\"360\" class=\"wp-image-52\"></p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<h2>Comprehensive Programs</h2>\r\nOur dynamic programs cover businesses in a variety of stages and sizes. Whether you\'re just starting out, have too many hats as a SME owner, need high-level executive mentoring or need marketing tips that fit your schedule, our programs fit the bill.\r\n\r\n</div>\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-bAPQgfthcrI-360x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"14|landscape\" width=\"360\" class=\"wp-image-53\"></p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<h2>Amazing Results</h2>\r\nWhere do we deliver the most? In our client\'s results. We\'ve worked with companies from single-person startups to Fortune 500 executives and everything in between. We provide a guarantee that if you follow our plan and don\'t see amazing results, you don\'t pay.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"1\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:5;O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"29\";s:16:\"page_revision_id\";s:4:\"2706\";s:10:\"page_title\";s:10:\"Contact Us\";s:9:\"page_slug\";s:10:\"contact-us\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:703:\"\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\n\nPlease use the contact form below, if you have any general questions or requests about our services.\n\nWe will try our best to respond back to you within 24 hours.\n\n[wpforms id=\"20\"]\n\n</div>\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\n\n\n\n\n\n\n\n\n\n\n\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-54\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780433\"></p>\n\n</div>\n</div>\n</div>\n</div>\n\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:2:\"99\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}}s:10:\"additional\";a:0:{}}}','yes'),(587,'db_upgraded','','yes'),(586,'show_comments_cookies_opt_in','0','yes'),(7818,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1546203887;s:7:\"checked\";a:5:{s:9:\"Newspaper\";s:5:\"9.2.2\";s:13:\"twentyfifteen\";s:3:\"2.2\";s:14:\"twentynineteen\";s:3:\"1.1\";s:15:\"twentyseventeen\";s:3:\"1.9\";s:13:\"twentysixteen\";s:3:\"1.7\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(1188,'boldgrid_gallery_current_version','1.5','yes'),(7624,'_site_transient_timeout_boldgrid_gallery_version_data','1546226820','no'),(7625,'_site_transient_boldgrid_gallery_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:16:\"BoldGrid Gallery\";s:7:\"version\";s:3:\"1.5\";s:8:\"asset_id\";i:842930;s:12:\"release_date\";s:19:\"2017-08-08 18:07:20\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"4.8.1\";s:8:\"sections\";s:3824:\"{\"description\":\"<p>BoldGrid Gallery is a standalone plugin used for slideshows and galleries.<\\/p>\\n\",\"installation\":\"<ol>\\n<li><p>Upload the entire boldgrid-gallery folder to the \\/wp-content\\/plugins\\/ directory.<\\/p><\\/li>\\n<li><p>Activate the plugin through the Plugins menu in WordPress.<\\/p><\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.5<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.3<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-3292   Updated plugin URI.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3161   Fixed auto plugin update.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3151   Added check and load before using get<em>plugin<\\/em>data() for updates.<\\/li>\\n<li>Update:       JIRA WPB-3112   Updated wc-gallery: 1.52 => 1.55.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2912   Fixed issue when installing plugins from the Tools Import page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2892   Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).<\\/li>\\n<li>Testing:      JIRA WPB-2744   Tested on WordPress 4.7.<\\/li>\\n<li>Misc:         JIRA WPB-2503   Added plugin requirements to readme.txt file.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump Version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.3<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2344   Updated readme.txt for Tested up to 4.6.1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2336   Load BoldGrid settings from the correct WP option (site\\/blog).<\\/li>\\n<li>Update:       JIRA WPB-2368   Version constant is now set from plugin file.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2310   Removed broken plugin Settings link.  Pending review on WPB-2309.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2256   Updated readme.txt for Tested up to: 4.6.<\\/li>\\n<li>Rework:       JIRA WPB-1825   Formatting.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2114   Fixed gallery displaying in editor on wordpress 4.6.<\\/li>\\n<li>Bug fix:      JIRA WPB-2114   Fixing ordering of gallery items.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-2037   Added capability for auto-updates by BoldGrid API response.<\\/li>\\n<li>Update:       JIRA WPB-2024   Updated wc-gallery: 1.48 => 1.52.<\\/li>\\n<li>Misc:         Updated editor.js to pass JSHint.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-1884   Passed WordPress 4.5.1 testing.<\\/li>\\n<li>Bug fix:      JIRA WPB-1893   JS errors in console when viewing attachments.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1816   Fixed update class interference with the Add Plugins page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1809   Fixed undefined index \\\"action\\\" for some scenarios.  Optimized update class and addressed CodeSniffer items.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-1361   Added license file.<\\/li>\\n<li>Bug Fix:      JIRA WPB-1646   Fixing Issues where masonry gallery was not WYSIWYG.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-1611   Updated wc-gallery: 1.40 => 1.48.<\\/li>\\n<li>Rework:       JIRA WPB-1617   Updated require and include statements for standards.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Changed <strong>DIR<\\/strong> to dirname( <strong>FILE<\\/strong> ) for PHP &lt;=5.2.<\\/li>\\n<li>Misc          JIRA WPB-1468   Updated readme.txt for Tested up to: 4.4.1<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1363   Updated readme.txt for WordPress standards.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0<\\/h4>\\n\\n<ul>\\n<li>Initial public release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:1636:\"{\"4.8.1\":{\"1.5\":[100,95]},\"4.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.3.1\":{\"0.4\":[100,12],\"1.0\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.3\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,95],\"1.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:83:\"{\"gallery\":\"Gallery\",\"slider\":\"Slider\",\"slideshow\":\"Slideshow\",\"masonry\":\"Masonry\"}\";s:7:\"banners\";s:127:\"{\"low\":\"//repo.boldgrid.com/assets/banner-gallery-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-gallery-1544x500.png\"}\";}}s:7:\"updated\";i:1546198020;}','no'),(3563,'WPLANG','','yes'),(3564,'new_admin_email','pvieira@arrowplan.com','yes'),(7672,'_transient_timeout_feed_mod_29f7869e391c2a2c562f0042f814b9de','1546245018','no'),(7673,'_transient_feed_mod_29f7869e391c2a2c562f0042f814b9de','1546201818','no'),(7674,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1546245018','no');
INSERT INTO `wp_options` VALUES (7675,'_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:39:\"Matt: Democratize Publishing, Revisited\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48797\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://ma.tt/2018/12/democratize-publishing-revisited/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1674:\"<p>During my <a href=\"https://www.youtube.com/watch?v=v2aNNlC8TUE\">State of the Word Q&amp;A</a> I received some blogging homework from <a href=\"https://torumiki.com/\">Toru Miki</a>, a WordPress contributor based in Tokyo. He asked me to revisit the WordPress mission, “Democratize Publishing,” and reflect on what that mission means to me today. So here you go, Toru: <br /></p>\n\n\n\n<p>For many years, my definition of “Democratize Publishing” has been simply to help make the web a more open place. That foundation begins with the software itself, as outlined by the <a href=\"https://ma.tt/2014/01/four-freedoms/\">Four Freedoms</a>: <br /></p>\n\n\n\n<p>0. The freedom to run the program, for any purpose.</p>\n\n\n\n<p>1. The freedom to study how the program works, and change it so it does your computing as you wish.</p>\n\n\n\n<p>2. The freedom to redistribute copies so you can help your neighbor.</p>\n\n\n\n<p>3. The freedom to distribute copies of your modified versions, giving the community a chance to benefit from your changes.<br /></p>\n\n\n\n<p>In 2018, the mission of “Democratize Publishing” to me means that people of all backgrounds, interests, and abilities should be able to access Free-as-in-speech software that empowers them to express themselves on the open web and to own their content.<br /></p>\n\n\n\n<p>But as Toru noted in the original question, “Democratize Publishing” has come to mean many things to many people in the WordPress community. That’s one reason I like it. The WordPress mission is not just for one person to define. <br /></p>\n\n\n\n<p>So I’d like to ask everyone: What does “Democratize Publishing” mean to you? &nbsp;<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 00:06:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s: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:19:\"Matt: Sponcon Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48788\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2018/12/sponcon-posts/\";s: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:422:\"<p>I found <a href=\"https://www.theatlantic.com/technology/archive/2018/12/influencers-are-faking-brand-deals/578401/\">this post by Taylor Lorenz</a> describing how aspiring influencers are posting fake, unpaid sponsored content to raise their status or hoping to nab a real sponsorship <a href=\"https://www.theatlantic.com/technology/archive/2018/12/influencers-are-faking-brand-deals/578401/\">is totally bananas</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Dec 2018 16:08: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s: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: WordPress Designers Explore Ideas for Moving Navigation to a Block Interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86518\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/wordpress-designers-explore-ideas-for-moving-navigation-to-a-block-interface\";s: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:5176:\"<p>Creating a block for navigation menus is one of the <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">nine projects</a> Matt Mullenweg identified for 2019 that will make a big impact for WordPress users. It&#8217;s also one of the most challenging from a UI perspective. At WordCamp US&#8217; contributor day, the design team <a href=\"https://make.wordpress.org/design/2018/12/18/exploring-a-nav-block-at-wordcamp-us/\">explored ideas for what a navigation block might look like in the new editor</a>.</p>\n\n\n\n<img />\n\n\n\n<p>The team&#8217;s designs for a navigation block are still in the rough sketches stage, but it&#8217;s interesting to see different approaches as the project develops.</p>\n\n\n\n<p>&#8220;If the Nav block could live in a container block (columns perhaps), then the settings for it could be tweaked in the sidebar,&#8221; XWP designer Joshua Wold said. &#8220;A further problem comes up when you try to figure out how much of the design of the nav should be controlled by the theme vs the Gutenberg editor.&#8221;</p>\n\n\n\n<p>This is an important question  that will need to be answered in the near future &#8211; not only for navigation but also more broadly for the future of the role of themes in WordPress. We will be exploring this in more depth in future posts.</p>\n\n\n\n<p>Designer Mel Choyce and Riad Benguella (one of the leads for Gutenberg phase 2), are currently soliciting ideas from the wider WordPress community about how the project should tackle the upcoming customization focus.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">You care about WordPress and you don\'t have the time to contribute day to day, I\'d love to hear your thoughts to get some inspiration about Phase 2 of Gutenberg, Site building, Customization&#8230; A tweet, a blog post, whatever works best for you. <a href=\"https://twitter.com/hashtag/gutenideas?src=hash&ref_src=twsrc%5Etfw\">#gutenideas</a> <a href=\"https://t.co/Y7tod5DoB2\">https://t.co/Y7tod5DoB2</a></p>&mdash; Riad Benguella (@riadbenguella) <a href=\"https://twitter.com/riadbenguella/status/1075458929579167745?ref_src=twsrc%5Etfw\">December 19, 2018</a></blockquote>\n</div>\n\n\n\n<p>One of the chief complaints about the first phase of the Gutenberg project was the <a href=\"https://make.wordpress.org/core/2018/10/05/gutenberg-phase-2-leads/#comment-34092\">lack of public discussion</a> about the goals and the process of creating the editor. The Gutenberg team&#8217;s willingness to collate ideas across multiple mediums demonstrates a strong effort to seek out more diverse perspectives for phase 2. Ideas have already started rolling in.  </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Riffing on something <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> said at <a href=\"https://twitter.com/hashtag/SOTW?src=hash&ref_src=twsrc%5Etfw\">#SOTW</a> <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a>: To map out the future of themes / <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> 2.0 / <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> Next, maybe ship a Block Zen Garden type thing and asking designers / devs to create solutions, then work backwards to find a UI / UX to make that possible.</p>&mdash; Morten i Norge <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f1f8-1f1ef.png\" alt=\"??\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f328.png\" alt=\"?\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f976.png\" alt=\"?\" class=\"wp-smiley\" /> (@mor10) <a href=\"https://twitter.com/mor10/status/1073664020471660544?ref_src=twsrc%5Etfw\">December 14, 2018</a></blockquote>\n</div>\n\n\n\n<p>&#8220;Rather than starting with the back-end UI, we can start with the front-end result and build a UI to make the building of that front-end possible without messing up the accessibility and resilience of the root HTML document,&#8221; Morten Rand-Hendricksen said. &#8220;At the root of this would be CSS Grid as the main layout module to allow drag-and-drop style block layouts without making changes to the HTML source order.&#8221;</p>\n\n\n\n<p>Many of the ideas that are coming in so far relate more broadly to site customization. These include <a href=\"http://theme.tips/blog/2018/12/21/random-thoughts-about-gutenizer-phase-2/\">questions about what role the Customizer will play</a> and requests for features like creating <a href=\"https://twitter.com/alihs707/status/1075640228470243329\">custom widths on the fly</a> and the <a href=\"https://twitter.com/alihs707/status/1075640228470243329\">ability to drag content across columns.</a> If you have ideas about how navigation can be implemented in a block, take some time before the end of the year and drop your comments on the <a href=\"https://make.wordpress.org/design/2018/12/18/exploring-a-nav-block-at-wordcamp-us/\">make/design post</a> or write your own post and leave a link for others to share feedback.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Dec 2018 23:52: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: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:26:\"Matt: Seneca on Friendship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48764\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2018/12/seneca-on-friendship/\";s: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:705:\"<blockquote class=\"wp-block-quote\"><p>But nothing delights the mind so much as fond and loyal friendship. What a blessing it is to have hearts that are ready and willing to receive all your secrets in safety, with whom you are less afraid to share knowledge of something than keep it to yourself, whose conversation soothes your distress, whose advice helps you make up your mind, whose cheerfulness dissolves your sorrow, whose very appearance cheers you up!</p></blockquote>\n\n\n\n<p>You can read <em>On Tranquility of Mind</em> <a href=\"https://en.wikisource.org/wiki/Of_Peace_of_Mind\">online for free here</a> or I enjoyed <a href=\"https://www.amazon.com/dp/B00BCU07LO\">this edition from Penguin</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, 21 Dec 2018 20:55: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s: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:54:\"WPTavern: 9 Year Old Shares his Journey Learning React\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86488\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/9-year-old-shares-her-journey-learning-react\";s: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:819:\"<p>If learning React is among your New Year&#8217;s goals, here&#8217;s some inspiration from nine-year-old Revel Carlberg West. The video below is a recording of his presentation at the <a href=\"https://www.meetup.com/ReactNYC/\">React NYC</a> meetup. West describes how he learned basic HTML, CSS, and JavaScript and then moved on to learn React using the <a href=\"https://codesandbox.io/\">CodeSandbox</a> online code editor. He also gives a live demo of <a href=\"https://reactjs.org/docs/hooks-intro.html\">React Hooks</a> in action, a new feature that Sophie Alpert and Dan Abramov introduced at React Conf 2018. The code for West&#8217;s traffic light demo is <a href=\"https://codesandbox.io/s/xlw615w7ow\">available on CodeSandbox</a> if you want to follow along.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Dec 2018 19:59:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:87:\"WPTavern: WordPress 5.0.2 Released with Performance Gains of 330% for Block-Heavy Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86510\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/wordpress-5-0-2-released-with-performance-gains-of-330-for-block-heavy-posts\";s: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:1544:\"<p><a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\">WordPress 5.0.2</a>, the of first of two rapid releases following 5.0, is now available. Sites with automatic background updates enabled should already be on the latest version. </p>\n\n\n\n<p>This release addresses performance issues, one of the chief complaints for users who have adopted the block editor. It brings 45 improvements to the editor, with 14 of those related to performance and 31 bug fixes. According to Gary Pendergast, &#8220;the cumulated performance gains make it 330% faster for a post with 200 blocks.&#8221;</p>\n\n\n\n<p>This maintenance release also fixes 17 editor-related bugs in the default WordPress themes as well as internationalization issues related to script loading.</p>\n\n\n\n<p>Overall, 5.0.2 updates have gone smoothly, with the exception of a few conflicts with a handful of plugins. Most notably, WooCommerce store administrators found that the <a href=\"https://github.com/woocommerce/woocommerce/issues/22271\">Orders tab had disappeared</a> after their sites updated. WooCommerce has fixed the issue in a quick patch release (version 3.5.3) that was pushed out this morning.</p>\n\n\n\n<p>NextGEN Gallery creator Erick Danzer also reported <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1545334477273500\">a minor issue with the Classic block</a> that prevents users from editing galleries via the placeholder the plugin had added. A fix for that issue should be forthcoming in an update to the plugin.<br /></p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Dec 2018 21:14:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: Gutenberg-Inspired Jenga Game “Gutenblox” Now Available for Sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86500\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/gutenberg-inspired-jenga-game-gutenblox-now-available-for-sale\";s: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:1691:\"<div class=\"wp-block-image\"><img />photo credit: <a href=\"https://xwp.co/\">XWP</a></div>\n\n\n\n<p>XWP&#8217;s Gutenberg-inspired Jenga sets were arguably the most innovative swag at WordCamp US this year, but there weren&#8217;t enough to go around. Gutenblox, fondly dubbed &#8220;the Other Block Building Interface,&#8221; is now available on its own website where anyone can buy a set.</p>\n\n\n\n<p>The <a href=\"https://gutenblox.fun\">Gutenblox.fun</a> store is running on <a href=\"https://wordpress.org/plugins/bigcommerce/\">BigCommerce</a> with the new <a href=\"https://wordpress.org/themes/twentynineteen/\">Twenty Nineteen</a> theme active. It includes the rules of the game, cleverly adapted to the concept of Gutenblox:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Blocks treat Paragraphs, Headings, Media, etc. all as components that strung together make up the tower. Replacing the traditional concept of board games, Gutenblox is designed with progressive enhancement, meaning as new blocks are added to the top of the tower, they are backward compatible with all legacy content (although the legacy structure may become unstable as new blocks are added on).</p><p>We hope to offer rich value to players who will start with the foundation of a stable, accessible, and secure architecture, and then use a simple drag-and-drop method for modification.</p></blockquote>\n\n\n\n<p>If you&#8217;re looking for a last-minute holiday gift or birthday gift for a friend who loves WordPress, Gutenblox is fun option. It also helps support a good cause. XWP is donating all profits from the sales of the game to the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>. </p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Dec 2018 17:02:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:79:\"WPTavern: Introduction to the WPGraphQL Project with Jason Bahl and Ryan Kanner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86483\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/introduction-to-the-wpgraphql-project-with-jason-bahl-and-ryan-kanner\";s: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:1187:\"<p>At WordCamp US 2018 I had the chance to sit down with <a href=\"https://twitter.com/jasonbahl\">Jason Bahl</a> and <a href=\"https://twitter.com/CodeProKid\">Ryan Kanner</a>, both engineers at Digital First Media in Denver, Colorado, and contributors to the <a href=\"https://www.wpgraphql.com/\">WPGraphQL</a> project. WPGraphQL is an open source plugin that provides an extendable GraphQL schema and API for any WordPress site.</p>\n\n\n\n<p>Bahl, who created and maintains the project, also gave a lightning talk at WCUS on <a href=\"https://2018.us.wordcamp.org/session/gutenberg-graphql-and-building-blocks/\">using GraphQL with Gutenberg</a> to improve the performance of custom blocks, as well as the developer experience of building them.</p>\n\n\n\n<p>In our interview, Bahl and Kanner offer a general overview of the differences between GraphQL and REST. They explained how Digital First Media improved performance for the company&#8217;s publications by switching from REST to GraphQL. We also discussed how Gutenberg is a great use case for GraphQL and whether the project is something that could someday be included in WordPress core.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Dec 2018 04:00: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: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: WordPress 5.0.2 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4589:\"<p>WordPress 5.0.2 is now available!</p>\n\n\n\n<p>5.0.2 is a maintenance release that addresses 73 bugs. The primary focus of this release was performance improvements in the block editor: the cumulated performance gains make it 330% faster for a post with 200 blocks.</p>\n\n\n\n<p>Here are a few of the additional highlights:</p>\n\n\n\n<ul><li>45 total Block Editor improvements are included (14 performance enhancements &amp; 31 bug fixes).</li><li><a href=\"https://core.trac.wordpress.org/query?component=Bundled+Theme&milestone=5.0.2&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">17 Block Editor related bugs</a> have been fixed across all of the bundled themes.</li><li>Some <a href=\"https://core.trac.wordpress.org/query?component=I18N&milestone=5.0.2&col=id&col=summary&col=status&col=owner&col=type&col=priority&col=milestone&order=priority\">internationalization (i18n) issues</a> related to script loading have also been fixed.</li></ul>\n\n\n\n<p>For a full list of changes, please consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.0.2&group=component\">list of tickets on Trac</a> or the <a href=\"https://core.trac.wordpress.org/log/branches/5.0?action=stop_on_copy&mode=stop_on_copy&rev=44339&stop_rev=44183&limit=100&sfp_email=&sfph_mail=\">changelog</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/download/\">download WordPress 5.0.2</a> or visit Dashboard → Updates and click <em>Update Now</em>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 5.0.2:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/babaevan/\">Alexander Babaev</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/jdtrower/\">David Trower</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/edpittol/\">Eduardo Pittol</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/greg-raven/\">Greg Raven</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">gziolo</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">iCaleb</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/khleomix/\">khleomix</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff&nbsp;Paul</a>, <a href=\"https://profiles.wordpress.org/mihaivalentin/\">mihaivalentin</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/more/\"></a><a href=\"https://profiles.wordpress.org/mmaumio/\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pratikthink/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/strategio/\">strategio</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/torontodigits/\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/volodymyrkolesnykov/\">volodymyrkolesnykov</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/ze3kr/\">ze3kr</a>, and <a href=\"https://profiles.wordpress.org/mypacecreator/\">のむらけい</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Dec 2018 23:47:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:107:\"WPTavern: Happy Developers, Happy Ecosystem: The Intangible Impact of WordPress’ Minimum PHP Version Bump\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86464\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/happy-developers-happy-ecosystem-the-intangible-impact-of-wordpress-minimum-php-version-bump\";s: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:6401:\"<div class=\"wp-block-image\">\n<img />\n</div>\n<p>The following is a guest post by <a href=\"https://twitter.com/ChrisVanPatten\">Chris Van Patten</a>, founder of <a href=\"https://tomodomo.co\">Tomodomo</a>, a digital agency for magazine publishers. </p>\n<hr class=\"wp-block-separator\" />\n<p>For years, WordPress has been ever-so-slightly behind the times on PHP version support&#8230;to put it kindly.</p>\n<p>However, WordPress&#8217; legendary support for PHP versions back to 5.2 — versions long unsupported by the PHP project itself — wasn&#8217;t born out of a &#8220;we hate developers&#8221; strategy (although you&#8217;d be forgiven for thinking so given the reaction that policy often gets from developers). Instead, it was a genuinely noble and pragmatic effort to make WordPress, and thus publishing on the web, as widely available as possible.</p>\n<p>Despite the reaction from many developers (and security-minded sysadmins), that strategy worked: WordPress <a href=\"https://w3techs.com/technologies/overview/content_management/all\" rel=\"noopener\" target=\"_blank\">powers over 30% of the web</a>, and a <a href=\"https://wordpress.org/about/stats/\" rel=\"noopener\" target=\"_blank\">significant chunk of those installations are on unsupported PHP versions</a>. For those users, it&#8217;s not that they don&#8217;t care that they are on an unsupported version of PHP; they just don&#8217;t know, or don&#8217;t know how to solve the problem.</p>\n<p>But the winds of progress are blowing, and in 2019 WordPress is planning to make a change. Assuming everything goes according to plan, PHP 5.6 will become the minimum supported version in the first half of the year, and the minimum version will be bumped again to PHP 7 in the second half of 2019.</p>\n<p>There are obvious benefits here from a security perspective. The oldest versions of PHP supported by WordPress today stopped receiving official security updates ages ago (PHP 5.2 hit EOL, or &#8220;end-of-life,&#8221; nearly 8 years ago). The speed improvements will be tremendous as well, particularly in PHP 7. Speaking from my own experience, I have several sites that once needed aggressive caching to prevent server overload. Since PHP 7, they run faster than ever, without caching of any kind.</p>\n<p>Speed and security are the two most-cited reasons (and the most measurable reasons) for bumping the minimum version, but there are also other less tangible benefits that will filter well beyond WordPress core development.</p>\n<h3>Simplified support</h3>\n<p>While plugin developers have never been obligated to support all the versions of PHP that WordPress core does, many still chose to do so. That&#8217;s understandable: it could be tough to explain to a user why they can install WordPress in a certain development environment but couldn&#8217;t install a certain plugin.</p>\n<p>For plugins that tried to match core&#8217;s backward compatibility support, that means testing and supporting up to nine versions of PHP: 5.2 through 5.6, and 7.0 through 7.3. (There was no PHP 6. I won&#8217;t bother explaining the <a href=\"https://ma.ttias.be/php6-missing-version-number/\" rel=\"noopener\" target=\"_blank\">boring reasons why</a>.)</p>\n<p>By pushing to 5.6, and eventually some version of PHP 7+, that cuts the number of versions that developers will feel compelled to support in half. In some way, Core will likely continue to support these old versions (through security backports to old versions of WordPress, for instance) but plugin developers can be assured that they don&#8217;t need to — and don&#8217;t need to feel any semblance of guilt about it either.</p>\n<h3>Happier developers</h3>\n<p>Even developers who are excited about the WordPress platform as a whole are likely to admit that it&#8217;s maybe not the most exciting code-base in the world. Over the past few years, I&#8217;ve seen a number of examples of developers who once limited themselves to WordPress now stretching into other frameworks and languages: Laravel, JavaScript, and Go are all popular new homes for WordPress expats.</p>\n<p>Bumping the minimum version won&#8217;t change that apathy or exodus overnight, but it will give developers something to feel excited about. Modern PHP versions (especially PHP 7) offer genuinely cool new language features that make it easy to write performant, well-designed, and interesting code. I would even argue that it makes it fun. Modern PHP contains plenty of <a href=\"https://en.wikipedia.org/wiki/Syntactic_sugar\" rel=\"noopener\" target=\"_blank\">syntactic sugar</a>, and while you shouldn&#8217;t base your diet on sugar it certainly makes for a nice treat.</p>\n<p>Again, it is unlikely that core will start adopting these new language features on day one. The real benefit is that developers will feel empowered and secure in their decisions to start using these new capabilities, and will start to build plugins and themes that can borrow ideas from best practices in the broader PHP community.</p>\n<h3>Celebrating the intangible</h3>\n<p>While the measurable justifications for changing the minimum PHP version are certainly compelling, I think it&#8217;s also important to acknowledge these intangibles and indeed celebrate them. Bumping these versions will create a ripple effect across the ecosystem that will make developers more comfortable with writing modern code. It will reduce support and QA loads for companies that no longer need to support 9 different versions of PHP. It will make WordPress core a more attractive place to contribute.</p>\n<p>Gutenberg, and all the modern tooling and architecture it brought, has already reinvigorated developers across the ecosystem and brought a huge number of new core contributors (<a href=\"https://wptavern.com/contributing-to-gutenberg-a-new-contributors-experience\" rel=\"noopener\" target=\"_blank\">myself among them</a>). Embracing modern PHP is another step forward, and with other changes on the horizon (such as a <a href=\"https://make.wordpress.org/core/2018/12/09/on-wordpress-git/\" rel=\"noopener\" target=\"_blank\">move from SVN to Git</a>, coding standards changes, and projects like <a href=\"https://www.wptide.org/\" rel=\"noopener\" target=\"_blank\">Tide</a> which embrace new languages and architectures) I hope that 2019 will be the year WordPress delivers not only a best-in-class user experience, but a best-in-class developer experience too.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Dec 2018 17:57:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Chris Van Patten\";s: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:83:\"WPTavern: Gutenberg for Writers: How to Configure the Editor for Fewer Distractions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86427\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/gutenberg-for-writers-how-to-configure-the-editor-for-fewer-distractions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4740:\"<img />photo credit: <a href=\"https://stocksnap.io/photo/8Y0EDX4VP9\">Green Chameleon</a>\n\n\n\n<p>For a long time I could not compose posts with the Gutenberg editor. I tested each release of the plugin throughout its journey into WordPress 5.0, but found it too distracting for my basic needs. It seemed better suited for building a brochure website, not for someone who uses WordPress primarily for writing. </p>\n\n\n\n<p>This is the first thing you see on a vanilla install of WordPress when you go to the &#8220;Add New&#8221; post page:</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/09/Screen-Shot-2018-12-17-at-10.14.35-AM.png?ssl=1\"><img /></a></div>\n\n\n\n<p>Although it may not be immediately evident, the new editor actually has some built-in controls for improving the writing experience. They are tucked away behind the vertical ellipsis menu at the top of the screen. Here&#8217;s how to configure Gutenberg for writing:</p>\n\n\n\n<h3>Step 1: Hide the Settings Sidebar</h3>\n\n\n\n<p>The first step towards a more distraction-free writing experience is to hide the settings. Click the X at the top right of the screen.  If you&#8217;re trying to stay in the flow of writing, it&#8217;s not necessary to keep the block and document settings in view at all times. You can always toggle them on later when you&#8217;re finished getting your thoughts onto the screen.</p>\n\n\n\n<h3>Step 2: Turn on &#8220;Fullscreen Mode&#8221;</h3>\n\n\n\n<p>Many new and experienced WordPress users are not aware of Gutenberg&#8217;s &#8220;Fullscreen mode&#8221; that places the writing area in the center of the page and hides WordPress&#8217; admin menu sidebar.  This setting is a must for keeping distractions at bay. You can find it at the top right corner in the vertical ellipsis menu:</p>\n\n\n\n<img />\n\n\n\n<p>Once Fullscreen Mode is enabled, the writing area is greatly improved, with distractions removed from both sides of the content area. </p>\n\n\n\n<img />\n\n\n\n<h3>Step 3: Fix the Toolbar to the Top (optional)</h3>\n\n\n\n<p>The block toolbar popping in and out of view was the bane of my Gutenberg experience until they developed the &#8220;Top Toolbar&#8221; setting. By default, the block-level toolbar obscures part of the content above it (as seen in the image below) and an obtrusive blue outline follows your mouse as you move over the paragraphs you have already written.</p>\n\n\n\n<img />\n\n\n\n<p>The psychological affect of all these boxes popping in and out of view may be more taxing for some writers, so this step is optional. The &#8220;Top Toolbar&#8221; setting to hide the block-level toolbar, as well as the blue block outlines, is also inside the vertical ellipsis menu at the top. The best way to see the difference in the experience is to experiment with turning it on and off.</p>\n\n\n\n<p>Spotlight mode takes it one step further and greys out all the content except the current block, allowing writers to focus on one block at a time. When it is enabled, the blocks that are not being edited will partially fade away and no block outlines will be visible. </p>\n\n\n\n<img />Spotlight mode\n\n\n\n<p>Gutenberg still has a way to go before it can provide a truly distraction-free editing experience. None of the modes highlighted above will hide the metaboxes at the bottom or the menu bar at the top. They do, however, allow you to compose in an area without the block-level toolbar and sidebars getting in the way.</p>\n\n\n\n<p>My thoughts don&#8217;t always come out in full sentences and paragraphs. Sometimes they are scattered throughout a document in half sentences, single words, quotes, and fragments of quotes that I&#8217;m not certain I will use. How do I reconcile this with Gutenberg? Sometimes the Classic Block is a good option for a first draft that looks more like a pile of messy notes than a document of well-formed thoughts. Here&#8217;s what that looks like if you have never used it:</p>\n\n\n\n<img />Classic Block\n\n\n\n<p>Even with these settings available, some writers may still prefer to use a dedicated writing app instead of the WordPress editor. Fortunately, Gutenberg has very good support for copying and pasting from other applications.</p>\n\n\n\n<p>Top Toolbar, Spotlight, and Fullscreen modes are not the easiest features to discover but they can make a significant impact on your experience writing in the new editor. WordPress core may never provide a truly distraction-free writing experience, but that&#8217;s where the beauty of the plugin system comes into play. It gives developers the opportunity to create new and interesting approaches towards a better default writing experience. I hope to see some of those popping up in the directory as more users adopt 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:\"Tue, 18 Dec 2018 03:17:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: WordPress 5.0.2 to Bring Major Performance Improvements, Scheduled for December 19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86358\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-5-0-2-to-bring-major-performance-improvements-scheduled-for-december-19\";s: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:3081:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/12/stopwatch.jpg?ssl=1\"><img /></a>Processed with VSCOcam with c1 preset</p>\n<p><a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\" rel=\"noopener\" target=\"_blank\">WordPress 5.0.1</a> was released yesterday as a security release with fixes for seven vulnerabilities that were privately disclosed. It includes a few <a href=\"https://make.wordpress.org/core/2018/12/13/backwards-compatibility-breaks-in-5-0-1/\" rel=\"noopener\" target=\"_blank\">breaks in backwards compatibility</a> that plugin developers will want to review.</p>\n<p>WordPress 5.0.2 will be the first planned followup release to 5.0 and is now scheduled to be released December 19, 2018. Gary Pendergast posted a <a href=\"https://make.wordpress.org/core/2018/12/13/dev-chat-summary-december-12th/\" rel=\"noopener\" target=\"_blank\">summary</a> of this week&#8217;s dev chat that includes the schedule and scope for the upcoming release. It will include Gutenberg 4.7, Twenty Nineteen bug fixes, and a few PHP 7.3 compatibility fixes.</p>\n<p><a href=\"https://gschoppe.com/wordpress/benchmarking-gutenberg/\" rel=\"noopener\" target=\"_blank\">Slow performance</a> as compared to the classic editor has been a commonly-reported <a href=\"https://github.com/WordPress/gutenberg/issues/6466\" rel=\"noopener\" target=\"_blank\">issue</a> with Gutenberg. The project has a label for it on GitHub with <a href=\"https://github.com/WordPress/gutenberg/labels/%5BType%5D%20Performance\" rel=\"noopener\" target=\"_blank\">26 open issues</a>. 140 performance-related issues have already been closed so the team is making progress on speeding it up. 5.0.2 will bring major performance improvements to the editor, particularly for content that includes hundreds of blocks. </p>\n<p>&#8220;The cumulated performance gains are around 330% faster for a post with 200 blocks,&#8221; Matias Ventura said in an <a href=\"https://make.wordpress.org/core/2018/12/13/5-0-2-editor-performance-and-bug-fixes/\" rel=\"noopener\" target=\"_blank\">update</a> on the editor. &#8220;This might be even bigger for certain setups and plugin configurations — seeing the same test post be 540% faster with Yoast, for example.&#8221;</p>\n<p>These changes are already in version 4.7 of the Gutenberg plugin, which users can run alongside WordPress 5.0.1 to test the latest. </p>\n<p>RC 1 for 5.0.2 is planned for today and RC 2 (if necessary) is targeted for December 17. The official release is scheduled for December 19.</p>\n<p>Gary Pendergast also outlined the scope and schedule for WordPress 5.1, which will be led by Matt Mullenweg. Pendergast proposed a relatively short release cycle with an official release February 21, since there are already more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.1\" rel=\"noopener\" target=\"_blank\">200 tickets fixed for 5.1</a>. Focuses for the release include the REST API (particularly authentication solutions), core JS, and core themes. Beta 1 is planned for January 10, with RC 1 following February 7. </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, 14 Dec 2018 16:52:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:60:\"WPTavern: WPWeekly Episode 341 – Recap of WordCamp US 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=86395&preview=true&preview_id=86395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wpweekly-episode-341-recap-of-wordcamp-us-2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1333:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I recap WordCamp US 2018. We discuss what&#8217;s new in WordPress 5.0.1 and when users can expect to see 5.0.2.</p>\n<p>We also chat about the new path that WordPress is on and where it may lead. John shares his perspective on what the atmosphere was like at the event and compares it to last year.</p>\n<p>Near the end of the show, we explain why the Question and Answer process at the end of the State of the Word will likely undergo changes.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\">WordPress 5.0.1 Security Release</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 19th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #341:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Dec 2018 01:59:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordCamp US 2019 to be Held November 1-3 in St. Louis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86379\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wordcamp-us-2019-to-be-held-november-1-3-in-st-louis\";s: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:4527:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/st-louis.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://commons.wikimedia.org/wiki/File:St_Louis_night_expblend.jpg\">Wikimedia Commons</a></p>\n<p>Dates for WordCamp US 2019 were <a href=\"https://wordpress.org/news/2018/12/wordcamp-us-2019-dates-announced/\" rel=\"noopener\" target=\"_blank\">announced</a> today, less than a week after wrapping up a successful camp in Nashville. Unlike all previous years held in December, next year&#8217;s event will take place November 1-3 in <a href=\"https://2018.us.wordcamp.org/2018/06/15/matt-mullenweg-announces-st-louis-as-wordcamp-us-2019-2020-host-city/\" rel=\"noopener\" target=\"_blank\">St. Louis, Missouri</a>. </p>\n<p>For the most part, community reactions to the new dates were positive. Early November dates place the event well ahead of the end of the year holidays that attendees had previously bemoaned.</p>\n<p>&#8220;I love this date set better than the previous one. It’s so much easier to attend/speak pre-Thanksgiving,&#8221; WordPress developer Mitch Cantor <a href=\"https://twitter.com/thatmitchcanter/status/1073307921851867136\" rel=\"noopener\" target=\"_blank\">said</a>.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/hashtag/WordCamp?src=hash&ref_src=twsrc%5Etfw\">#WordCamp</a> US, November 1-3, 2019. This is great news! December is always a mad dash to an arbitrary solstice-based finish line. Moving <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a> to November takes a huge load off! <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/WUToY3eiam\">https://t.co/WUToY3eiam</a></p>\n<p>&mdash; Morten Rand-Hendriksen (@mor10) <a href=\"https://twitter.com/mor10/status/1073308742488227840?ref_src=twsrc%5Etfw\">December 13, 2018</a></p></blockquote>\n<p></p>\n<p>There is always a conflict for some demographic of attendees. This year the hardest hit are parents of small children who will likely miss taking their kids trick-or-treating due to traveling on or before Halloween in order to make it to the event. WordCamp US is a family-friendly event but bringing children to a WordCamp can be extraordinarily challenging, even when the event includes childcare. (This particular event doesn&#8217;t.) For a few attendees, missing Halloween with their children is a deal-breaker. </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Exactly what I was thinking. I\'d have to fly in on Halloween, no way I\'m missing Halloween with my 2 year old.</p>\n<p>&mdash; Katie Thompson (@katietdesign) <a href=\"https://twitter.com/katietdesign/status/1073341329021775875?ref_src=twsrc%5Etfw\">December 13, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">That’s a good point! <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f640.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>&mdash; Tessa Kriesel (@tessak22) <a href=\"https://twitter.com/tessak22/status/1073333517646467075?ref_src=twsrc%5Etfw\">December 13, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Though this one is something a lot of parents really enjoy spending with their small children especially in the US. We\'re not talking about national hotdog day here.</p>\n<p>&mdash; Patrick Garman (@pmgarman) <a href=\"https://twitter.com/pmgarman/status/1073317197194428421?ref_src=twsrc%5Etfw\">December 13, 2018</a></p></blockquote>\n<p></p>\n<p>One possible solution for the parents who feel they have to miss WordCamp US because of their kids, might be for the organizers to schedule the contributor day as the first day of the camp. That might enable people to fly in on an early morning flight and still get to experience part of the contributor day and all of the main event. </p>\n<p>In a community this large, with many other holidays and WordCamps already on the calendar, it&#8217;s difficult to find a date for WordCamp US that doesn&#8217;t have conflicts. This is a good problem for the community to have. Matt Mullenweg shared during the State of the Word that the community has experienced 50% year over year growth with more than 350K members in 687 meetup groups and more than 5,000 meetup events. With this rate of growth, the community can expect more regional and local camps to spring up in the coming years, which means more conflicts but also more options for getting together in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Dec 2018 00:43: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: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:93:\"WPTavern: WordPress Plugin Directory Now Features a Curated Section for Block-Enabled Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86331\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-plugin-directory-now-features-a-curated-section-for-block-enabled-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4065:\"<p>If you visit the <a href=\"https://wordpress.org/plugins/\" target=\"_blank\" rel=\"noopener\">plugin directory</a>, you will notice a new section at the top featuring block-enabled plugins. WordPress 5.0 has been downloaded more than 8 million times, just one week after its release, and users are looking for blocks to extend the new editing experience. WordPress.org is highlighting plugins to push the block ecosystem forward and will soon be doing the same for themes.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/Screen-Shot-2018-12-13-at-9.35.13-AM.png?ssl=1\"><img /></a></p>\n<p>There are currently 94 blocks in the featured section. In a <a href=\"https://make.wordpress.org/plugins/2018/12/07/blocks-plugins-and-you/\" target=\"_blank\" rel=\"noopener\">post</a> on make.wordpress.org/plugins, Samuel (Otto) Wood invited developers to email the plugins team at plugins@wordpress.org if they have a block-enabled plugin that they want to be included. The basic requirements are a plugin that introduces or improves blocks.</p>\n<p>I asked Otto how they select from submissions. He said the plugins team is curating the list manually and adding those they think are good or interesting.</p>\n<p>&#8220;It&#8217;s not a high bar; if it has a neat block, we&#8217;ll add it for now,&#8221; Otto said. &#8220;We may raise the bar depending on how big the section gets, and the section is not final by any means. We&#8217;ll change the inclusions according to how it works out. The goal is to promote neat and cool integrations, but there aren&#8217;t a lot of those yet. It&#8217;s new.&#8221;</p>\n<p>Assigning a tag to block-enabled plugins that authors could opt into would eliminate the need for manual approval on the section, but Otto said they are currently handling it more like a showcase.</p>\n<p>&#8220;Letting the plugin authors just add a tag would reduce the available tags (it&#8217;s already limited to 5) as well as reducing the value of curation,&#8221; Otto said. &#8220;We may change that as well in the future, somehow. Nothing is set in stone right now, we just want to see people making cool blocks and see what happens with that.&#8221;</p>\n<p>A directory devoted entirely to blocks may also be coming to WordPress.org next year. In a recent post, Matt Mullenweg identified <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\" rel=\"noopener\" target=\"_blank\">9 Projects for 2019</a>, including &#8220;building a WordPress.org directory for discovering blocks, and a way to seamlessly install them.&#8221; This is a much larger task and requires WordPress to answer a few questions: Will plugins continue to be the primary delivery mechanism for blocks? Or will WordPress.org implement a system where users can download JS-only blocks, similar to the Gutenberg Cloud project? </p>\n<p>Three months ago, Otto <a href=\"https://wptavern.com/gutenberg-cloud-a-cross-platform-community-library-for-custom-gutenberg-blocks#comment-260894\" rel=\"noopener\" target=\"_blank\">commented</a> on a post about Gutenberg Cloud, saying that js-only blocks are likely only suited to frontend enhancements.</p>\n<p>&#8220;I remain unconvinced that js-only blocks have a place which is meaningful other than the trivial layout based things that blocks can do,&#8221; Otto said. &#8220;Yes, you can build great looking blocks with JavaScript only, and since it’s an editor, that is a really big deal. But without any actual support on the backend to &#8216;do stuff of substance,&#8217; it is just visual glitter.&#8221;</p>\n<p>Offering JS-only blocks through WordPress.org might also complicate block discovery if users don&#8217;t know whether to look for blocks in a plugin or via the JS-only block delivery system. There are a lot of unknowns in the block era that will require WordPress to make some decisions. Meanwhile, the ecosystem of block-enabled plugins will continue expanding as more users adopt the new editor and especially as widgets and menus are ported to blocks in phase 2 of the Gutenberg project.</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, 13 Dec 2018 21:32: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Dev Blog: WordCamp US 2019 dates announced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6496\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2018/12/wordcamp-us-2019-dates-announced/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:705:\"<p>Save the date! <a href=\"https://2019.us.wordcamp.org/2018/12/12/wordcamp-us-2019-announcing-our-dates/\">The next WordCamp US</a> will be held on November 1-3, 2019, in beautiful <a href=\"https://2018.us.wordcamp.org/2018/06/15/matt-mullenweg-announces-st-louis-as-wordcamp-us-2019-2020-host-city/\">St Louis, Missouri</a>. One of our largest events of the year, WordCamp US is a great chance to connect with WordPress enthusiasts from around the world. This is also the event that features Matt Mullenweg&#8217;s annual <a href=\"https://www.youtube.com/watch?v=r5b-N2RmxS8\">State of the Word</a> address. </p>\n\n\n\n<p>We&#8217;d love to see you in St. Louis next year, so mark your calendar now!<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 19:47:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:111:\"WPTavern: Interview with Rachel Cherry: Automattic Pledges to Fund WPCampus’ Accessibility Audit 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=86293\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/interview-with-rachel-cherry-automattic-pledges-to-fund-wpcampus-accessibility-audit-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:2477:\"<p>While at WordCamp US, I had the opportunity to catch up with <a href=\"https://wpcampus.org/\" rel=\"noopener\" target=\"_blank\">WPCampus</a> director Rachel Cherry, who is coordinating an audit on Gutenberg for the organization she leads. WPCampus <a href=\"https://wptavern.com/wpcampus-seeks-to-raise-30k-for-gutenberg-accessibility-audit\" rel=\"noopener\" target=\"_blank\">launched its crowdfunding campaign</a> at the end of November and more than $10K has come in towards the <a href=\"https://wpcampus.org/2018/11/fundraising-for-wpcampus-gutenberg-accessibility-audit/\" rel=\"noopener\" target=\"_blank\">$30K goal</a>.</p>\n<p>The day before WordPress 5.0 was released, WPCampus announced that Automattic has pledged to ensure WPCampus&#8217; accessibility audit of Gutenberg is fully funded. </p>\n<p>&#8220;I think that they [Automattic] see that it is important,&#8221; Cherry said. &#8220;Even when they said they weren&#8217;t going to do it, I don&#8217;t think it was ever &#8216;We&#8217;re never going to;&#8217; it was just &#8216;Not right now.&#8217; For us, we couldn&#8217;t necessarily wait for &#8216;maybe we&#8217;ll do it later,&#8217; so that&#8217;s why we jumped on it and got the ball rolling. I think they saw an opportunity where they could step in and have the means to move this along even further. They see the value and I think that&#8217;s why they wanted to jump in. They also saw all the community effort going on.&#8221;</p>\n<p>In the interview below, Cherry discusses how leaders in the WPCampus community rallied to get the audit in motion. The organization has received seven responses from vendors and is currently in the selection process. She also shared a little bit about her conversation with Matt Mullenweg during his community office hours and their discussion about how WordPress is used in higher education.</p>\n<p>Cherry&#8217;s strategy in advocating for accessibility is to focus on slicing through the confusion surrounding accessibility problems with an emphasis on education and communication. Although WordPress has set accessibility standards, the project has fallen short on enforcing them. In addition to putting automated accessibility testing in place for core, Cherry said she would also like to get more support for helping theme and plugin authors meet accessibility standards. This would help ensure that the code WordPress.org puts on the web is more accessible for those who are creating customized sites.</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:\"Thu, 13 Dec 2018 04:29:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Dev Blog: WordPress 5.0.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4797:\"<p>WordPress 5.0.1 is now available. This is a <strong>security release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>Plugin authors are encouraged to <a href=\"https://make.wordpress.org/core/2018/12/13/backwards-compatibility-breaks-in-5-0-1/\">read the 5.0.1 developer notes</a> for information on backwards-compatibility.</p>\n\n\n\n<p>WordPress versions 5.0 and earlier are affected by the following bugs, which are fixed in version 5.0.1. Updated versions of WordPress 4.9 and older releases are also available, for users who have not yet updated to 5.0.</p>\n\n\n\n<ul><li><a href=\"https://ripstech.com\">Karim El Ouerghemmi</a> discovered that authors could alter meta data to delete files that they weren&#8217;t authorized to.</li><li>Simon Scannell of <a href=\"https://blog.ripstech.com\">RIPS Technologies</a> discovered that authors could create posts of unauthorized post types with specially crafted input.</li><li><a href=\"https://twitter.com/_s_n_t\">Sam Thomas</a> discovered that contributors could craft meta data in a way that resulted in PHP object injection. </li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> discovered that contributors could edit new comments from higher-privileged users, potentially leading to a cross-site scripting vulnerability.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> also discovered that specially crafted URL inputs could lead to a cross-site scripting vulnerability in some circumstances. WordPress itself was not affected, but plugins could be in some situations. </li><li><a href=\"https://yoast.com/\">Team Yoast</a> discovered that the user activation screen could be indexed by search engines in some uncommon configurations, leading to exposure of email addresses, and in some rare cases, default generated passwords.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> and <a href=\"https://medium.com/websec\">Slavco</a> discovered that authors on Apache-hosted sites could upload specifically crafted files that bypass MIME verification, leading to a cross-site scripting vulnerability. </li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 5.0.1</a>, or venture over to <code>Dashboard → Updates</code> and click <code>Update Now</code>. Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>In addition to the security researchers mentioned above, thank you to everyone who contributed to WordPress 5.0.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron Campbell</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry Abrahamson</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/darthhexx/\">David Newman</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">Demitrious Kelly</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/hnotess/\">Hannah Notess</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mo Jangda</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, and <a href=\"https://twitter.com/p_valentyn\">Valentyn Pylypchuk</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 03:13:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Ian Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:82:\"Post Status: Interview with Matt Mullenweg on Gutenberg, WordPress, and the future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=50403\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/matt-mullenweg-on-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:101863:\"<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, I am joined by <a href=\"https://ma.tt\">Matt Mullenweg</a>, the co-founder of WordPress and CEO of Automattic.</p>\n<p>Just after releasing WordPress 5.0, and on the heels of WordCamp US, Matt and I review the event, the release, and discuss how he thinks things went, what could have gone better, and what he sees ahead.</p>\n<p>We also dig into WooCommerce, various plans around core development processes, Automattic, and more. I hope you enjoy.</p>\n<p></p>\n<p>And an audio version.</p>\n<p></p>\n<p>Full transcript is coming soon.</p>\n<h3>Episode Links</h3>\n<ul>\n<li><a href=\"https://ma.tt/\">Matt&#8217;s blog</a></li>\n<li><a href=\"https://automattic.com\">Automattic</a></li>\n<li>WordCamp US <a href=\"https://ma.tt/2018/12/state-of-the-word-2018/\">State of the Word</a></li>\n<li>Post Status&#8217;s <a href=\"https://poststatus.com/state-of-the-word-2018/\">coverage of WCUS</a></li>\n<li><a href=\"https://grief.com/the-five-stages-of-grief/\">5 Stages of Grief</a></li>\n</ul>\n<h3>Sponsor: iThemes</h3>\n<p><a href=\"https://ithemes.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">iThemes</a> makes great WordPress plugins, themes and training to help take the guesswork out of building, maintaining and securing WordPress websites. I talk to iThemes CEO Cory Miller during the break to hear about what they are working on, and excited about for the coming year.</p>\n<p>Thanks to <a href=\"https://ithemes.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">iThemes</a> for being a Post Status partner.</p>\n<p>&nbsp;</p>\n<h3>Full Transcript</h3>\n<div class=\"transcript\">\n<p>Brian Krogsgard: Hello and welcome to Post Status Draft. I hope you enjoy this interview with Matt Mullenweg. It lasts for a while, but I think that it&#8217;s worth catching the whole thing. We cover a whole bunch of topics. I want to thank iThemes for being our partner for this episode. iThemes has been in the WordPress space for so, so long and they make many great products, whether you&#8217;re looking to secure your website, manage your plugins and themes and so much more. Go to iThemes.com to learn more and thanks so much to the team at iThemes for being a Post Status partner. Now here&#8217;s the show. So hello and welcome to Post Status Draft. Fresh off of the release of WordPress 5.0 and WordCamp US, I&#8217;m here with Matt Mullenweg, the co-founder of WordPress. Hey Matt.Matt Mullenweg: Howdy, howdy. It&#8217;s good to see everyone again.</p>\n<p>Brian Krogsgard: Yeah, it&#8217;s great to see you. You look comfortable. You must be somewhere that is something like home.</p>\n<p>Matt Mullenweg: Yeah, I&#8217;m in actually New York City this week. I had a few meetings after the WordCamp and it&#8217;s also just one of my favorite cities to be especially this time of year. The lights and everything around Christmas time are just gorgeous, so it&#8217;s fun.</p>\n<p>Brian Krogsgard: Yeah. I&#8217;ve never been to New York City in the Christmas season, but it&#8217;s one of those bucket list type of things. So let&#8217;s start off with just how are you feeling post-release, post-event? How do you feel like things went overall?</p>\n<p>Matt Mullenweg: Super energized. I&#8217;d say like day before the release was pretty nervewracking, but it went better than I think almost anyone hoped, including myself. There was a great energy at WordCamp of we were able to kind of &#8230; I think instead of arguing about whether we should do a release or not, should it be Thursday or Tuesday or next month or never, or all these sorts of different options, everyone would say, &#8220;Okay, it happens. The world didn&#8217;t end and what can we do next to make things better?&#8221; That kind of making things better conversation is where I find the WordPress community is most productive. It&#8217;s where you can really get all sorts of different ideas and you can really get to the point where it does make things better for our users.</p>\n<p>Brian Krogsgard: Yeah. And I tend to think generally people cool down when they&#8217;re in person versus when they&#8217;re online. So all the energy, the pent-up energy from working through all the things that have to do with the release over the course of two years and it finally comes on you, sometimes it just feels good to get it out at the end of the day. You let those bygones be bygones.</p>\n<p>Brian Krogsgard: I felt like it was actually a pretty drama-free release and event. I didn&#8217;t see any major bugs come across. I asked some of the big hosts and some of the big plugin companies, I was like, &#8220;What are you all seeing? Are you seeing a bunch of stuff come through?&#8221; And I didn&#8217;t get much. Have you heard much feedback in terms of, are there a lot of bugs coming up? Are there are a lot of issues or has it been fairly smooth?</p>\n<p>Matt Mullenweg: Well, what I&#8217;ve been telling you all year, that it would be anticlimactic, I was half right. The software was anticlimactic. Everything around the software was pretty intense.</p>\n<p>Brian Krogsgard: Very climactic, yeah.</p>\n<p>Matt Mullenweg: But yeah, I actually didn&#8217;t realize it before I got on for State of the Word, but host site GoDaddy, others have already upgraded over a million sites. They&#8217;re seeing normal support loads, things like that. It&#8217;s like I said, ultimately what drives a release day is, is the software ready? And the software was ready and all the inputs, all the data, all the sort of normal things we look at were there. It was just one of these things where the people, we didn&#8217;t seem ready and that&#8217;s much harder to navigate. Sometimes getting it out there helps a lot, but it&#8217;s one thing that I&#8217;ve seen throughout my entire professional software career is the longer you go between releases the harder they are. I&#8217;ve seen this in small teams, big teams, public, private, inside automatic, outside, whatever it is. If you can get to where you&#8217;re releasing more frequently, it just removes a ton of stress and burden on each individual release and I think makes for ultimately a much better process for everyone involved.</p>\n<p>Brian Krogsgard: Yeah, and I want to dig into more about the process. I was really surprised. I don&#8217;t think I saw a single person share your old blog post about the version 1.0 and the importance of shipping 1.0. Maybe we&#8217;re just getting really old. So referencing a blog post that&#8217;s that many years old is harder now. But yeah, I&#8217;ve been in the camp for a while now that it just seemed like you&#8217;ve got to get it out there. I felt like we always had an advantage in the WordPress landscape and this is one of the things I was worried about when you announced the big feature release style. Here are our three goals and we&#8217;re going to make the releases strategic to that. We had the benefit of iteration when we had the regular releases. So overall do you feel like the tradeoff of losing the regular major releases was worth it in order to get the big thing shipped?</p>\n<p>Brian Krogsgard: I think of like Drupal, the struggles and the boundaries they had going from 6.0 to 7.0 to 8.0 and it was almost like a whole new thing. This was really our first time, in a really long time at least, maybe ever, that you feel like you update and it&#8217;s in some ways a whole new thing, and it was a long release cycle that led up to that. So do you think that tradeoff was worth it or do you think there was a tradeoff? Is my assumption a poor one?</p>\n<p>Matt Mullenweg: Well, there was in that we didn&#8217;t do a major release for a year. We did slip some things that would previously be in major releases in the minor releases, in the 4.9.X kind of releases, so that helped. That&#8217;s a good question. I think that in 2019 we can do both. So we can keep some really super rapid public iteration and the feature plugins, and who knows, I&#8217;d actually love to see a few more kind of areas of WordPress that we want to innovate in or expand in, take more of this plugin approach. And then we also have a lot of great stuff in the hopper for some major releases. I think we&#8217;ll be able to do &#8230; there was a lot of talk at contributor day as we were looking at it.</p>\n<p>Matt Mullenweg: It actually slipped my mind that we did that whole code reformatting and JavaScript reorganization in trunk, and that&#8217;s not in 5.0, right? Because we branched off 4.9.8 to make it as stable and as few changes as possible. So we&#8217;ve got actually, I think there&#8217;s another 200 patches already in trunk that weren&#8217;t in 5.0. So we&#8217;ve just got a lot of good stuff already in there, including the whole reorganization that you kind of put that together plus maybe ServeHappy and the white screen protection and some really cool stuff that&#8217;s kind of more like small stuff. That could be a 5.1 right there. I could see that going in the beta January, RC in February.</p>\n<p>Brian Krogsgard: Yeah, talk about ServeHappy. I mean, for I don&#8217;t know, five, six, seven years, people have wanted, demanded PHP upgrades and it was a footnote in this state of the word.</p>\n<p>Matt Mullenweg: I should have done it as one more thing.</p>\n<p>Brian Krogsgard: One more thing, yeah. Had to really get all the developers on your team for that one. So you made a commitment to in 2019 have a staggered upgrade process to mandate certain versions of PHP. Remind me if I&#8217;m incorrect, 5.6 in the Spring and 7.0 next winter. Is that basically the timeline?</p>\n<p>Matt Mullenweg: Yeah, that&#8217;s the idea and we&#8217;re just going to go through. And again this is, just like with Gutenberg, it&#8217;s not about changing a version number or something. It&#8217;s really about bringing the whole community along for the ride, so we need to scan all the plugins. For 5.6, I think we&#8217;ll actually be able to update them or send patches to maintainers, even update and maintain plugins, because those changes are pretty easy. Seven is tougher and I think that is, we&#8217;re targeting December for that. I could see that slipping, just depending on whether host in the meantime and everyone else is able to get there, but even getting to 5.6 opens up a ton of possibilities, including with things like OAuth and GraphQL and namespaces, and there&#8217;s some pretty cool features. 5.6 is ancient at this point. It had a lot of improvements over 5.2.</p>\n<p>Brian Krogsgard: And a lot-</p>\n<p>Matt Mullenweg: And we still have a lot of folks on these older versions, so part of the reason we&#8217;re giving ourselves time as well is to, if we can run some analytics to figure out which host these old sites are on Ron and reach out to them, try to work with them.</p>\n<p>Brian Krogsgard: Do you think a part of the reason why you even think this is possible, for a long time, I mean, people were running WordPress across a huge spectrum of versions of PHP. Do you think part of the reason why you even think this possible is the hosting relationships that had been made between the community and the hosting companies over the past few years? Because that&#8217;s something that I&#8217;ve felt like has been quite significant. The efforts that, if you look at the big ones, the GoDaddy and the Bluehosts of the world, the amount of commitment they&#8217;re giving to the community, do you think that&#8217;s a big part of it? And how hard is the long tail going to be to capture, do you think?</p>\n<p>Matt Mullenweg: That&#8217;s a big question. First, I&#8217;ll say that the improvement of hosts, particularly the big ones in becoming kind of like WordPress first, providing a really first-class WordPress experience from security updates, everything, it&#8217;s probably been the biggest change in the WordPress ecosystem over the past five years. And I have huge admiration for them because they&#8217;re doing this for millions of sites, thousands of support folks. They&#8217;re really moving some really, steering some really large ships and the results have been fantastic. We got, I think it was up to 68% of our WordPress was on 4.9 by the time 5.0 come out.</p>\n<p>Brian Krogsgard: Yeah, that&#8217;s great.</p>\n<p>Matt Mullenweg: But in terms of what&#8217;s going to make the PHP upgrading easier, it&#8217;s really a combination of everything, including time, including some of this white screen protection stuff that we&#8217;re doing. If we can back port that, you know we still backport to 3.7 all of our security updates?</p>\n<p>Brian Krogsgard: Mm-hmm (affirmative).</p>\n<p>Matt Mullenweg: Which is kind of wild.</p>\n<p>Brian Krogsgard: It is. It&#8217;s great for security of the Web broadly, but it&#8217;s quite something.</p>\n<p>Matt Mullenweg: Yeah, if we can do that for some of this, maybe we can put some of this white screen upgrade protection into those old versions, so that way we can kind of protect people who might be doing plugin and theme or core updates from breaking their site in programmatic way. Um, it&#8217;s also the work that&#8217;s gone into updates. We know we migrated to a new data center this year for WordPress.org It&#8217;s like, I forget the exact or something like five or 10 times more powerful than the old one.</p>\n<p>Brian Krogsgard: Wow.</p>\n<p>Matt Mullenweg: Almost no one noticed. But you notice that there&#8217;s no more 503s when we run the updates, and things can go faster. This means we can do auto updates better, which means that we&#8217;ll be able to do opt-in for core and plugin and theme auto updates and then maybe move that to opt-out 2020. These are all just things that have been going on that represent thousands of hours of work from hundreds of people that set the stage so we can do stuff. It&#8217;s part of the reason I think that we will be able to move a lot faster in 2019. We had to stop core ,essentially freeze it for Gutenberg, because we were building a new foundation and you can&#8217;t build the house on top while you&#8217;re also pouring the concrete, right? Things will sink. They&#8217;ll get off center. I&#8217;ve never built a house so I don&#8217;t know this analogy all the way, but now we&#8217;ve got the foundation. We&#8217;ve got this framework and things being built on top of that framework. We&#8217;re already starting to see the benefits to things like keyboard navigation and accessibility when they&#8217;re built using Gutenberg fields that already have this kind of baked in.</p>\n<p>Matt Mullenweg: So I think that we have the opportunity to do just a massive upgrade not just of the editor but of every single plugin, every single theme, every single person&#8217;s experience with WordPress because think about it. No one just runs core. Cool if we do Gutenberg in core? Ultimately it doesn&#8217;t matter. Everyone&#8217;s got five, 10, 20 different plugins. They&#8217;ve got their theme which might implement who knows how many additional features baked into the theme? Probably dozens, if you think about all the customization options, that&#8217;s all going to be able to be reimagined now and already is. We see some of this, over 100 themes in the plugin directory. You might have noticed we put the Gutenberg-ready plugins at the very top, even above featured. We&#8217;re really trying to get everyone on this train.</p>\n<p>Brian Krogsgard: Do you think there was a messaging gap in a trying to get across the idea that Gutenberg is a foundation rather than a window dressing or wallpaper or whatever other nonstructural housing component we want to compare it to?</p>\n<p>Matt Mullenweg: Well, I think it&#8217;s easy to say that there was a messaging gap and that communication could have been 10 times better or whatever, because there are obviously some people who wren&#8217;t on board and still aren&#8217;t on board. So now, is there anything that could have gotten everyone 100 percent?</p>\n<p>Brian Krogsgard: No.</p>\n<p>Matt Mullenweg: I don&#8217;t know, but I think we will always strive to do better. And ultimately, I mean, one of the things that made me pretty confident about the release wasn&#8217;t that Gutenberg is perfect. It&#8217;s not. By the way, it&#8217;s still not right for a ton of people, but that&#8217;s okay. You know WordPress, unlike almost every other SaaS service or software use gives you control. And the fact that we have classic editor as a first party supported official thing and that anyone for whatever reason, literally any reason, can still use the old experience instead. That&#8217;s what I meant when I said 5.0 was going to be anticlimactic, not that it meant Gutenberg was perfect or ready for everyone, but that forever was not wordy. They&#8217;re just a click or two away before or after the release from having the experience that they used to.</p>\n<p>Brian Krogsgard: Yeah, one of the things I like to remind myself of is that neither was TinyMCE perfect or right for everyone.</p>\n<p>Matt Mullenweg: Well, no.</p>\n<p>Brian Krogsgard: And that&#8217;s why it was being replaced. So I think sometimes we do have to look at what are we trying to replace and what do we have right now? Is that worth getting out into the world and iterating on?</p>\n<p>Matt Mullenweg: Did you see those user tests videos?</p>\n<p>Brian Krogsgard: I did. Unfortunately my wife said, &#8220;Do you want to go see the Harlem Globetrotters?&#8221; And I was like, &#8220;Absolutely.&#8221; And I didn&#8217;t have WordCamp US on my calendar yet.</p>\n<p>Matt Mullenweg: Oh, don&#8217;t worry, don&#8217;t worry.</p>\n<p>Brian Krogsgard: So we double booked, so I re-watched the whole State of the Word, including the user tests, the Q and A, the whole thing, and it was pretty amazing seeing those user tests. I&#8217;ve seen people do user tests before. They&#8217;re often really terrible.</p>\n<p>Matt Mullenweg: Painful.</p>\n<p>Brian Krogsgard: That&#8217;s why for years I&#8217;ve tried to make my own message that we need to continually support things that make WordPress easier to use, so I think that was a good thing to highlight in the State of the Word.</p>\n<p>Matt Mullenweg: And by the way, I probably would&#8217;ve picked the Harlem Globetrotters over me as well, so o need to apologize.</p>\n<p>Brian Krogsgard: It was the first one I&#8217;ve missed since like 2012.</p>\n<p>Matt Mullenweg: That&#8217;s awesome. That&#8217;s great. I&#8217;m an average live experience. The Harlem Globetrotters are amazing live.</p>\n<p>Brian Krogsgard: They are.</p>\n<p>Matt Mullenweg: You can always catch State of the Word on vide later.</p>\n<p>Brian Krogsgard: They are. I may as well use the opportunity too to thank [David Bisset 00:15:39], because he did a fantastic job with both tweeting things and just generally keeping people that follow along with Post Status up to date and it turned out to be a good outlet for him because twitter banned his personal account because they thought that he was tweeting so much.</p>\n<p>Matt Mullenweg: Wasn&#8217;t that wild?</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: I know. That guy is a national treasure of WordPress.</p>\n<p>Brian Krogsgard: He is. He is. If there was a community spirit award, he should win it.</p>\n<p>Matt Mullenweg: Absolutely.</p>\n<p>Brian Krogsgard: So he stood up to ask a question during the State of the Word and unfortunately ran out of time, so I would-</p>\n<p>Matt Mullenweg: Right, I felt so bad that we didn&#8217;t get to &#8230; There were a lot of people in line, but just some of those earlier questions were a bit longer and I could tell the room was starting to, like I think we were already like an hour 45. We were pretty far into it, so &#8230;</p>\n<p>Brian Krogsgard: Yeah, and maybe we&#8217;ve put a 30-second clock next year for people to ask a question.</p>\n<p>Matt Mullenweg: I&#8217;ve been thinking about that, like there were some definitely things in the room this year, like it was very dark in the audience so it was a little harder to see. I think that also subdued people. There was a little more distance between the stage and the people which looked a little more theatrical, but I think also made the audience a bit more disconnected. And even, there was a funny thing. You saw the spotlight on the question askers?</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: It was so bright and at an angle that it was shining in the eyes of everyone sitting next to them. So after the first or second question there, there was a huge hole in the audience next to the mic because we were just getting like it had this crazy spotlight on it. I think we can figure out some different ways of doing lighting or doing the questions in the future that might be a bit a bit easier.</p>\n<p>Brian Krogsgard: Well, you&#8217;ll have that opportunity in St Louis, right, for the next two years.</p>\n<p>Matt Mullenweg: Woo hoo, St. Louis. I&#8217;m very excited about that.</p>\n<p>Brian Krogsgard: Yeah, I&#8217;m excited about that too. I haven&#8217;t been there in a long time, and what David-</p>\n<p>Matt Mullenweg: I love that we&#8217;re doing the opposite of Amazon. They had the opportunity to pick any city in America and they go to D.C. and New York.</p>\n<p>Brian Krogsgard: I know.</p>\n<p>Matt Mullenweg: They&#8217;re both amazing places, but not really shining a light on places that don&#8217;t get as much love already.</p>\n<p>Brian Krogsgard: Yeah, I think my-</p>\n<p>Matt Mullenweg: And we&#8217;ve had Philly, Nashville and now St. Louis, I really dig the WordCamp US thing.</p>\n<p>Brian Krogsgard: Yeah. I have feeling that Amazon may have been including some political reasoning and in their strategy for that, but that&#8217;s okay. WordPress doesn&#8217;t have to do that. We can go wherever we want.</p>\n<p>Matt Mullenweg: We can go to Canada, which was one of the questions, which I thought was kind of cool.</p>\n<p>Brian Krogsgard: Including Canada, which was a good question. I actually had that brought up to me before WordCamp about the U.S./Europe thing and whether we can learn from that and have WordCamp Americas or something.</p>\n<p>Matt Mullenweg: Yeah, what&#8217;s your thought on Central America in that equation?</p>\n<p>Brian Krogsgard: Yeah, I mean I think that there&#8217;s a lot of cultural differences, but I think anything Americas, there&#8217;s some common themes of people that work hard, people that explored many centuries ago. So I don&#8217;t know, I&#8217;m probably not the best person to answer that type of question, but &#8230;</p>\n<p>Matt Mullenweg: I&#8217;ve been thinking about it a lot, like what are the logical divisions and because we do have some rules in the WordCamp world around like what could be &#8230; I&#8217;d love to see a WordCamp Asia, for example. Asia is obviously geographically, culturally and language-wise, incredibly diverse.</p>\n<p>Brian Krogsgard: Right, I think the lingual differentiation would be a challenge, so I don&#8217;t know what the best regions would be but perhaps-</p>\n<p>Matt Mullenweg: But then look in Europe.</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: It has a ton of languages [inaudible 00:19:08] English.</p>\n<p>Brian Krogsgard: I always envy friends in Europe because they all speak like five languages plus, and some of them speak better English than I do.</p>\n<p>Matt Mullenweg: Oh, for sure. Have you ever seen a map of the lower 48 overlaid over Europe?</p>\n<p>Brian Krogsgard: Yeah, it&#8217;s very, very similar in size, so-</p>\n<p>Matt Mullenweg: Yeah, it&#8217;s actually, you forget how large actually the lower 48 of the U.S. is that it covers kind of like into Europe, pretty far into Russia and Turkey and Middle East.</p>\n<p>Brian Krogsgard: Yeah. We think of Alabama and Houston or Birmingham, Alabama and Houston, Texas as pretty close, but that could be different countries if we were in Europe with different languages and culture. It&#8217;s a reminder of the diversity in our space and how serving different cultures and people from different backgrounds is extremely important. All right, so David&#8217;s question was, what are the dates for WordCamp next year? Do we have any idea?</p>\n<p>Matt Mullenweg: Oh, I think we know them. I&#8217;ll put them out later. They&#8217;ll be in a blog post or something.</p>\n<p>Brian Krogsgard: Okay, he will be disappointed again.</p>\n<p>Matt Mullenweg: Well just, I don&#8217;t know if I could tell you the day of the week of my birthday or something. I&#8217;m pretty bad at dates.</p>\n<p>Brian Krogsgard: No, that&#8217;s fine.</p>\n<p>Matt Mullenweg: As you might guess from-</p>\n<p>Brian Krogsgard: Is it going to be in December again, though?</p>\n<p>Matt Mullenweg: I believe so. Don&#8217;t hold me to anything there. I will officially find something.</p>\n<p>Brian Krogsgard: But late in the year still.</p>\n<p>Matt Mullenweg: Yeah, yeah, so I think that we&#8217;ll put up like a placeholder site for 2019, and there will definitely be some tweets and some official stuff saying the dates.</p>\n<p>Brian Krogsgard: Okay.</p>\n<p>Matt Mullenweg: But to your earlier point, I actually feel what you just described of going between countries in Europe, I feel that when I&#8217;m, excuse me, on the East Coast of America because I can actually drive eight or 10 hours and still be in Texas. I can drive two hours over here and cross through three different states. And that was one of the points that I tried to make. This was actually I think one of my weaker Q&amp;As. I had two answers that were two of the worst answers I&#8217;ve given probably the past few years, and one was what people heard me say, which I wasn&#8217;t trying to say, to Morton&#8217;s thing.</p>\n<p>Matt Mullenweg: Which I was trying to make the point that in a distributed organization or where we have people working across things, you can read into someone&#8217;s language and it might not be their first language, so it&#8217;s really good to give the benefit of the doubt and realize that we&#8217;re not all speaking our native tongue. And so things might come across as harsh or worse or rude or things, when it&#8217;s just not at all. It&#8217;s certainly not the intention of the person to communicate that way. And the other was the answer, I think it was Birgit&#8217;s question about being hired to work on things.</p>\n<p>Brian Krogsgard: Yeah, corporate sponsorship for WordPress work.</p>\n<p>Matt Mullenweg: Yeah, neither &#8230; I think my brain was just a little fried by the end of the day.</p>\n<p>Brian Krogsgard: So what would you adjust in terms of, I think that question was around how to &#8230; I was actually with you with Morton, that I didn&#8217;t notice the issue. It seemed like you were pretty clearly speaking about broader communication things, not specifically with his communication, which is-</p>\n<p>Matt Mullenweg: I would never make fun of Morton&#8217;s or anyone&#8217;s skills speaking another language.</p>\n<p>Brian Krogsgard: Yeah, and that one was pretty clear to me. But the one about corporate sponsorship, do you think there&#8217;s a place for &#8230; How do you encourage independent work on the WordPress community, nonprofit side of things? Is there a place or a way that that can be done without corporate sponsorship? Because I know, I mean I&#8217;m self-employed and I can personally understand if I suddenly gave 10 or 20 hours a week or whatever amount of time to the core project in a non-revenue generating way that would be felt. So is there a way that that can be done, or do you think corporate sponsorship of community work is really the only way to go about it right now?</p>\n<p>Matt Mullenweg: Well, let me take a second crack at this one. First and foremost, I never want to downplay the contributions of people doing it in their spare time.</p>\n<p>Brian Krogsgard: Yeah, and it is, I mean it&#8217;s astonishing and I could be that person, too. I don&#8217;t choose to be that person in this stage of my life, but yeah, it&#8217;s amazing what people are doing completely outside of work time.</p>\n<p>Matt Mullenweg: Yeah, and I also don&#8217;t want to understate how big an impact on the WordPress project, two to four hours a week out of the 168 can have a really huge impact on some big areas. Even a single hour a week, if put in the right place, can move mountains. And WordPress was largely built by volunteers and people doing it in their spare time, and I worry to say, to ever get to a point where we&#8217;re saying we only value people who are doing it full time, or it&#8217;s only possible to make a change if you&#8217;re doing it full time. So that&#8217;s one point I was trying to make, that let&#8217;s never downplay the value that people can do with just a little bit of contributions. Five for the Future is just two hours a week in a work week, right?</p>\n<p>Brian Krogsgard: Right, yeah, and that was the question [Daniel Bock Huber 00:24:12] had was if you had plans or iterations that you thought would be good for Five for the Future?</p>\n<p>Matt Mullenweg: Oh, for sure. The second is that the WordPress Foundation is not designed to be an employment entity. Now, there&#8217;s no employees. There&#8217;s no HR. There&#8217;s no benefits. There&#8217;s no payroll. There&#8217;s no anything, and going from zero to one there is actually a pretty big thing. It is designed to give grants. We can give money to other organizations. By the way, I think that there&#8217;s also a big opportunity for other nonprofits to be part of this. There&#8217;s no reason to say only for-profit corporations can sponsor people that work on WordPress. I would love to see more nonprofits that by the way have a lot more expertise in some of the areas that we want more contributions in, including design, accessibility, privacy, internationalization.</p>\n<p>Matt Mullenweg: These things, there&#8217;s full nonprofits dedicated to that have often sometimes very large staffs and pretty large budgets, journalism. These I think are really fruitful areas, and in fact one of the things that, I don&#8217;t know if you saw Morton&#8217;s talk, a lot of people I thought misread it. Maybe I misread it as well. When he was talking about open governance, my take was that he was talking about getting WordPress a seat at the table, and discussing these regulation changes and et cetera happening. I think the example last year was, there was this meeting at 10 Downing Street. Who was there? Was WordPress represented?</p>\n<p>Matt Mullenweg: And he started talking about the Web Foundation, and I began thinking. I was like, &#8220;Wow, well, WordPress only represents a third of Websites, and not even, really. It&#8217;s a third of the top 10 million. Another foundation like the Web Foundation actually might be a better vehicle to try to advocate on the open Web as a whole, versus just the people who happen to be using a single CMS.</p>\n<p>Brian Krogsgard: Yeah, and I don&#8217;t want to speak for him in terms of which audience he was trying to, or which group he was trying to represent in terms of within WordPress, or WordPress within the broader Web. I do think that there are often questions about governance of WordPress. You have long been the central vision of the project, and then delegated the execution of that vision to many other people who then lead this project, which is massive at this point. One of the things I&#8217;ve always asked you for several years now was, how many people do you have directly reporting to you?</p>\n<p>Brian Krogsgard: Because one of the things I find to be important is under this model, where your vision is required, then if you&#8217;re spread out so thin it requires these sprints to focus towards WordPress, rather than always being able to have kind of a constant flow, even if it&#8217;s a minority of your time, going towards that, establishing that vision for WordPress. So, how have you evolved in that regard? I know you&#8217;re-</p>\n<p>Matt Mullenweg: What was the number last time you asked me?</p>\n<p>Brian Krogsgard: It was high.</p>\n<p>Matt Mullenweg: What is high? There was one point it was like 26 or something.</p>\n<p>Brian Krogsgard: Yeah, it was in the 20s. It was in the 20s last year I think when we talked about it.</p>\n<p>Matt Mullenweg: Yeah, it&#8217;s under half that now.</p>\n<p>Brian Krogsgard: That&#8217;s great.</p>\n<p>Matt Mullenweg: So, that&#8217;s been really good. There&#8217;s been a lot more leaders, but I would actually argue the point that WordPress has always been sort of my vision being set, or even my direct leadership. There was a good four or five years there where the leadership structure, because we&#8217;ve experimented with lots of different, we don&#8217;t call it governance, but essentially leadership structures in WordPress. For a while, we had kind of the &#8230; It wasn&#8217;t a committee approach, but essentially like the lead developers consensus approach. We did that for a few years.</p>\n<p>Matt Mullenweg: Even from the beginning it wasn&#8217;t just me. It was me and Mike Little, so it&#8217;s never been solo. Then we went to where the release lead was the final decider, including over me, so that was probably, I don&#8217;t know, 3.9 to 4.7 maybe, that including could overrule me as project lead for what was in the release or not, and that was to try to give a little more autonomy and flexibility to release leads. But the big change was a few years ago I said, &#8220;Okay, I&#8217;m going to take back over core WordPress development,&#8221; and that was to try to provide a &#8230; Try to make some of these big changes happen. So right now it is much more of a benevolent dictator model, although both of those words are questionable. But, I don&#8217;t see that as the permanent forever structure, you know? [crosstalk 00:28:54]-</p>\n<p>Brian Krogsgard: One problem with that is-</p>\n<p>Matt Mullenweg: I don&#8217;t know if I can sustain this forever. I mean, this is a pretty intense period and we&#8217;re doing some pretty intense work, and I&#8217;ll need a break at some point, too.</p>\n<p>Brian Krogsgard: Yeah, and how do you, or do you think there&#8217;s merit in opening that up in some way to certainly have more community input, but sometimes that&#8217;s not good, you know? Sometimes the central vision idea can be more productive, but when you bring that into open source software versus running a company, maybe there&#8217;s different consequences. So have you given any thought to what does WordPress look like after this phase in terms of a governance structure?</p>\n<p>Matt Mullenweg: It&#8217;s hard, because I haven&#8217;t seen any models where anything resembling voting works, you know?</p>\n<p>Brian Krogsgard: Yeah, for running software, you mean.</p>\n<p>Matt Mullenweg: Yeah, and for choosing a direction. It&#8217;s not that many models for consumer-facing software. There&#8217;s some for server-facing software, where sort of like a committee approach works, you know? It seldom creates great user experiences. You kind of want, I&#8217;m not saying it always has to be me, but what I want is a strong, opinionated, thoughtful leader doing, setting a bold direction, taking experiments and being willing to fail, comfortable with failure, is I think what you need to create great software.</p>\n<p>Brian Krogsgard: So how do you-</p>\n<p>Matt Mullenweg: And that&#8217;s tough, and by the way, we&#8217;ve had lots of those leaders in the history of WordPress, and I think that&#8217;s been the success. It&#8217;s not just because I&#8217;m doing anything.</p>\n<p>Brian Krogsgard: Sure.</p>\n<p>Matt Mullenweg: It&#8217;s that we have lots of folks and we have, as a community including myself, invested that authority and power in them, and that trust. It doesn&#8217;t mean that it&#8217;s always been right, like we&#8217;ve definitely done things that we might undo later or that were mistakes, but the ability to make those mistakes is what you need for an innovative organization. When you look at any organization, private or public, it&#8217;s too afraid to fail, that&#8217;s when you get this kind of incrementalism. That&#8217;s when you get this kind of fear of change. That&#8217;s when you essentially stagnate, and if you were to point to any place that software goes poorly, whether that&#8217;s in government or companies that don&#8217;t innovate or get disrupted by smaller upstarts, anything, it&#8217;s because one of those happened or probably all of those things happened. They got too successful and then they were afraid to fail, because it was too embarrassing and they had too much to lose, and then they stagnate.</p>\n<p>Brian Krogsgard: All right, we&#8217;re here to take a quick break and I want to thank our partner, iThemes, long-time supporter of Post Status. I&#8217;ve got Cory Miller on with me to talk about what they&#8217;ve got going on. Hey, Cory.</p>\n<p>Cory Miller: Hey, Brian, thanks for having me on.</p>\n<p>Brian Krogsgard: Yeah, it&#8217;s my pleasure and I appreciate your support over the years. I was hoping that you could just tell me maybe what&#8217;s a big success iThemes had in 2018, and what you&#8217;re looking forward to next year?</p>\n<p>Cory Miller: Yeah, as you know in January of 2018 now we were acquired. iThemes was acquired by a great hosting company named Liquid Web, so this year has been spent integrating. We are almost done with the first round of integrations for our key product, iTheme Sync, which promotes site management for freelancers and agency WordPress Websites, BackupBuddy, our long-time popular plugin, and securities. So we&#8217;re almost done with the final round of that. You know in any transition there&#8217;s always bumps, but it&#8217;s been a really good ride so far.</p>\n<p>Brian Krogsgard: Yeah, have you been getting good feedback from LiquidWeb customers so far, or I guess are you looking forward to seeing iThemes products more integrated with LiquidWeb&#8217;s stuff?</p>\n<p>Cory Miller: Very much so. We saw hosting as the future for WordPress. All of the big hosting companies making significant investments in WordPress, and this was a way to join forces with a great hosting company and for our products, our team, to live on into the future doing really good things in WordPress.</p>\n<p>Brian Krogsgard: Cool, and iThemes products are still available outside of LiquidWeb as well. You can use them on any host that you choose, or a naked VPS if you want help managing a server that you want to pull all the lever, you can still do that but you can use all the iThemes tools to help you manage the day, and [inaudible 00:33:31] out of your WordPress Website. I&#8217;m really excited for you guys and what you have going on, and look forward to hearing more as next year comes along. Thanks for being on real quick, and if people want to learn more about what you&#8217;ve got going on, where do they go?</p>\n<p>Cory Miller: iThemes.com, best place to click some links and see if we are offering something that you&#8217;re in need of. We&#8217;d be happy to serve you.</p>\n<p>Brian Krogsgard: Awesome, well, thanks for being such a big part of the WordPress community these last 10 years plus, and a partner of Post Status for as long as Post Status has existed.</p>\n<p>Cory Miller: Yeah, we love Post Status. Keep doing what you&#8217;re doing, Brian. Thank you.</p>\n<p>Brian Krogsgard: Thanks, buddy. Bye. We&#8217;ve got another question from Ant in regards to giving people a seat at the table in a governance structure, which was seeking an update on the growth council, whether that was productive this last year, whether it happened. How can it happen going forward? I don&#8217;t know anything about what&#8217;s happened in the last year, so what have you learned there, and what&#8217;s happened?</p>\n<p>Matt Mullenweg: Yeah, so we created these two growth councils, one consumer one and one enterprise one, and we did these monthly meetings, video chats. And my goal with creating it was one, to bring some people together, so there are direct competitors in these meetings. It&#8217;s enterprise agencies that are bidding on the same clients. It&#8217;s Web posts that are advertising on the same key words and everything. And so you&#8217;d have like that as part of the discussion, and one of the goals also was to produce, improve essentially the WordPress experience.</p>\n<p>Matt Mullenweg: Some parts were successful, some parts weren&#8217;t, so I was amazed and humbled by how people came together. I think it really showed something I&#8217;ve tried to demonstrate with Automatic in the past, that you can both compete and work together for a greater good. People were both able, because it was a safe space, they were able to share things that were going on in their companies, things they were hearing from clients that they couldn&#8217;t talk about publicly, things they were seeing, experiences, in a safe space that generated some amazing discussions. I&#8217;ll also say selfishly that I learned a ton being part of these meetings, so it was really, really valuable for me.</p>\n<p>Brian Krogsgard: And that&#8217;s about how their organizations work and what&#8217;s important to them, or what kind of stuff?</p>\n<p>Matt Mullenweg: And the people they&#8217;re talking to, whether that&#8217;s consumers, kind of the more mass market side particularly with Web posts, but also with people doing trainings, people building small Websites, which is my kind of mental model was like, if it&#8217;s people spending under $100,000 a year for a site that&#8217;s the consumer group. If it&#8217;s over $100,000 a year, that&#8217;s the enterprise group. Not exact, but that was kind of like a rough mental model. And on the enterprise side, what are they seeing? It was so interesting as well, like most of the big agencies started building sites with Gutenberg kind of like February, March, and were launching them over the summer. Now at this point, they&#8217;re basically building everything. They&#8217;ve been building everything new with Gutenberg for the better part of a year.</p>\n<p>Brian Krogsgard: Yeah, I actually spoke with Tom Wilmot from Human Made and Jake Goldman from 10up both, and they&#8217;ve both expressed that they had an early embrace of Gutenberg and seen success with it. Somebody was telling me, I think it might have been Tom, that they showed off a demo of Gutenberg and instantly blew some Adobe experience manager style feature out of the water. Some company had spent gargantuan sums of money on the alternative experience, and they did a couple customizations with Gutenberg over the course of a couple weeks and showed them this as a prototype. It was already far superior to what their competition was putting forward, so from those-</p>\n<p>Matt Mullenweg: There&#8217;s got to be so much of that.</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: At Gutenberg, people have written bad versions of what Gutenberg is, including myself, for five years now. And now we&#8217;ve got this standard we can all build on. I actually had it right here. Human Made had this really cool white paper. I don&#8217;t know if you&#8217;ve seen this.</p>\n<p>Brian Krogsgard: Nice, yeah, they printed it.</p>\n<p>Matt Mullenweg: It&#8217;s glossy, it&#8217;s pretty &#8230; I mean, these are the types of things that for enterprises are really important. PDFs, white papers, case studies, and enterprise section of WordPress.org, important for that user group. For a consumer, a lot of things that that team talked about was the importance of talking about different use cases and allowing users to self-segment over the job they want to get done, and having some guides for that, some recommended plugins, essentially hand-holding them through the process of it.</p>\n<p>Matt Mullenweg: So I talked about what was successful about the councils. I&#8217;ll tell you what didn&#8217;t go as I hoped, producing things. I think because it was all often the CEOs of their companies or kind of the head folks, it was difficult for them to get time other than the meetings, in between the meetings, to just do work to produce for example a new enterprise section of WordPress.org. So actually on Saturday morning, I officially dissolved the councils.</p>\n<p>Brian Krogsgard: Okay.</p>\n<p>Matt Mullenweg: What I told the folks was, we&#8217;re not going to schedule out these meetings for the rest of the year. I left the Slack channels up so people could keep chatting if they want, and of course I said if anyone wants to keep meeting on their own, they&#8217;re happy to, or to continue the projects, and both groups said they would like to. The enterprise group wants to get the enterprise subsection of WordPress.org out. The consumer group wants to continue shipping some things, but it was a year and we didn&#8217;t ship these things, that honestly probably any &#8230; It could have happened within a month or two if it had had a lot of focus from any of the people involved. It illustrated to me actually the difficulty of a committee approach.</p>\n<p>Brian Krogsgard: Yeah, it makes me think of-</p>\n<p>Matt Mullenweg: One of the things that came up was the enterprise. We did drinks on Saturday as a kind of ending thing. It was a combined consumer and enterprise, and one of the things is they were like, &#8220;Hey, if you had just chosen one person to be in charge of this, that person could have said, &#8216;You do this, you do this, you do this,&#8217; it would have shipped probably pretty quickly.&#8221; But because no one knew who was in charge and who could tell other people to do things, I think it was Jake who said, &#8220;I&#8217;m not sure if I can tell Tom, &#8216;You need to finish this page,&#8217; or &#8216;You didn&#8217;t edit it.\'&#8221; Who&#8217;s in charge? And so that&#8217;s I think unintentionally illustrated an alternative group and management style that, because if it wasn&#8217;t adjusted and set up correctly, which is my responsibility, my fault, and not getting the results that we wanted. So, great experiment though, and I&#8217;m really, really glad we did it.</p>\n<p>Brian Krogsgard: Yeah, I wonder, you see movies or you see a senate hearing or something, and you have the primary people at the center table and then you have all their deputies on the outside. They&#8217;re still in a safe space, but they&#8217;re the people that actually go out and do things afterwards. It&#8217;s not like the senator or the CEO on that council necessarily that&#8217;s implementing, but they bring other people from their organization in to help the implementation component.</p>\n<p>Matt Mullenweg: I was kind of hoping more of that would happen. It&#8217;s true, some people on the councils were contributing individually, and some lead larger organizations so they can shepherd a lot of resources as well. So, I think there&#8217;s some of both that&#8217;s needed in the WordPress world. Yoast and myself are probably good examples, Yoast the person, not the company, of a leader who&#8217;s really passionate about areas, who also brings along a lot of their company to work on it.</p>\n<p>Brian Krogsgard: Yeah, they have a lot of manpower there.</p>\n<p>Matt Mullenweg: Oh, yeah.</p>\n<p>Brian Krogsgard: That they&#8217;ve got dedicated to core.</p>\n<p>Matt Mullenweg: Person power.</p>\n<p>Brian Krogsgard: Person power, thank you.</p>\n<p>Matt Mullenweg: Yoast had an incredible effect on Gutenberg and the 5.0 release, even though they&#8217;re smaller than all of the hosts, all of everything else. I think it&#8217;s a great example of Five for the Future.</p>\n<p>Brian Krogsgard: So I have one more process question, and then I want to dig into phases two through four, but Darren Ethier I think is how I pronounce his last name, he asked what were your thoughts process-wise on using GitHub for probably the most ambitious-sized project yet with WordPress from a feature plugin or feature point of view? Do you think it was encouraging enough to potentially start moving off track in SVN? I do know there was a make WordPress post that was about this, but I&#8217;m curious your personal experience, whether you liked being in GitHub day to day or using Git in the process, or if you missed track in terms of that development?</p>\n<p>Matt Mullenweg: I mean, I&#8217;m an early adopter of GitHub. My user name is literally the letter M, to show you how early it was, and I really like it. I think it&#8217;s a great product. Having kind of a parallel process, where I&#8217;ve now been involved pretty heavily in something on TRACK, involved pretty heavily on something on GitHub, there&#8217;s pluses and minuses. I wouldn&#8217;t say either is a panacea. The thing that actually makes the real difference is much more your engineering management. It&#8217;s your triage. It&#8217;s your process. It&#8217;s the testing. On both GitHub and TRACK, we made mistakes and had tickets that sat for weeks without anyone responding to them.</p>\n<p>Matt Mullenweg: That doesn&#8217;t have to do with the software. It has to do with the people, and I do worry the distraction of effort and time that switching source control and issue trackers and just also all the work that needs to be done to migrate all the tooling at the same time, if it would distract us from what&#8217;s actually most important in 2019, which is to tighten up some of our loose parts of the software. So that&#8217;s the only reason I&#8217;m hesitant to commit to saying that we&#8217;re going to do anything, particularly in 2019.</p>\n<p>Matt Mullenweg: Also, I am a big fan of GitLab, obviously. I see a lot of, I noticed a lot of comments on Helen&#8217;s post for actually advocating for GitLab. All of these things are getting better pretty rapidly. GitHub was slow for a while, and now they&#8217;re really picking it up. Time is kind of on our side if we switch later, because whatever we switch to will be six or 12 months better than it is today, and probably provide perhaps more of a compelling step function and user experience than is currently there, which is yes, I totally agree the interfaces are more modern and there&#8217;s better tools, and I do strongly prefer Git for branching and all these other things. There&#8217;s almost nothing you could tell me about either way that is an argument I haven&#8217;t heard or made myself. But it&#8217;s more just about a community focus thing, and what is the issues most urgently impacting WordPress users, both current and potential, today?</p>\n<p>Brian Krogsgard: I like what you say there in terms of the urgency factor, because I think I agree with you. Personally, if I were to do something to try to actually make code changes in SVN, I would always have to go remind myself, how do I patch something, and do I have the tools on my modern MacBook to do so? Whereas by &#8230; Go ahead.</p>\n<p>Matt Mullenweg: I was just going to say, we&#8217;ve built a lot of bridges between them as well. WordPress is synced to Git. You can do things both ways. We have tools for migrating patches between them. We&#8217;ve got official GitHub for WordPress. There&#8217;s a lot of stuff out there, but there is a point when I really want to focus on the developer experience and really invest some serious, serious time into that, but we&#8217;ve got to get the user experience right first.</p>\n<p>Brian Krogsgard: Yeah, I think I&#8217;m with you in terms of that priority, but long-term bringing on new people to be comfortable developing on the software, most people in their day to day are in GitHub or in Git more broadly, so even the self-hosted Git version or GitFlow I think in the long run would be good, but I like what you said there about the urgency component.</p>\n<p>Matt Mullenweg: Well, that&#8217;s one of the things I was looking at a lot, because that is one of the I think better arguments for using something centralized like GitHub, is that a lot of people have GitHub accounts.</p>\n<p>Brian Krogsgard: Mm-hmm (affirmative).</p>\n<p>Matt Mullenweg: Basically there was a while, I&#8217;ve reviewed probably over 10,000 engineering applications for Automatic. Every single one of them has a GitHub link. There&#8217;s definitely something to be said for that. I didn&#8217;t notice that big a difference in type or number of contributions, so it is a barrier to entry to make a WordPress.org account. It doesn&#8217;t appear to be the most salient factor in determining whether people submit patches or are active in TRACK or not-</p>\n<p>Brian Krogsgard: Interesting.</p>\n<p>Matt Mullenweg: Active in [inaudible 00:46:57] TRACK or not.</p>\n<p>Brian Krogsgard: I&#8217;d be curious how that ends up working if it was officially there, but nevertheless let&#8217;s move on to-</p>\n<p>Matt Mullenweg: Well, just look at the numbers, because Gutenberg was as official as anything, and the numbers of contributors to that versus the number of contributors that we have in any given core release, kind of similar. I think that the hard part is actually deciding that you&#8217;re going to dive into the code. The hard part is saying like, &#8220;I&#8217;m going to take this code. I&#8217;m going to figure out the problem and then submit the patch.&#8221; And once you&#8217;ve been through that, making an account one place or another, I think it&#8217;s probably something you&#8217;ll do one way or another.</p>\n<p>Brian Krogsgard: So phase one of Gutenberg mostly complete, or at least out the door, and you&#8217;re going to be iterating on this every two weeks like you told me before. Let&#8217;s talk about phase two through four, and let&#8217;s start with just why do you think that the order that you established things in is the right order? Why do you think this is the right direction, I guess, overall?</p>\n<p>Matt Mullenweg: Yeah, some of it is sequential and some of it is not. Are you familiar with the Kubler Ross Five Stages of Grief?</p>\n<p>Brian Krogsgard: No, I&#8217;m not.</p>\n<p>Matt Mullenweg: It&#8217;s like anger, denial, depression, acceptance. You&#8217;ve probably seen these before.</p>\n<p>Brian Krogsgard: Yeah, I&#8217;ve seen this in terms of markets. It&#8217;s the same stages of grief are identified in market cycles, so like in the stock market it&#8217;s a very similar thing, but I didn&#8217;t know it was called that.</p>\n<p>Matt Mullenweg: I don&#8217;t have one on my desk, but I actually have some glasses that I often use for drinks that have little markers on them, and it actually has the five stages.</p>\n<p>Brian Krogsgard: Nice.</p>\n<p>Matt Mullenweg: We could put that in the show notes for the podcast, a link to those.</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: A common misperception, I ended up actually reading one of her books called On Grief and Grieving, and it was actually finished posthumously, so she actually passed away in the process of it. This is I think Elizabeth Kubler Ross, or I forget the exact name, but amazing book. Good to read even if you&#8217;re not going to go through grief or grieving, because we all do at some point. One of the most fascinating things I took from that book was people think of those stages as sequential, and actually they can happen out of order, and they can happen simultaneously. In fact, you can go through anger and denial and acceptance and everything all in the same kind of 10-minute period.</p>\n<p>Matt Mullenweg: That was a really fascinating insight to me just of the human condition, because we are often more complex and less sequential than sometimes our simplified systems would like to say, or we&#8217;d like to think. Development is the same way. Phase one is not stopping where phase two is starting, and I think bits of phases one through four have already happened and will continue to happen as we go through it. It&#8217;s just more about priorities. We&#8217;ve gotten the editor experience to the point where I think it&#8217;s pretty darn decent, especially for new users. Now people, if you look at people who started using WordPress in a post-Gutenberg world, of which there are now hundreds of thousands, so they&#8217;ve only known Gutenberg. This is that example of the support person who said, &#8220;Bring me back the simple editor,&#8221; and they meant Gutenberg?</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: What is the new barrier that they&#8217;re running into? What&#8217;s the new wall they&#8217;re hitting? It&#8217;s the rest of the site. It&#8217;s customization. It&#8217;s widgets.</p>\n<p>Brian Krogsgard: So for those that don&#8217;t have these phases locked down in their brain, phase two is customizing outside of the post content itself as the next point of emphasis. So this could be widgets, menus and miscellaneous content. David posted a funny picture on Twitter where you looked like you were in deep thought during the State of the Word and he said, &#8220;I wonder what Matt&#8217;s thinking about right now?&#8221; You said it was probably the process of transporting menus to Gutenberg.</p>\n<p>Matt Mullenweg: Oh, yeah.</p>\n<p>Brian Krogsgard: Moving, I feel like this is something that&#8217;s happened every few years [crosstalk 00:51:12] in WordPress, it&#8217;s like the old menu system, then the new menu system, then the customizer menu system. Now we&#8217;re talking about menus here, and also not calling it menus but reshaping to navigation.</p>\n<p>Matt Mullenweg: And navigation block, I think is probably a good way to put it.</p>\n<p>Brian Krogsgard: Yeah, it seems like we&#8217;ve got some debt in regards to spending time on things that then we don&#8217;t use for a super long time, so how can we do the Gutenberg way of site customization and content and try to be efficient and long-lasting with that effort?</p>\n<p>Matt Mullenweg: Well, I mean first we&#8217;ll start doing it in plugins, in the Gutenberg plugin actually, just like we did for the editor. And so we can have, one of the reasons Gutenberg is where it is is because we did do a lot of user testing along the way, and it wasn&#8217;t just testing mock-ups or ideas. We had the actual working plugin on actual working WordPress sites so they could run. That makes a world of difference, so we&#8217;ll be able to do that for the customize, replacing widgets.PHP, piece of cake. That&#8217;s just taking over the page. The customizer is a little trickier, but we can do it because all of Gutenberg was designed to be responsive.</p>\n<p>Matt Mullenweg: Essentially, the customizer side bar is very similar to a mobile view, a narrow screen. It&#8217;s kind of like instead of a wide version, it&#8217;s a narrow version of that interface, so I think we can slip in there. Mainly it just requires a lot of rethinking, and there are some tough concepts that currently blocks don&#8217;t have, like the idea of widget visibility, which is [crosstalk 00:52:49].</p>\n<p>Brian Krogsgard: Yeah, I was about to say conditionality, or like show it here but not there. That&#8217;s one of the experiences that seems like it could get really confusing, because someone&#8217;s on a post and they change a sidebar, and therefore they think they changed it just there but they changed it everywhere, vice-versa. There&#8217;s a lot of UX things that seem like they could get complicated.</p>\n<p>Matt Mullenweg: Yeah, so we&#8217;ve got to figure that out, to be honest. I don&#8217;t have the answer right now. We&#8217;ve got to experiment and test our way into what works there, because there are some powerful and complex concepts that I think we can maintain, but just make a lot more intuitive and also make not so in people&#8217;s face. So if they don&#8217;t need to have widgets or blocks that only show up on the sidebar of search pages, it&#8217;s not kind of in their face and making them think about things. It&#8217;s that whole thing, making it more powerful and more intuitive at the same time.</p>\n<p>Matt Mullenweg: But currently, blocks don&#8217;t have a concept of that, but if we solve it for sidebars, widget areas, whatever you want to call it, perhaps we could solve that for blocks everywhere they&#8217;re used. Showing different headers on different pages is not something that is currently supported by most themes on different types of templates, but why not? That would actually be pretty cool, different footers on different types of pages. I could easily imagine different types of sites that would do this.</p>\n<p>Matt Mullenweg: It also raised a good point, which is kind of what has always been one of my bugaboos about front end editing, is that when I&#8217;m writing, I want to focus. I don&#8217;t want to see my header and footer and sidebar and all this other stuff, much less edit them. I think, I mean I&#8217;ve always talked about zooming in and zooming out, Gutenberg essentially being like a new 3D interface for WordPress. I think we want to make it very easy to kind of zoom in and out, including focus on one single area or even one single block, if you really want to work within that.</p>\n<p>Brian Krogsgard: And that means in some ways potentially front end editing too, right? When I think about Gutenberg, the one beef I have with writing in WordPress is all the other stuff beyond the editor. Whether it&#8217;s TinyMCE or Gutenberg, I write mostly text and a few images. I&#8217;m not doing a lot of page layout, and I love the tools that Gutenberg&#8217;s brought in. For instance, you brought up some of Nick Hamze&#8217;s blocks. I talk to Nick sometimes, and he&#8217;s got so much creativity and I love that it empowers that. But for 90% of the things I&#8217;m going to do, I&#8217;m just writing. A clear, focused writing area is what I like, so I actually just don&#8217;t like the fact that I can go into the appearance editor and the plug in screen. Those are all one click away, rather than just saying, &#8220;Here&#8217;s the page.&#8221;</p>\n<p>Brian Krogsgard: The best Gutenberg interact I&#8217;ve had yet was actually WordPress.org/Gutenberg, because I was experiencing Gutenberg. It&#8217;s a live demo of Gutenberg. I was able to experience Gutenberg, and none of the other stuff was there. It was just a column of content, and I really enjoyed that, so is that a part, a way that you think we can focus on how to get to writing and not worrying about everything else?</p>\n<p>Matt Mullenweg: We can support both. I mean, you currently have a version of this in Gutenberg where it can show the menu or not, or you can go to the mode which is my preference mode, where Gutenberg takes over the whole screen so you don&#8217;t have a sidebar menu there, even minimized. I actually strongly prefer that.</p>\n<p>Brian Krogsgard: See, I didn&#8217;t even know that. I&#8217;ve missed that.</p>\n<p>Matt Mullenweg: Oh, yeah, yeah, so go in Gutenberg to the top right, the dots. I&#8217;m trying to think exactly where it is. Are you opening your WordPress as well?</p>\n<p>Brian Krogsgard: I am.</p>\n<p>Matt Mullenweg: We&#8217;ll go through this together.</p>\n<p>Brian Krogsgard: I might take over my screen share here, but that&#8217;s okay.</p>\n<p>Matt Mullenweg: Oh yeah, do you want me to screen share?</p>\n<p>Brian Krogsgard: No, I mean I&#8217;m recording us.</p>\n<p>Matt Mullenweg: Oh, got you, got you.</p>\n<p>Brian Krogsgard: So people, this might end up on YouTube or something.</p>\n<p>Matt Mullenweg: So in the three dots, there is three kind of options there.</p>\n<p>Brian Krogsgard: Oh, yeah.</p>\n<p>Matt Mullenweg: Tool bar, spotlight mode and full screen mode. I actually am in full screen mode. I strongly, strongly prefer it.</p>\n<p>Brian Krogsgard: Neat.</p>\n<p>Matt Mullenweg: Top tool bar I don&#8217;t think is that useful, but they know that. This was basically, there was a huge kind of fight earlier. If you look at Yoast&#8217;s original post about the plan for Gutenberg, there alternative UI is basically all about the top tool bar. Then spotlight mode I also don&#8217;t love, but some people really like it. It kind of grays out the other blocks and then makes the current block you&#8217;re in more visually prominent.</p>\n<p>Brian Krogsgard: Cool, and for anyone that happens to be watching this, I just popped it up onto the screen where you can see exactly where that is, so that&#8217;s really cool. I learn new things every day.</p>\n<p>Matt Mullenweg: Yeah, and so even this menu, like I&#8217;m looking at this menu right now. Do you have it open?</p>\n<p>Brian Krogsgard: I do.</p>\n<p>Matt Mullenweg: I want to talk through some things that could be really improved here. So for example, originally we didn&#8217;t have this descriptive text under each of these three views.</p>\n<p>Brian Krogsgard: Mm-hmm (affirmative).</p>\n<p>Matt Mullenweg: Well one, the text should be views, not view, and I think that there is, we can improve that text. Under editor, I don&#8217;t know if visual versus code is actually very intuitive, and two, under code editor, I think it&#8217;s a beautiful place to expose that you can actually go into the code editor on a per-block basis, so just a little bit of text there that says, &#8220;Hey, also per block you can go into this.&#8221; Manageable reusable blocks needs the square and the little pointy thing that shows that that&#8217;s going to take you out of Gutenberg, and I think it does open a new window.</p>\n<p>Matt Mullenweg: And I think that we should put some sort of star or cool icon next to keyboard shortcuts, because once you learn those, you are off to the races. So just a good example that as far as we&#8217;ve come with Gutenberg, you can look at a single screen and immediately think of four or five things that are very improvable and that are certainly worth testing and getting out there.</p>\n<p>Brian Krogsgard: Yeah, that&#8217;s neat.</p>\n<p>Matt Mullenweg: I always joke I&#8217;m the unhappiest WordPress user in the world. It&#8217;s hard for me to look at anything in WordPress and not see all the things that could be made better, and just be terribly impatient to get them better as soon as possible.</p>\n<p>Brian Krogsgard: So, speaking of impatient, you&#8217;re going to have to &#8230; Well, you might be able to work on some of these things at the same time but also there is a phase, a priority, and number three was about collaborative editing. For me, I think of this not even necessarily like me and you might collaborate on a post, but sometimes I want to collaborate with myself. My favorite tool from Automatic that you guys have built is probably Simplenote, because it&#8217;s like the only to-do app-ish thing, and it&#8217;s very unstructured, but it&#8217;s the only to-do app type of thing that I&#8217;ve ever really used in depth, because it&#8217;s really easy to open. It&#8217;s really easy to start writing, and it&#8217;s instantly on my phone. So for me, collaborative editing in some ways is just this simple process back and forth.</p>\n<p>Matt Mullenweg: Across devices.</p>\n<p>Brian Krogsgard: Yeah, across devices.</p>\n<p>Matt Mullenweg: Totally.</p>\n<p>Brian Krogsgard: Because I do a lot of stuff through my phone, but your collaborative editing is much more than just cross-device. It&#8217;s also cross-individual, and people building things together. Why do you think that&#8217;s an important thing to be in core WordPress experiences?</p>\n<p>Matt Mullenweg: Hmm, that&#8217;s a good example of something that there&#8217;s not a bajillion people asking for right now. But just like post revisions, which is one of my favorite things I&#8217;ve forced to be in WordPress that I think is really fundamental to have the entire system works, this-</p>\n<p>Brian Krogsgard: Yeah, a lot of people have been saved by revisions.</p>\n<p>Matt Mullenweg: Yeah, I think this idea that when you&#8217;re editing in a post, the post is almost like an object and people from different devices, different things, can all come and be simultaneously working on that same object, is a mental model that is technically extraordinarily difficult. But if you get it right, it&#8217;s just a magical user experience. Even simple stuff, like do you remember when Netflix started saving where you&#8217;d watched up to across devices?</p>\n<p>Brian Krogsgard: Mm-hmm (affirmative), yeah, that&#8217;s great.</p>\n<p>Matt Mullenweg: Magical, and it&#8217;s so simple.</p>\n<p>Brian Krogsgard: Yeah, I use that a good bit. We use that a good bit with our son, because the easiest way for him to be happy in a car is to have somebody&#8217;s phone. You can pull up Super Wings or whatever, right where he left off, so yeah, I do agree. And even when Google Docs came out with that, it was revolutionary in a way but people didn&#8217;t realize how much it would transform the way they write documents, so &#8230;</p>\n<p>Matt Mullenweg: Totally, and we&#8217;ve got, the Web now supports technologies like WebRTC, that will perhaps enable us to do this even without centralized service, which is super cool, too. Because before, I was &#8230; Conspiracy theorists won&#8217;t believe this but I was actually really disappointed that it looked like the only way we could do this was in Jetpack. Now, it looks like we&#8217;ll actually be able to do this in a much more distributed fashion.</p>\n<p>Brian Krogsgard: Interesting. Funny enough, I didn&#8217;t even think about that conspiracy theory and everything. As delightful as that sounds to think about, I didn&#8217;t consider the centralization aspect of it.</p>\n<p>Matt Mullenweg: Yeah, so it&#8217;s definitely, there&#8217;s some stuff out there that&#8217;s possible. By the way, there might still be something where Jetpack can enhance it, or maybe we use Simperium, which is the engine behind Simplenote, to do something even fancier, but we can do a lot without that. But this also requires us to rethink our user flows around what versions, what it means to edit something. Because right now, you and I can kind of be on different paths, and we can save each other and merge over each other. And what is the relationship between what&#8217;s on the edit screen versus what&#8217;s live? That also is going to apply now to the entire site, so maybe what you and I are working on together is the new version of Post Status, and you&#8217;re changing the typography and I&#8217;m moving the widgets around and things like that, and then we&#8217;re setting that to go live at 12:00 pm on a Tuesday.</p>\n<p>Brian Krogsgard: Yeah, that&#8217;s really cool. Another element of that that is a quirk in WordPress I guess, but you could publish a post and now I want to update it, but I don&#8217;t want to update it right now, but I want to save what I&#8217;ve updated.</p>\n<p>Matt Mullenweg: Mm-hmm (affirmative).</p>\n<p>Brian Krogsgard: Right now it&#8217;s either, it&#8217;s all about your current session. Once it&#8217;s published, you either update it or those changes are basically gone. You don&#8217;t kind of save a draft of an update, so a work flow like this would inherently basically have to solve a problem like that, so that would be nice.</p>\n<p>Matt Mullenweg: Basically, we&#8217;re going to reimplement Git in the post-content table, in the WP Post table.</p>\n<p>Brian Krogsgard: Yeah, that sounds like no problem.</p>\n<p>Matt Mullenweg: Piece of cake.</p>\n<p>Brian Krogsgard: Yeah, on that note, do you think there are underlying architectural changes that WordPress is going to have to go through to enable both this experience, because this is Gutenberg, but also I mean you&#8217;re probably faced with some of the problems that a tool like WooCommerce has in terms of scalability and being the right tool for the job for that next level of application. These aren&#8217;t blogs anymore, but we basically have the same data base, the same data base structure. You can extend it. You can change things, but do you think there&#8217;s rethinking that needs to be done in that regard?</p>\n<p>Matt Mullenweg: Sure, and I actually think that [inaudible 01:04:12] is I think we have the opportunity to readdress and in a very backwards compatible way provide a path for people to upgrade some data structures, some things that have been hanging around for a while. An obvious one is widgets are a serialized array. Now we can move that to being JSON. There&#8217;s the native structure, data structure that Gutenberg uses behind the scenes. For some reason, we have to store this as like HTML plus comments, we can just store it in the native data format, which is pretty cool.</p>\n<p>Matt Mullenweg: By the way, as we increase the MySQL version, we can actually query and get things out as JSON objects directly from MySQL. We don&#8217;t have to take them in and out of strings, so there&#8217;s just some clean-up, some fun stuff we can do. When we get higher PHP versions, we can name spacing doing different things. J-Trip&#8217;s been talking about doing some pretty cool composer stuff. All of this is, we&#8217;re getting the user part back on track and so that also means we can start to invest a lot more in that developer experience, which I think is crucial. Also I feel, I have a ton of empathy for, I actually for better or worse, I interact every day a lot more with developers than I do with users, so I really try to get out of my way to interact with users, but you can imagine the gripes and pains of developers is something that is more of my daily experience.</p>\n<p>Brian Krogsgard: So we&#8217;ll have time to talk about all these phases over the next few years, but quickly what do you see in terms of the number of sites where having a multilingual setup, and this is around the focus of phase four, how often are you encountering Websites like that, and how much do you think that this being a part of the WordPress experience would be empowering for people to actually support more languages and more language versions of their site?</p>\n<p>Matt Mullenweg: I think it would be a really big fundamental concept. The Web is global. English or single language is actually I think a small minority. People who speak one language is a small minority of the seven billion people in the world. This is obviously very prevalent in places like Quebec, where there&#8217;s officially French and English, and of course all over Europe. This is why I get the question every year for Camp Europe. I am monolingual, ashamedly so.</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: But the world is polyglots, and that&#8217;s why I named the mailing list WP Polyglots, not WP translate or WP anything, when I set that up almost 15 years ago now. Even for monolinguists like me, I got someone contacted me the other day saying, &#8220;Hey, can I translate this Gutenberg FAQ into Japanese? Do I have your permission to?&#8221; And they put it on a different site. How cool would it have been if I just could have said, &#8220;Hey, by the way, collaboration and work flow, here, you now have access to make this post into Japanese,&#8221; and now at the top it&#8217;ll have a little link to it, to the Japanese version, and there will be sort of a neural structure in a canonical place for the MA.TT version of the Gutenberg FAQ translated to Japanese by this volunteer, where anyone in the world could live. And by the way-</p>\n<p>Brian Krogsgard: I was about to say, what if it was permissionless, like just if someone wants to make something on my site in other languages, do it. As small as Post Status is, I&#8217;ve had people that want to recreate the members side in Dutch or something.</p>\n<p>Matt Mullenweg: Cool.</p>\n<p>Brian Krogsgard: I&#8217;m like, I can&#8217;t do that, but that sounds amazing if you want to do that. But I&#8217;d be totally down if the structure was there for it to say, translate this post, and it&#8217;s almost like forking software, or almost the way language packs and plugins work. You don&#8217;t have to be responsible for every language pack if you&#8217;re the plug in author. Someone can just come and do it, and I think that&#8217;d be really cool for posts.</p>\n<p>Matt Mullenweg: That would be so cool, and by the way, layer that in with other plugins. Layer that in with membership, so you only allow members to translate things, or layer that in with one I&#8217;d love to re-evaluate which is [Blickey 01:08:23]. So there is public revision history and sort of moderated submissions, so maybe I have, maybe my colleague [Nalco 01:08:34] can moderate Japanese translations, but maybe she doesn&#8217;t have time to translate every single one of my posts herself. But when people submit one, she could take a few minutes to just read it through and make sure they&#8217;re not having [crosstalk 01:08:47].</p>\n<p>Brian Krogsgard: Yeah, translate my post and make it sound completely different.</p>\n<p>Matt Mullenweg: Yeah, I think it&#8217;s actually WordPress.com.</p>\n<p>Brian Krogsgard: Assuming good intent is part of the thing there.</p>\n<p>Matt Mullenweg: Do you remember the Happy Birthday incident?</p>\n<p>Brian Krogsgard: I don&#8217;t.</p>\n<p>Matt Mullenweg: Someone, because when we opened up kind of like more totally community translations on WordPress.com and made it easy for anyone to do it, someone changed where it said comments, like leave a comment, into Happy Birthday! I forget what language it was, Italian, so all Italian sites under every single post would say Happy Birthday!</p>\n<p>Brian Krogsgard: Just Happy Birthday!</p>\n<p>Matt Mullenweg: Which I think is kind of like the most brilliant, if you&#8217;re going to troll or vandalize us, that was a really lovely way to do it.</p>\n<p>Brian Krogsgard: Yeah, we could probably learn some things from Wikipedia&#8217;s own editorial flows and how to implement something like that. I do think that would be really neat. Do you think that still leaves room for other plugins that are doing various multilingual things? Does it leave room for them, or do you think it kind of eats them up and makes that business model go away? Because there&#8217;s been some good-sized businesses in that realm.</p>\n<p>Matt Mullenweg: It leaves room for them 100%. In fact, I think it increases them a ton. Same thing with page builders. If you look at where the business model is for a lot of these translation plugins are going, they&#8217;re actually helping you do the translation. That makes total sense. If I&#8217;m a business, I might want my site in five languages. If I can click a button and just say, &#8220;Hey, I&#8217;ll pay you $1,000,&#8221; and by the way the plugins can be in the middle of that or there can sort of be an API for that. I mean, this is kind of incredible, but the downside of them is very similar to page builders, which is each kind of has its own way to do the data and the storage.</p>\n<p>Matt Mullenweg: Some put it all in post content. Some put it in custom post type. Some put it in meta fields. Some put it in separate tables, so you essentially have actually each of the possible ways you could kind of logically do this exists. So now, if I&#8217;m building a plugin that wants to work with multilingual versions of the site, how do I do it? There&#8217;s no common foundation. Exact same issue we had with blocks. There were blocks on WordPress for years now, but every single visual composer and Beaver Builder and Elementor and Avada and Divi, they all did blocks in a different way.</p>\n<p>Brian Krogsgard: Matt, there&#8217;s like 100 business questions I want to ask you but we&#8217;re over an hour already, so I will-</p>\n<p>Matt Mullenweg: Can we take a few more minutes, like maybe wrap it in like, say 10?</p>\n<p>Brian Krogsgard: Yeah, sure. If you&#8217;re down, I&#8217;m down.</p>\n<p>Matt Mullenweg: You&#8217;re one of my favorite people to talk to.</p>\n<p>Brian Krogsgard: Well, I appreciate it. I love talking to you as well, and I appreciate your openness.</p>\n<p>Matt Mullenweg: Between you all, honestly you all and the Tavern folks, these are so much fun. I actually listen to a lot of these podcasts. It&#8217;s really enjoyable for me, so I appreciate you doing it. My ask of you for 2019 is, I&#8217;d love to see a bit most Post Status on the scene, you know?</p>\n<p>Brian Krogsgard: Yeah, that&#8217;s a task for myself as well, so I did a relatively personal update recently.</p>\n<p>Matt Mullenweg: I saw that.</p>\n<p>Brian Krogsgard: One of the things that I&#8217;ve struggled with is I haven&#8217;t been in the thick of things in about four years, so I&#8217;m actually not spoiled, but I&#8217;m doing some part-time work actually being in WordPress, and back into doing stuff.</p>\n<p>Matt Mullenweg: Cool.</p>\n<p>Brian Krogsgard: It&#8217;s actually on the product side, not the service side. I&#8217;ve worked in an agency. This is going to give me a chance to do some part-time work on the product in SaaS side of things, so I&#8217;m excited about that. I know from history, when I&#8217;m working hard on something, whether it&#8217;s building my own site or working in the industry, it gives me much more to say, so I&#8217;m excited about being inspired by working within our space more, and within the experience more. Because it&#8217;s been four years of not doing that, and over those years I&#8217;ve tried to rely on other people to have a voice more as I felt like mine was fading. Kind of like what you were saying, you&#8217;re around developers all the time and not, like you want to be around more users. I was looking at the industry a lot, and not being in the industry I felt made it more difficult to have good things to say.</p>\n<p>Matt Mullenweg: Although I would say the outside perspective is really valuable as well.</p>\n<p>Brian Krogsgard: Yeah, I think at least for a season I need, it&#8217;ll be really beneficial for me.</p>\n<p>Matt Mullenweg: I can&#8217;t wait to see, and by the way, as a member of the Post Status community, include us along for the ride. I&#8217;m sure after that personal update you got a ton of people contacting you [crosstalk 01:13:14].</p>\n<p>Brian Krogsgard: I did, which I was very thankful for.</p>\n<p>Matt Mullenweg: It&#8217;s one of those things, I think what was beautiful about that is you opened up about the struggle, not just about the good stuff. It&#8217;s really scary to be vulnerable like that, publicly. It was scary of me to put the things we learned and did wrong in the State of the Word, right? I just wanted to talk about all the good stuff, but it&#8217;s like it&#8217;s important for us to talk about what I messed up on. People help when they see that.</p>\n<p>Brian Krogsgard: Yeah, that was very-</p>\n<p>Matt Mullenweg: And I think the most valuable thing you built is like overall a pretty positive community that cares about WordPress deeply, so that&#8217;s awesome.</p>\n<p>Brian Krogsgard: Yeah, and thank you, and I was very appreciative of the various responses that I got between feedback and ideas and job offers. But I&#8217;m excited to do some work within the space, and you know actually it did give me, it was beneficial because I got my head kind of out of the space a little bit, which I needed. I&#8217;ve been thinking about WordPress a whole lot since 2010, with basically no break, and I can&#8217;t imagine how you feel at times. But for me to still have a focus on WordPress but at least spend part of my week thinking about other things, doing other things, it gave me some personal benefits I think, and allowed me to look at WordPress things with a bigger picture. So I&#8217;m excited for 2019 and I think it&#8217;ll be a lot of fun. Now for you, just-</p>\n<p>Matt Mullenweg: Well, I often tell people if you&#8217;re ever feeling not inspired or burnt out, go to a museum. Watch a show. All of my best ideas for WordPress have always come from the intersection of different fields, different areas, and I think that&#8217;s true of most great art, most great software, most great anything. So if you can get out there and keep, the WordPress stuff or whatever you&#8217;re working on will be in the back of your mind anyway, so if you can kind of focus on something else for a little while, actually really it&#8217;s fun.</p>\n<p>Brian Krogsgard: It is.</p>\n<p>Matt Mullenweg: I can&#8217;t wait to see what you do. As always, let me know if I can ever be of help.</p>\n<p>Brian Krogsgard: Well, thank you very much. So a couple of business-y things. One is, what&#8217;s your biggest product right now, from an Automatic perspective? Are you guys seeing a lot of growth in the WooCommerce space, or is dot com still the main revenue driver? What are you seeing there?</p>\n<p>Matt Mullenweg: Sure, let me just think through what I can say publicly.</p>\n<p>Brian Krogsgard: When are you filing your S-1, Matt?</p>\n<p>Matt Mullenweg: Yeah, we make the same joke in Automatic that they made at Apple, which is we&#8217;re a ship that leaks from the top.</p>\n<p>Brian Krogsgard: Hey, I have to commend you, as someone who doesn&#8217;t like it but I can appreciate that this is the case. You guys are pretty good about being tight-lipped on the leaky boat side of things, so it&#8217;s a tight ship. I don&#8217;t get near as many of the leaks as I would like out of Automatic.</p>\n<p>Matt Mullenweg: Well, I think a big part of that is just most of what we do is in the open. If you want to see the pricing tests we&#8217;re running on the new blogger and e-commerce plan that we just launched on WordPress.com, it&#8217;s in the Calypso GitHub so you can see which prices we&#8217;re charging which people, and how the test is going, and what percentage it&#8217;s going out to. Kind of, it&#8217;s all out there. WordPress.com is still the largest, and it&#8217;s still growing like a weed. I think in 2018 WooCommerce will actually grow faster in a year over year percentage, which is kind of what I started saying. We&#8217;re starting to see what I predicted when we actually first brought WooCommerce in, which is that the e-commerce opportunity has the potential to be bigger than all of the rest of Automatic&#8217;s businesses combined.</p>\n<p>Brian Krogsgard: Yeah, what&#8217;s Shopify, like eight billion plus market cap, maybe 15? I don&#8217;t know. I think they doubled their size in 2018.</p>\n<p>Matt Mullenweg: Yeah, market cap is just vagaries of the market, but revenue, they&#8217;ll be about a billion dollars this year. So I think it&#8217;s always good to look at kind of, when sort of comparing companies, look at the revenue not just the market cap.</p>\n<p>Brian Krogsgard: Sure.</p>\n<p>Matt Mullenweg: So they&#8217;ll be at a billion dollars and still growing at a really, really good rate. Now, the other reality is that nothing that we do is completely disconnected. A lot of the WooCommerce growth and increasing user experience is sort of amplified, I think, because we&#8217;ve been doing it in Jetpack, which is also amplified by running Jetpack code on WordPress.com and having that sort of stream of new users that are coming there, and so we see the problems that they&#8217;re having, and the struggles, or we build the infrastructure.</p>\n<p>Matt Mullenweg: You asked about data structures earlier. I think one thing that we&#8217;ll start to see a lot more of in WordPress, and actually a very common feature of Jetpack that people don&#8217;t know about, that the Jetpack business plan, you can have full Elasticsearch version of your site. So there are certain use cases for which I don&#8217;t think MySQL is the best medium with which to address or query your data, and Elasticsearch is pretty much the cat&#8217;s meow. So the fact that we can in real time, create real time Elasticsearch indexes for every single Jetpack business site, which only costs $300 per year. Before that, it used to cost &#8230; Actually, I think VIP used to charge $5,000 or $10,000 a year for this, maybe even a couple grand a month, actually. Now we can do it for $300 per year.</p>\n<p>Brian Krogsgard: Wow.</p>\n<p>Matt Mullenweg: And that&#8217;s just one of the features in Jetpack Business. That&#8217;s in addition to the real time backup and the activity log and all the other things, the security restores. It just shows that we&#8217;re really surfing the outer edge of Moore&#8217;s Law, and I think that the stuff that we&#8217;re going to be able to do over the next few years is going to be pretty amazing, and I&#8217;m excited about Automatic. We also just moved DNS Perf, we moved back into second place for fastest DNS service, so by the way, way ahead of Amazon, way ahead of Google, and second only to Cloudflare, which Automatic&#8217;s network is tiny but mighty. Cloudflare invests I think over 100 million dollars per year in capex, building out their data centers in their kind of points of presence. We&#8217;ve reached a number two performance ranking with a fraction of that investment, so very proud of that team, very proud of all the folks at Automatic that are really building this out. By the way, then that benefits all the users of Jetpack Photon, the CDN, just so much cool stuff happening.</p>\n<p>Brian Krogsgard: That&#8217;s awesome. I heard recently that you all have also been able to lower some of your prices for VIP as you&#8217;re deploying like VIP Go and some of that stuff with scalable Websites. Back when I had my hands in a few VIP sites I think the lowest pricing back then was maybe $3,000 to $4,000 a month, and now you can do it as low as $1,000 a month and you all provide a lot for that, so that&#8217;s impressive.</p>\n<p>Matt Mullenweg: That sounds about right, yeah. I&#8217;m not up on the latest there, but fundamentally my business philosophy is to get the best stuff in the hands of as many users for as low a price as possible, and we&#8217;re just relentless in kind of cutting the costs, bringing things down, trying to leverage the best and newest technology to do so.</p>\n<p>Brian Krogsgard: How are you attacking the very high end, so that a store that may grow up on WooCommerce doesn&#8217;t feel like they have to leave WooCommerce once it hits a certain scale? One of the things that I feel like people have been, I&#8217;ve been hearing from consultants especially, is that they get to a certain size and then they&#8217;re really struggling with WooCommerce, and then something like Shopify ends up being the answer. How is WooCommerce going to compete in that realm to be the platform for Macy&#8217;s or who knows what? Some big company with lots of orders and lots of stuff, so that you can keep them throughout the life cycle?</p>\n<p>Matt Mullenweg: Yeah, I think my take on that problem, because ultimately what we want to do is be more scalable in Shopify and also a better user experience, and right now I would say they&#8217;re ahead in both. There hasn&#8217;t been as good a feedback loop. The thing that made WordPress so scalable was there was a tight feedback loop between the host, the agencies building the biggest sites, WordPress.com itself being a big site, and the core development. So that meant that when we had bottlenecks, we were able to solve them often in core in ways that were ultra scalable in Webscale.</p>\n<p>Matt Mullenweg: WordPress.com is on its own one of the largest sites on the Internet, so that&#8217;s the same software that you can download and use, which is kind of wild. For WooCommerce, that loop isn&#8217;t as strong so one of the things I&#8217;ve been encouraging the team to try to do myself is get a tighter loop between the host and the people building the big sites and the WooCommerce core team, so that they can figure out versus having five different plugins that try to address the scalability in different and often subpar ways, really get that built into core, with the sort of Web scale, knowing everything we&#8217;ve known in 15 years of building WordPress, what&#8217;s going to make it so it can scale to thousands of orders per second, hundreds of millions of rows.</p>\n<p>Brian Krogsgard: Two more questions, real quick.</p>\n<p>Matt Mullenweg: We can do so, by the way. It&#8217;s a very tractable problem. We will solve that. Solving that is something that will happen within the next six to 18 months. Solving the user experience to catch up with Shopify is also improving the user experience, or BigCommerce rather, I think will take longer. That&#8217;s more of a five to 10 year goal.</p>\n<p>Brian Krogsgard: I personally think that gives both the WordPress ecosystem, the WooCommerce ecosystem and Automatic directly a massive value proposition, if that can be accomplished. I think WordPress now people, you never feel like you have to leave WordPress because you got too big.</p>\n<p>Matt Mullenweg: Yeah.</p>\n<p>Brian Krogsgard: And as that can be accomplished, and that was a massive accomplishment for WordPress. For a long time that wasn&#8217;t true, and now that, if that can be done on the e-commerce side of things, or commerce broadly not just necessarily WooCommerce, I think that will be fantastic for everybody involved.</p>\n<p>Matt Mullenweg: By the way, I just want to point that out, just to pause. Think how little, how many other examples of software you can think of that the consumer version also works when you run it at an industrial global scale?</p>\n<p>Brian Krogsgard: I have no idea. I&#8217;m not very-</p>\n<p>Matt Mullenweg: It&#8217;s not very common. I think it&#8217;s one of the things the WordPress community should really be proud of, because that is highly unusual. And as we&#8217;re one of the only ultra-successful consumer open source startups, projects, communities, whatever, I think pointing to that sort of scalability is a big thing as well.</p>\n<p>Brian Krogsgard: So, one question is Automatic has investors. We just saw Slack, Lyft and Uber all file for becoming public companies. When I think, what&#8217;s the option for Automatic, one of however many successful startups where you have investors, they know you&#8217;re a successful startup. They know that there&#8217;s opportunity for them to succeed in that. That&#8217;s long-term revenue stream, remaining a private company. It&#8217;s private equity. It&#8217;s going public, or it&#8217;s acquisition. Do you have any thoughts in terms of what makes you happiest as a company and as a business owner, and what do you think is best for the way Automatic interfaces with the broader WordPress community?</p>\n<p>Matt Mullenweg: It&#8217;s hard for me to imagine being a public company CEO, any harder than leading an open source project.</p>\n<p>Brian Krogsgard: I&#8217;ve thought about that a great deal. I think you actually fit the mold for what Wall Street might like in terms of the leader of a public company. I will say, that&#8217;s my bet. My best is one day Automatic would go public, and we figure out how that works in terms of all the private, public components and the open source side of things. But yeah, I&#8217;m curious-</p>\n<p>Matt Mullenweg: I think it&#8217;s actually a possibility. By the way, I could see other WordPress companies going public, probably WPEngine is the closest to the gates there.</p>\n<p>Brian Krogsgard: Well good, GoDaddy and EIG are public.</p>\n<p>Matt Mullenweg: They are, yeah, so there will be other open source WordPress either based or WordPress will be a part of their business public companies, likely before Automatic as well. I think that&#8217;s a great path for us. Automatic has investors. They are minority investors, so the sort of existential future of the company is in the hand of myself and the other people who own the majority of the shares of Automatic. I think there&#8217;s lots of options. The people you point to, Uber or Lyft, Slack, et cetera, to varying degrees have built some pretty impressive things. I admire some more than others, but also have reached a scale that&#8217;s kind of far beyond where companies generally go public.</p>\n<p>Brian Krogsgard: Yeah, they really have. It&#8217;s been-</p>\n<p>Matt Mullenweg: What that illustrates is that the private market is actually a lot more liquid and has a lot more capital available for when and how that needs the company or the ecosystem or whatever to grow.</p>\n<p>Brian Krogsgard: So I could surmise from that that you don&#8217;t feel like there&#8217;s a rush?</p>\n<p>Matt Mullenweg: I won&#8217;t even speak to my own personal things, but say just in the industry there&#8217;s less of a rush, so that is the plus and minus of so much capital moving from the public markets into the private markets. So people like Fidelity, T. Rowe Price et cetera that used to only do public companies now invest in private companies. That&#8217;s great for the companies, because by the way as a private company, you don&#8217;t have the kind of quarterly scrutiny that you do when you&#8217;re public, and I think it&#8217;s actually easier to out-innovate and out-flank public companies when you are private, which is one thing I personally like. But that said, it does keep more of that growth in the hands of only sophisticated investors.</p>\n<p>Brian Krogsgard: I completely agree.</p>\n<p>Matt Mullenweg: So there is a lot more of that upside that is no longer in the hands of what is commonly referred to as the retail investor. I would love for anyone who loves Automatic&#8217;s products to be able to own a share of the company, even if it&#8217;s just one share. That&#8217;s not really possible under the current sort of regulatory frameworks, and for good reasons, by the way. As we saw with the kind of ICO craze, there&#8217;s a reason all these protections for consumers and public market, public company standards exist.</p>\n<p>Matt Mullenweg: But in the meantime, at Automatic we will continue to hold ourselves to public company standards, but really build in an extremely long-term way. If there&#8217;s an idol there, I&#8217;d say it&#8217;s Amazon, and try to make the best possible user experience, best possible products. If we continue to do that, I think from a business point of view we will have an array of options available to us and any number of choices.</p>\n<p>Brian Krogsgard: And as a leader yourself of the WordPress community and Automatic, what&#8217;s one big thing that you learned this year that you hope to improve upon in 2019?</p>\n<p>Matt Mullenweg: Hmm, I know you&#8217;re probably thinking about like a big thing, but I&#8217;m actually going to say a small thing.</p>\n<p>Brian Krogsgard: It can be small.</p>\n<p>Matt Mullenweg: It&#8217;s really important, which is how much you can &#8230; What is the one thing everyone listening to this is doing right now?</p>\n<p>Brian Krogsgard: Focusing, I hope?</p>\n<p>Matt Mullenweg: Breathing.</p>\n<p>Brian Krogsgard: Oh, okay.</p>\n<p>Matt Mullenweg: And you probably weren&#8217;t thinking about it, but now you are thinking about it. You&#8217;re breathing right now.</p>\n<p>Brian Krogsgard: I am.</p>\n<p>Matt Mullenweg: And it is amazing how much you can influence your mindset, your state of mind, your mood, your everything, through breath. Just as an exercise, where everyone puts their hand on their belly and takes a big breath and pushes your hand out as you take it in, Brian, are you doing it?</p>\n<p>Brian Krogsgard: Oh, sorry. I do. I feel good.</p>\n<p>Matt Mullenweg: It has an immediate effect on you.</p>\n<p>Brian Krogsgard: It does. You know, actually that&#8217;s how we discipline our son often. A three-year-old is a very emotional being, so if they&#8217;re upset one of the first things that you can do with them is just tell them, &#8220;Let&#8217;s take a deep breath together.&#8221; So you take that deep breath and the response is also very immediate, the way they calm down and settle down and think more clearly because they took that breath, so that&#8217;s interesting.</p>\n<p>Matt Mullenweg: That&#8217;s all of us, and also by the way, this is not something new. This goes back thousands of years.</p>\n<p>Brian Krogsgard: You didn&#8217;t just invent this?</p>\n<p>Matt Mullenweg: No, no, you know there&#8217;s so many, there&#8217;s so much prior art here, but I&#8217;d encourage people to check it out. Also check out, when the videos go up, the Joanna Barsh talk, and Alexis Lloyd both had sort of almost like guided meditations and exercises. I think this is one of the next big areas for people who aren&#8217;t familiar with to discover. They&#8217;re actually really, really powerful, and it&#8217;s been huge for me. In an extraordinarily busy and what might otherwise be seen as extremely stressful year, it was actually one of my best years of my life.</p>\n<p>Brian Krogsgard: Awesome.</p>\n<p>Matt Mullenweg: I do have to watch a clock, and I do have to run now.</p>\n<p>Brian Krogsgard: That&#8217;s fine. I&#8217;m happy to hear that. Thank you for spending so much time with me. It was great talking to you, and we&#8217;ll catch everybody next time.</p>\n<p>Matt Mullenweg: Thank you. I&#8217;ll see you all, and thank you to all Post Status readers.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Dec 2018 14:45:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"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: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:69:\"WPTavern: State of the Word 2018: WordPress Embraces the Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86291\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/state-of-the-word-2018-wordpress-embraces-the-block-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13953:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/PIC_20181208_161427272.jpeg?ssl=1\"><img /></a>photo credit: WP Tavern</p>\n<p>WordCamp US kicked off in Nashville over the weekend, following the release of WordPress 5.0. In the first 48 hours, 5.0 had been downloaded more than 2.8 million times. It passed 3 million Saturday night.</p>\n<p>&#8220;There&#8217;s been a lot that&#8217;s been going on, so I&#8217;d like to allow WordPress the chance to re-introduce itself,&#8221; Matt Mullenweg said during the preamble of his <a href=\"https://www.youtube.com/watch?v=aWlfp-1Q19I\" rel=\"noopener\" target=\"_blank\">State of the Word</a> address. He invoked the four freedoms as the project&#8217;s constitution and called the community back to its roots. </p>\n<p>“It&#8217;s the reason we&#8217;re here,” Mullenweg said. “WordPress isn&#8217;t a physical thing; it&#8217;s not a set of code. It&#8217;s kind of an idea.  WordPress is backed by the full faith and credit of every person and company that depends on it.”  </p>\n<p>He reiterated the project’s mission to democratize publishing and recast his vision for advancing the open web.</p>\n<p>&#8220;Like I said a few years ago, we&#8217;re building a web operating system, an operating system for the open, independent web and a platform that others can truly build on,” Mullenweg said.</p>\n<p>WordPress’ 32.5% market share and its commercial ecosystem, which Mullenweg estimates at $10 billion/year,  give the project the resources to make a powerful impact on the future of the web. </p>\n<h3>Mullenweg Builds a Compelling Case for the Block Editor</h3>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/wcus-sotw.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://twitter.com/WordCampUS/status/1071531659579789313\">WCUS Photography Team</a></p>\n<p>Mullenweg drove home the necessity of Gutenberg by showing a selection of videos where new users struggled to accomplish simple tasks in the old editor.  Their experiences were accompanied by painful commentary:</p>\n<ul>\n<li>&#8220;This feels like writing a blog back in 2005.”</li>\n<li>&#8220;This was very finnicky; this does not work.”</li>\n<li>&#8220;How would I add a caption? I have no clue.”</li>\n</ul>\n<p>Mullenweg described how he used to effortlessly switch back and forth between the visual and HTML editors prior to WordPress 5.0 but realized that not all users are able to do this.  </p>\n<p>”This has been our editor experience for over a decade now and many of us have learned to deal with it,” he said.</p>\n<p>He followed up with a video demonstrating how much easier these tasks are in the new block editor and identified blocks as the way forward for WordPress.</p>\n<p>Some attendees commented after the fact on how the user testing videos, paired up against an expert using Gutenberg, seemed unbalanced and they would have liked to see videos of new users attempting the same tasks in the new editor. The goal of that segment, however, seemed to be more aimed at communicating the need for Gutenberg and the possibilities it opens up once users have had the chance to grow into it.</p>\n<h3>Mullenweg Urges Attendees to &#8220;Learn Blocks Deeply&#8221;</h3>\n<p>Millions of early adopters have already embraced the block editor during phase 1 of the Gutenberg project, which closed out with 1.2 million active installs and 1.2 million posts written. There have already been 277 WordCamp talks on Gutenberg, 555 meetup events focused on the new editor, and more than 1,000 blog posts discussing it.</p>\n<p>Blocks are taking over the world of WordPress. Version 5.0 shipped with 70 native blocks and there are already more than 100 third-party blocks in existence and 1,000 configurations related to that. </p>\n<p>“Blocks are predictable, tactile, and can be simple like a text block, or as rich as an e-commerce interface,” Mullenweg said. He described them as the new DNA of WordPress, from which users can create anything they can imagine. </p>\n<p>Mullenweg showcased two sites built using the block editor, the <a href=\"https://theindigomill.com/\" rel=\"noopener\" target=\"_blank\">Indigo Mill</a> and <a href=\"https://www.luminasolar.com/\" rel=\"noopener\" target=\"_blank\">Lumina Solar</a>. These beautiful sites open the imagination to what Gutenberg is capable of bringing to websites.</p>\n<p>WordPress.org will be highlighting plugins and themes to push the block ecosystem forward. There are also more than 100 Gutenberg-ready themes available to users on the directory and <a href=\"https://wordpress.org/plugins/browse/blocks/\" rel=\"noopener\" target=\"_blank\">a new Gutenberg block tag that is currently live for plugins</a>. It will also be available for themes soon. </p>\n<p>Mullenweg highlighted tools like the create-guten-block toolkit, Block Lab, and Lazy Blocks that are making it easy for developers to create their own blocks. Block collections and libraries are also emerging. He said one of the priorities for 2019 is to build a WordPress.org directory for discovering blocks and a way to seamlessly install them.</p>\n<p>Building on the homework he gave to WordPress developers in 2015, to “<a href=\"https://wptavern.com/state-of-the-word-2015-javascript-and-api-driven-interfaces-are-the-future-of-wordpress\" rel=\"noopener\" target=\"_blank\">Learn JavaScript Deeply</a>,” Mullenweg urged the community to “Learn Blocks Deeply.”  Blocks provide a host of opportunities to improve the user experience beyond what Gutenberg’s creators could have imagined in the beginning.</p>\n<h3>Gutenberg Phase 2: Navigation Menu Block, Widget blocks, Theme Content Areas</h3>\n<p>Mullenweg announced the next phases for the Gutenberg project. Phase 2 has already begun and focuses on site customization, expanding the block interface to other aspects of content management.  This includes creating a navigation menu block. Reimagining menus is will be challenging, and Mullenweg said they may even get renamed during the process.</p>\n<p>Phase 2 goals also include porting all widgets over to blocks and registering theme content areas in Gutenberg. An early version of phase 2 will be in the Gutenberg plugin so anyone wanting to be part of testing can reactivate it.</p>\n<p>During the Q&#038;A time, one attendee asked a question about how this phase seems to include very little about making layout capabilities more robust. He asked if Mullenweg plans to let those the marketplace handle those layout decision or if core will define a layout language. Mullenweg responded that it may be more prudent to see what others in the ecosystem are doing and cherry pick and adopt the best solutions. He also remarked that it would be exciting if users could switch between different page builders in the future and not lose their content. </p>\n<h3>Gutenberg Phases 3 and 4: Collaboration and Core Support for Multilingual Sites</h3>\n<p>Mullenweg announced that Gutenberg phase 3, targeted for 2020, will focus on collaboration, multi-user editing, and workflows. Phase 4 (2020+) is aimed at developing an official way for WordPress to support multilingual sites. When asked what that will look like from a technical standpoint, given the many existing solutions already available, Mullenweg said he didn’t want to prescribe anything yet, as it’s still in the experimental stage.</p>\n<p>Other major announcements included a highly anticipated bump in the minimum PHP version required for using WordPress. By April 2019, PHP 5.6 will be the minimum PHP version for WordPress, and by December 2019, the requirement will be updated to PHP 7.</p>\n<p>WordPress releases are going to come faster in the future, as Gutenberg development has set a new pace for iteration. Mullenweg said he would like WordPress to get to the point where users are not thinking about what version they are on but instead choose a channel where they can easily run betas or the stable version.</p>\n<h3>Mullenweg Acknowledges Mistakes Made and Lessons Learned in the 5.0 Release Process</h3>\n<p>WordPress 5.0 was one of the longest and most controversial release cycles in the project’s history. Those outside the inner circle of decision-making endured a great deal of uncertainty, as dates were announced and then missed, with secondary dates thrown out in favor of pushing 5.0 out with just three days’ notice. </p>\n<p>“We were scared to announce a new release date after missing our previous one,” Mullenweg said, acknowledging the controversial release date. He said this seemed to create a lot of fear and uncertainty until they announced a new date. The dates seemed to come out of the blue and were stressful for the community. </p>\n<p>Mullenweg highlighted the lessons they learned in the process of releasing 5.0: </p>\n<ul>\n<li>Need the various teams across WordPress working together better</li>\n<li>Need to keep learning JavaScript, even more deeply</li>\n<li>Importance of triage and code freezes</li>\n<li>Always announce release dates</li>\n</ul>\n<p>Mullenweg noted that WordPress 5.0’s beta releases were tested 100 times more than other releases, which he said contributed to Gutenberg becoming more robust before landing in 5.0. However, these positives seemed to be overshadowed by several critical breakdowns in communication that many feel betrayed the community’s trust.</p>\n<p>He noted that people used the plugin review system as a way to vote on Gutenberg and that perhaps the community needs a different medium for expressing those kinds of things. Users did this because they felt it was one of the only feedback mechanisms where they had a voice. Negative reviews piled on in the early days of the plugin’s development but they continued steadily throughout the feature plugin’s journey into core. After 5.0 was released, negative <a href=\"https://wordpress.org/support/plugin/gutenberg/reviews/\" rel=\"noopener\" target=\"_blank\">reviews on the Gutenberg plugin</a> have continued to pour in, and its rating has fallen to 2.2/5 stars.</p>\n<h3>Growing Pains and a Call for Transparency</h3>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/wcus2018.jpg?ssl=1\"><img /></a>photo credit: David Bisset for <a href=\"https://poststatus.com/\">Post Status</a></p>\n<p>Mullenweg said that Gutenberg development happened entirely in the public eye, surfacing many challenges associated with developing open source software in public. The code was public, but the most important decisions were made behind closed doors. This was compounded by the developer community voicing frustrations during core dev chats and on social media. </p>\n<p>During the Q&#038;A segment, several audience members called for more transparency in the release process, noting that most of the posts and announcements regarding 5.0 came from Automattic employees. Morten Rand-Hendriksen, who has become somewhat of a community firebrand at WordCamp Q&#038;A’s, received applause for his question regarding the use of the word “we” in connection to posts on the make blogs. He pressed Mullenweg for more insight into where these decisions are made. </p>\n<p>Mullenweg said the “we” he meant in regards to 5.0 release dates referred to a private channel where the release leads discussed it. He said with so many people showing up to the dev chats, the discussions became difficult.</p>\n<p>&#8220;I don&#8217;t just go in a cave and come up with these things,&#8221; Mullenweg said. “A lot of people were showing up [to dev chats] who had never contributed to WordPress before and were crowding out the discussion of the core team.” He also said the private conversations were “every bit as feisty as the public one,” except there weren’t any drive-by opinions. </p>\n<p>To those on the outside, these meetings appeared to be secret, as they were never referenced or summarized on the make blogs. This left the developer community wondering where these decisions were coming from and whether or not they had a voice.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Gutenberg was developed in public, but too many decisions were made in silos and not clearly communicated. This can be improved for 5.1 and beyond <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a></p>\n<p>&mdash; K. Adam White (@kadamwhite) <a href=\"https://twitter.com/kadamwhite/status/1071539824358764544?ref_src=twsrc%5Etfw\">December 8, 2018</a></p></blockquote>\n<p></p>\n<p>During the Q&#038;A, Mulllenweg said he listened to vigorous discussion and diverse viewpoints from release leads coming from different companies, while gathering as much information as possible from reading reviews, blog posts, and comments from the community. He described this process as part of the art of trying to make sense of all the different things people are saying and balance that.</p>\n<p>Supporting a BDFL-led project requires a certain amount of trust that the leadership is listening. Over the past several weeks Mullenweg has made a strong effort to <a href=\"https://wptavern.com/mullenweg-ramps-up-communication-ahead-of-wordpress-5-0-release-rc2-now-available\" rel=\"noopener\" target=\"_blank\">keep the channels of communication open</a>.  </p>\n<p>The painful user testing videos Mullenweg shared demonstrated how desperately WordPress needed to grow out of its old editor. It isn’t often that core makes changes that affect nearly every corner of the WordPress ecosystem at the same time. This experience came with its fair share of growing pains. Despite communication missteps during the 5.0 release process, Mullenweg has successfully navigated the project through this rocky transition. Although WordCamp US attendees seemed road weary after 5.0, they were united by a shared desire to move forward and continue working together with the leadership that has kept WordPress on the course of growth and improvement for the past 15 years.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Dec 2018 16:23: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: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:28:\"Matt: State of the Word 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48685\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2018/12/state-of-the-word-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1048:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Over the weekend I was in Nashville with over a thousand other WordPress enthusiasts. I met a ton of people, learned a lot, and was able to share the annual State of the Word address with the audience, which is a big summary of what WordPress has been up to and where it&#8217;s going. This year we covered user testing, Gutenberg, 5.0, the future phases of Gutenberg, all the latest and greatest blocks, new minimum PHP requirements, the adoption of 5.0, and some event and community updates. You can also <a href=\"https://www.slideshare.net/photomatt/wordpress-state-of-the-word-2018\">see just the slides</a>. The <a href=\"https://www.youtube.com/watch?v=v2aNNlC8TUE\">Q&amp;A is here in a separate video</a>.</p>\n\n\n\n<p>If you&#8217;d like a text summary and commentary on the speech, <a href=\"https://poststatus.com/state-of-the-word-2018/\">Post Status</a> and <a href=\"https://wptavern.com/state-of-the-word-2018-wordpress-embraces-the-block-editor\">WP Tavern</a> both have good write-ups.</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, 11 Dec 2018 05:00:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:55:\"Post Status: Matt Mullenweg’s State of The Word, 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://poststatus.com/?post_type=poststatus_notes&p=49929\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://poststatus.com/state-of-the-word-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8440:\"<p>Matt started by “reintroducing WordPress” and the four freedoms, stressing that “WordPress isn&#8217;t a physical thing or code, it&#8217;s an idea.” Additionally, a “robust commercial ecosystem” supports WordPress, and Matt noted that current estimates indicate WordPress generates about $10 Billion (USD) annually.</p>\n<p>After two years of development and just after WordPress 5.0 officially launched, it&#8217;s not surprising the focus of Matt&#8217;s talk was on Gutenberg. “We&#8217;ve gotten a lot of questions about why we are doing certain things&#8230; why we are working on Gutenberg. And it&#8217;s good to return to users to find that,” Matt acknowledged.</p>\n<h3>Enhancing editor usability</h3>\n<p>A video of new WordPress users testing the classic editor (WordPress 4.9) was shown projected on the big screens over the stage. These clips primarily showed people having difficulties with relatively simple tasks in the editor.</p>\n<p>Matt&#8217;s point was that we&#8217;ve become accustomed to the custom editor&#8217;s quirks, but blocks offer a better experience — from copying and pasting from Microsoft Word and Google Docs into WordPress to quickly creating a responsive website.</p>\n<h3>Community Gutenberg adoption</h3>\n<p>Matt continued with a summary of how Gutenberg has performed in Phase 1 of its release. Before the WordPress 5.0 release, 1.2 million active installs and 1.2 million posts were published, with about 39,000 posts written daily. Phase 1 had 8,684 commits and over 340 contributors. The &#8216;Gutenberg&#8217; tag is already available for plugins in the WordPress repo, and it will be “coming soon” for themes.</p>\n<p>Notably, over 100 Gutenberg themes are already present in the WordPress repo — including the new Twenty Nineteen theme. Matt highlighted two websites — <a href=\"http://theindigomill.com\">The Indigo Mill</a> and <a href=\"http://luminasolar.com\">Lumina Solar</a> — as examples where Gutenberg blocks have been used well to create effective layouts. Matt riffed on the &#8220;Learn JavaScript Deeply&#8221; mantra by repeating &#8220;Learn Blocks Deeply.&#8221; Blocks are the DNA of the new editor. Currently, 70 native blocks and over 100 third-party blocks exist for Gutenberg.</p>\n<h3>Community Gutenberg development</h3>\n<p>He highlighted some of the third party blocks in the wild:</p>\n<ul>\n<li><a href=\"https://yoast.com/yoast-seo-8-0-introducing-the-yoast-seo-gutenberg-sidebar-a-revamped-meta-box/\">Yoast SEO</a></li>\n<li><a href=\"https://github.com/kevinbazira/algori-360-image\">360 Image</a></li>\n<li><a href=\"https://www.ampproject.org/latest/blog/the-official-amp-plugin-for-wordpress/\">Google AMP w/ Gutenberg Integration</a></li>\n<li><a href=\"https://wordpress.org/plugins/dropit/\">Drop It</a></li>\n<li><a href=\"https://wordpress.org/plugins/ecwid-shopping-cart/\">Ecwid Ecommerce Shopping Cart</a></li>\n<li><a href=\"https://woocommerce.com/posts/making-it-easier-to-add-products-to-posts-and-pages-with-the-products-block-for-gutenberg/\">WooCommerce Products Block</a></li>\n<li><a href=\"https://www.bigcommerce.com/wordpress-ecommerce-plugin/\">BigCommerce</a></li>\n<li><a href=\"https://www.wpzoom.com/plugins/new-plugin-released-recipe-card-blocks-for-gutenberg/\">Recipe Card Blocks</a></li>\n<li><a href=\"https://wordpress.org/plugins/tarot/\">Tarot</a></li>\n<li><a href=\"https://twitter.com/dmsnell23/status/1063126946350096389\">Sketch Block</a></li>\n<li><a href=\"https://jetpack.com/support/jetpack-blocks/form-block/\">Jetpack Form Block</a></li>\n<li><a href=\"https://sortabrilliant.com/guidepost/\">Guidepost</a></li>\n<li><a href=\"https://sortabrilliant.com/ghostwriter/\">Ghost Writing</a></li>\n<li><a href=\"https://sortabrilliant.com/spoileralert/\">Spoiler Alert</a></li>\n<li><a href=\"https://wordpress.org/plugins/caxton/\">Caxton Shape Divider Block</a></li>\n</ul>\n<p>Matt mentioned several block libraries and frameworks that have appeared:</p>\n<ul>\n<li><a href=\"http://editorblockswp.com\">editorblockswp.com</a></li>\n<li><a href=\"http://gutenberghub.com\">gutenberghub.com</a></li>\n<li><a href=\"http://gutenbergcloud.org\">gutenbergcloud.org</a></li>\n<li><a href=\"https://getblocklab.com\">getblocklab.com</a></li>\n<li><a href=\"https://wordpress.org/plugins/lazy-blocks/\">Lazy Blocks</a></li>\n</ul>\n<h3>Mobile Apps</h3>\n<p>Matt gave the audience an update regarding the WordPress native mobile apps: In the past month, app users published 1.3M posts and uploaded 3.1M photos and videos. Gutenberg will be going into the mobile apps, with a beta release expected in February 2019; I heard February 22nd is the current target date for a beta release.</p>\n<h3>The Next Phases of Gutenberg</h3>\n<p>Matt highlighted the next phases of Gutenberg&#8217;s evolution, which included new information about Phases Three and Four:</p>\n<h4>Phase One</h4>\n<p>Fundamental blocks for writing and editing in the backend editor. These are complete now, although Matt later said that work on the editor would continue.</p>\n<h4>Phase Two</h4>\n<p>Customizing outside of the page/post content will be the next point of emphasis. It may include widgets, menus, and miscellaneous content. Matt notes that menus “will need a bit more experimentation”. &#8220;2019&#8221;.</p>\n<h4>Phase Three</h4>\n<p>Collaboration, multi-user editing in Gutenberg, and workflows. The target for this to phase to be complete is “2020+.”</p>\n<h4>Phase Four</h4>\n<p>&#8220;An official way&#8221; for WordPress to support multilingual sites. Also slated for “2020+.”</p>\n<h3>Other Announcements</h3>\n<p>There were several non-Gutenberg tidbits of note:</p>\n<h4>Auto updates on major versions of WordPress</h4>\n<p>On a list of items to work on in 2019, Matt said he wanted to make it a goal to add optional auto-updates for plugins, themes, and major versions of WordPress.</p>\n<h4>Updated minimum PHP versions</h4>\n<p><a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">A proposal written</a> by Gary Pendergast makes a case for WordPress to start updating its minimum PHP versions. The proposed plan is to move to PHP 5.6 by April 2019 and to PHP 7.0 by &#8220;as early as&#8221; December 2019. Notably, security support for PHP 5.6 expires in a few days, and the &#8220;end of life&#8221; for PHP 7.0 <a href=\"http://php.net/supported-versions.php\">just passed</a>.</p>\n<p>After Matt mentioned this proposal, it received an enormous amount of applause — far more applause than most of the Gutenberg news that came earlier, and Matt noticed. It is definitely welcome news!</p>\n<h4>WordPress release adoption</h4>\n<p>During the life of the WordPress 4.9 branch, there were over 173 million downloads with 68.4% of all known WordPress installs running 4.9.</p>\n<p>Matt notes that the early adoption numbers for WordPress 5.0 were very similar to WordPress 4.7, which was also a December release back in 2016.</p>\n<h4>Lessons learned in 2018</h4>\n<p>Matt took time to summarize the lessons he learned in 2018, starting with the need for teams to improve how they work together: “There should be no reason for accessibility, testing, and other teams not to be working together since these features should be a feature of everything we develop from the very beginning.” No doubt this came as a response to the concerns about accessibility in Gutenberg that surfaced before WordPress 5.0 was released.</p>\n<h3>Community Update</h3>\n<p>Matt offered some community-related data as well:</p>\n<ul>\n<li><strong>WordCamps:</strong> In 2018 there were 145 WordCamps in 48 countries, with over 45,000 tickets sold. A total of 1,300 organizers (a 33% increase!), 2,651 speakers, and 1,175 sponsors made it all possible.</li>\n<li><strong>Meetups:</strong> This year saw 50% member growth in meetup attendance, with over 687 meetup groups and 5,400 meetup events.</li>\n</ul>\n<p>And with that, he began Q&amp;A.</p>\n<p>You can view the <a href=\"https://www.youtube.com/watch?v=r5b-N2RmxS8\">State of the Word on YouTube</a> in full, and it should become available on WordPress TV very soon.</p>\n<div id=\"attachment_49969\" class=\"wp-caption aligncenter\"><img class=\"wp-image-49969 size-large\" src=\"https://cdn.poststatus.com/wp-content/uploads/2018/12/wcus-2018-sotw-5542-752x439.jpg\" alt=\"\" width=\"752\" height=\"439\" /><p class=\"wp-caption-text\">Photos by <a href=\"https://wpsessions.com\">Brian Richards</a>, for Post Status.</p></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Dec 2018 15:45: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:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:93:\"WPTavern: AMP Plugin for WordPress Version 1.0 Introduces Gutenberg-Integrated AMP Validation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86248\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/amp-plugin-for-wordpress-version-1-0-introduces-gutenberg-integrated-amp-validation\";s: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:2620:\"<p><a href=\"https://amp-wp.org/amp-plugin-1-0-stable-release/\" rel=\"noopener\" target=\"_blank\">Version 1.0</a> of the official AMP plugin for WordPress was released on the eve of WordCamp US, after two years in development by contributors from Automattic, XWP, and Google. This first stable version has a massive <a href=\"https://wordpress.org/plugins/amp/#developers\" rel=\"noopener\" target=\"_blank\">changelog</a> with 30 people credited for their contributions. The plugin is now considered ready for production and is active on more than 300,000 sites.</p>\n<p>Version 1.0 interfaces with the new editor that landed in WordPress 5.0. It will display warnings for AMP-invalid markup on a per-block basis, so users don&#8217;t have to guess what content is generating an issue.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/12/notices-in-blocks-1024x736.png?ssl=1\"><img /></a></p>\n<p>This release also introduces a compatibility tool that offers detailed information on AMP validation errors. It functions like a debugging page where users can see which URLs are generating errors, along with the site component (plugin, theme, or core) where the markup originates.</p>\n<p>Version 1.0 includes granular controls for selecting which templates will be served as AMP. This allows for a more gradual adoption across a site. Users can also opt for Native mode to have the entire site served as AMP.</p>\n<p>The plugin has been updated to support four of WordPress&#8217; default themes, including Twenty Fifteen, Twenty Sixteen, Twenty Seventeen, and Twenty Nineteen. The documentation for <a href=\"https://github.com/xwp/wordpress-develop/pull/307\" rel=\"noopener\" target=\"_blank\">how AMP was added to these bundled themes</a> serves as an example for how theme developers can make their own themes AMP-compatible. </p>\n<p>WordPress users who opt to use AMP on their sites will have a more successful experience with this version, thanks to the improved UI for handling AMP validation errors and the new interface for limiting AMP-support to certain templates.</p>\n<p>The AMP for WordPress project is also sporting a new <a href=\"https://amp-wp.org/\" rel=\"noopener\" target=\"_blank\">website</a> that features a collection of AMP-ready plugins and themes and a showcase of sites using AMP. It also has extensive <a href=\"https://amp-wp.org/documentation/getting-started/\" rel=\"noopener\" target=\"_blank\">documentation</a> for implementors, site owners, and developers. The site provides a central place for news and resources related to the project and its expanding ecosystem of compatible extensions.</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, 07 Dec 2018 06:51: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: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:90:\"WPTavern: WordPress 5.0 “Bebo” Released, Lays A Foundation for the Platform’s Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wordpress-5-0-bebo-released-lays-a-foundation-for-the-platforms-future\";s: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:9407:\"<p>In 2016 at WordCamp US in Philadelphia, PA, <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\">Matt Mullenweg announced</a> to the world that a new post and page editor would be coming to WordPress. &#8220;The editor does not represent the core of WordPress publishing,&#8221; Mullenweg said.</p>\n\n\n\n<p>His <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">vision of the editor</a> was geared towards a more block-based approach that unifies widgets, shortcodes, and other areas of WordPress. Today, that vision has become a reality with the <a href=\"https://wordpress.org/news/2018/12/bebo/\">release of WordPress 5.0</a> featuring <a href=\"https://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\">project Gutenberg</a>. <br /></p>\n\n\n\n<div class=\"wp-block-image\"><img />The New Editor in WordPress 5.0</div>\n\n\n\n<p>Instead of a large blank canvas, content is broken up into a series of individual blocks that are independent from the content as a whole. For example, you can edit the HTML of one block without it affecting other blocks. </p>\n\n\n\n<p>The editor comes with more than 16 blocks to add content. You can add more blocks by <a href=\"https://wptavern.com/gutenberg-block-library-provides-a-searchable-index-of-individual-blocks\">installing and activating plugins.</a><br /></p>\n\n\n\n<div class=\"wp-block-image\"><img />Some of the Blocks That Are Available in WordPress 5.0</div>\n\n\n\n<p>Each block typically has two areas where you can manipulate its content. The Toolbar, which displays when hovering over a block, and the Inspector located in the right-hand sidebar. The Inspector houses less-often used settings that require more screen space. <br /></p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Between the top toolbar, block toolbar, inspector, block mover, and hidden elements that don&#8217;t appear unless hovered over, there are a lot of user interface buttons. I suggest spending time crafting a test post to get familiar with what each button does. </p>\n\n\n\n<p>To see the new editor in action, check out the following demo video. </p>\n\n\n\nA Short Demo of The New Editor in Action\n\n\n\n<p>If you&#8217;re not ready for the new editor or discover incompatibilities with themes or plugins, you can install the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> plugin. This plugin will disable the new editor and replace it with the one in WordPress 4.9.8 and below. The WordPress development team <a href=\"https://make.wordpress.org/core/2018/11/07/classic-editor-plugin-support-window/\">has committed</a> to supporting the plugin until December 31st, 2021. </p>\n\n\n\n<p>Those who use assistive technology and experience accessibility issues with the new editor are encouraged to install the Classic Editor plugin until the issues are fixed. <br /></p>\n\n\n\n<h2>Twenty Nineteen: A Fully Compatible Default Theme<br /></h2>\n\n\n\n<p>WordPress 5.0 comes with a new default theme called <a href=\"https://make.wordpress.org/core/2018/10/16/introducing-twenty-nineteen/\">Twenty Nineteen</a> that is fully compatible with the new editor. It includes front-end and back-end styles to provide a What You See Is What You Get experience. It also supports the Wide and Full image alignment options. <br /></p>\n\n\n\n<div class=\"wp-block-image\"><img />Twenty Nineteen Front-End on the Left, Back-End on the Right</div>\n\n\n\n<p>You can see the theme in action on <a href=\"https://ma.tt/\">Matt Mullenweg&#8217;s site</a>.</p>\n\n\n\n<h2>What Happens to Existing Content?<br /></h2>\n\n\n\n<p>Content not created in the new editor is placed into a Classic block. This block mimics the old editor and provides users a choice to migrate it into blocks. However, migrating content into blocks is not required. Most content shouldn&#8217;t be affected by updating to WordPress 5.0. </p>\n\n\n\n<h2>Where to Get Help Using the New Editor</h2>\n\n\n\n<p>For new users, the editor might be an intuitive experience but for many WordPress veterans, it introduces a steep learning curve. After all, the previous editor has existed for more than 10 years. </p>\n\n\n\n<p>At the moment, there is a Gutenberg handbook for <a href=\"https://wordpress.org/gutenberg/handbook/designers-developers/\">Developers</a> and <a href=\"https://wordpress.org/gutenberg/handbook/contributors/\">Contributors</a> but not for Users. Work <a href=\"https://github.com/WordPress/gutenberg/issues/11252\">is underway</a> by the Docs team and other volunteer contributors to put together an initial document to release in 2019. </p>\n\n\n\n<p>Until the official handbook is published, you&#8217;ll need to seek help and education elsewhere.</p>\n\n\n\n<h3>WordPress 5.0 Essential Training</h3>\n\n\n\n<p>Morten Rand-Hendriksen, an educator for LinkedIn Learning has published <a href=\"https://www.linkedin.com/learning/wordpress-5-essential-training/?trk=insiders_23476852_learning\">a course</a> that walks users through the new editor. It&#8217;s available to view for free for the next three weeks. </p>\n\n\n\n<h3>Gutenberg Times<br /></h3>\n\n\n\n<p>Birgit Pauli-Haack has been keeping tabs on Gutenberg&#8217;s development for more than a year. <a href=\"https://gutenbergtimes.com\">Gutenberg Times</a> contains relevant information about the editor for <a href=\"https://gutenbergtimes.com/category/for-users/\">users</a> and <a href=\"https://gutenbergtimes.com/category/for-developers/\">developers</a>. </p>\n\n\n\n<h3>WordPress Support Forums<br /></h3>\n\n\n\n<p>Volunteers are standing by ready to answer your questions. If you think you&#8217;ve discovered a bug, incompatibility, or are experiencing trouble with the new editor, please post it in the <a href=\"https://wordpress.org/support/forum/how-to-and-troubleshooting/\">support forums</a>. </p>\n\n\n\n<h3>WordPress 5.0 Field Guide</h3>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2018/12/06/wordpress-5-0-field-guide/\">WordPress 5.0 field guide</a> provides important links and information for developers and users related to this release. <br /></p>\n\n\n\n<h2>WordPress 5.0 Is the Beginning of A New Journey</h2>\n\n\n\n<p>While WordPress 5.0 introduces a new editor, it also lays the foundation for what&#8217;s to come. The first phase of project Gutenberg was the editor. The second phase is the Customizer with a focus on full-site layouts. The third and fourth phases will be shared and discussed by Mullenweg at this year&#8217;s WordCamp US.</p>\n\n\n\n<p>The new editor is part of a long process to reinvent WordPress. Matías Ventura, Co-lead of the Gutenberg project succinctly explains why the need for Gutenberg exists. <br /></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>WordPress has always been about the user experience, and that needs to continue to evolve under newer demands. Gutenberg is an attempt at fundamentally addressing those needs, based on the idea of content blocks. It’s an attempt to improve how users interact with their content in a fundamentally visual way, while at the same time giving developers the tools to create more fulfilling experiences for the people they are helping.</p><p>How can such a vision happen without dismantling, rebuilding, fragmenting, or breaking the WordPress ship that for over a decade has been carrying the thoughts, joys, and livelihoods of millions of people and more than a quarter of the web?</p><p>The ship, like Theseus’, needs to continue sailing while we upgrade the materials that make it. It needs to adapt to welcome new people, those that find it too rough to climb on board, too slippery a surface, too unwelcoming a sight, while retaining its essence of liberty. This is not an easy challenge—not in the slightest. </p><p>Indeed, <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">we called it Gutenberg for a reason</a>, for both its challenges and opportunities, for what it can represent in terms of continuity and change. It is an ambitious project and it needs the whole WordPress community to succeed.</p><cite><a href=\"https://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\">Matías Ventura, Co-lead of the Gutenberg project.<br /></a></cite></blockquote>\n\n\n\n<p>As the new editor <a href=\"https://wordpress.org/download/counter/\">makes its way</a> across the world, it will be interesting to see what the reactions are from users who experience it for the first time. It will also be interesting to see what the <a href=\"https://twitter.com/photomatt/status/1069327043618320385\">developer community builds</a> that takes the editor to new heights. </p>\n\n\n\n<p>WordPress 5.0 is the <a href=\"https://www.linkedin.com/pulse/gutenberg-morten-rand-hendriksen\">beginning of a new journey</a> for the project. One that will have bumpy roads, new discoveries, and plenty of opportunities to learn. So saddle up and keep your hands and arms inside the vehicle until it makes a complete stop. <br /></p>\n\n\n\n<p>WordPress 5.0 is named after <a href=\"https://en.wikipedia.org/wiki/Bebo_Vald%C3%A9s\">Bebo Valdés</a> who was a Cuban pianist, bandleader, composer and arranger. The release was led by Matt Mullenweg with Allan Cole, Anthony Burchell, Gary Pendergast, Josepha Haden Chomphosy, Laurel Fulford, Omar Reiss, Daniel Bachhuber, Matías Ventura, Miguel Fonseca, Tammie Lister, Matthew Riley MacPherson as co-leads. At least 423 people contributed to the release. <br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Dec 2018 21:38: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:\"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:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Dev Blog: WordPress 5.0 “Bebo”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=6328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2018/12/bebo/\";s: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:42540:\"<h2>Say Hello to the New Editor</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>We’ve made some big upgrades to the editor. Our new block-based editor is the first step toward an exciting new future with a streamlined editing experience across your site. You’ll have more flexibility with how content is displayed, whether you are building your first site, revamping your blog, or write code for a living.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?fit=2400%2C1200&ssl=1\" alt=\"\" class=\"wp-image-6331\" /></div>\n\n\n\n<h2>Building with Blocks</h2>\n\n\n\n<p>The new block-based editor won’t change the way any of your content looks to your visitors. What it will do is let you insert any type of multimedia in a snap and rearrange to your heart’s content. Each piece of content will be in its own block; a distinct wrapper for easy maneuvering. If you’re more of an HTML and CSS sort of person, then the blocks won’t stand in your way. WordPress is here to simplify the process, not the outcome.</p>\n\n\n\n\n\n\n\n<p>We have tons of blocks available by default, and more get added by the community every day. Here are a few of the blocks to help you get started:</p>\n\n\n\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6340\" />Paragraph</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6341\" />Heading</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6342\" />Preformatted</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6343\" />Quote</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6344\" />Image</li><li class=\"blocks-gallery-item\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6345\" />Gallery</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6346\" />Cover</li><li class=\"blocks-gallery-item\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6347\" />Video</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6348\" />Audio</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6349\" />Columns</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6350\" />File</li><li class=\"blocks-gallery-item\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6351\" />Code</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6352\" />List</li><li class=\"blocks-gallery-item\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6353\" />Button</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6354\" />Embeds</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6355\" />More</li></ul>\n\n\n\n<h2>Freedom to Build, Freedom to Write</h2>\n\n\n\n<p>This new editing experience provides a more consistent treatment of design as well as content. If you’re building client sites, you can create reusable blocks. This lets your clients add new content anytime, while still maintaining a consistent look and feel.</p>\n\n\n\n\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>A Stunning New Default Theme</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?fit=2400%2C1600&ssl=1\" alt=\"\" class=\"wp-image-6358\" /></div>\n\n\n\n<p>Introducing Twenty Nineteen, a new default theme that shows off the power of the new editor.</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/block-editor-1024x683.jpg?resize=632%2C422&ssl=1\" alt=\"\" class=\"wp-image-6359\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_9\">Designed for the block editor</h3>\n\n\n\n<p>Twenty Nineteen features custom styles for the blocks available by default in 5.0. It makes extensive use of editor styles throughout the theme. That way, what you create in your content editor is what you see on the front of your site.<br /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6427\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_18\">Simple, type-driven layout</h3>\n\n\n\n<p>Featuring ample whitespace, and modern sans-serif headlines paired with classic serif body text, Twenty Nineteen is built to be beautiful on the go. It uses system fonts to increase loading speed. No more long waits on slow networks!</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen-versatile.gif?w=632&ssl=1\" alt=\"\" class=\"wp-image-6361\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_24\">Versatile design for all sites</h3>\n\n\n\n<p>Twenty Nineteen is designed to work for a wide variety of use cases. Whether you’re running a photo blog, launching a new business, or supporting a non-profit, Twenty Nineteen is flexible enough to fit your needs.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/themes/twentynineteen/\">Give Twenty Nineteen a try</a></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Developer Happiness</h2>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Protect.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6362\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_34\">Protect</h3>\n\n\n\n<p>Blocks provide a comfortable way for users to change content directly, while also ensuring the content structure cannot be easily disturbed by accidental code edits. This allows the developer to control the output, building polished and semantic markup that is preserved through edits and not easily broken.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Compose.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6363\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_39\">Compose</h3>\n\n\n\n<p>Take advantage of a wide collection of APIs and interface components to easily create blocks with intuitive controls for your clients. Utilizing these components not only speeds up development work but also provide a more consistent, usable, and accessible interface to all users.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Create.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6364\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_45\">Create</h3>\n\n\n\n<p>The new block paradigm opens up a path of exploration and imagination when it comes to solving user needs. With the unified block insertion flow, it’s easier for your clients and customers to find and use blocks for all types of content. Developers can focus on executing their vision and providing rich editing experiences, rather than fussing with difficult APIs.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/gutenberg/handbook/\">Learn how to get started</a></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Keep it Classic</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?fit=2400%2C1130&ssl=1\" alt=\"\" class=\"wp-image-6365\" /></div>\n\n\n\n<p>Prefer to stick with the familiar Classic Editor? No problem! Support for the Classic Editor plugin will remain in WordPress through 2021.</p>\n\n\n\n<p>The Classic Editor plugin restores the previous WordPress editor and the Edit Post screen. It lets you keep using plugins that extend it, add old-style meta boxes, or otherwise depend on the previous editor. To install, visit your plugins page and click the “Install Now” button next to “Classic Editor”. After the plugin finishes installing, click “Activate”. That’s it!</p>\n\n\n\n<p>Note to users of assistive technology: if you experience usability issues with the block editor, we recommend you continue to use the Classic Editor.</p>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/plugins/classic-editor/\">Check out the Classic Editor</a></div>\n\n\n\n<p>This release is named in homage to the pioneering Cuban jazz musician <a href=\"https://en.wikipedia.org/wiki/Bebo_Vald%C3%A9s\">Bebo Valdés</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, along with co-leads <a href=\"https://www.allancole.com/\">Allan Cole</a>, <a href=\"http://antpb.com/\">Anthony Burchell</a>, <a href=\"https://pento.net/\">Gary Pendergast</a>, <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a>, <a href=\"https://laurel.blog/\">Laurel Fulford</a>, <a href=\"https://yoast.com/about-us/team/omar-reiss/\">Omar Reiss</a>, <a href=\"https://danielbachhuber.com/\">Daniel Bachhuber</a>, <a href=\"https://matiasventura.com/\">Matías Ventura</a>, <a href=\"https://lamda.blog/\">Miguel Fonseca</a>, <a href=\"https://tam.blog/\">Tammie Lister</a>, <a href=\"https://tofumatt.com/\">Matthew Riley MacPherson</a>. They were ably assisted by the following fabulous folks. There were 423 contributors with props in this release. Pull up some Bebo Valdés on your music service of choice, and check out some of their profiles:</p>\n\n\n<a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdulwahab610\">Abdul Wahab</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afraithe\">afraithe</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/airathalitov\">Airat Halitov</a>, <a href=\"https://profiles.wordpress.org/ajitbohra\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/albertomedina\">albertomedina</a>, <a href=\"https://profiles.wordpress.org/aldavigdis\">aldavigdis</a>, <a href=\"https://profiles.wordpress.org/alexsanford1\">Alex Sanford</a>, <a href=\"https://profiles.wordpress.org/xyfi\">Alexander Botteram</a>, <a href=\"https://profiles.wordpress.org/alexis\">alexis</a>, <a href=\"https://profiles.wordpress.org/alexislloyd\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/amedina\">amedina</a>, <a href=\"https://profiles.wordpress.org/nosolosw\">Andr&#233;s</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/euthelup\">Andrei Lupu</a>, <a href=\"https://profiles.wordpress.org/andreiglingeanu\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/aduth\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/sumobi\">Andrew Munro</a>, <a href=\"https://profiles.wordpress.org/anevins\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/androb\">Andrew Roberts</a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">andrewserong</a>, <a href=\"https://profiles.wordpress.org/apeatling\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/ameeker\">Angie Meeker</a>, <a href=\"https://profiles.wordpress.org/annaharrison\">Anna Harrison</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/arnaudban\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arshidkv12\">Arshid</a>, <a href=\"https://profiles.wordpress.org/aprakasa\">Arya Prakasa</a>, <a href=\"https://profiles.wordpress.org/artisticasad\">Asad</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan\">Ashar Irfan</a>, <a href=\"https://profiles.wordpress.org/asvinballoo\">Asvin Balloo</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcolumbia\">bcolumbia</a>, <a href=\"https://profiles.wordpress.org/belcherj\">belcherj</a>, <a href=\"https://profiles.wordpress.org/blowery\">Ben Lowery</a>, <a href=\"https://profiles.wordpress.org/caxco93\">Benjamin Eyzaguirre</a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica\">Benjamin Zekavica</a>, <a href=\"https://profiles.wordpress.org/benlk\">benlk</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/betsela\">betsela</a>, <a href=\"https://profiles.wordpress.org/bhargavmehta\">Bhargav Mehta</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph\">Birgit Pauli-Haack</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/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentswisher\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/technosiren\">Brianna Privett</a>, <a href=\"https://profiles.wordpress.org/briannaorg\">briannaorg</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/bandonrandon\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/burhandodhy\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cantothemes\">CantoThemes</a>, <a href=\"https://profiles.wordpress.org/cathibosco\">cathibosco</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chetansatasiya\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisl27\">Chris Lloyd</a>, <a href=\"https://profiles.wordpress.org/crunnells\">Chris Runnells</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriskmnds\">chriskmnds</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/copons\">Copons</a>, <a href=\"https://profiles.wordpress.org/courtney0burton\">courtney0burton</a>, <a href=\"https://profiles.wordpress.org/mitogh\">Crisoforo Gaspar Hernandez</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/csabotta\">csabotta</a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/danielhw\">danielhw</a>, <a href=\"https://profiles.wordpress.org/daniloercoli\">daniloercoli</a>, <a href=\"https://profiles.wordpress.org/dannycooper\">DannyCooper</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davemoran118\">davemoran118</a>, <a href=\"https://profiles.wordpress.org/dcavins\">David Cavins</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David Kennedy</a>, <a href=\"https://profiles.wordpress.org/dryanpress\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/davidsword\">David Sword</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/davidherrera\">davidherrera</a>, <a href=\"https://profiles.wordpress.org/davisshaver\">Davis</a>, <a href=\"https://profiles.wordpress.org/dciso\">dciso</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dsmart\">Derek Smart</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dlocc\">Devin Walker</a>, <a href=\"https://profiles.wordpress.org/deviodigital\">Devio Digital</a>, <a href=\"https://profiles.wordpress.org/dfangstrom\">dfangstrom</a>, <a href=\"https://profiles.wordpress.org/dhanendran\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/diegoliv\">Diego de Oliveira</a>, <a href=\"https://profiles.wordpress.org/diegoreymendez\">diegoreymendez</a>, <a href=\"https://profiles.wordpress.org/dingo_bastard\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/dixitadusara\">Dixita Dusara Gohil</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donnapep\">Donna Peplinskie</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsawardekar\">dsawardekar</a>, <a href=\"https://profiles.wordpress.org/dsifford\">dsifford</a>, <a href=\"https://profiles.wordpress.org/duanestorey\">Duane Storey</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/ehg\">ehg</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/epointal\">Elisabeth Pointal</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elrae\">elrae</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/ephoxjames\">ephoxjames</a>, <a href=\"https://profiles.wordpress.org/ephoxmogran\">ephoxmogran</a>, <a href=\"https://profiles.wordpress.org/sewmyheadon\">Eric Amundson</a>, <a href=\"https://profiles.wordpress.org/ericnmurphy\">ericnmurphy</a>, <a href=\"https://profiles.wordpress.org/etoledom\">etoledom</a>, <a href=\"https://profiles.wordpress.org/circlecube\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">fabiankaegy</a>, <a href=\"https://profiles.wordpress.org/fabs_pim\">fabs_pim</a>, <a href=\"https://profiles.wordpress.org/faishal\">Faishal</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/floriansimeth\">Florian Simeth</a>, <a href=\"https://profiles.wordpress.org/foobar4u\">foobar4u</a>, <a href=\"https://profiles.wordpress.org/foreverpinetree\">foreverpinetree</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fuyuko\">fuyuko</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/doomwaxer\">Gary Thayer</a>, <a href=\"https://profiles.wordpress.org/garyjones\">garyjones</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/babbardel\">George Olaru</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/georgeh\">georgeh</a>, <a href=\"https://profiles.wordpress.org/gnif\">gnif</a>, <a href=\"https://profiles.wordpress.org/goldsounds\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/grappler\">Grappler</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/bordoni\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/gwwar\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hblackett\">hblackett</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/luehrsen\">Hendrik Luehrsen</a>, <a href=\"https://profiles.wordpress.org/herbmiller\">herbmiller</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/hypest\">hypest</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianstewart\">ianstewart</a>, <a href=\"https://profiles.wordpress.org/ianbelanger\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/icaleb\">iCaleb</a>, <a href=\"https://profiles.wordpress.org/idpokute\">idpokute</a>, <a href=\"https://profiles.wordpress.org/igorsch\">Igor</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/imonly_ik\">Imran Khalid</a>, <a href=\"https://profiles.wordpress.org/intronic\">intronic</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ireneyoast\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/israelshmueli\">israelshmueli</a>, <a href=\"https://profiles.wordpress.org/jd55\">J.D. Grimes</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/jagnew\">jagnew</a>, <a href=\"https://profiles.wordpress.org/jahvi\">jahvi</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamestryon\">jamestryon</a>, <a href=\"https://profiles.wordpress.org/jamiehalvorson\">jamiehalvorson</a>, <a href=\"https://profiles.wordpress.org/jdembowski\">Jan Dembowski</a>, <a href=\"https://profiles.wordpress.org/janalwin\">janalwin</a>, <a href=\"https://profiles.wordpress.org/jaswrks\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/octalmage\">Jason Stallings</a>, <a href=\"https://profiles.wordpress.org/yingling017\">Jason Yingling</a>, <a href=\"https://profiles.wordpress.org/vengisss\">Javier Villanueva</a>, <a href=\"https://profiles.wordpress.org/jhoffm34\">Jay Hoffmann</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">JJJ</a>, <a href=\"https://profiles.wordpress.org/sephsekla\">Joe Bailey-Roberts</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/joemaller\">joemaller</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johndyer\">johndyer</a>, <a href=\"https://profiles.wordpress.org/johnpixle\">JohnPixle</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0\">johnwatkins0</a>, <a href=\"https://profiles.wordpress.org/jomurgel\">jomurgel</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/ieatwebsites\">Jose Fremaint</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/jvisick77\">Josh Visick</a>, <a href=\"https://profiles.wordpress.org/joshuawold\">Joshua Wold</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/jryancard\">jryancard</a>, <a href=\"https://profiles.wordpress.org/jsnajdr\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/julienmelissas\">JulienMelissas</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kallehauge\">Kallehauge</a>, <a href=\"https://profiles.wordpress.org/kalpshit\">KalpShit Akabari</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevinwhoffman\">Kevin Hoffman</a>, <a href=\"https://profiles.wordpress.org/khleomix\">khleomix</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/kluny\">kluny</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/krutidugade\">krutidugade</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/notlaura\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/leahkoerper\">leahkoerper</a>, <a href=\"https://profiles.wordpress.org/lloyd\">lloyd</a>, <a href=\"https://profiles.wordpress.org/loicblascos\">Lo&#239;c Blascos</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lucasrolff\">LucasRolff</a>, <a href=\"https://profiles.wordpress.org/luigipulcini\">luigipulcini</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lucaskowalski\">Luke Kowalski</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/luminus\">Luminus</a>, <a href=\"https://profiles.wordpress.org/lynneux\">lynneux</a>, <a href=\"https://profiles.wordpress.org/macbookandrew\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/maedahbatool\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/mahdiyazdani\">Mahdi Yazdani</a>, <a href=\"https://profiles.wordpress.org/mahmoudsaeed\">mahmoudsaeed</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/marina_wp\">marina_wp</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mariusvw\">mariusvw</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/vindl\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/martinlugton\">martinlugton</a>, <a href=\"https://profiles.wordpress.org/m-e-h\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/mathiu\">mathiu</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattgeri\">MattGeri</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/maurobringolf\">maurobringolf</a>, <a href=\"https://profiles.wordpress.org/maximebj\">Maxime BERNARD-JACQUET</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/meetjey\">meetjey</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mendezcode\">mendezcode</a>, <a href=\"https://profiles.wordpress.org/woodent\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/wpscholar\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michaelhull\">Michael Hull</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/mizejewski\">Michele Mizejewski</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Migrated to @jeffpaul</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/simison\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mike-haydon-swo\">Mike Haydon</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeselander\">Mike Selander</a>, <a href=\"https://profiles.wordpress.org/mikehaydon\">mikehaydon</a>, <a href=\"https://profiles.wordpress.org/mikeyarce\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/gonzomir\">Milen Petrinski - Gonzo</a>, <a href=\"https://profiles.wordpress.org/milesdelliott\">milesdelliott</a>, <a href=\"https://profiles.wordpress.org/mimo84\">mimo84</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">mirka</a>, <a href=\"https://profiles.wordpress.org/mmtr86\">mmtr86</a>, <a href=\"https://profiles.wordpress.org/boemedia\">Monique Dubbelman</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mostafas1990\">Mostafa Soufi</a>, <a href=\"https://profiles.wordpress.org/motleydev\">motleydev</a>, <a href=\"https://profiles.wordpress.org/mpheasant\">mpheasant</a>, <a href=\"https://profiles.wordpress.org/mrmadhat\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">mrwweb</a>, <a href=\"https://profiles.wordpress.org/msdesign21\">msdesign21</a>, <a href=\"https://profiles.wordpress.org/mtias\">mtias</a>, <a href=\"https://profiles.wordpress.org/desideveloper\">Muhammad Irfan</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munirkamal\">munirkamal</a>, <a href=\"https://profiles.wordpress.org/mmaumio\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/mzorz\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nagayama\">nagayama</a>, <a href=\"https://profiles.wordpress.org/nfmohit\">Nahid F. Mohit</a>, <a href=\"https://profiles.wordpress.org/nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/napy84\">napy84</a>, <a href=\"https://profiles.wordpress.org/nateconley\">nateconley</a>, <a href=\"https://profiles.wordpress.org/nativeinside\">Native Inside</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/buzztone\">Neil Murray</a>, <a href=\"https://profiles.wordpress.org/nicbertino\">nic.bertino</a>, <a href=\"https://profiles.wordpress.org/notnownikki\">Nicola Heald</a>, <a href=\"https://profiles.wordpress.org/nielslange\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/nitrajka\">nitrajka</a>, <a href=\"https://profiles.wordpress.org/njpanderson\">njpanderson</a>, <a href=\"https://profiles.wordpress.org/nshki\">nshki</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pauldechov\">Paul Dechov</a>, <a href=\"https://profiles.wordpress.org/paulstonier\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pedromendonca\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pglewis\">pglewis</a>, <a href=\"https://profiles.wordpress.org/tyrannous\">Philipp Bammes</a>, <a href=\"https://profiles.wordpress.org/piersb\">piersb</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter Daalder</a>, <a href=\"https://profiles.wordpress.org/pilou69\">pilou69</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/poena\">poena</a>, <a href=\"https://profiles.wordpress.org/postphotos\">postphotos</a>, <a href=\"https://profiles.wordpress.org/potbot\">potbot</a>, <a href=\"https://profiles.wordpress.org/prtksxna\">Prateek Saxena</a>, <a href=\"https://profiles.wordpress.org/pratikthink\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/psealock\">psealock</a>, <a href=\"https://profiles.wordpress.org/ptasker\">ptasker</a>, <a href=\"https://profiles.wordpress.org/rachelmcr\">Rachel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahmohn\">Rahmohn</a>, <a href=\"https://profiles.wordpress.org/rahmon\">Rahmon</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/rakshans1\">rakshans1</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/revgeorge\">revgeorge</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/richsalvucci\">richsalvucci</a>, <a href=\"https://profiles.wordpress.org/riddhiehta02\">Riddhi Mehta</a>, <a href=\"https://profiles.wordpress.org/rileybrook\">rileybrook</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/sanchothefat\">Robert O\'Rourke</a>, <a href=\"https://profiles.wordpress.org/robertsky\">robertsky</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili\">Rocio Valdivia</a>, <a href=\"https://profiles.wordpress.org/rohittm\">Rohit Motwani</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryo511\">ryo511</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/scottmweaver\">Scott Weaver</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/azchughtai\">Shahjehan Ali</a>, <a href=\"https://profiles.wordpress.org/shaileesheth\">Shailee Sheth</a>, <a href=\"https://profiles.wordpress.org/sharaz\">Sharaz Shahid</a>, <a href=\"https://profiles.wordpress.org/giventofly76\">Shaun sc</a>, <a href=\"https://profiles.wordpress.org/shaunandrews\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/shenkj\">shenkj</a>, <a href=\"https://profiles.wordpress.org/sikander\">sikander</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/siriokun\">siriokun</a>, <a href=\"https://profiles.wordpress.org/sirjonathan\">sirjonathan</a>, <a href=\"https://profiles.wordpress.org/sirreal\">sirreal</a>, <a href=\"https://profiles.wordpress.org/sisanu\">Sisanu</a>, <a href=\"https://profiles.wordpress.org/skorasaurus\">skorasaurus</a>, <a href=\"https://profiles.wordpress.org/butimnoexpert\">Slushman</a>, <a href=\"https://profiles.wordpress.org/ssousa\">Sofia Sousa</a>, <a href=\"https://profiles.wordpress.org/somtijds\">SOMTIJDS</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/spocke\">spocke</a>, <a href=\"https://profiles.wordpress.org/stagger-lee\">Stagger Lee</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevehenty\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/charlestonsw\">Store Locator Plus</a>, <a href=\"https://profiles.wordpress.org/strategio\">strategio</a>, <a href=\"https://profiles.wordpress.org/stuartfeldt\">stuartfeldt</a>, <a href=\"https://profiles.wordpress.org/tacrapo\">tacrapo</a>, <a href=\"https://profiles.wordpress.org/talldan\">talldan</a>, <a href=\"https://profiles.wordpress.org/tammie_l\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/themeroots\">ThemeRoots</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/hedgefield\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/timgardner\">timgardner</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/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tlxo\">Toni Laakso</a>, <a href=\"https://profiles.wordpress.org/skithund\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/mirucon\">Toshihiro Kanai</a>, <a href=\"https://profiles.wordpress.org/itowhid06\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/travislopes\">Travis Lopes</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tjfunke001\">Tunji Ayoola</a>, <a href=\"https://profiles.wordpress.org/twoelevenjay\">twoelevenjay</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vtrpldn\">Vitor Paladini</a>, <a href=\"https://profiles.wordpress.org/walterebert\">Walter Ebert</a>, <a href=\"https://profiles.wordpress.org/warmarks\">warmarks</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; 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/willybahuaud\">Willy Bahuaud</a>, <a href=\"https://profiles.wordpress.org/yahil\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yingles\">yingles</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/youthkee\">Yusuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/zebulan\">zebulan</a>, and <a href=\"https://profiles.wordpress.org/ziyaddin\">Ziyaddin Sadigov</a>.\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.0. Their efforts bring WordPress 5.0 fully translated to 37 languages at release time, with more on the way.</p>\n\n\n\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>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</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, 06 Dec 2018 19:28: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:\"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:\"\";}}}}}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:77:\"Post Status: WordPress 5.0 marks a new era for the world’s most popular CMS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=49548\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/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:5170:\"<p>WordPress 5.0, &#8220;<a href=\"https://wordpress.org/news/2018/12/bebo/\">Bebo</a>,&#8221; is a shift of the highest order for the platform. Block-based editing, under the name of &#8220;Gutenberg,&#8221; is an entirely new way to publish content. It adds a world of flexibility when writing, and it opens the gates for transforming much of the broader WordPress experience moving forward.</p>\n<p></p>\n<p>TinyMCE has been the core of the WordPress writing experience for, well, forever. Users will be able to continue using TinyMCE with the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> plugin, which will be especially useful for those web applications with significant amounts of structured content that will take time and reprogramming to fit the new editing experience.</p>\n<p>The need for a new editor has been a wide-held concern in the WordPress community for a long time. Gutenberg has been more than two years in the making, and it involved dozens of full-time or near full-time contributors at times. Automattic, the company behind WordPress.com and other popular WordPress products, has invested a great deal in Gutenberg&#8217;s development, as have many other companies and individuals — but the bulk of development and decision-making has been by Automattic employees.</p>\n<p>There have been critiques that the process for decision making has been too closed off and rushed toward the end of the development cycle for the purpose of delivery by WordCamp US despite ongoing concerns, particularly around accessibility.</p>\n<p>5.0 had to ship eventually, and the process has been a long one. It was a complete shift from the traditional development cycles, which <a href=\"https://poststatus.com/interview-matt-mullenweg-new-wordpress-release-cycle/\">I discussed with Matt Mullenweg</a> at WordCamp US two years ago.</p>\n<p>I have personally held the view that now is as good a time as any to release 5.0, though the exact timing is a burden on folks traveling to WCUS, particularly considering that it was just a few days notice; it is putting a kink in the plans of many.</p>\n<p>Timing aside, Gutenberg is, I believe, an important step and a big test for WordPress. It is imperative that the platform evolves to be both more powerful and easier to use — an enormously difficult dual challenge that I have advocated as an important feat to accomplish for several years now.</p>\n<p>WordPress is the easiest full-featured content management system to use. But it is more difficult than many alternative publishing platforms — particularly hosted ones. Drastic changes, like Gutenberg, are necessary to continue being a preferred platform for end users. Being easy to use and customize got WordPress to the dominant position it is in today, and I believe it is extremely important to continue in that trajectory to maintain that position.</p>\n<p>At the same time, as WordPress is being used in ever more advanced applications, developers need powerful, scalable solutions. WordPress has made great strides over the years to accommodate this use case, from various APIs to assist in new data structure creation, to the REST API. Gutenberg offers much promise to continue this trend, as it is quite extendable and also flexible for deployment on the web, in native apps, and on both front-ends and backends.</p>\n<p>I believe 5.0 is a huge step forward for the platform. The journey is not without its issues, and there is much work to do, but WordPress needed and continues to need big changes and advancements to maintain its position at the top of the content management food chain.</p>\n<p>People are using WordPress for all sorts of things, whether traditional publishing, eCommerce, application frameworks, and much more. I’m excited to see what Gutenberg brings to further these applications. Strictly as an editor, it’s far from perfect, but it’s an important step in the right direction.</p>\n<h2>Get familiar with WordPress 5.0</h2>\n<p>Here are some links to places to learn more about the new editing experience and WordPress 5.0.</p>\n<ul>\n<li><a href=\"https://wordpress.org/news/2018/12/bebo/\">WordPress 5.0 release post</a></li>\n<li><a href=\"https://wordpress.org/gutenberg/handbook/\">Gutenberg designer and developer handbook</a></li>\n<li><a href=\"https://wordpress.org/gutenberg/\">WordPress.org/Gutenberg</a> teaser, where you can use it live.</li>\n<li><a href=\"https://make.wordpress.org/core/2018/12/06/wordpress-5-0-field-guide/\">WordPress 5.0 Field Guide</a></li>\n<li>Gutenberg <a href=\"https://github.com/WordPress/gutenberg\">on GitHub</a> (This will be deprecated but offers a nice history.)</li>\n<li><a href=\"https://make.wordpress.org/core/2018/12/06/the-rest-api-in-wordpress-5-0/\">Changes to the REST API</a></li>\n<li><a href=\"https://make.wordpress.org/core/2018/12/06/media-5-0-guide/\">Media in 5.0</a></li>\n<li>The <a href=\"https://make.wordpress.org/core/2018/10/16/introducing-twenty-nineteen/\">Twenty Nineteen</a> default theme and Gutenberg support <a href=\"https://make.wordpress.org/core/2018/12/06/block-editor-support-in-existing-default-themes/\">in other default themes</a>.</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Dec 2018 17:31: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: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: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:60:\"WPTavern: WPWeekly Episode 340 – Twas the Night Before 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:58:\"https://wptavern.com?p=86219&preview=true&preview_id=86219\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wpweekly-episode-340-twas-the-night-before-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:1802:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by Matt Mullenweg, co-creator of the WordPress project. We discussed a number of topics that have been making the rounds across the community such as:</p>\n<ul>\n<li>The WordPress 5.0 release strategy and how it will evolve once it&#8217;s released.</li>\n<li>Whether or not Gutenberg is ready and what ready means.</li>\n<li>Having Automatticians in project leadership roles and what roles WordPress core contributors can or will have going forward.</li>\n<li>ClassicPress, Publicious, and other forks.</li>\n<li>Gutenberg and Accessibility.</li>\n<li>Communication, feedback mechanisms, and trying to make sure everybody can participate in the conversation.</li>\n</ul>\n<p>We also talked about the long-term vision of Gutenberg. Near the end of the interview, Matt described some of the innovative things he&#8217;s seen built with the new editor.</p>\n<p>To round out the show, we sent shoutouts to Alex Mills who <a href=\"https://alex.blog/2018/11/30/my-cancer-just-wont-give-up/\">recently discovered</a> that he will need to battle through leukemia again.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Thursday, December 13th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #340:</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, 06 Dec 2018 03:32: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: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:48:\"BuddyPress: BuddyPress 4.1.0 maintenance release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=282488\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://buddypress.org/2018/12/buddypress-4-1-0-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"<p>Immediately available is BuddyPress 4.1.0. This maintenance release fixes 3 bugs related to last week&#8217;s 4.0.0 release, and is a recommended upgrade for all BuddyPress installations.</p>\n<p>For complete details on the release, visit the <a href=\"https://codex.buddypress.org/releases/version-4-1-0/\">4.1.0 changelog</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, 05 Dec 2018 16:18: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:12:\"Boone Gorges\";s: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:52:\"Matt: Interview on Gutenberg and 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:22:\"https://ma.tt/?p=48667\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2018/12/interview-on-gutenberg-and-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:863:\"<p>Yesterday I was able to have a great conversation with Adam from WP Crafter, a popular Youtube channel with over five million views. Adam said it was his first interview but you can&#8217;t tell, we had an excellent conversation that covered Gutenberg, the 5.0 release, why WordPress has done well so far, and what&#8217;s coming in the future. If you&#8217;d like more context than text or tweets can give for what&#8217;s happening in WordPress today, check it out.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Of course Friday and Saturday are <a href=\"https://2018.us.wordcamp.org\">WordCamp US</a>, which returns to Nashville this year. Everything will be live-streamed for free, including my State of the Word presentation on Saturday, you just need to <a href=\"https://2018.us.wordcamp.org/tickets/\">pick up a free streaming ticket</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, 05 Dec 2018 14:16:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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: WordPress 5.0 Targeted for December 6, Prompting Widespread Outcry Ahead of WordCamp 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86065\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/wordpress-5-0-targeted-for-december-6-prompting-widespread-outcry-ahead-of-wordcamp-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7290:\"<p>During last week&#8217;s core dev chat, Matt Mullenweg urged developers to consider WordPress 5.0 as &#8220;coming as soon as possible.&#8221; Nevertheless, his decision to set Thursday, December 6, for the <a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\" rel=\"noopener\" target=\"_blank\">new release date</a> has taken many by surprise. </p>\n<p>Official feedback channels and social media erupted with largely negative feedback on the decision, as the new release date has 5.0 landing the day before WordCamp US begins. This is a travel day for many attending the conference. It also means both of the planned follow-up releases will be expected during the upcoming weeks when many have scheduled time off for major world holidays.</p>\n<p>Yoast CEO Joost de Valk, one of the most vocal critics of the 5.0 timelime, <a href=\"https://twitter.com/yoast/status/1069880401055895553\" rel=\"noopener\" target=\"_blank\">posted a public message of dissent</a> that resonated with many on Twitter:</p>\n<blockquote><p>We vehemently disagree with the decision to release WordPress 5.0 on December 6th, and think it&#8217;s irresponsible and disrespectful towards the community. </p>\n<p>However, we&#8217;re now going to try and support the community as well as possible and we hope to show everyone that Gutenberg is indeed a huge step forward.</p></blockquote>\n<p>Although Gutenberg as a project has strong support from many large companies in the WordPress ecosystem, much of the current uproar is rooted in a communication published in early October that indicated <a href=\"https://make.wordpress.org/core/2018/10/03/proposed-wordpress-5-0-scope-and-schedule/\" rel=\"noopener\" target=\"_blank\">5.0 would be pushed to January</a> if it missed the first set of planned release dates:</p>\n<blockquote><p>We know there is a chance that 5.0 will need additional time, so these dates can slip by up to 8 days if needed. If additional time beyond that is required, we will instead aim for the following dates:</p>\n<p>Secondary RC 1: January 8, 2019</p>\n<p>Secondary Release: January 22, 2019</p>\n<p>Should we need to switch to the secondary dates, this will be communicated as soon as we’re aware.</p></blockquote>\n<p>Companies made plans based on this schedule, but after those dates passed Mullenweg was unwilling to commit to honoring the previous communication. The plan from the outset may have been to &#8220;play it by ear&#8221; and incorporate new information as it became available, but the developer community had been counting on the published deadlines to be definitive.</p>\n<p>&#8220;This decision was made in disregard to earlier specific timelines and promises, and does not take the realities on the ground into account,&#8221; Morten Rand-Hendricksen <a href=\"https://twitter.com/mor10/status/1070013237205204992?s=19\" rel=\"noopener\" target=\"_blank\">said</a>. &#8220;I agree with @yoast it is both irresponsible and disrespectful.&#8221;</p>\n<p>Although reactions on Twitter run the gamut from unbridled optimism to full on outrage, many of those commenting on the schedule have fallen into resignation, convinced that community feedback never really mattered when it came to scheduling the release.</p>\n<p>Mullenweg&#8217;s rationale behind announcing the release date with three days notice is that Gutenberg and/or the Classic Editor are already active on more than 1.3 million sites. Users do not have to upgrade to WordPress 5.0 until they are ready. If they opt for the Classic Editor, the editing experience &#8220;will be indistinguishable from 4.9.8.&#8221; </p>\n<p>Users who are informed enough to make this choice will be well-prepared when they see that 5.0 update in their dashboards. However, one of the chief concerns is that millions of WordPress users will update without testing. Plugin developers are scrambling to ship compatibility updates and support staff will need to be on hand to help users navigate any incompatibilities or bugs in the new editing experience. Hundreds of WordPress professionals will be traveling to WordCamp US when 5.0 is expected to ship, which poses challenges for supporting users who experience problems with the update.</p>\n<p>&#8220;I do not think the attendees of WCUS are more important than much larger portion of the WordPress community who does not (and cannot) attend, and there are numerous ways to deal with 5.0 before or after the 6th if that particular day is inconvenient for someone, regardless of the reason,&#8221; Mullenweg <a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/#comment-34686\" rel=\"noopener\" target=\"_blank\">said</a> in response to comments regarding the date conflicting with travel plans.</p>\n<p>The release date <a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\" rel=\"noopener\" target=\"_blank\">announcement</a> has well over 100 comments from frustrated contributors and developers expressing concerns, and Mullenweg has been responsive in the comments. He has recently <a href=\"https://wptavern.com/mullenweg-ramps-up-communication-ahead-of-wordpress-5-0-release-rc2-now-available\" rel=\"noopener\" target=\"_blank\">ramped up communication</a> ahead of the release, regularly attending core dev chats, adding dedicated office hours to connect with the community one-on-one, and answering some of the most pressing Gutenberg questions on his blog in a lengthy but inspiring <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\" rel=\"noopener\" target=\"_blank\">FAQ post</a>. </p>\n<p>Despite these communication efforts, contributors who are not employed by Automattic have said they feel this release has been plagued by a lack of transparency regarding decision-making. Many WordPress core committers, core contributors, and former release leads have <a href=\"https://wptavern.com/wordpress-5-0-rc-expected-on-u-s-thanksgiving-holiday-despite-last-minute-pushback-from-contributors\" rel=\"noopener\" target=\"_blank\">pushed back</a> on releasing before January to no avail. Their concerns and disappointments during the process hang like a dark cloud over what should be an exciting time for the future of WordPress.</p>\n<p>&#8220;No matter how bad the process around WordPress 5.0 might have been, finally setting a release date was the only right step following the RCs,&#8221; WordPress core developer Dominik Schilling <a href=\"https://twitter.com/ocean90/status/1069874387870978048\" rel=\"noopener\" target=\"_blank\">said</a>. &#8220;Let&#8217;s see if it&#8217;s also the beginning for doing it better to get back on releases which everyone will love.&#8221;</p>\n<p><a href=\"https://gemservers.com/\" rel=\"noopener\" target=\"_blank\">John Teague</a>, who runs an 11-person operation, managing 210 enterprise hosting clients, summarized how many are feeling ahead of WordPress 5.0 shipping out this week.</p>\n<p>&#8220;I so want to be supportive of this release,&#8221; Teague said. &#8220;But between the top down, heavily Automattic managed process, poor release communication, super short RC2, RC3, punting on accessibility, and now this two-day notice to 5.0 release &#8211; it reminds me of an old Air Force saying when instructors sent barely trained pilots up for their first solo:  </p>\n<p>&#8216;Send em up and let God grade em.\'&#8221;</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, 05 Dec 2018 07:37:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:49:\"HeroPress: WordPress made me walk 700km to Berlin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=2658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"https://heropress.com/essays/wordpress-made-me-walk-700km-to-berlin/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-made-me-walk-700km-to-berlin\";s: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:9479:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/12/120518-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Nothing happens in your comfort zone. Go beyond and find the magic.\" /><p>Since the year 2000 I was employed at a big IT hardware/software/services firm. After about 9 years I was not feeling quite happy about how things went. Let’s say that the plans the company had with me did not really line up with the monthly reward. So, I quit and started my own company, <a href=\"https://nostromo.nl/\">nostromo.nl</a> in June 2009 (<a href=\"https://twitter.com/mbootsman/status/2090725144\">Tweetproof</a>). The goal was to serve customers by designing/developing and maintaining websites.</p>\n<h3>A new beginning</h3>\n<p>Now the challenge begins. Where do I start, who do I call? “Hello, do you need a new website? I just started my company and I can help you”. Why would I be the right person to help this company with their new website? The first thing I learned was to be sure of myself. I know what I can do and the customer needs help, probably because they are not so skillful in building websites.</p>\n<p>After a month I was talking with a potential customer, my first one (!), and I got the quotation signed. I was going to build my own CMS, and I soon realized (the hard way) that was not the way to go. I had to do a CMS comparison and WordPress won.</p>\n<h3>Here comes WordPress</h3>\n<p>The ease of use and the extensive documentation for developers convinced me. After having built numerous websites, and offering maintenance services to customers, I wanted  to know who the people were that built WordPress. Why? Well, because I was using free software and I was making money with it. That didn’t feel right, I wanted to give something back.</p>\n<p>Browsing support forums and IRC (that&#8217;s something like Slack, but without the GIFs) I quickly became aware of the WordPress community and felt I wanted to get to know these great people.</p>\n<h3>WordCamp &#8211; how it changed me</h3>\n<p>It was 2010 when I learned about a thing called WordCamp in The Netherlands. The entrance ticket was cheap and I could attend talks by inspiring people. On November 6th 2010, I was waiting in line at the registration desk. It was my turn, and someone from behind the desk said; “Hey, nostromo!”. It was <a href=\"https://twitter.com/remkusdevries\">Remkus de Vries</a>, he recognized me from my avatar on Twitter and those two words made me feel welcome immediately. This moment I remember very vividly and it marks the point where my enthusiasm for the WordPress community was sparked to life.</p>\n<h3>I volunteer &#8211; a lot</h3>\n<p>Giving back to the community got defined. Translating, helping out in the Dutch official WordPress support forum, organizing meetups/WordCamps (The Netherlands, the first WordCamp Europe, and WordCamp Rotterdam) and helping others join and be active in the WordPress community. These were some of the things I did, and yes, I had to push the brake on voluntary jobs sometimes, because I also needed to be productive and profitable in my business. Since that first WordCamp I have met amazing, inspiring and skillful people (in random order). I haven’t met new people, I met new friends.</p>\n<h3>Volunteering &#8211; taking it to the next level</h3>\n<p>It was June 4th 2018 when I got a weird idea. Yeah, that sometimes happens. Impulsive as I am, I tweeted it:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I&#039;m thinking about walking to the next <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a>. Needs some planning of course, and funding / sponsoring. Will launch a separate website after this years edition.</p>\n<p>&mdash; <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f6b6-1f3fc-200d-2642-fe0f.png\" alt=\"??‍♂️\" class=\"wp-smiley\" /> Marcel Bootsman (@mbootsman) <a href=\"https://twitter.com/mbootsman/status/1003666255994376192?ref_src=twsrc%5Etfw\">June 4, 2018</a></p></blockquote>\n<p></p>\n<p>Little did I know, there was a body part that had a big objection. While planning to go to Belgrade for WordCamp Europe 2018 this happened:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Good morning. Going to see doctor later, I have a sore knee and walking is merely possible. Great timing, body&#8230; <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a></p>\n<p>&mdash; <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f6b6-1f3fc-200d-2642-fe0f.png\" alt=\"??‍♂️\" class=\"wp-smiley\" /> Marcel Bootsman (@mbootsman) <a href=\"https://twitter.com/mbootsman/status/1006400794617352192?ref_src=twsrc%5Etfw\">June 12, 2018</a></p></blockquote>\n<p></p>\n<p>And yes, I had to cancel our trip (my wife was going to join) and ended up laying in bed for about a week with an inflamed knee. I received antibiotics from the doctor and gladly the pain and inflammation disappeared. That aside, at the end of WCEU 2018 it was announced that WCEU 2019 was going to be in Berlin. I was happy, since that’s really close (about 700 km) to where I live.</p>\n<p>Currently I am training, I’ve planned my route and I am looking for places to sleep in Germany. Please see this website <a href=\"http://walktowc.eu\">walktowc.eu</a> for more information. Since this hike is probably going to gain some attention in the community, I had another idea. Why not use this as a means to raise money, for a good cause. Walking 700 km in about 30 days is a challenge, and if I can get enough attention, raising money might work out. Now I just had to find a good cause to raise money for&#8230;</p>\n<h3>Raising funds for DonateWC</h3>\n<p>I have known <a href=\"https://twitter.com/motherofcode\">Ines van Essen</a> for a few years now and in September 2017 she started a thing called <a href=\"https://donatewc.org/\">DonateWC</a>. After a successful initial funding campaign they sent their first recipient to <a href=\"https://donatewc.org/sponsorship-recipients/were-sending-a-speaker-to-wordcamp-cape-town/\">WordCamp Capetown</a> in October 2017. Seeing this made me believe this is another sign of how friendly and supporting the WordPress community is, to make sure that people are able to attend WordCamps, while they do not have the financial means to do so. The community supports community members, and that’s the reason why I chose DonateWC as the cause I’m going to raise funds for. And as a side effect also raise awareness of the existence of DonateWC.</p>\n<h3>My message to you</h3>\n<p>Don’t feel obliged to do things you don’t like.</p>\n<p>Do things you like.</p>\n<p>Start volunteering.</p>\n<p>Build your network.</p>\n<p>Enjoy the community.</p>\n<p>Step (or walk) out of your comfort zone.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Nothing happens in your comfort zone. Go beyond and find the magic. <a href=\"https://t.co/Rm4zDtT5JL\">pic.twitter.com/Rm4zDtT5JL</a></p>\n<p>&mdash; <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f6b6-1f3fc-200d-2642-fe0f.png\" alt=\"??‍♂️\" class=\"wp-smiley\" /> Marcel Bootsman (@mbootsman) <a href=\"https://twitter.com/mbootsman/status/971276691447386120?ref_src=twsrc%5Etfw\">March 7, 2018</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress made me walk 700km to Berlin\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20made%20me%20walk%20700km%20to%20Berlin&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-made-me-walk-700km-to-berlin%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress made me walk 700km to Berlin\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-made-me-walk-700km-to-berlin%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-made-me-walk-700km-to-berlin%2F&title=WordPress+made+me+walk+700km+to+Berlin\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress made me walk 700km to Berlin\"></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-made-me-walk-700km-to-berlin/&media=https://heropress.com/wp-content/uploads/2018/12/120518-150x150.jpg&description=WordPress made me walk 700km to Berlin\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress made me walk 700km to Berlin\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-made-me-walk-700km-to-berlin/\" title=\"WordPress made me walk 700km to Berlin\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-made-me-walk-700km-to-berlin/\">WordPress made me walk 700km to Berlin</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, 05 Dec 2018 07:00: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:15:\"Marcel Bootsman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:27:\"Dev Blog: WordPress 5.0 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=6322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2018/12/wordpress-5-0-rc3/\";s: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:2755:\"<p>The third release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p><strong>WordPress 5.0 will be released on </strong><a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\"><strong>December 6, 2018</strong></a>. This is a big release and needs&nbsp;<em>your</em>&nbsp;help—if you haven’t tried 5.0 yet, now is the time!</p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC3.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.0, please see the&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>This release candidate includes a fix for some scripts not loading on subdirectory installs (<a href=\"https://core.trac.wordpress.org/ticket/45469\">#45469</a>), and user locale settings not being loaded in the block editor (<a href=\"https://core.trac.wordpress.org/ticket/45465\">#45465</a>). Twenty Nineteen has also had a couple of minor tweaks.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.0 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.0. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release. An in-depth field guide to developer-focused changes is coming soon on the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development blog</a>. In the meantime, you can review the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5.0+dev-notes/\">developer notes for 5.0</a>.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>WordPress Five Point Oh<br />Is just a few days away!<br />Nearly party time!</em> <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" /></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, 04 Dec 2018 07:07: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:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:87:\"WPTavern: New Block Gallery Plugin Offers a Suite of Photo Gallery Blocks for Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=85195\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/new-block-gallery-plugin-offers-a-suite-of-photo-gallery-blocks-for-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3116:\"<p>The new Gutenberg editor has basic support for galleries with a few nice features, such as the ability to set the number of columns and automatically crop thumbnails for a more uniform appearance. If you need more control over your galleries, Rich Tabor&#8217;s <a href=\"https://wordpress.org/plugins/block-gallery/\" rel=\"noopener\" target=\"_blank\">Block Gallery</a> plugin is currently the best option made specifically for use with Gutenberg and WordPress 5.0+. It offers a suite of photo gallery blocks with minimal, tasteful styling that fits unobtrusively into virtually any site design. </p>\n<p>Block Gallery currently offers three different blocks, including masonry, fullscreen stacked, and a carousel slider. Each block has its own settings that offer more customization for the specific gallery type.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/10/Screen-Shot-2018-12-03-at-3.19.46-PM.png?ssl=1\"><img /></a></p>\n<p>The plugin also makes use of Gutenberg&#8217;s block transform utility to allow users to seamlessly transform galleries from one style to another with one click, as demonstrated in the video below.</p>\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>A demo of the new <a href=\"https://wordpress.org/plugins/block-gallery/\">Block Gallery WordPress Plugin</a>\n<p>&#8220;I built the Block Gallery plugin originally as a proving ground for exploring how my portfolio WordPress themes at ThemeBeans will interface with Gutenberg,&#8221; <a href=\"https://themebeans.com/\" rel=\"noopener\" target=\"_blank\">ThemeBeans</a> founder Rich Tabor said. &#8220;I do not particularly like the idea of disabling the block editor on portfolio custom post types, so I wanted to find a clever way for folks to use different sorts of galleries to showcase their art, illustrations, photos, etc. Block Gallery was born out of that exploration.&#8221;  </p>\n<p>Tabor said that although the core gallery block is much more robust than the classic editor’s gallery system, he wanted to give users more flexibility in how they display media. His favorite feature of the project is the ability to morph gallery blocks into different types.</p>\n<p>&#8220;That means every image, settings, display option, and color selection are each migrated instantly — if a user swaps out a selected gallery for a different type,&#8221; Tabor said. &#8220;For instance, folks can morph from a masonry gallery to a carousel slider in a single click, without having to re-upload/assign images or select any options. It’s all done behind the scenes, automagically.&#8221;</p>\n<p>Tabor&#8217;s Block Gallery plugin is a major leap forward for galleries in terms of usability. It offers a beautiful implementation of features that would have been difficult to imagine before the block editor. <a href=\"https://wordpress.org/plugins/block-gallery/\" rel=\"noopener\" target=\"_blank\">Block Gallery</a> currently has more than 400 active installs after a little more than month in the official directory. Watch for that number to jump as more people begin using the new editor when WordPress 5.0 is released. </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, 03 Dec 2018 22:29: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: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:47:\"Dev Blog: The Month in WordPress: November 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/12/the-month-in-wordpress-november-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6607:\"<p>WordPress 5.0 is almost ready for release, including an all-new content editing experience. Volunteers all across the project are gearing up for the launch and making sure everything is ready. Read on to find out what&#8217;s been happening and how you can get involved.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.0 Close to Launch</h2>\n\n\n\n<p>The release date for WordPress 5.0 has not yet been set, but the second release candidate (RC) <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\">is now available</a>. The final release date will be determined based on feedback and testing of this RC. The Core development team has been posting <a href=\"https://make.wordpress.org/core/2018/12/03/5-0-gutenberg-status-update-dec-3/\">daily updates</a> on the progress of their work on v5.0, with the number of open issues for this release decreasing every day.<br /></p>\n\n\n\n<p>The primary feature of this release is <a href=\"https://wordpress.org/gutenberg/\">the new editor</a> that will become the default WordPress experience going forward. A number of people have been seeking more direct feedback from the release leads about the progress of this release, which <a href=\"https://profiles.wordpress.org/matt/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>matt</a> has facilitated by hosting <a href=\"https://make.wordpress.org/core/2018/11/29/gutenberg-5-0-listening-office-hours/\">one-to-one discussions</a> with anyone in the community who wanted to talk with him about it. He has also published <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\">an extended FAQ</a> covering many of the questions people have been asking.<br /></p>\n\n\n\n<p>Alongside the development of the new editor, the Mobile team has been working hard to bring the WordPress mobile apps up to speed. They plan to make a beta version available <a href=\"https://make.wordpress.org/mobile/2018/11/15/gutenberg-in-the-apps-what-to-expect/\">in February 2019</a>.<br /></p>\n\n\n\n<p>Want to get involved in developing WordPress Core in 5.0 and beyond? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New WordPress Support Platform Goes Live</h2>\n\n\n\n<p>WordPress user documentation has long been hosted on the <a href=\"https://codex.wordpress.org/\">WordPress Codex</a>, but for the past couple of years an ambitious project has been underway to move that content to a freshly-built WordPress-based platform. This project, named “HelpHub,” is now live and <a href=\"https://wordpress.org/support/\">the official home of WordPress Support</a>.<br /></p>\n\n\n\n<p>There is still plenty of content that needs to be migrated from the Codex to HelpHub, but the initial move is done and the platform is ready to have all WordPress’ user documentation moved across. HelpHub will be the first place for support, encouraging users to find solutions for themselves before posting in the <a href=\"https://wordpress.org/support/forums/\">forums</a>.<br /></p>\n\n\n\n<p>Want to get involved in populating HelpHub with content, or with its future development? Follow <a href=\"https://make.wordpress.org/docs/\">the Documentation team blog</a> and join the #docs channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Spanish WordPress Community Pushes Translations Forward</h2>\n\n\n\n<p>The WordPress community in Spain has been hard at work making sure as much of the WordPress project as possible is available in Spanish. <a href=\"https://es.wordpress.org/2018/11/07/logros-equipo-traducciones-wordpress-espana/\">They have recently translated more of the project than ever</a> — including WordPress Core, WordPress.org, the mobile apps and the top 120 plugins in the Directory.<br /></p>\n\n\n\n<p>This achievement has largely been possible due to the fact that <a href=\"https://make.wordpress.org/polyglots/teams/?locale=es_ES\">the Spanish translation team</a> has over 2,500 individuals contributing to it, making it the largest translation team across the whole project. <br /></p>\n\n\n\n<p>Want to get involved in translating WordPress into your local language? You can <a href=\"https://translate.wordpress.org/\">jump straight into translations</a>, follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a> and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>All volunteer teams have checked in with their <a href=\"https://wordpress.org/news/2018/11/quarterly-updates-q3-2018/\">latest quarterly updates</a>.</li><li>The WordPress Support Team <a href=\"https://make.wordpress.org/support/2018/11/new-volunteer-orientation-for-wp-support-contributors-dec-9/\">is hosting an orientation</a> for new Support volunteers on December 9.</li><li><a href=\"https://2018.us.wordcamp.org/tickets/\">Tickets are now available</a> to watch the WordCamp US livestream for free.</li><li>WordPress Core <a href=\"https://core.trac.wordpress.org/ticket/45287\">has switched to a WP-CLI command</a> for generating localization files.</li><li>WordPress Coding Standards v1.2.0 <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.2.0\">has been released</a> with some really useful improvements.</li><li>The first ever <a href=\"https://2019.nordic.wordcamp.org/\">WordCamp Nordic</a> is taking place on March 7-8, 2019 with ticket sales now open.</li><li>The WordCamp Incubator program is going very well this year — <a href=\"https://make.wordpress.org/community/2018/11/27/wordcamp-incubator-2018-update-thread-november-edition/\">you can see the latest updates here</a>.</li><li>The Mobile Team is looking for testers for the upcoming v11.3 release of the WordPress mobile apps on <a href=\"https://make.wordpress.org/mobile/2018/11/21/call-for-testing-wordpress-for-android-11-3/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2018/11/21/call-for-testing-wordpress-for-ios-11-3/\">iOS</a>.</li><li>The WordCamp Europe team is looking for local communities to <a href=\"https://2019.europe.wordcamp.org/2018/11/29/call-for-host-city/\">apply to be the host city</a> for the 2020 event.</li></ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Dec 2018 17:43:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:59:\"WPTavern: WordCamp Europe Opens the Call for Host City 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/wordcamp-europe-opens-the-call-for-host-city-2020\";s: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:2379:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/11/wordcamp-eurpoe-2019.png?ssl=1\"><img /></a></p>\n<p>WordCamp Europe has opened the <a href=\"https://2019.europe.wordcamp.org/2018/11/29/call-for-host-city/\" rel=\"noopener\" target=\"_blank\">call for a host city for 2020</a>. Previous editions of the event have been held in Leiden, Sofia, Seville, Vienna, Paris, and Belgrade, and the next on deck is Berlin in 2019. Organizers are always working ahead for an event this size. In fact, the team plans together for the better part of a year before attendees arrive for the three-day event. The upcoming WCEU is currently being planned by a team of 66 organizers from 15 countries. </p>\n<p>Teams applying to host WordCamp Europe are required to have organized at least one or more successful WordCamps in a European city, with at least one recent one held in 2017 or 2018. The core organizing team will work with all applicants in the open to help them prepare the best applications possible, as detailed in the announcement:  </p>\n<blockquote><p>To guarantee total transparency during the process, all applicants receive the same help in the appropriate public channel of the WCEU Slack workspace. No question is considered or answered in a private message.</p></blockquote>\n<p>Three weekends in June 2020 are available to applicants as potential dates. Teams interested to apply are encouraged to begin filling out the <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfPd5InsSfaGXA1zRu_PJ435AGXXPlUYMuCqCBkEOKRNSrd7w/viewform\" rel=\"noopener\" target=\"_blank\">7-page survey</a> (which can be started and completed as information becomes available). It includes questions about the local community, previous WordCamps, possible venue(s), cost of living in the city, and other data that will be important to the selection committee. </p>\n<p>A preliminary online AMA session will be held December 13, 2018, to assist teams in answering questions about the application process. The deadline to apply to host the event is February 28, 2019. Applicants will receive a decision by March 15, 2019, and the final selection will be announced during the closing remarks in Berlin next June. Check out the call for host cities <a href=\"https://2019.europe.wordcamp.org/2018/11/29/call-for-host-city/\" rel=\"noopener\" target=\"_blank\">announcement</a> for more information.</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, 03 Dec 2018 16:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:92:\"WPTavern: Mullenweg Ramps Up Communication Ahead of WordPress 5.0 Release, RC2 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/mullenweg-ramps-up-communication-ahead-of-wordpress-5-0-release-rc2-now-available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5209:\"<p><a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\" rel=\"noopener\" target=\"_blank\">WordPress 5.0 RC2</a> was released today with 15 notable updates, including improvements to block preview styling, browser-specific bug fixes, and other changes. RC2 was released simultaneously with <a href=\"https://make.wordpress.org/core/2018/11/30/whats-new-in-gutenberg-30th-november/\" rel=\"noopener\" target=\"_blank\">Gutenberg version 4.6</a>. </p>\n<p>The official release date for WordPress 5.0 has not yet been announced, because it depends on feedback from RC2 testing. Contributors&#8217; uneasiness with not having an official release date seemed to reach a critical tipping point during this week&#8217;s WordPress dev chat, as many participants pressured Matt Mullenweg, who is leading the release, to give more information on when they can expect 5.0. </p>\n<p>&#8220;It is very important that we have a release date to aim for,&#8221; ACF founder Elliot Condon said. &#8220;I’m finding the current &#8216;waiting game&#8217; quite stressful, and I suspect a few other developers will share the same feeling.&#8221;</p>\n<p>Tensions were high as contributors cited various reasons for wanting a date, including companies needing support staff on hand, upcoming holidays, documentation planning, and the importance of user trust.</p>\n<p>&#8220;We&#8217;re determining the release date based on the open issues,&#8221; Mullenweg said. &#8220;Please consider it as coming as soon as possible, when everything is resolved.&#8221;</p>\n<p>&#8220;I hope it&#8217;s clear we&#8217;re trying to get this out as soon as possible, but don&#8217;t yet have enough data to announce an official date. As mentioned last week we have done a number of December releases in the past, and may this time, but don&#8217;t have enough data to announce a new date yet.&#8221;</p>\n<p>Mullenweg also urged dev chat attendees to keep in mind that any site administrators can install the Classic Editor plugin to keep the current editing experience, regardless of the 5.0 release date. He said the date will be announced via a P2 post, not during a dev chat.</p>\n<p>&#8220;If you want to know what to plan on, please don&#8217;t hold anything back based on expected dates, please test or deploy the RCs, that&#8217;s what they&#8217;re for,&#8221; Mullenweg said. </p>\n<p>In the meantime, Mullenweg is spending the weekend taking questions from the community during <a href=\"https://make.wordpress.org/core/2018/11/29/gutenberg-5-0-listening-office-hours/\" rel=\"noopener\" target=\"_blank\">24 office hours slots</a>. He also published a lengthy post titled &#8220;<a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\" rel=\"noopener\" target=\"_blank\">WordPress 5.0: A Gutenberg FAQ</a>,&#8221; which reaffirms WordPress&#8217; mission in the context of Gutenberg. It answers questions like &#8220;Why do we need Gutenberg at all?&#8221; and &#8220;Why blocks?&#8221;</p>\n<p>&#8220;I knew we would be taking a big leap,&#8221; Mullenweg said. &#8220;But it’s a leap we need to take, and I think the end result is going to open up many new opportunities for everyone in the ecosystem, and for those being introduced to WordPress for the first time. It brings us closer to our mission of democratizing publishing for everyone.&#8221;</p>\n<p>The stats Mullenweg cited about previously having 9 major WordPress releases in December (34% of all releases in the last decade) indicate that a December release may still be on the table. His post addresses the perceived urgency behind getting Gutenberg out the door and into the hands of users. In evaluating WordPress 5.0&#8217;s readiness, he said it&#8217;s important to differentiate between the code being ready and the community being ready.</p>\n<p>&#8220;In the recent debate over Gutenberg readiness, I think it’s important to understand the difference between Gutenberg being ready code-wise (it is now), and whether the entire community is ready for Gutenberg,&#8221; Mullenweg said.</p>\n<p>&#8220;It will take some time — we’ve had 15 years to polish and perfect core, after all — but the global WordPress community has some of the world’s most talented contributors and we can make it as good as we want to make it.&#8221;</p>\n<p>The post also offers a preview of where Gutenberg is going in the next site customization phase and how it will change the way users build their sites.</p>\n<p>&#8220;The Editor is just the start,&#8221; he said. &#8220;In upcoming phases blocks will become a fundamental part of entire site templates and designs. It’s currently a struggle to use the Customizer and figure out how to edit sections like menus, headers, and footers. With blocks, people will be able to edit and manipulate everything on their site without having to understand where WordPress hides everything behind the scenes.&#8221;</p>\n<p>Mullenweg said he plans to talk more about the next phases following site customization during the State of the Word address at WordCamp US. If you have questions about Gutenberg and where it&#8217;s headed, the comments are open on his <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\" rel=\"noopener\" target=\"_blank\">post</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:\"Sat, 01 Dec 2018 03:15:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:67:\"WPTavern: Let Us Know If You’re Hosting a WordCamp US Watch Party\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86150\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/let-us-know-if-youre-hosting-a-wordcamp-us-watch-party\";s: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:505:\"<p>WordCamp US is next weekend and if you&#8217;re unable to attend, you can watch from home via the <a href=\"https://wptavern.com/wordcamp-us-2018-livestream-tickets-now-available\">free livestream</a>. However, some WordPress meetup groups host watch parties. These parties generally include food, beverages, and a large projection screen. </p>\n\n\n\n<p>If you&#8217;re hosting one of these parties, please let us know about it in the comments. Tell us the location and what attendees can expect. <br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 01 Dec 2018 01:11: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:\"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: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:27:\"Dev Blog: WordPress 5.0 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3298:\"<p>The second release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p>This is an important milestone, as we near the release of WordPress 5.0. A final release date will be announced soon, based on feedback from this release candidate. Things are appearing very stable and we hope to announce a date soon. This is a big release and needs <em>your</em> help—if you haven’t tried 5.0 yet, now is the time! </p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC2.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.0, please see the <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\">previous release candidate post</a>.</p>\n\n\n\n<h2>Significant changes</h2>\n\n\n\n<ul><li>We stopped rendering&nbsp;<em>AdminNotices</em>&nbsp;compatibility component, as this previous attempt at backward compatibility was bringing in numerous incompatible banners and notices from plugins.</li><li>An update to the parser to better deal with malformed HTML that could cause a loop. We&#8217;re only aware of this in the wild being triggered once in the <a href=\"https://gutenstats.blog/\">over a million posts</a> made with Gutenberg, but it caused a loop so we wanted to fix for RC2.</li></ul>\n\n\n\n<h2>Cosmetic and minor changes in RC2</h2>\n\n\n\n<ul><li>Accessibility: Simplify sidebar tabs&nbsp;aria-labels.</li><li>Make the&nbsp;Image&nbsp;Link URL field readonly.</li><li>Internationalization: Merge&nbsp;similar text strings that differed only in capitalization.</li><li>CSS: Improve block preview&nbsp;styling.</li><li>CSS: Fix&nbsp;visual issues&nbsp;with&nbsp;Button&nbsp;block text wrap.</li><li>Fix&nbsp;getSelectedBlockClientId selector.</li><li>Fix&nbsp;Classic&nbsp;block&nbsp;not showing galleries on a grid.</li><li>Fix an issue where the block toolbar&nbsp;would cause an image to jump&nbsp;downwards when the&nbsp;<em>wide</em>&nbsp;or&nbsp;<em>full</em>&nbsp;alignments were activated.</li><li>Move editor specific styles&nbsp;from style.scss to editor.scss in&nbsp;Cover&nbsp;block.</li><li>Fix modals&nbsp;in Microsoft Edge browser.</li><li>Fix Microsoft IE11 focus loss&nbsp;after TinyMCE init.&nbsp;Add&nbsp;IE check.</li><li>Fix Microsoft IE11 input when mounting TinyMCE.</li><li>Change @package names&nbsp;to WordPress.</li></ul>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, 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\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<pre class=\"wp-block-verse\"><em>RC bittersweet.<br />We welcome in Gutenberg,<br />Vale Gutenbeard.</em></pre>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Nov 2018 23:16: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:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:90:\"WPTavern: Gutenberg Times to Host Live Q&amp;A with Gutenberg Leads on Friday, November 30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=85908\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/gutenberg-times-to-host-live-qa-with-gutenberg-leads-on-friday-november-30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1224:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/11/creating-gutenberg-q-and-a.jpg?ssl=1\"><img /></a></p>\n<p>Birgit Pauli-Haack, curator of the <a href=\"https://gutenbergtimes.com/\" rel=\"noopener\" target=\"_blank\">Gutenberg Times</a> website, is hosting a Q&#038;A session with Gutenberg&#8217;s phase 1 design and development leads on Friday, November 30, at 2pm ET (19:00 UTC). Matias Ventura, Tammie Lister, and Joen Asmussen will join Pauli-Haack to discuss their journey &#8220;Creating Gutenberg&#8221; over the past two years.</p>\n<p>If you have any pressing questions about Gutenberg&#8217;s architecture, design, or the future of the project, this event is a good opportunity to speak to members of the team who have been building it full-time. The Q&#038;A is free to watch but attendees who want to participate with questions will need to <a href=\"https://zoom.us/webinar/register/6915430666443/WN_d_ejr1e0T0Se1YpyoU0Ojg\" rel=\"noopener\" target=\"_blank\">register</a>. There are 100 seats available. Pauli-Haack will also be live-streaming the session to the <a href=\"https://www.youtube.com/channel/UCSD3LG2kSHdr7llRSHaylxw\" rel=\"noopener\" target=\"_blank\">Gutenberg Times YouTube channel</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, 30 Nov 2018 00:48:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:36:\"Matt: WordPress 5.0: A Gutenberg FAQ\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48628\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2018/11/a-gutenberg-faq/\";s: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:18327:\"<p><em>Update: </em><a href=\"https://wordpress.org/news/2018/12/bebo/\"><em>On December 6th we released WordPress 5.0</em></a><em>. It was definitely the most controversial release in a while, but the usage and adoption metrics are looking similar to previous releases. I&#8217;m looking forward to continuing to iterate on the new block editor!</em></p>\n\n\n\n<p>We are nearing the release date for WordPress 5.0 and Gutenberg, one of the most important and exciting projects I’ve worked on in my <a href=\"https://ma.tt/2018/05/wordpress-at-15/\">15 years</a> with this community. <br /></p>\n\n\n\n<p>I knew we would be taking a big leap. But it’s a leap we need to take, and I think the end result is going to open up many new opportunities for everyone in the ecosystem, and for those being introduced to WordPress for the first time. It brings us closer to our mission of democratizing publishing for everyone.<br /></p>\n\n\n\n<p>I recently visited WordCamp Portland to talk about Gutenberg and WordPress 5.0, which will also include the new default theme <a href=\"https://make.wordpress.org/core/2018/10/16/introducing-twenty-nineteen/\">Twenty Nineteen</a>, which you’re seeing me test out on this very site. There were some great questions and testimonials about Gutenberg, so I’d urge you to watch the <a href=\"https://wordpress.tv/2018/11/08/matt-mullenweg-qa-at-wordcamp-portland-2018/\">full video</a> and <a href=\"https://wptavern.com/matt-mullenweg-addresses-controversies-surrounding-gutenberg-at-wordcamp-portland-qa\">read the WP Tavern recap</a>. I&#8217;ve also visited meetups, responded to review threads, kept an eye on support, and I&#8217;m in the middle of <a href=\"https://make.wordpress.org/core/2018/11/29/gutenberg-5-0-listening-office-hours/\">office hours with the core community</a>.<br /></p>\n\n\n\n<p>As we head toward the release date and <a href=\"https://2018.us.wordcamp.org/\">WordCamp US</a>, I&#8217;ve put many questions and answers into a Gutenberg FAQ below. For those who have other questions, I will be checking the comments here. <br /></p>\n\n\n\n<p>It’s an exciting time, and I’m thrilled to be working with y’all on this project. </p>\n\n\n\n<img />Not the ship of Theseus\n\n\n\n<h2>What is Gutenberg? </h2>\n\n\n\n<p>Gutenberg, for those who aren&#8217;t actively following along, is a brand new Editor for WordPress &#8212; contributors have been working on it since January 2017 and it&#8217;s one of the most significant changes to WordPress in years. It&#8217;s built on the idea of using &#8220;blocks&#8221; to write and design posts and pages. <br /></p>\n\n\n\n<p>This will serve as the foundation for future improvements to WordPress, including blocks as a way not just to design posts and pages, but also entire sites. <br /></p>\n\n\n\n<p>The overall goal is to simplify the first-time user experience of WordPress &#8212; for those who are writing, editing, publishing, and designing web pages. The editing experience is intended to give users a better visual representation of what their post or page will look like when they hit publish. As I wrote in <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">my post last year</a>, &#8220;Users will finally be able to build the sites they see in their imaginations.&#8221; <br /></p>\n\n\n\n<p>Matías Ventura, team lead for Gutenberg, <a href=\"https://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\">wrote an excellent post</a> about the vision for Gutenberg, saying, “It’s an attempt to improve how users interact with their content in a fundamentally visual way, while at the same time giving developers the tools to create more fulfilling experiences for the people they are helping.”</p>\n\n\n\n<h2>Why do we need Gutenberg at all? </h2>\n\n\n\n<p>For many of us already in the WordPress community, it can be easy to forget the learning curve that exists for people being introduced to WordPress for the first time. Customizing themes, adding shortcodes, editing widgets and menus &#8212; there’s an entire language that one must learn behind the scenes in order to make a site or a post look like you want it to look. <br /></p>\n\n\n\n<p>Over the past several years, JavaScript-based applications have created opportunities to simplify the user experience in consumer apps and software. Users’ expectations have changed, and the bar has been raised for simplicity. It is my deep belief that WordPress must evolve to improve and simplify its own user experience for first-time users. <br /></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">What can you do in 137 lines in <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a>? <a href=\"https://t.co/zLINZGMXMe\">pic.twitter.com/zLINZGMXMe</a></p>&mdash; Dennis Snell (@dmsnell23) <a href=\"https://twitter.com/dmsnell23/status/1063126946350096389?ref_src=twsrc%5Etfw\">November 15, 2018</a></blockquote>\n</div>\n\n\n\n<h2>Why blocks? </h2>\n\n\n\n<p>The idea with blocks was to create a new common language across WordPress, a new way to connect users to plugins, and replace a number of older content types &#8212; things like shortcodes and widgets &#8212; that one had to be well-versed in the idiosyncrasies of WordPress to understand. <br /></p>\n\n\n\n<p>The block paradigm is not a new one &#8212; in fact many great plugins have already shown the promise of blocks with page design in WordPress. Elementor, one of the pioneers in this space, has now introduced <a href=\"https://elementor.com/blog/blocks-for-gutenberg/\">a new collection of Gutenberg blocks</a> to showcase what’s possible: <br /></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2>Why change the Editor? </h2>\n\n\n\n<p>The Editor is where most of the action happens in WordPress’s daily use, and it was a place where we could polish and perfect the block experience in a contained environment. <br /></p>\n\n\n\n<p>Additionally, the classic Editor was built primarily for text &#8212; articles have become increasingly multimedia, with social media embeds, maps, contact forms, photo collages, videos, and GIFs. It was time for a design paradigm that allowed us to move past the messy patchwork of shortcodes and text. <br /></p>\n\n\n\n<p>The Editor is just the start. In upcoming phases blocks will become a fundamental part of entire site templates and designs. It’s currently a struggle to use the Customizer and figure out how to edit sections like menus, headers, and footers. With blocks, people will be able to edit and manipulate everything on their site without having to understand where WordPress hides everything behind the scenes. <br /></p>\n\n\n\n<h2>What does Automattic get out of this? </h2>\n\n\n\n<p>There have been posts recently asking questions about Automattic’s involvement in Gutenberg compared to other contributors and companies. There is no secret conspiracy here &#8212; as project lead I was able to enlist the help of dozens of my colleagues to contribute to this project, and I knew that a project of this size would require it. Automattic aims to have 5% of its people dedicated to WordPress community projects, which at its current size would be about 42 people full-time. The company is a bit behind that now (~35 full-time), and the company is growing a lot next year, so look for 10-15 additional people working on core and community projects.&nbsp;<br /></p>\n\n\n\n<p>In the end, Gutenberg is similar to many other open source projects &#8212; Automattic will benefit from it, but so will everyone else in the WordPress community (and even <a href=\"https://drupalgutenberg.org/\">the Drupal community</a>). It’s available for everyone under the GPL. If the goal was purely to benefit Automattic it would have been faster, easier, and created an advantage for Automattic to have Gutenberg just on WP.com. That wasn&#8217;t, and isn&#8217;t, the point.</p>\n\n\n\n<h2>Is Gutenberg ready? </h2>\n\n\n\n<p>Absolutely. Our original goal with Gutenberg was to get it on 100,000 sites to begin testing &#8212; it’s now already on <a href=\"https://gutenstats.blog/\">more than 1 million sites</a>, and it’s the fastest-growing plugin in WordPress history. There is a lot of user demand.<br /></p>\n\n\n\n<p>The goal was to both test Gutenberg on as many sites as possible before the 5.0 release, and also to encourage plugin developers to make sure their plugins and services will be ready. With everyone pitching in, we can make this the most <em>anti-climactic</em> release in WordPress history. &nbsp;<br /></p>\n\n\n\n<p>In the recent debate over Gutenberg readiness, I think it&#8217;s important to understand the difference between Gutenberg being ready code-wise (it is now), and whether the entire community is ready for Gutenberg.<br /></p>\n\n\n\n<p>It will take some time &#8212; we&#8217;ve had 15 years to polish and perfect core, after all &#8212; but the global WordPress community has some of the world&#8217;s most talented contributors and we can make it as good as we want to make it. <br /></p>\n\n\n\n<p>There is also a new opportunity to dramatically expand the WordPress contributor community to include more designers and JavaScript engineers. With JavaScript apps there are also new opportunities for designing documentation and support right on the page, so that help arrives right where you need it. <br /></p>\n\n\n\n<p>Someone described Gutenberg to me as “WordPress in 3D.” I like the sound of that. Blocks are like layers you can zoom in and out of. The question now is: What are we going to build with this new dimension? </p>\n\n\n\n<h2>Do I have to switch to Gutenberg when WordPress 5.0 is released? </h2>\n\n\n\n<p>Not at all. When it’s released, you get to choose what happens. You can install the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor plugin</a> today and when 5.0 is released, nothing will change. We&#8217;ve commited to supporting and updating Classic Editor until 2022. If you’d like to <a href=\"https://wordpress.org/plugins/gutenberg/\">install Gutenberg early</a>, you can do that now too. The Classic Editor plugin has been available for 13 months now, and Gutenberg has been available for 18 months. Both have been heavily promoted since August 2018, and more than 1.3 million .org sites have opted-in already to either experience, so nothing will change for them when they update to 5.0.</p>\n\n\n\n<h2>How can I make sure I’m ready? </h2>\n\n\n\n<p>Before updating to 5.0, try out the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a> with your site to ensure it works with your existing plugins, and also to get comfortable with the new experience. Developers across the entire ecosystem are working hard to update their plugins, but your mileage and plugins may vary. And you can always use the Classic Editor to address any gaps.<br /></p>\n\n\n\n<p>As with every new thing, things might feel strange and new for a bit, but I’m confident once you start using it you’ll get comfy quickly and you won’t want to go back.</p>\n\n\n\n<p>The release candidate of 5.0 is stable and fine to develop against and test.</p>\n\n\n\n<h2>When will 5.0 be released?</h2>\n\n\n\n<p>We have had a stable RC1, which stands for first release candidate, and about to do our second one. There is only currently one known blocker and it&#8217;s cosmetic. The stability and open issues in the release candidates thus far makes me optimistic we can release soon, but as before the primary driver will be the stability and quality of the underlying software. We made the mistake prior of announcing dates when lots of code was still changing, and had to delay because of regressions and bugs. Now that things aren&#8217;t changing, we&#8217;re approaching a time we can commit to a date soon.</p>\n\n\n\n<h2>Is it terrible to do a release in December?</h2>\n\n\n\n<p>Some people think so, some don&#8217;t. There have been <a href=\"https://wordpress.org/about/roadmap/\">9 major WordPress releases</a> in previous Decembers. December releases actually comprise 34% of our major releases in the past decade.</p>\n\n\n\n<h2>Can I set it up so only certain users get to use Gutenberg? </h2>\n\n\n\n<p>Yes, and soon. We’re going to be doing another update to the Classic Editor before the 5.0 release to give it a bit more fine-grained user control &#8212; we’ve heard requests for options that allow certain users or certain roles and post types to have Gutenberg while others have Classic Editor. </p>\n\n\n\n<h2>What happens after 5.0? </h2>\n\n\n\n<p>We’ve been doing a release of Gutenberg every two weeks, and 5.0 isn’t going to stop that. We’ll do minor release to 5.0 (5.0.1, 5.0.2) fortnightly, with occasional breaks, so if there’s feedback that comes in, we can address it quickly. Many of the previous bugs in updates were from juggling between updates in the plugin and core, now that Gutenberg is in core it&#8217;s much easier and safer to incrementally update.</p>\n\n\n\n<h2>What about Gutenberg and accessibility? </h2>\n\n\n\n<p>We’ve had some important discussions about accessibility over the past few weeks and I am grateful for those who have helped raise these questions in the community. <br /></p>\n\n\n\n<p>Accessibility has been core to WordPress from the very beginning. It’s part of why we started – the adoption of web standards and accessibility.<br /></p>\n\n\n\n<p>But where I think we fell down was with project management &#8212; specifically, we had a team of volunteers that felt like they were disconnected from the rapid development that was happening with Gutenberg. We need to improve that. In the future I don’t know if it makes sense to have accessibility as a separate kind of process from the core development. It needs to be integrated at every single stage. <br /></p>\n\n\n\n<p>Still, we’ve accomplished a lot, as Matías <a href=\"https://make.wordpress.org/core/2018/10/18/regarding-accessibility-in-gutenberg/\">has written about</a>. There have been more than 200 closed issues related to accessibility since the very beginning. <br /></p>\n\n\n\n<p>We’re also taking the opportunity to fix some things that have had poor accessibility in WordPress from the beginning. <a href=\"https://codemirror.net/6/\">CodeMirror</a>, which is a code editor for templates, is not accessible, so we have some parts of WordPress that we really need to work on to make better. <br /></p>\n\n\n\n<p>Speaking of which, CodeMirror was seeking funding for their next version &#8212; Automattic has now <a href=\"https://codemirror.net/6/\">sponsored that funding</a> and in return it will be made available under the GPL, and that the next version of CodeMirror will be fully accessible. <br /></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Great news ? Due to a substantial donation from <a href=\"https://twitter.com/automattic?ref_src=twsrc%5Etfw\">@automattic</a> our crowdfunding goal has been reached, and CodeMirror 6 is definitely happening!</p>&mdash; CodeMirror (@codemirror) <a href=\"https://twitter.com/codemirror/status/1054759532990218242?ref_src=twsrc%5Etfw\">October 23, 2018</a></blockquote>\n</div>\n\n\n\n<p>Finally, Automattic will be funding an accessibility study of WordPress, Gutenberg, and an evaluation of best practices across the web, to ensure WordPress is fully accessible and setting new standards for the web overall. </p>\n\n\n\n<h2>After WordPress 5.0, is the Gutenberg name going to stick around?</h2>\n\n\n\n<p>Sometimes code names can take on a life of their own. I think Gutenberg is still what we’ll call this project &#8212; it’s <a href=\"https://github.com/WordPress/gutenberg\">called that on GitHub</a>, and you’re also seeing it <a href=\"https://drupalgutenberg.org/\">adopted by other CMSes beyond WordPress</a> &#8212; but for those outside the community I can see it simply being known as “the new WordPress editor.” </p>\n\n\n\n<h2>With the adoption of React for Gutenberg, what do you see as the future for React and WordPress? </h2>\n\n\n\n<p>In 2015 I said <a href=\"https://wordpress.tv/2015/12/07/matt-mullenweg-state-of-the-word-2015/\">“Learn JavaScript deeply”</a> &#8212; then in 2016 we brought the <a href=\"https://developer.wordpress.org/rest-api/\">REST API</a> into Core. Gutenberg is the first major feature built entirely on the REST API, so if you are learning things today, learn JavaScript, and I can imagine a future wp-admin that’s 100% JavaScript talking to APIs. I’m excited to see that happen. <br /></p>\n\n\n\n<p>Now, switching to a pure JavaScript interface could break some backward compatibility, but a nice thing about Gutenberg is that it provides an avenue for all plugins to work through &#8212; it gives them a way to plug in to that. It can eliminate the need for what’s currently done in custom admin screens. &nbsp;<br /></p>\n\n\n\n<p>The other beautiful thing is that because Gutenberg essentially allows for translation into many different formats &#8212; it can publish to your web page, it can publish your RSS feed, AMP, it can publish blocks that can be translated into email for newsletters &#8212; there’s so much in the structured nature of Gutenberg and the semantic HTML that it creates and the grammar that’s used to parse it, can enable for other applications. <br /></p>\n\n\n\n<p>It becomes a little bit like a <em>lingua franca</em> that even crosses CMSes. There’s now these new cross-CMS Gutenberg blocks that will be possible. It’s not just WordPress anymore &#8212; it might be a JavaScript block that was written for Drupal that you install on your WordPress site. How would that have ever happened before? That’s why we took two years off &#8212; it’s why we’ve had everyone in the world working on this thing. It’s because we want it to be #WorthIt. <br /></p>\n\n\n\n<p>And WordPress 5.0 is just the starting line. We want to get it to that place where it’s not just better than what we have today, but a world-class, web-defining experience. It’s what we want to create and what everyone deserves. </p>\n\n\n\n<h2>Was this post published with Gutenberg?</h2>\n\n\n\n<p>Of course. <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f604.png\" alt=\"?\" class=\"wp-smiley\" /> No bugs, but I do see lots of areas we can continue to improve and I&#8217;m excited to get to work on future iterations.</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, 29 Nov 2018 23:56:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s: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: WPCampus Seeks to Raise $30K for Gutenberg Accessibility Audit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86032\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wpcampus-seeks-to-raise-30k-for-gutenberg-accessibility-audit\";s: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:4364:\"<p>WPCampus is <a href=\"https://wpcampus.org/2018/11/fundraising-for-wpcampus-gutenberg-accessibility-audit/\" rel=\"noopener\" target=\"_blank\">seeking funding</a> to conduct an accessibility audit of WordPress&#8217; Gutenberg editor. The non-profit organization is dedicated to helping web professionals, educators, and others who work with WordPress in higher education. Educational institutions often have stricter legal obligations that require software to be WCAG 2.0 level AA compliant and many European institutions set the bar even higher at WCAG 2.1.</p>\n<p><a href=\"https://wptavern.com/wpcampus-is-pursuing-an-independent-accessibility-audit-of-gutenberg\" rel=\"noopener\" target=\"_blank\">WPCampus moved to spearhead an audit</a> after Automattic decided to forego Matt MacPherson&#8217;s <a href=\"https://wptavern.com/gutenberg-accessibility-audit-postponed-indefinitely\" rel=\"noopener\" target=\"_blank\">proposal</a> for Gutenberg to undergo an accessibility audit. Results of the audit will help WPCampus determine any potential legal risk for institutions upgrading to WordPress 5.0 and will also identify specific challenges that Gutenberg introduces for assistive technology users and others with accessibility needs.</p>\n<p>&#8220;A professional accessibility audit is a large expense for a small nonprofit like WPCampus,&#8221; WPCampus director Rachel Cherry said. &#8220;Accessibility is important to all of us in the WordPress community. We’re asking for your help to fund the audit and ensure this important research is completed.&#8221;</p>\n<p>WPCampus is still evaluating proposals from vendors and will announce its selection soon, along with an updated timeline for completing the audit. The organization has set its funding goal at $30,000, an amount that falls in the mid-range of the proposals the selection committee has received. If the campaign raises more than the amount required, WPCampus plans to designate the funds for other accessibility-related efforts, such as future audits and live captioning at conferences.</p>\n<p>Two days after launching the campaign, WPCampus has received $3,692 (12%) towards its funding goal. The organization plans to share the results of the audit and any supporting documents on its website.</p>\n<p>The comments published on the donations page demonstrate how strongly supporters feel about getting an audit and using that information to make Gutenberg a tool that anyone can use. The topic of accessibility is close to the heart for many donating to the campaign.</p>\n<p>&#8220;When I was navigating stores with three small children, stores which helped me with automatic doors, wide aisles, and shopping carts for a crowd often made the decision for me as to whether I could shop at all,&#8221; WordPress developer <a href=\"https://robincornett.com/\" rel=\"noopener\" target=\"_blank\">Robin Cornett</a> said. &#8220;As we create content and build tools for the internet, we should be doing all we can to ensure the best online experience we can for everyone.&#8221;</p>\n<p>WordPress co-founder <a href=\"https://mikelittle.org/\" rel=\"noopener\" target=\"_blank\">Mike Little</a> also donated to the campaign, with comments on how important accessibility is to fulfilling the project&#8217;s mission.</p>\n<p>&#8220;As the platform that democratizes publishing, we can&#8217;t allow new features in WordPress to take that away from users with accessibility needs,&#8221; Little said.</p>\n<p>&#8220;Accessibility matters to everyone — injured, encumbered, distracted, disabled, everyone,&#8221; WordPress consultant <a href=\"http://adrianroselli.com\" rel=\"noopener\" target=\"_blank\">Adrian Roselli</a> said. Accessibility in WordPress matters to my clients because some of their people require it in order to use the tool and therefore stay gainfully employed.&#8221;</p>\n<p>The audit proposed months ago has evolved to become a community effort funded by passionate supporters working in various capacities throughout the WordPress ecosystem. If WPCampus is successful in funding its campaign, this particular approach has the benefit of making it a more cooperative effort with more people invested in the process than if it were funded by a single company. WPCampus aims to release the audit report to the community by January 17, 2019 but the dates will depend on the arrangement with the vendor. </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, 29 Nov 2018 22:03: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:\"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:92:\"WPTavern: Drupal 8.7 to Introduce Layout Builder, Contributors Face Accessibility Challenges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=85572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/drupal-8-7-to-introduce-layout-builder-contributors-face-accessibility-challenges\";s: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:6649:\"<p>WordPress 5.0 will soon replace the editor with the new Gutenberg editor as part of a multi-phase project to improve the experience of authoring rich content. Phase 2 will shift focus to tackle site customization, bringing more complex layout and page builder capabilities to Gutenberg.</p>\n<p>As this phase kicks off soon, it&#8217;s valuable to see what other platforms are doing on this front. Drupal has traditionally appealed to a more technical audience, and probably wouldn&#8217;t count Squarespace, Wix, and Tumblr among their competitors, but the project is getting more friendly towards site builders and content editors. Drupal has brought improvements to its usability, media, and layout experiences over the past few years in support of users who have demanded a more modern, simplified admin UI. The project is currently testing a visual design tool for building layouts.</p>\n<p>Two weeks ago, Drupal founder and project lead Dries Buytaert <a href=\"https://dri.es/why-drupal-layout-builder-is-so-unique-and-powerful\" rel=\"noopener noreferrer\" target=\"_blank\">previewed the new Layout Builder</a>, an experimental feature that is stabilizing and expected to land in Drupal 8.7 in May 2019. Layout Builder offers layouts for templated content, customizations to templated layouts, and custom pages. These uses are especially important when building sites with large amounts of content that occasionally require template overrides and one-off landing pages.</p>\n<p>Buytaert described how Layout Builder approaches the creation of one-off dynamic pages, which he said is similar to the capabilities found in services such as Squarespace and projects like Gutenberg for WordPress and Drupal: </p>\n<blockquote><p>A content author can start with a blank page, design a layout, and start adding blocks. These blocks can contain videos, maps, text, a hero image, or custom-built widgets (e.g. a Drupal View showing a list of the ten most popular gift baskets). Blocks can expose configuration options to the content author. For instance, a hero block with an image and text may offer a setting to align the text left, right, or center. These settings can be configured directly from a sidebar.</p></blockquote>\n<p>Buytaert&#8217;s demo video shows the Layout Builder in action. Its capabilities are similar to many of WordPress&#8217; third-party page builders, such as <a href=\"https://elementor.com/theme-builder/\" rel=\"noopener noreferrer\" target=\"_blank\">Elementor</a> and <a href=\"https://www.wpbeaverbuilder.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Beaver Builder</a>.</p>\n<p></p>\n<h3>Layout Builder Poses Accessibility Challenges</h3>\n<p>Layout Builder is anchored on one of Drupal&#8217;s stronger features &#8211; the ability to create structured content, but it faces some of the same accessibility challenges that WordPress&#8217; Gutenberg editor has encountered. </p>\n<p>In his post introducing Layout Builder, Buytaert made some pointed remarks about Drupal&#8217;s commitment to accessibility:</p>\n<blockquote><p>Accessibility is one of Drupal&#8217;s core tenets, and building software that everyone can use is part of our core values and principles. A key part of bringing Layout Builder functionality to a &#8220;stable&#8221; state for production use will be ensuring that it passes our accessibility gate (Level AA conformance with WCAG and ATAG). This holds for both the authoring tool itself, as well as the markup that it generates. We take our commitment to accessibility seriously.</p></blockquote>\n<p>Some contributors are not as optimistic about Drupal being able to fulfill these bold claims in time to ship the feature in 8.7.0. Andrew Macpherson, one of the accessibility topic maintainers for Drupal 8 core, has <a href=\"https://www.drupal.org/project/drupal/issues/3007978#comment-12853731\" rel=\"noopener\" target=\"_blank\">proposed Layout Builder offer an alternative UI</a> that users can access without the visual preview UI.</p>\n<p>&#8220;Dries&#8217; blog post about layout builder yesterday says we&#8217;re on track to mark this as stable for D8.7.0,&#8221; Macpherson said. &#8220;I&#8217;m not at all optimistic about that, because as yet there is no feasible plan for how it can be made accessible.</p>\n<p>&#8220;A minimum viable product for Layout Builder accessibility would be at least one method which works, for each user task, for each input/output method. I don&#8217;t think we can say we have found a feasible approach. We&#8217;re in deeply experimental territory here &#8211; there isn&#8217;t a well-established, reliable pattern we can just copy to make the current layout builder accessible. Essentially, we&#8217;re making stuff up in a hurry, for a novel UI, with limited opportunity for design validation. There&#8217;s no guarantee that users are going to understand it, or find it easy to use. That&#8217;s why I&#8217;m not optimistic about it getting past the accessibility gate in time for D8.7.0.&#8221;</p>\n<p>Macpherson said that WCAG strongly advises against providing alternate versions but allows for them in instances where the main version cannot be made accessible.</p>\n<p>&#8220;I think we are effectively in this situation now, although we are still exploring ideas,&#8221; he said. </p>\n<p>Macpherson also recommended they continue striving to make the drag-and-drop, visual-preview layout builder UI accessible at the same time. He referenced emerging <a href=\"https://inclusivedesignprinciples.org/#offer-choice\" rel=\"noopener\" target=\"_blank\">principles of Inclusive Design</a> for application developers, which recommend &#8220;offering choice,&#8221; giving users different ways of completing tasks, especially those that may be complex or non-standard.</p>\n<p>&#8220;Eventually, I&#8217;d like to see BOTH layout builder UIs being accessible, and offer genuinely useful choices for everyone,&#8221; Macpherson said. &#8220;But let&#8217;s take the time to do it well, instead of hastily bolting on fixes for one type of interaction method at a time, in a rush to ship a single layout builder UI. &#8221;</p>\n<p>Macpherson&#8217;s proposal is still under consideration, but it provides an interesting perspective on similar challenges WordPress contributors are facing with Gutenberg. Modernizing UIs to make the site building experience more accessible for those who don&#8217;t know how to code has to be balanced with considerations for those who may not be able see very well or use a mouse. Drupal contributors are exploring providing an alternative accessible UI as a solution to empower more users to take advantage of the new Layout Builder.</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, 29 Nov 2018 04:31: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: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:106:\"WPTavern: WPWeekly Episode 339 – Interview With Pippin Williamson, Founder of Sandhills Development, LLC\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86062&preview=true&preview_id=86062\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/wpweekly-episode-339-interview-with-pippin-williamson-founder-of-sandhills-development-llc\";s: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:1455:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"http://pippin.com/\">Pippin Williamson</a>, founder of <a href=\"http://sandhillsdev.com/\">Sandhills Development</a>, LLC. Pippin describes what he&#8217;s learned going through the process of opening a brick and mortar business.</p>\n<p>He also describes the emotional process of firing employees, making business decisions as a team, and how he wants to create a life-long company where employees stick around for decades.</p>\n<p>Near the end of the episode, Pippin expresses his opinions on Gutenberg the product and Gutenberg the process. You might be surprised by what he has to say.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://pippinsplugins.com/2017-in-review/\">2017 in review</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 5th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #339:</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, 28 Nov 2018 19:54:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:65:\"WPTavern: SyntaxHighlighter Evolved Plugin Adds Gutenberg Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=85968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/syntaxhighlighter-evolved-plugin-adds-gutenberg-support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4743:\"<p>WordPress 5.0 will ship with a code block in the new editor but it doesn&#8217;t include syntax highlighting. The code is currently wrapped in pre tags. During the earlier days of Gutenberg&#8217;s development, the HTML block had syntax highlighting but the team was not satisfied with its implementation and decided to pull it until they could <a href=\"https://github.com/WordPress/gutenberg/issues/10423\" rel=\"noopener\" target=\"_blank\">provide more consistent behavior across blocks</a>. </p>\n<p>For now, users will have to depend on a plugin to get syntax highlighting. <a href=\"https://wordpress.org/plugins/syntaxhighlighter/\" rel=\"noopener\" target=\"_blank\">SyntaxHighlighter Evolved</a> is one of the first plugins of its kind to add Gutenberg support via its own block. </p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/11/Screen-Shot-2018-11-28-at-10.08.36-AM.png?ssl=1\"><img /></a></p>\n<p>The plugin currently adds syntax highlighting to source code on the frontend only. Nevertheless, it&#8217;s a great use case for Gutenberg, as the plugin previously required you to remember how to structure the shortcode in a particular way in order to use it. </p>\n<p>Ian Dunn <a href=\"https://github.com/Viper007Bond/syntaxhighlighter/pull/78\" rel=\"noopener\" target=\"_blank\">contributed the Gutenberg support</a> for SyntaxHighlighter Evolved. In the PR for this feature, Dunn said he wanted to give existing users a way to continue using the plugin after WordPress 5.0 is released:</p>\n<blockquote><p>\nThe syntax highlighting only works on the front end, due to the nature of SyntaxHighlighter. Details are documented in the edit() function&#8217;s docblock.</p>\n<p>Because of that, this isn&#8217;t the ideal syntax highlighting block[1], but this provides a way for existing users to continue using the plugin without having to migrate old posts to a different plugin.</p>\n<p>Another limitation is that this PR only supports the language attribute of the shortcode, because I ran out of time/energy. This lays the groundwork, though, so the rest of them can easily be added in a future iteration.</p></blockquote>\n<p>SyntaxHighlighter Evolved is active on more than 40,000 installations and is also used on WordPress.com, so this update to the plugin should help those who rely on it to be able to use the new Gutenberg editor without having to switch back to the old editor when they need to add code to their content.</p>\n<p>There is still some debate about the best way to provide syntax highlighting in Gutenberg. Another implementation called <a href=\"https://github.com/mkaz/code-syntax-block\" rel=\"noopener\" target=\"_blank\">Code Syntax Block</a> by Marcus Kazmierczak, extends Gutenberg&#8217;s existing code block to offer syntax highlighting, instead of creating a new block for it. It also uses <a href=\"http://prismjs.com/\" rel=\"noopener\" target=\"_blank\">PrismJS syntax highlighter</a>.</p>\n<p><a href=\"https://github.com/cedaro/shiny-code\" rel=\"noopener\" target=\"_blank\">Shiny Code</a> is another approach that adds a new block for code and provides a preview inside the Gutenberg editor. </p>\n<p><a href=\"https://cloudup.com/cAjq1AKskL8\"><img src=\"https://i1.wp.com/cldup.com/2MLWW0oXx3.gif?resize=627%2C308&ssl=1\" alt=\"Shiny code\" width=\"627\" height=\"308\" /></a></p>\n<p>In the official plugin directory, the <a href=\"https://wordpress.org/plugins/enlighter/\" rel=\"noopener\" target=\"_blank\">Enlighter</a> plugin, which has 10,000 active installs, offers experimental support for Gutenberg that is being <a href=\"https://github.com/EnlighterJS/Plugin.Gutenberg\" rel=\"noopener\" target=\"_blank\">actively developed on GitHub</a>. <a href=\"https://wordpress.org/plugins/kebo-code/\" rel=\"noopener\" target=\"_blank\">Kebo Code</a>, a relatively new plugin with fewer than 10 installs, was created to offer syntax highlighting for Gutenberg and currently supports 121 languages and two themes. Users will have to switch to the frontend to see the code rendered with the theme selected. </p>\n<p>SyntaxHighlighter Evolved does not yet provide a way for highlighting existing code blocks or transforming a core code block to use the plugin&#8217;s syntax highlighting. Converting all existing code blocks might take some time for those who have been using it extensively. Alex Mills, the plugin&#8217;s author, said he is considering all of these issues and welcomes patches on the <a href=\"https://github.com/Viper007Bond/syntaxhighlighter\" rel=\"noopener\" target=\"_blank\">GitHub repository for the plugin</a>. Plugin authors may change their approaches over time, depending on where Gutenberg goes in the future, so users will want to evaluate available plugins periodically to see which ones suit their 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:\"Wed, 28 Nov 2018 17:10:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: WordCamp US 2018 Livestream Tickets Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=85848\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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-2018-livestream-tickets-now-available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1360:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/nashville.jpg?ssl=1\"><img /></a>photo credit: Viv Lynch <a href=\"http://www.flickr.com/photos/68894626@N00/30070498810\">Westward</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc-nd/2.0/\">(license)</a></p>\n<p>The countdown has started for <a href=\"https://2018.us.wordcamp.org\" rel=\"noopener\" target=\"_blank\">WordCamp US 2018</a> in Nashville. The event is just 10 days away. If you cannot attend, watching via the livestream is the next best option. Anyone can join the livestream for free, but viewers will need to <a href=\"https://2018.us.wordcamp.org/tickets/\" rel=\"noopener\" target=\"_blank\">sign up for a ticket</a> on the event website. </p>\n<p>This year&#8217;s <a href=\"https://2018.us.wordcamp.org/schedule/\" rel=\"noopener\" target=\"_blank\">schedule</a> includes sessions in two tracks: Banjo and Guitar. Matt Mullenweg&#8217;s annual <a href=\"https://2018.us.wordcamp.org/2018/11/27/state-of-the-word-2018/\" rel=\"noopener\" target=\"_blank\">State of the Word</a> address is scheduled for Saturday, December 8, at 4:00 p.m. CST. Livestream ticket holders can tune in to any of the sessions and may also want to participate in the conversations on Twitter using the <a href=\"https://twitter.com/hashtag/WCUS?src=hash\" rel=\"noopener\" target=\"_blank\">#WCUS hashtag</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Nov 2018 22:09: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"BuddyPress: BuddyPress 4.0.0 “Pequod”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=282222\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://buddypress.org/2018/11/buddypress-4-0-0-pequod/\";s: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:5882:\"<p>BuddyPress 4.0.0 &#8220;Pequod&#8221; is now available!</p>\n<h3>A focus on data privacy and control</h3>\n<p>BuddyPress boasts a proud history of letting community members and managers control their data, independent of third-party, commercial entities. In this spirit, as well as the spirit of recent regulations like the EU&#8217;s General Data Protection Regulation (GDPR), Expanding on some of the tools introduced by WordPress in version 4.9.8, BuddyPress 4.0 introduces a suite of tools allowing users and site admins to manage member data and privacy.</p>\n<div id=\"attachment_282223\" class=\"wp-caption alignnone\"><a href=\"https://buddypress.org/wp-content/uploads/1/2018/11/data-export.png\"><img class=\"size-full wp-image-282223\" src=\"https://buddypress.org/wp-content/uploads/1/2018/11/data-export.png\" alt=\"Screenshot of \" /></a><p class=\"wp-caption-text\">Giving your users greater control over their data</p></div>\n<p>The new &#8220;Export Data&#8221; Settings panel lets users request an export of all BuddyPress data they&#8217;ve created. BuddyPress integrates seamlessly with the data export functionality introduced in WordPress 4.9.8, and BP data is included in exports that are initiated either from the Export Data panel or via WP&#8217;s Tools &gt; Export Personal Data interface.</p>\n<p>BuddyPress 4.0 also integrates with WordPress 4.9.8&#8217;s Privacy Policy tools. When you create or update your Privacy Policy, BP will suggest text that&#8217;s specifically tailored to the kinds of social data generated on a BuddyPress site. And will prompt registering users to agree to the Privacy Policy, if your theme supports it.</p>\n<p>We&#8217;ve also done a complete review of BuddyPress&#8217;s cookie behavior, and dramatically reduced the number of cookies needed to browse a BP-powered site &#8211; especially for logged-out users. We&#8217;re confident that this change will help site owners comply with local privacy regulations.</p>\n<h3>Nouveau and other improvements</h3>\n<p>The BuddyPress team has been hard at work improving the Nouveau template pack introduced in BuddyPress 4.0. We&#8217;ve improved accessibility, extensibility, and responsiveness on mobile devices.</p>\n<p>BuddyPress 4.0 also contains a number of internal improvements that improve compatibility with various version of PHP, fix formatting and content issues when sending emails, and address some backward-compatibility concerns.</p>\n<h3>Mille grazie</h3>\n<p>As usual, this BuddyPress release is only possible thanks to the contributions of the community. Special thanks to the following folks who contributed code and testing to the release: <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha (xknown)</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta (ankit-k-gupta)</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone B Gorges (boonebgorges)</a>, <a href=\"https://profiles.wordpress.org/sbrajesh/\">Brajesh Singh (sbrajesh)</a>, <a href=\"https://profiles.wordpress.org/brianbws/\">Brian Cruikshank (brianbws)</a>, <a href=\"https://profiles.wordpress.org/needle/\">Christian Wach (needle)</a>, <a href=\"https://profiles.wordpress.org/cyberwani/\">Dinesh Kesarwani (cyberwani)</a>, <a href=\"https://profiles.wordpress.org/dipesh.kakadipa/\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/drywallbmb/\">drywallbmb</a>, <a href=\"https://profiles.wordpress.org/dullowl/\">dullowl</a>, <a href=\"https://profiles.wordpress.org/eric01/\">Eric (eric01)</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder (garrett-eclipse)</a>, <a href=\"https://profiles.wordpress.org/harshall/\">Harshal Limaye (harshall)</a>, <a href=\"https://profiles.wordpress.org/hnla/\">Hugo (hnla)</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby (johnjamesjacoby)</a>, <a href=\"https://profiles.wordpress.org/marcella1981/\">Marcella (marcella1981)</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet (imath)</a>, <a href=\"https://profiles.wordpress.org/mercime/\">mercime</a>, <a href=\"https://profiles.wordpress.org/MorgunovVit/\">MorgunovVit</a>, <a href=\"https://profiles.wordpress.org/n0barcode/\">n0barcode</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya/\">paresh.radadiya (pareshradadiya)</a>, <a href=\"https://profiles.wordpress.org/DJPaul/\">Paul Gibbs (DJPaul)</a>, <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar (pooja1210)</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves (espellcaste)</a>, <a href=\"https://profiles.wordpress.org/RT77/\">RT77</a>, <a href=\"https://profiles.wordpress.org/cyclic/\">Ryan Williams (cyclic)</a>, <a href=\"https://profiles.wordpress.org/elhardoum/\">Samuel Elh (elhardoum)</a>, <a href=\"https://profiles.wordpress.org/shubh14/\">shubh14</a>, <a href=\"https://profiles.wordpress.org/spdustin/\">spdustin</a>, <a href=\"https://profiles.wordpress.org/suvikki/\">suvikki</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar (netweb)</a>, <a href=\"https://profiles.wordpress.org/thejimmy/\">thejimmy</a>, <a href=\"https://profiles.wordpress.org/vapvarun/\">vapvarun</a>, <a href=\"https://profiles.wordpress.org/wbcomdesigns/\">Wbcom Designs (wbcomdesigns)</a>, <a href=\"https://profiles.wordpress.org/yahil/\">Yahil Madakiya (yahil)</a></p>\n<p>This version of BuddyPress is code-named &#8220;Pequod&#8221; after the famous <a href=\"https://pequodspizza.com/\">Pequod&#8217;s Pizza</a> in Chicago, where the crust really is caramelized, and the dish really is deep. Buon gusto!</p>\n<h3>Keep on truckin&#8217;</h3>\n<p>Questions or comments about the release? Visit the <a href=\"https://buddypress.org/support/\">buddypress.org support forums</a>, or open a ticket on <a href=\"https://buddypress.trac.wordpress.org\">our bugtracker</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Nov 2018 19:57: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:12:\"Boone Gorges\";s: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:90:\"WPTavern: Jetpack 6.8 Adds Gutenberg Blocks for Payment Buttons, Forms, Maps, and Markdown\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=85576\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/jetpack-6-8-adds-gutenberg-blocks-for-payment-buttons-forms-maps-and-markdown\";s: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:3613:\"<p><a href=\"https://jetpack.com/2018/11/27/jetpack-6-8-building-jetpack-for-the-new-wordpress-editor/\" rel=\"noopener\" target=\"_blank\">Jetpack 6.8</a> was released today, introducing the plugin&#8217;s first set of blocks for Gutenberg. The necessary infrastructure was added in version 6.6 and all existing features that touch the editor are in the process of being ported over to blocks. This release includes blocks for payment buttons, forms, maps, and markdown.</p>\n<p>The Contact Form module is one of the plugin&#8217;s most popular features and one that users often enable on new websites. This block removes a major barrier to implementing a form on WordPress sites &#8211; new users will have no need to try to understand the concept of shortcodes in order to collect feedback on their sites. Creating a new form essentially works like adding blocks inside of blocks:</p>\n<p><a href=\"https://cloudup.com/cNVMNF2ZGd8\"><img src=\"https://i2.wp.com/cldup.com/LZmv0Xj_Iq.gif?resize=627%2C568&ssl=1\" alt=\"Form\" width=\"627\" height=\"568\" /></a></p>\n<p>The <a href=\"https://jetpack.com/support/jetpack-blocks/simple-payments-block/\" rel=\"noopener\" target=\"_blank\">Simple Payments button block</a> is slightly different in that it already has the form fields set up so the user can fill them out for whatever they are selling. This block is available for users on the Jetpack Premium or Professional plan.</p>\n<p>The <a href=\"https://jetpack.com/support/jetpack-blocks/map-block/\" rel=\"noopener\" target=\"_blank\">map block</a> makes it easy for users to embed an interactive map within the content of posts or pages. After <a href=\"https://www.mapbox.com/signup/\" rel=\"noopener\" target=\"_blank\">signing up for a free Mapbox Access Token</a>, users can select a location directly inside the new editor and preview it live with different map theme options and a color-picker for the marker.</p>\n<p><a href=\"https://cloudup.com/cUFrJDi-tqy\"><img src=\"https://i2.wp.com/cldup.com/NL4okuVN0s.gif?resize=627%2C338&ssl=1\" alt=\"Map\" width=\"627\" height=\"338\" /></a></p>\n<p>Some of those who have tested Gutenberg may not be a fan of its current writing interface, but after you see some of these blocks in action for things like maps and payment buttons, it&#8217;s clear that this is a superior interface for these content types. Modernizing the interface for content that previously relied on shortcodes is where Gutenberg truly excels right now.</p>\n<p>Development on the Gutenberg plugin has been so active that it makes sense that the Jetpack team waited until WordPress 5.0 RC to release any blocks. Jetpack users can take advantage of them now if they have Gutenberg installed, or wait until 5.0 is officially released. The Jetpack team is also working on a number of other blocks for existing features. You can <a href=\"https://github.com/Automattic/jetpack/labels/Gutenberg\" rel=\"noopener\" target=\"_blank\">follow the progress</a> on upcoming blocks at Jetpack&#8217;s GitHub repository and log issues with blocks that have already been released.</p>\n<p>Jetpack 6.8 also restores the Publicize module to the pre-publish sidebar, so users can continue automatically sharing posts after WordPress 5.0 is released. This version ensures compatibility with Jetpack&#8217;s widgets for those using the Twenty Nineteen theme. Check out the <a href=\"https://wp.me/p1moTy-cee\" rel=\"noopener\" target=\"_blank\">release post</a> to see more blocks in action and the <a href=\"https://wordpress.org/plugins/jetpack/#developers\" rel=\"noopener\" target=\"_blank\">changelog</a> for a full list of all the enhancements and bug fixes.</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, 27 Nov 2018 17:52:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:79:\"WPTavern: WordPress 5.0 RC 1 Released, Gutenberg Passes 1 Million Installations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=85923\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-5-0-rc-1-released-gutenberg-passes-1-million-installations\";s: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:5988:\"<p><a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\" rel=\"noopener\" target=\"_blank\">WordPress 5.0 RC 1</a> was released over the weekend after a string of five betas that began in late October. According to the <a href=\"https://gutenstats.blog/\" rel=\"noopener\" target=\"_blank\">Gutenberg stats page</a>, more than 1.1 million sites have the Gutenberg plugin installed and users have written more than 980,000 posts using the new editor. These numbers are conservative estimates, as the numbers only include WordPress.com sites and sites running Jetpack.</p>\n<p>Most of the changes included in the RC were outlined in the <a href=\"https://make.wordpress.org/core/2018/11/20/whats-new-in-gutenberg-20th-november/\" rel=\"noopener\" target=\"_blank\">Gutenberg 4.5</a> release post last week. An update published today shows 12 PRs waiting for review in the 4.6 milestone, 14 open issues in the 5.0.0 milestone, and more than 150 issues open in 5.0.1 and subsequent releases. <a href=\"https://make.wordpress.org/core/tag/5.0+dev-notes/\" rel=\"noopener\" target=\"_blank\">Dev notes for 5.0</a> have been published and tagged on the make.wordpress.org/core blog.</p>\n<p>WordPress 5.0&#8217;s official release date was set for November 27 but after further evaluation the date has been <a href=\"https://make.wordpress.org/core/2018/11/21/5-0-gutenberg-status-update-nov-21/\" rel=\"noopener\" target=\"_blank\">pushed back</a>. Last week WordPress core core committers, contributors, and former release leads made strong, last-minute <a href=\"https://wptavern.com/wordpress-5-0-rc-expected-on-u-s-thanksgiving-holiday-despite-last-minute-pushback-from-contributors\" rel=\"noopener\" target=\"_blank\">appeals</a> to hold off RC and defer the release to January. Development is moving forward desipite the pushback. A new release date has not yet been announced. The current plan is to monitor feedback on the RC and the team will make a decision from there.</p>\n<h3>Mullenweg Responds to Critics on Twitter, Reiterates Vision for Gutenberg</h3>\n<p>Over the weekend, Matt Mullenweg responded to critics on Twitter who voiced concerns about his leadership and communication throughout WordPress 5.0&#8217;s development. One particular post titled &#8220;<a href=\"https://cameronjonesweb.com.au/blog/lets-take-a-very-serious-look-at-gutenberg/\" rel=\"noopener\" target=\"_blank\">Let’s Take A Very Serious Look At Gutenberg</a>,&#8221; written by WordPress developer Cameron Jones, sparked conversation. In response to Cliff Seal, who urged Mullenweg to &#8220;re-cast the vision of WordPress in a way that accounts for the apparent urgency of this effort,&#8221; Mullenweg <a href=\"https://twitter.com/photomatt/status/1066397086206304256\" rel=\"noopener\" target=\"_blank\">responded</a>:</p>\n<blockquote><p>\nMany people who try to start publishing with WordPress fail; those who don&#8217;t struggle with shortcodes, embeds, widgets; those who can toggle to code view to do basic tasks in the editor, and for clients set up elaborate meta-field and CPT based schemes to avoid catastrophe.</p>\n<p>Gutenberg aims to solve these problems, improve the WP experience for all its users, and open up independent, open source, beautiful publishing on the web to a class of users that couldn&#8217;t publish with WordPress before.</p>\n<p>It may seem rushed to people unused to this pace of development and improvement in the WordPress world. However this has been a pace sustained for almost two years now, and we still look slow compared to some modern software. Speed of iteration is enabled by the new tech stack.</p>\n<p>It bothers me at a deep, moral level to hold back a user experience that will significantly upgrade the publishing ability and success of tens or hundreds of millions of users. It hasn&#8217;t been ready (for core) yet, so it&#8217;s not released. I hope it will be soon! </p>\n<p>This may all look very quaint in retrospect, when we look back three or five years from now. It&#8217;s a tough transition but the foundation Gutenberg enables will be worth it.</p></blockquote>\n<p>Matt Medeiros, another vocal critic of Mullenweg&#8217;s leadership on WordPress 5.0, <a href=\"https://www.youtube.com/watch?v=W1Rhr9Y54ck\" rel=\"noopener\" target=\"_blank\">recorded a video</a>, expounding on his concerns about transparency and the rushed pace. He summarized the frustrations that inspired him to make the video.</p>\n<p>&#8220;While I agree WordPress needs innovation to reach new users that desperately require freedom over their content, especially within the context of today&#8217;s social networks, I don&#8217;t agree and am also discouraged by Matt not sharing the product vision with the community,&#8221; Medeiros said. &#8220;It&#8217;s polarizing to build software under the guise of openness with a mission to democratize publishing, but not give the same people volunteering to &#8216;Five for the Future&#8217; a voice for the future. </p>\n<p>&#8220;Lack of communication, not Gutenberg or the team developing it, has lead to the current divide and we&#8217;re left asking &#8212; why? WordPress has always had a branding problem and this continues to muddy the lines between open source project and WordPress the &#8216;product.\'&#8221;</p>\n<p>The 5.0 release is heading into the home stretch but Gutenberg has several phases ahead with many more years of development. Mullenweg&#8217;s responses on Twitter over the weekend indicate he is interested in keeping the lines of communication open throughout the process. He said he plans to dedicate more time to responding directly to feedback.</p>\n<p>&#8220;One thing will try: I’m going to open up some listening office hours in the next week so people can talk directly,&#8221; Mullenweg <a href=\"https://twitter.com/photomatt/status/1065981341496471555\" rel=\"noopener\" target=\"_blank\">said</a>. &#8220;I want everyone to be and feel heard, as they have been since the beginning of this process in 2016.&#8221;</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, 27 Nov 2018 01:54:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Dev Blog: WordPress 5.0 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6257\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2018/11/wordpress-5-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5355:\"<p>The first release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p>This is an important milestone, as we near the release of WordPress 5.0.&nbsp;<strong>The WordPress 5.0 release date has shifted from the 27th to give more time for the RC to be fully tested</strong>. A final release date will be announced soon, based on feedback on the RC. This is a big release and needs <em>your</em> help—if you haven’t tried 5.0 yet, now is the time!&nbsp;</p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC1.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<h2>What&#8217;s in WordPress 5.0?</h2>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?resize=632%2C316&ssl=1\" alt=\"Screenshot of the new block editor interface.\" class=\"wp-image-6271\" />The new block-based post editor.\n\n\n\n<p>WordPress 5.0 introduces the <a href=\"https://wordpress.org/gutenberg/\">new block-based post editor</a>. This is the first step toward an exciting new future with a streamlined editing experience across your site. You’ll have more flexibility with how content is displayed, whether you are building your first site, revamping your blog, or write code for a living.</p>\n\n\n\n<p>The block editor is&nbsp;<a href=\"https://gutenstats.blog/\">used on over a million sites</a>, we think it&#8217;s ready to be used on all WordPress sites. We do understand that some sites might need some extra time, though. If that&#8217;s you, please install the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor plugin</a>, you&#8217;ll continue to use the classic post editor when you upgrade to WordPress 5.0.</p>\n\n\n\n<p>Twenty Nineteen is WordPress&#8217; new default theme, it&nbsp;features custom styles for the blocks available by default in 5.0.&nbsp;Twenty Nineteen is designed to work for a wide variety of use cases. Whether you’re running a photo blog, launching a new business, or supporting a non-profit, Twenty Nineteen is flexible enough to fit your needs.</p>\n\n\n\n<p>The block editor is a big change, but that&#8217;s not all. We&#8217;ve made some smaller changes as well,&nbsp; including:</p>\n\n\n\n<ul><li>All of the previous default themes, from Twenty Ten through to Twenty Seventeen, have been updated to support the block editor.</li><li>You can improve the accessibility of the content you write, now that <a href=\"https://core.trac.wordpress.org/ticket/30421\">simple ARIA labels</a>&nbsp;can be saved in posts and pages.</li><li>WordPress 5.0 officially supports the upcoming PHP 7.3 release: if you&#8217;re using an older version, we encourage you to <a href=\"https://wordpress.org/support/upgrade-php/\">upgrade PHP</a>&nbsp;on your site.</li><li>Developers can now add translatable strings directly to your JavaScript code, using the new <a href=\"https://make.wordpress.org/core/2018/11/09/new-javascript-i18n-support-in-wordpress/\">JavaScript language packs</a>.</li></ul>\n\n\n\n<p>You can read more about the fixes and changes since  Beta 5 <a href=\"https://make.wordpress.org/core/2018/11/20/whats-new-in-gutenberg-20th-november/\">in the last update post</a>.</p>\n\n\n\n<p>For more details about what’s new in version 5.0, check out the&nbsp;<a href=\"https://wordpress.org/news/2018/10/wordpress-5-0-beta-1/\">Beta 1</a>,&nbsp;<a href=\"https://wordpress.org/news/2018/10/wordpress-5-0-beta-2/\">Beta 2</a>,&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-4/\">Beta 4</a> and&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-5/\">Beta 5</a>&nbsp;blog posts.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.0 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.0. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release. An in-depth field guide to developer-focused changes is coming soon on the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development blog</a>. In the meantime, you can review the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5.0+dev-notes/\">developer notes for 5.0</a>.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p><strong><em>If you think you’ve found a bug</em></strong><em>, you can post to the&nbsp;</em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em>Alpha/Beta area</em></a><em>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;</em><a href=\"https://make.wordpress.org/core/reports/\"><em>file one on WordPress Trac</em></a><em>, where you can also find&nbsp;</em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<p class=\"has-background has-medium-font-size\"><em>Ruedan los bloques<br />Contando vivos cuentos<br />Que se despiertan</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Nov 2018 09:46: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:14:\"Matias Ventura\";s: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:112:\"WPTavern: WordPress 5.0 RC Expected on U.S. Thanksgiving Holiday, despite Last-Minute Pushback from Contributors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=85784\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/wordpress-5-0-rc-expected-on-u-s-thanksgiving-holiday-despite-last-minute-pushback-from-contributors\";s: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:9944:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/ship-bottle.jpg?ssl=1\"><img /></a>photo credit: KaylaKandzorra <a href=\"http://www.flickr.com/photos/48077358@N02/4952091078\">i miss you grampa.</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a></p>\n<p>WordPress core committers, core contributors, and former release leads made strong, last-minute <a href=\"https://make.wordpress.org/core/2018/11/19/5-0-gutenberg-status-update-nov-19/\" rel=\"noopener noreferrer\" target=\"_blank\">appeals</a> on Monday for the 5.0 release to be deferred to January. RC was expected Monday but those urging its delay cited the large number of open issues on the milestone and the fact that many confirmed bugs are being aggressively punted to followup releases.  </p>\n<p>&#8220;I do not see how we can seriously ship a release candidate today,&#8221; Joe McGill said. &#8220;In doing so, we are either saying we’re ok with shipping a major version of WordPress with this many known issues, or that the term &#8216;release candidate&#8217; does not actually have meaning. I would suggest that we revise the schedule to push back RC for at least 4 weeks so we have a reasonable deadline and, in the mean time, continue releasing betas.&#8221;</p>\n<p>Nearly every contributor involved in the discussion was enthusiastic about Gutenberg but urged release lead Matt Mullenweg to allow for four weeks of RC and code freeze to give the community to prepare. </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">&#8211; Building site with Gutenberg<br />&#8211; Find bug, go to GH to file an issue <br />&#8211; Find the ticket already exists.<br />&#8211; Bug has already been punted to \"5.0.x Follow Ups\"<br />&#8211; Find all the other *known* bugs planned for 5.0 launch</p>\n<p>:(<a href=\"https://t.co/EiXR8tgHnz\">https://t.co/EiXR8tgHnz</a></p>\n<p>&mdash; Bill Erickson (@BillErickson) <a href=\"https://twitter.com/BillErickson/status/1064619368045252608?ref_src=twsrc%5Etfw\">November 19, 2018</a></p></blockquote>\n<p></p>\n<p>Contributors said they don&#8217;t understand the rush to get 5.0. Several noted that Gutenberg seems to be measured by a different rod of success than previous releases where headline features were held to a different standard in regards to shipping known bugs. </p>\n<p>&#8220;We’re fast approaching a million (Jetpack tracked) posts made through the editor, with the non-tracked number probably a multiple of that,&#8221; Mullenweg said in response to contributors&#8217; concerns. &#8220;There’s been an explosion of plugins building on top of Gutenberg and some things like the work ACF and Block Lab have done that seem really transformational for WordPress. For those whom the editor is not a good fit they can opt in at any point, including post-5.0, to Classic and continue using WP exactly as they had before until at least 2022 and likely beyond.&#8221; </p>\n<p>Mullenweg identified a few questions he sees as &#8220;good measures of success for Gutenberg:&#8221;</p>\n<ul>\n<li>Are people, when given the choice, choosing to use it over the old editor?</li>\n<li>Can they create things they weren’t able to create before?</li>\n<li>Are new-to-WP users more successful (active, happy with what they create) than pre-Gutenberg?</li>\n<li>Are interesting things being built on top of it?</li>\n</ul>\n<p>Interesting plugins are being built on top of Gutenberg but they are breaking with every release of the plugin. Gutenberg 4.5 was released yesterday, matching the first 5.0 RC feature set. It includes a large number of changes and bug fixes that have gone relatively untested by the community at large. Most notably, 4.5 introduced a regression that caused a <a href=\"https://github.com/WordPress/gutenberg/issues/12148\" rel=\"noopener noreferrer\" target=\"_blank\">white screen of death when trying to load custom post types</a> in the classic editor, forcing a 4.5.1 release earlier in the day. Every release introduces changes that cause plugins to break, requiring immediate updates from plugin developers.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Our new <a href=\"https://twitter.com/hashtag/gutenberg?src=hash&ref_src=twsrc%5Etfw\">#gutenberg</a> development cycle<br />1) New version of GB is released<br />2) We cross our fingers<br />3) Find out GB breaks stuff<br />4) Fix GB issues<br />5) Issue release<br />6) New version of GB released<br />repeat process <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f613.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>&mdash; pootlepress (@pootlepress) <a href=\"https://twitter.com/pootlepress/status/1065146009964212225?ref_src=twsrc%5Etfw\">November 21, 2018</a></p></blockquote>\n<p></p>\n<p>Gutenberg technical lead Matias Ventura posted an <a href=\"https://make.wordpress.org/core/2018/11/21/5-0-gutenberg-status-update-nov-21/\" rel=\"noopener noreferrer\" target=\"_blank\">update</a> today, confirming that WordPress 5.0 will miss the planned November 27 release date but did not offer a secondary date.</p>\n<p>&#8220;The date for 5.0 release is under consideration, given it’s not plausible for it to be the on 27th,&#8221; Ventura said. </p>\n<h3>WordPress 5.0 Will Ship &#8220;When It&#8217;s Ready,&#8221; Contributors are Focusing on Getting Release Candidate out ASAP</h3>\n<p>When the second set of November dates for release were missed, many assumed WordPress 5.0 would fall back to the secondary dates in January, but that has not yet been confirmed. The previous <a href=\"https://make.wordpress.org/core/2018/10/03/proposed-wordpress-5-0-scope-and-schedule/\" rel=\"noopener noreferrer\" target=\"_blank\">scope and schedule Gary Pendergast outlined</a> said the November dates could slip by up to eight days if necessary and that if additional time was required, they would aim for the January dates:</p>\n<p>Secondary RC 1: January 8, 2019</p>\n<p>Secondary Release: January 22, 2019 </p>\n<p>During the regularly scheduled core developers&#8217; chat today, the discussion regarding WordPress 5.0&#8217;s release date became heated, as contributors continued to push for a January release. Pendergast suggested that December might have a viable date, to which Yoast CEO Joost de Valk responded, &#8220;I’m going to raise hell if we do December.&#8221;</p>\n<p>WordPress plugin developers and agencies are trying to plan for upcoming holidays and want to have staff available when the release lands. Many of those who attended the meeting were hoping to receive confirmation on the release being pushed back to January.</p>\n<p>&#8220;Please also consider the plugin shops that are rearranging their priorities to have blocks ready for 5.0, only to have had to fix them several times in the last few weeks,&#8221; Kevin Hoffman said. &#8220;The success of 5.0 depends just as much on third-party support as it does core.&#8221; </p>\n<p>&#8220;There&#8217;s agreement on that from all sides, that the amount of code churn and missed earlier deadlines means that the 27th is untenable,&#8221; Mullenweg said. &#8220;RC is still possible soon, but please don&#8217;t assume that implies a final release date until we see how that goes and pick one. I hope that it shows that we are willing to change decisions based on new information, it&#8217;s not about being &#8216;right&#8217; or sticking to previous plans blindly.&#8221;</p>\n<p>This statement indicates Mullenweg may be considering dates that were not included in the original schedule, as he later said,&#8221;If y&#8217;all can take the data without freaking out about what it means for the release date, there have been 8 major releases in December, it&#8217;s actually been 34% of our last 23 major releases.&#8221;</p>\n<p>Several contributors agreed that getting an RC out ASAP would finally force a longer code freeze for Gutenberg&#8217;s UI, API, documentation, and features. This would give the community more time to prepare. </p>\n<p>&#8220;As part of the development team for almost two years now, I’d love for us to draw the RC line soon for the sake of everyone’s fatigue,&#8221; Matias Ventura said. &#8220;And think it’s ready to be drawn. I am concerned with letting us do &#8216;one more little thing&#8217; and pushing the stability line further down, in an almost endless process.&#8221; </p>\n<p>Contributors are now wrapping up the last few tickets and the plan is to get the release candidate out tomorrow during the U.S. Thanksgiving holiday. Given WordPress&#8217; global contributor base, releasing on the holiday shouldn&#8217;t be an issue. The team is also still investigating the possibility of bundling the Classic Editor plugin with updates for existing WordPress sites.</p>\n<p>&#8220;Our focus right now is on a great RC,&#8221; Mullenweg said. Throughout Gutenberg&#8217;s development Mullenweg has said WordPress 5.0 would ship &#8220;when it&#8217;s ready.&#8221; No release date will be announced until the team has had time to evaluate the release candidate.</p>\n<p>&#8220;It is true that the primary thing is whether it&#8217;s ready, and it&#8217;s not currently ready,&#8221; Mullenweg said.</p>\n<p>In 1928, John A. Shedd published a little book called “Salt from My Attic.&#8221; It included a saying that U.S. Navy Rear Admiral Grace Hopper said was influential in her life: &#8220;A ship in harbor is safe, but that is not what ships are built for.&#8221; </p>\n<p>Shipping a major overhaul of WordPress&#8217; editor has brought a fair share of uncertainty and frustration to contributors and the community that depends on the software. After mission-critical issues have been resolved, it seems to become a cycle of fixing and breaking things that could continue indefinitely. Although the holiday timing isn&#8217;t ideal, if Gutenberg stalls much longer it&#8217;s going to be burning daylight. At some point the ship just needs to push away from the port and see how it sails.</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, 22 Nov 2018 03:17: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 30 Dec 2018 20:30:18 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sun, 30 Dec 2018 20:15:28 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(6551,'_transient_timeout_kirki_googlefonts_contents_7100d77d2932fd3a1b65d6afd00b853c','1546156139','no'),(6552,'_transient_kirki_googlefonts_contents_7100d77d2932fd3a1b65d6afd00b853c','@font-face {\n  font-family: \'Lato\';\n  font-style: normal;\n  font-weight: 400;\n  src: local(\'Lato Regular\'), local(\'Lato-Regular\'), url(https://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjx4wWw.ttf) format(\'truetype\');\n}\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  src: local(\'Open Sans Regular\'), local(\'OpenSans-Regular\'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0e.ttf) format(\'truetype\');\n}\n@font-face {\n  font-family: \'Tinos\';\n  font-style: normal;\n  font-weight: 400;\n  src: local(\'Tinos Regular\'), local(\'Tinos-Regular\'), url(https://fonts.gstatic.com/s/tinos/v11/buE4poGnedXvwjX7fmE.ttf) format(\'truetype\');\n}\n','no'),(6553,'_transient_timeout_kirki_googlefonts_fallback_to_link','1546156139','no'),(6554,'_transient_kirki_googlefonts_fallback_to_link','no','no'),(818,'boldgrid_inspirations_previous_version','1.6.0','no'),(607,'wpforms_shareasale_redirect','https://wpforms.com/lite-upgrade','yes'),(1610,'can_compress_scripts','1','no'),(5479,'boldgrid_has_built_site','no','yes'),(5483,'boldgrid_easy_seo_version','1.6.0','no'),(5484,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7400,'theme_mods_twentyfifteen','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1546203887;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:4:{i:0;s:8:\"search-3\";i:1;s:14:\"recent-posts-3\";i:2;s:10:\"archives-3\";i:3;s:12:\"categories-3\";}s:23:\"boldgrid-editor-sidebar\";a:0:{}}}}','yes'),(7652,'_transient_timeout_feed_mod_052500b17b6986c854ef52a9542abd78','1546245012','no'),(7653,'_transient_feed_mod_052500b17b6986c854ef52a9542abd78','1546201812','no'),(7795,'boldgrid_reseller','a:10:{s:19:\"reseller_identifier\";s:3:\"IMH\";s:14:\"reseller_title\";s:16:\"InMotion Hosting\";s:17:\"reseller_logo_url\";s:78:\"./wp-content/plugins/boldgrid-inspirations/assets/images/wordpressinmotion.png\";s:20:\"reseller_website_url\";s:31:\"http://www.inmotionhosting.com/\";s:20:\"reseller_support_url\";s:52:\"http://www.inmotionhosting.com/support/edu/boldgrid/\";s:16:\"reseller_amp_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:14:\"reseller_email\";s:27:\"support@inmotionhosting.com\";s:14:\"reseller_phone\";s:14:\"1-888-321-4678\";s:16:\"reseller_css_url\";s:71:\"/wp-content/plugins/boldgrid-inspirations/assets/css/boldgrid-login.css\";s:17:\"reseller_coin_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";}','no'),(7406,'boldgrid_asset','a:3:{s:6:\"plugin\";a:0:{}s:5:\"theme\";a:0:{}s:5:\"image\";a:0:{}}','yes'),(7399,'boldgrid_page_trashed_from_menu_after_page_trashed','1','yes'),(5441,'boldgrid_theme_revision_Linx','20181127161823-412','yes'),(5442,'allowedthemes','a:1:{s:13:\"boldgrid-linx\";b:1;}','no'),(5443,'theme_mods_boldgrid-linx','a:2:{s:20:\"force_scss_recompile\";a:2:{s:6:\"active\";b:1;s:7:\"staging\";b:1;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1546083970;s:4:\"data\";a:1:{s:9:\"sidebar-1\";a:4:{i:0;s:8:\"search-3\";i:1;s:14:\"recent-posts-3\";i:2;s:10:\"archives-3\";i:3;s:12:\"categories-3\";}}}}','yes'),(7820,'theme_mods_Newspaper','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}}','yes'),(1513,'_site_transient_timeout_browser_e0b7751b8040fb7c8de50ddf95d10645','1546392329','no'),(1514,'_site_transient_browser_e0b7751b8040fb7c8de50ddf95d10645','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"64.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(7823,'widget_td_block_1_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7824,'widget_td_block_2_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7825,'widget_td_block_3_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7826,'widget_td_block_4_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7827,'widget_td_block_5_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7828,'widget_td_block_6_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7829,'widget_td_block_7_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7830,'widget_td_block_8_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7831,'widget_td_block_9_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7832,'widget_td_block_10_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7833,'widget_td_block_11_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7834,'widget_td_block_12_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7835,'widget_td_block_13_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7836,'widget_td_block_14_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7837,'widget_td_block_15_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7838,'widget_td_block_16_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7839,'widget_td_block_17_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7840,'widget_td_block_18_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7841,'widget_td_block_19_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7842,'widget_td_block_20_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7843,'widget_td_block_21_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7844,'widget_td_block_22_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7845,'widget_td_block_23_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7846,'widget_td_block_24_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7847,'widget_td_block_25_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7848,'widget_td_block_ad_box_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7849,'widget_td_block_authors_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7850,'widget_td_block_author_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7851,'widget_td_block_popular_categories_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7852,'widget_td_block_slide_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7853,'widget_td_block_text_with_title_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7854,'widget_td_block_weather_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7855,'widget_td_block_exchange_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7856,'widget_td_block_instagram_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7857,'widget_td_block_pinterest_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7858,'widget_td_block_image_box_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7682,'_transient_timeout_feed_mod_acfb94f16410e8193f15ed3900b38226','1546245018','no'),(7683,'_transient_feed_mod_acfb94f16410e8193f15ed3900b38226','1546201818','no'),(7684,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1546245018','no'),(7685,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\'>WordPress 5.0.2 Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://www.isitwp.com/best-wordpress-comment-plugins/\'>18 Best WordPress Comments Plugins to Boost Engagement</a></li><li><a class=\'rsswidget\' href=\'https://www.wpbeginner.com/showcase/7-best-live-chat-support-software-for-your-wordpress-site/\'>12 Best Live Chat Software for Small Business Compared (2019)</a></li><li><a class=\'rsswidget\' href=\'https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/\'>How to Securely Send WordPress Emails Using Gmail SMTP with WP Mail SMTP</a></li><li><a class=\'rsswidget\' href=\'https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/\'>How to Get More Guest Post Submissions on Your WordPress Blog</a></li><li><a class=\'rsswidget\' href=\'https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/\'>Wufoo Alternative – WPForms vs Wufoo (Which One is Better?)</a></li><li><a class=\'rsswidget\' href=\'https://www.wpbeginner.com/plugins/how-to-schedule-content-updates-in-wordpress/\'>How to Automatically Schedule Content Updates in WordPress</a></li></ul></div>','no'),(7815,'_site_transient_boldgrid_plugins_filtered','a:6:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:11:{s:4:\"Name\";s:15:\"BoldGrid Backup\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.7.1\";s:11:\"Description\";s:81:\"BoldGrid Backup provides WordPress backup and restoration with update protection.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:15:\"BoldGrid Backup\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:11:{s:4:\"Name\";s:23:\"BoldGrid Backup Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.0.3\";s:11:\"Description\";s:49:\"Premium extension for the BoldGrid Backup plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:23:\"BoldGrid Backup Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";a:11:{s:4:\"Name\";s:17:\"BoldGrid Easy SEO\";s:9:\"PluginURI\";s:38:\"https://www.boldgrid.com/boldgrid-seo/\";s:7:\"Version\";s:5:\"1.6.0\";s:11:\"Description\";s:82:\"Easily manage your website\'s search engine optimization with Easy SEO by BoldGrid!\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:5:\"bgseo\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:17:\"BoldGrid Easy SEO\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:31:\"boldgrid-gallery/wc-gallery.php\";a:11:{s:4:\"Name\";s:16:\"BoldGrid Gallery\";s:9:\"PluginURI\";s:50:\"https://www.boldgrid.com/wordpress-gallery-plugin/\";s:7:\"Version\";s:3:\"1.5\";s:11:\"Description\";s:72:\"Extend WordPress galleries to display masonry gallery and slider gallery\";s:6:\"Author\";s:31:\"BoldGrid.com <wpb@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:16:\"boldgrid-gallery\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:16:\"BoldGrid Gallery\";s:10:\"AuthorName\";s:31:\"BoldGrid.com <wpb@boldgrid.com>\";}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:11:{s:4:\"Name\";s:21:\"BoldGrid Inspirations\";s:9:\"PluginURI\";s:47:\"https://www.boldgrid.com/boldgrid-inspirations/\";s:7:\"Version\";s:5:\"1.6.4\";s:11:\"Description\";s:177:\"Find inspiration, customize, and launch! BoldGrid Inspirations includes FREE WordPress themes and is the easiest way to launch a new WordPress site complete with custom content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:21:\"boldgrid-inspirations\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:21:\"BoldGrid Inspirations\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:11:{s:4:\"Name\";s:21:\"Post and Page Builder\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-editor/\";s:7:\"Version\";s:5:\"1.9.2\";s:11:\"Description\";s:175:\"Customized drag and drop editing for posts and pages. The Post and Page Builder adds functionality to the existing TinyMCE Editor to give you easier control over your content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-editor\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:21:\"Post and Page Builder\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}}','no'),(7676,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1546245018','no'),(7677,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1546201818','no'),(7678,'_site_transient_timeout_community-events-bb21ca88eb721a8207c5f557c3782bc2','1546245018','no'),(7679,'_site_transient_community-events-bb21ca88eb721a8207c5f557c3782bc2','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"45.234.103.0\";}s:6:\"events\";a:0:{}}','no'),(7680,'_transient_timeout_feed_acfb94f16410e8193f15ed3900b38226','1546245018','no'),(7681,'_transient_feed_acfb94f16410e8193f15ed3900b38226','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:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"WPForms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"https://wpforms.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Drag & Drop WordPress Form Builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 30 Dec 2018 11:39:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.9.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wpforms.com/wp-content/uploads/2016/02/cropped-sullie-favicon-32x32.png\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"WPForms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"https://wpforms.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"How to Securely Send WordPress Emails Using Gmail SMTP with WP Mail SMTP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 20:14: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:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s: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:4:\"smtp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"form notification\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:13:\"notifications\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=35577\";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:611:\"<p>Looking for a secure SMTP plugin that helps you receive email notifications from your WordPress contact forms? With WP Mail SMTP, you can fix delivery issues by authenticating emails through your Gmail or G Suite account &#8212; all while keeping your login credentials safe. In this post, we’ll show you how to set up WP [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/\">How to Securely Send WordPress Emails Using Gmail SMTP with WP Mail SMTP</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Shahzad Saeed\";s: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:20222:\"<p>Looking for a secure SMTP plugin that helps you receive email notifications from your WordPress contact forms? With WP Mail SMTP, you can fix delivery issues by authenticating emails through your Gmail or G Suite account &#8212; all while keeping your login credentials safe. </p>\n<p>In this post, we’ll show you how to set up WP Mail SMTP for sending WordPress emails with your Gmail or G Suite email address.</p>\n<h3>Why You’re Not Receiving Notifications</h3>\n<p>By default, WordPress uses the <a href=\"http://www.wpbeginner.com/glossary/php/\" target=\"_blank\">PHP</a> mail function to send emails generated by WordPress or any contact plugin like <a href=\"http://wpforms.com/\">WPForms</a>.  The most common reason for not getting emails is that your WordPress hosting server is not configured to use PHP mail function.</p>\n<p>In addition to this, anti-spam efforts by email providers can impact your emails as well. As part of their filtering process, many email providers will check whether your email originates from the same domain noted in the From Email. For example, if your email claims to be sent from your Gmail address but is actually sent from your website&#8217;s server (rather than Gmail&#8217;s server), your email may be sent to spam or not be delivered at all.</p>\n<p>You can fix this by using SMTP instead of the PHP mail function. SMTP (Simple Mail Transfer Protocol) is the industry standard for sending emails reliably.</p>\n<h3>Why Use the WP Mail SMTP Plugin?</h3>\n<p>The main benefit of using the WP Mail SMTP plugin is that it lets you send WordPress emails securely using your Gmail or G Suite account without requiring to enable less secure apps in your account.</p>\n<p>In addition, unlike many other SMTP options, you won’t need to enter your Gmail username and password in your WordPress dashboard where other site users can see them. By using this method, you&#8217;ll help to <a href=\"http://www.wpbeginner.com/wordpress-security/\" target=\"_blank\" title=\"Ultimate Guide to WordPress Security\">keep your WordPress site secure</a>.</p>\n<p>Let’s take a look at how to set up WP Mail SMTP for sending WordPress emails.</p>\n<h3>Step 1: Install the WP Mail SMTP Plugin</h3>\n<p>The first thing you need to do is to install and activate the <a href=\"https://wordpress.org/plugins/wp-mail-smtp/\" target=\"_blank\" rel=\"nofollow\">WP Mail SMTP</a> plugin. For step-by-step instructions, you can check out <a href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\">WPBeginner&#8217;s guide on how to install a WordPress plugin</a>.</p>\n<p>After installing and activating WP Mail SMTP, go to <strong>Settings » WP Mail SMTP</strong> to open the plugin settings page. </p>\n<p>At the top of this page, you&#8217;ll see the <strong>From Email</strong> and <strong>From Name</strong>. You can ignore these settings, because Google will automatically force these values to match the email account used in the next step.</p>\n<p>To start the setup process, you&#8217;ll need to scroll to the <strong>Mailer</strong> field and select the <strong>Google</strong> option.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2018/12/Select-Gmail-mailer.png\" alt=\"Select Gmail mailer\" width=\"562\" height=\"100\" class=\"aligncenter size-full wp-image-339300\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/Select-Gmail-mailer.png 562w, https://wpforms.com/wp-content/uploads/2018/12/Select-Gmail-mailer-300x53.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You can skip the <strong>Return Path</strong> checkbox, as Google does not allow this setting to be altered.</p>\n<p>Next, you should see a new Gmail section appear. Here, you&#8217;ll see fields for <strong>Client Secret</strong> and <strong>Client ID</strong>.</p>\n<p>To get the information for these fields, you&#8217;ll need to create a web application through your Google account. This doesn&#8217;t require any coding, and we&#8217;ll show you exactly what to do.</p>\n<h3>Step 2: Create a Web Application</h3>\n<p>To create an application, you&#8217;ll first need to <a href=\"https://console.developers.google.com/flows/enableapi?apiid=gmail&#038;pli=1\" target=\"_blank\" rel=\"nofollow\">sign into your Gmail account and access Gmail&#8217;s application registration</a>. Clicking that link should open this Google page in a new tab or window, and you&#8217;ll want to keep your site settings open (we&#8217;ll return to those later).</p>\n<p>Once you&#8217;ve followed that link and logged into your Gmail account, you should see a form named &#8220;Register your application for Gmail API in Google API Console&#8221;. </p>\n<p>In the dropdown labeled <strong>Select a project where your application will be registered</strong>, leave the default option of <strong>Create a project</strong>. Then, go ahead and click the <strong>Continue</strong> button.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Create-a-project-for-Gmail-app-registration.png\" alt=\"Create a project for Gmail app registration\" width=\"463\" height=\"259\" class=\"aligncenter size-full wp-image-117667\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Create-a-project-for-Gmail-app-registration.png 463w, https://wpforms.com/wp-content/uploads/2017/12/Create-a-project-for-Gmail-app-registration-300x168.png 300w\" sizes=\"(max-width: 463px) 100vw, 463px\" /></p>\n<p>Next, you should see a screen that says &#8220;The API is enabled&#8221;. To proceed to the setup page, click the <strong>Go to credentials</strong> button.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Gmail-API-is-enabled.png\" alt=\"Gmail API is enabled\" width=\"365\" height=\"127\" class=\"aligncenter size-full wp-image-117669\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Gmail-API-is-enabled.png 365w, https://wpforms.com/wp-content/uploads/2017/12/Gmail-API-is-enabled-300x104.png 300w\" sizes=\"(max-width: 365px) 100vw, 365px\" /></p>\n<p>In the next page, you’ll be prompted to determine the credentials you need. Here are the fields on this page and the options you&#8217;ll need to select:</p>\n<ul>\n<li><strong>Which API are you using?</strong> Gmail API</li>\n<li><strong>Where will you be calling the API from?</strong> Web server (e.g. node.js, Tomcat)</li>\n<li><strong>What data will you be accessing?</strong> User data</li>\n</ul>\n<p>Once you&#8217;ve made these selections, click the <strong>What credentials do I need?</strong> button to go to the next step.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Add-credentials-to-Gmail-app-project.png\" alt=\"Add credentials to Gmail app project\" width=\"423\" height=\"441\" class=\"aligncenter size-full wp-image-117678\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Add-credentials-to-Gmail-app-project.png 423w, https://wpforms.com/wp-content/uploads/2017/12/Add-credentials-to-Gmail-app-project-288x300.png 288w\" sizes=\"(max-width: 423px) 100vw, 423px\" /></p>\n<p>For this step, you&#8217;ll be creating an OAuth client ID. OAuth, or Open Authorization, is what will provide permission for your website to use your Gmail account to authenticate emails.</p>\n<p>For the <strong>Name</strong> field, enter anything you like or leave the default name. This is only for reference within your Google account.</p>\n<p>For the <strong>Authorized JavaScript origins</strong>, you&#8217;ll need to enter your site&#8217;s URL.</p>\n<p>Last, we need to fill out the <strong>Authorized redirect URIs</strong> field. To get the URI for your site, you&#8217;ll need to go back to the tab or window with your WordPress site. Still on the <strong>Settings &raquo; WP Mail SMTP</strong> page, you&#8217;ll need to look under the Gmail section for the field labeled <strong>Authorized redirect URI</strong>.</p>\n<p>The value in this field should be your site&#8217;s URL followed by some extra details. You&#8217;ll need to copy this value, which is easily done by clicking the button with the copy icon. </p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Use-button-to-copy-authorized-redirect-URI-from-WP-Mail-SMTP-settings.png\" alt=\"Use button to copy authorized redirect URI from WP Mail SMTP settings\" width=\"826\" height=\"168\" class=\"aligncenter size-full wp-image-118143\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Use-button-to-copy-authorized-redirect-URI-from-WP-Mail-SMTP-settings.png 826w, https://wpforms.com/wp-content/uploads/2017/12/Use-button-to-copy-authorized-redirect-URI-from-WP-Mail-SMTP-settings-300x61.png 300w, https://wpforms.com/wp-content/uploads/2017/12/Use-button-to-copy-authorized-redirect-URI-from-WP-Mail-SMTP-settings-768x156.png 768w\" sizes=\"(max-width: 826px) 100vw, 826px\" /></p>\n<p>After copying the URI, return to the Google APIs page and paste it into the field under <strong>Authorized redirect URIs</strong>.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Create-a-Google-OAuth-client-ID.png\" alt=\"Create a Google OAuth client ID\" width=\"460\" height=\"555\" class=\"aligncenter size-full wp-image-117752\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Create-a-Google-OAuth-client-ID.png 460w, https://wpforms.com/wp-content/uploads/2017/12/Create-a-Google-OAuth-client-ID-249x300.png 249w\" sizes=\"(max-width: 460px) 100vw, 460px\" /></p>\n<p>After that, you can click the <strong>Create client ID</strong> button.</p>\n<p>For the last step in the app creation process, you&#8217;ll need to set up the consent screen. This screen will never be seen by your users since you&#8217;re only granting permission for your own site to use the Gmail account you own.</p>\n<p>You&#8217;ll just need to check your email address and then enter a <strong>Product name shown to users</strong> (such as the title of your website). When you&#8217;ve completed these fields, click <strong>Continue.</strong></p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/03/add-credentials-1.jpg\" alt=\"oauth client id\" width=\"395\" height=\"417\" class=\"alignnone size-full wp-image-36620\" srcset=\"https://wpforms.com/wp-content/uploads/2017/03/add-credentials-1.jpg 395w, https://wpforms.com/wp-content/uploads/2017/03/add-credentials-1-284x300.jpg 284w\" sizes=\"(max-width: 395px) 100vw, 395px\" /></p>\n<p>You’ve now successfully created a Gmail web application!</p>\n<p>Now we need to see the full details. On the last screen, click <strong>I’ll do this later</strong> to go to the Credentials page.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Last-page-in-Gmail-app-setup-process.png\" alt=\"Last page in Gmail app setup process\" width=\"551\" height=\"384\" class=\"aligncenter size-full wp-image-118078\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Last-page-in-Gmail-app-setup-process.png 551w, https://wpforms.com/wp-content/uploads/2017/12/Last-page-in-Gmail-app-setup-process-300x209.png 300w\" sizes=\"(max-width: 551px) 100vw, 551px\" /></p>\n<h3 id=\"step-3\">Step 3: Grant Permissions and Send Test Email</h3>\n<p>On the Credentials page, you can now see the details of the web application you just created. To view <strong>Client ID</strong> and <strong>Client Secret</strong>, click the edit icon.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Click-the-edit-icon-on-the-Credentials-page.png\" alt=\"Click the edit icon on the Credentials page\" width=\"806\" height=\"323\" class=\"aligncenter size-full wp-image-118083\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Click-the-edit-icon-on-the-Credentials-page.png 806w, https://wpforms.com/wp-content/uploads/2017/12/Click-the-edit-icon-on-the-Credentials-page-300x120.png 300w, https://wpforms.com/wp-content/uploads/2017/12/Click-the-edit-icon-on-the-Credentials-page-768x308.png 768w\" sizes=\"(max-width: 806px) 100vw, 806px\" /></p>\n<p>This will open all of the details for your app. On this page, you&#8217;ll need to copy the <strong>Client ID</strong> and <strong>Client secret</strong> values.</p>\n<p>Each of these will need to be copied into your WP Mail SMTP settings back in your WordPress admin.</p>\n<div class=\"alert alert-warning\"><strong>Note:</strong> Be very careful not to copy any extra text or spaces with your Client ID or Client Secret, as this will result in an error in the next step.</div>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Copy-in-Client-ID-and-secret-to-WP-Mail-SMTP-settings.png\" alt=\"Copy in Client ID and secret to WP Mail SMTP settings\" width=\"620\" height=\"243\" class=\"aligncenter size-full wp-image-118086\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Copy-in-Client-ID-and-secret-to-WP-Mail-SMTP-settings.png 620w, https://wpforms.com/wp-content/uploads/2017/12/Copy-in-Client-ID-and-secret-to-WP-Mail-SMTP-settings-300x118.png 300w\" sizes=\"(max-width: 620px) 100vw, 620px\" /></p>\n<p>After saving these settings, the page will refresh. Before Google allows this information to be used to connect to your account, however, you must grant permission. </p>\n<p>To do this, scroll to the bottom of this page and click the button labeled <strong>Allow plugin to send emails using your Google account</strong>.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Authorize-plugin-to-send-emails-with-Gmail.png\" alt=\"Authorize plugin to send emails with Gmail\" width=\"669\" height=\"254\" class=\"aligncenter size-full wp-image-118100\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Authorize-plugin-to-send-emails-with-Gmail.png 669w, https://wpforms.com/wp-content/uploads/2017/12/Authorize-plugin-to-send-emails-with-Gmail-300x114.png 300w\" sizes=\"(max-width: 669px) 100vw, 669px\" /></p>\n<p>This will open a login screen for Google. Go ahead and log into the account you&#8217;re setting this SMTP up with. Then, you&#8217;ll see a screen asking for permission for this site to send email on your behalf. </p>\n<p>When you&#8217;re ready, click the <strong>Allow</strong> button to proceed.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Grant-permission-for-site-to-send-email.png\" alt=\"Grant permission for site to send email\" width=\"449\" height=\"480\" class=\"aligncenter size-full wp-image-118106\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Grant-permission-for-site-to-send-email.png 449w, https://wpforms.com/wp-content/uploads/2017/12/Grant-permission-for-site-to-send-email-281x300.png 281w\" sizes=\"(max-width: 449px) 100vw, 449px\" /></p>\n<p>Next, you&#8217;ll be returned to your WP Mail SMTP settings and a success message will be displayed. Now that the connection is complete, you&#8217;re ready to send a test email under the <strong>Email Test</strong> tab.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Gmail-connection-success-with-WP-Mail-SMTP.png\" alt=\"Gmail connection success with WP Mail SMTP\" width=\"560\" height=\"149\" class=\"aligncenter size-full wp-image-118111\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Gmail-connection-success-with-WP-Mail-SMTP.png 560w, https://wpforms.com/wp-content/uploads/2017/12/Gmail-connection-success-with-WP-Mail-SMTP-300x80.png 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" /></p>\n<p>Once the Test Email tab is open, you&#8217;ll need to enter a valid email address and click the <strong>Send Email</strong> button. Be sure to use an email address you have access to so you can confirm the email is delivered.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Send-a-test-email-through-WP-Mail-SMTP.png\" alt=\"Send a test email through WP Mail SMTP\" width=\"430\" height=\"360\" class=\"aligncenter size-full wp-image-118145\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Send-a-test-email-through-WP-Mail-SMTP.png 430w, https://wpforms.com/wp-content/uploads/2017/12/Send-a-test-email-through-WP-Mail-SMTP-300x251.png 300w\" sizes=\"(max-width: 430px) 100vw, 430px\" /></p>\n<p>When the test message has been sent, you&#8217;ll see a success message at the top of this tab.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/WP-Mail-SMTP-test-email-was-sent-successfully.png\" alt=\"WP Mail SMTP test email was sent successfully\" width=\"292\" height=\"274\" class=\"aligncenter size-full wp-image-118113\" /></p>\n<p>You should also soon receive a test email at the email address you entered.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Test-email-for-WP-Mail-SMTP-Gmail.png\" alt=\"Test email for WP Mail SMTP Gmail\" width=\"515\" height=\"100\" class=\"aligncenter size-full wp-image-118114\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Test-email-for-WP-Mail-SMTP-Gmail.png 515w, https://wpforms.com/wp-content/uploads/2017/12/Test-email-for-WP-Mail-SMTP-Gmail-300x58.png 300w\" sizes=\"(max-width: 515px) 100vw, 515px\" /></p>\n<h3>Frequently Asked Questions</h3>\n<h6>What If the Test Email Doesn&#8217;t Send Successfully?</h6>\n<p>If the SMTP test email isn&#8217;t able to send, a debug log will appear with additional details. Here are some of the possible error messages and how to resolve them.</p>\n<p><strong>401. That’s an error.<br />\nError: invalid_client</strong><br />\nThis error appears when the Client ID isn&#8217;t able to be read properly. To fix, try copying the Client ID in again and check that there&#8217;s no whitespace or extra text.</p>\n<p><strong>400. That’s an error.<br />\nError: invalid_request<br />\nMissing required parameter: client_id</strong><br />\nThis error will display when the Client ID field is empty or not able to be read properly. To fix, copy in the Client ID again and be careful to not add extra text or whitespace.</p>\n<p><strong>cURL error 60: SSL certificate problem</strong><br />\nThis message means that the server is missing a certificate that’s required for SMTP to work. To fix, you&#8217;ll need to contact your site&#8217;s hosting provider to ask them to install this certificate (most likely the cacert.pem certificate, though it&#8217;s best to ask your host to check).</p>\n<p><strong>“code”: 401,<br />\n“message”: “Login Required”</strong><br />\nIf you see this in the debug message, permission still needs to be granted to your use Google account. For instructions on how to fix this, please see <a href=\"#step-3\" title=\"Step 3: Grant Permissions and Send Test Email\">Step 3</a> of this tutorial. Also, be sure to check that the From Email in your SMTP settings matches the email used to setup the Google app.</p>\n<h6>What If I Want to Switch to A Different Email Later?</h6>\n<p>If you&#8217;d like to change to a different Gmail/G Suite email address, you&#8217;ll need to repeat all tutorial steps above. This includes generating a new Client ID and Client Secret under this other email account.</p>\n<p>When you get to the Authorization step (under Step 3), save your settings and then click the <strong>Remove Connection</strong> button. This will remove the authorization for your original email account and allow you to repeat the authorization steps with the new email.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2018/06/Remove-connection-in-WP-Mail-SMTP.png\" alt=\"Remove connection in WP Mail SMTP\" width=\"703\" height=\"124\" class=\"aligncenter size-full wp-image-223847\" srcset=\"https://wpforms.com/wp-content/uploads/2018/06/Remove-connection-in-WP-Mail-SMTP.png 703w, https://wpforms.com/wp-content/uploads/2018/06/Remove-connection-in-WP-Mail-SMTP-300x53.png 300w\" sizes=\"(max-width: 703px) 100vw, 703px\" /></p>\n<p>That’s it! You’ve successfully configured WP Mail SMTP&#8217;s Google mailer on your WordPress site.</p>\n<p>What are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com/\">WordPress forms plugin</a> today.</p>\n<p>If you like this article, then please follow us on <a href=\"http://facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow\">Facebook </a>and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow\">Twitter</a> for more free WordPress tutorials.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/\">How to Securely Send WordPress Emails Using Gmail SMTP with WP Mail SMTP</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"703\";s: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:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"How to Get More Guest Post Submissions on Your WordPress Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 13:00:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Marketing\";s: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:16:\"post submissions\";s: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:21:\"front end submissions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"guest blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=43930\";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:582:\"<p>Do you accept guest post submissions on your blog? Accepting guest posts is a great way to expand your network, build your brand, and save time so you can focus on other tasks to grow your business. In this article, we’ll show you how to get more guest post submissions on your WordPress blog. 1. [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/\">How to Get More Guest Post Submissions on Your WordPress Blog</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s: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:9982:\"<p>Do you accept guest post submissions on your blog? Accepting guest posts is a great way to expand your network, build your brand, and save time so you can focus on other tasks to grow your business.</p>\n<p>In this article, we’ll show you how to get more guest post submissions on your WordPress blog.</p>\n<h3>1. Publish a &#8220;Write for Us&#8221; Page</h3>\n<p>Looking for an easy way to invite guest authors to contribute to your blog? You’ll need to publish a &#8220;Write for Us&#8221; page on your site. Be sure to list it in the navigation menu so it easily grabs the attention of your visitors.</p>\n<p>If done right, this page will attract relevant guest writers to your blog and help you generate a constant flow of great content.</p>\n<p>Below are a few things you should keep in mind when creating the &#8220;Write for Us&#8221; page:</p>\n<ul>\n<li><strong>Get discovered</strong>: Guest authors who regularly contribute to various blogs often use Google to find guest posting opportunities. You&#8217;ll need to use <a title=\"Ultimate Guide to WordPress SEO\" href=\"http://www.wpbeginner.com/wordpress-seo/\" target=\"_blank\" rel=\"noopener\">SEO</a> to optimize the URL slug and the content of your &#8220;Write for Us&#8221; page to make sure that your page shows up in their searches.</li>\n<li><strong>Include detailed guest post guidelines</strong>: Tell your visitors what kind of articles you’re looking for. You may also want to include formatting and post submission guidelines on that page.</li>\n</ul>\n<h3>2. Review Guest Post Proposals</h3>\n<p>Reading and reviewing poor quality articles will consume a lot of time and defeats the purpose of accepting guest post submissions.</p>\n<p>Before reviewing a guest post, it&#8217;s always better to ask the author to send a proposal. This way, you can ensure that only high-quality articles are reviewed so you can save time.</p>\n<p>In the &#8220;Write for Us&#8221; page, you can <a title=\"How to Create a Simple Contact Form in WordPress\" href=\"https://wpforms.com/how-to-create-a-contact-form-in-wordpress/\">create a contact form</a> and encourage your visitors to submit a guest post proposal.</p>\n<p>You can ask for details like:</p>\n<ul>\n<li>Post headline</li>\n<li>A small description or outline about the post</li>\n<li>Author bio</li>\n<li>Links to previous published work</li>\n<li>The author’s website or portfolio</li>\n<li>Topics the author is interested in writing about for future guest posting</li>\n</ul>\n<p>If you like the proposal, you can invite the author to submit a guest post on your website.</p>\n<p><img class=\"alignnone size-full wp-image-44176\" src=\"https://wpforms.com/wp-content/uploads/2017/05/get-more-guest-post-submissions.jpg\" alt=\"Get more guest post submissions by requiring proposals first\" width=\"620\" height=\"300\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/get-more-guest-post-submissions.jpg 620w, https://wpforms.com/wp-content/uploads/2017/05/get-more-guest-post-submissions-300x145.jpg 300w\" sizes=\"(max-width: 620px) 100vw, 620px\" /></p>\n<h3>3. Create a Frontend Submission Form</h3>\n<p>Providing an author account to everyone who wants to write on your site could be a big mistake. You don’t want someone to have an account on your site so that they can write anything they want.</p>\n<p>On the other hand, not giving authors an account, and manually reviewing every post submission can be even more tedious.</p>\n<p>Luckily, there’s an easy way to automate the review process for guest post submissions.</p>\n<p>With WPForms’ <a title=\"Post Submissions Addon\" href=\"https://wpforms.com/addons/post-submissions-addon/\">post submission addon</a>, you can allow your website visitors to submit guest blog posts <strong>without having to log into the admin area</strong> of your site.</p>\n<p>All you need to do is to create a frontend submission form using our post submission addon. You can also collect all the necessary information that you need such as:</p>\n<ul>\n<li>Post Title</li>\n<li>Post Content</li>\n<li>Featured Image</li>\n<li>Custom Fields (aka Post Meta)</li>\n</ul>\n<p>When someone submits a guest post from your guest post submission form, it will be automatically added to your post editor and will be marked as pending.</p>\n<p>Then, all you need to do is to review the posts before they go live. This is especially easy if authors that have previously submitted guest posts on your website do so again. The quality of work is likely the same, so if you have published their work in the past, the review process becomes even simpler.</p>\n<p>For help with automating this process, read our guide on <a href=\"https://wpforms.com/how-to-allow-users-to-submit-blog-posts-on-your-wordpress-site/\">how to allow users to submit blog posts</a>.</p>\n<p>After creating your guest post submissions form, embed it on a page that is blocked from search engine robots.</p>\n<p>This way, you can stop search engines from crawling and indexing this page in search results. Doing this also ensures that only those visitors whose proposal is accepted can see this page.</p>\n<p>For help with this step, read this tutorial on <a href=\"http://www.wpbeginner.com/wp-tutorials/how-to-hide-a-wordpress-page-from-google/\" target=\"_blank\" rel=\"noopener\">how to hide a WordPress page from Google</a>.</p>\n<h3>4. Invite Guest Authors</h3>\n<p><img class=\"alignnone size-full wp-image-346467\" src=\"https://wpforms.com/wp-content/uploads/2018/12/guest-posts.jpg\" alt=\"guest posts\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/guest-posts.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/guest-posts-300x172.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Just because you accept guest posts for your website, doesn’t mean you’ll receive quality articles that add value to your blog.</p>\n<p>If you’re looking to get high-quality content for your blog, make sure to promote it heavily so it grabs the attention of the right audience. You can also invite potential guest authors who regularly contribute to various blogs in your niche.</p>\n<p>Below are a couple of takeaways that might help you:</p>\n<ul>\n<li>Browse through popular blogs in your niche and create a list of people who regularly contribute to those blogs. Let them know that you’ve started accepting guest posts on your blog and invite them to contribute.</li>\n<li>Create a guest posting contest to gather quality guest post submissions. You can reward one guest author every month and even use the <a href=\"https://wpforms.com/how-to-create-a-contest-entry-form-in-wordpress-step-by-step/\">contest entry form template</a> to help you get started. This will likely boost guest post submissions, especially among those trying to build a portfolio and gain exposure.</li>\n</ul>\n<h3>5. Include an Author Bio</h3>\n<p>There are many established websites that accept guest posts from people but don’t give credit to their guest writers for their work. And while this may work for them, if you’re trying to get more guest post submissions, offering a byline might be something you’ll need to do to attract more writers.</p>\n<p>People guest post on other people’s blogs to:</p>\n<ul>\n<li>Build a portfolio, especially when just starting out</li>\n<li>Expose their brand to a broader audience base</li>\n<li>Network with like-minded professionals and create partnership opportunities</li>\n</ul>\n<p>You don’t always have to let guest writers link to their websites within the blogs they submit to your website. But allowing them to have a short byline with links to their social media accounts or website is a nice gesture.</p>\n<p>And trust us, writers looking to get their name out there are going to write their best content for you if they know their name will be attached to it.</p>\n<h3>6. Take it One Step Further and Pay Your Writers</h3>\n<p>Running an online business is tough work, especially if you do it all by yourself. Unfortunately, because running a website can be so time-consuming, many website owners fail to keep up with publishing regular content on their website.</p>\n<p>This not only hurts your site’s SEO, but negatively affects the user experience too. After all, people come to your website because they feel you offer them something of value. Your blog is a huge source of value to all site visitors, whether they are a customer or not.</p>\n<p>If you find yourself not being able to keep up with a consistent publishing schedule, and have a rolodex of regular guest post writers that drive traffic to your site, encourage conversions, and help you rank well, consider paying them to continue writing for you.</p>\n<p>You can pay people per post they submit or even require their posts to exceed a specific traffic threshold. That way you know that the posts you’re paying for are not only adding value to your site visitors’ lives, but your life as well.</p>\n<p>And there you have it! You now know some of the best strategies for getting more blog post submissions on your WordPress website.</p>\n<p>Are you looking to accept sponsored posts on your WordPress website? Check out this guide on <a href=\"https://wpforms.com/how-to-require-users-to-pay-to-submit-a-post-in-wordpress/\">how to require users to pay to submit blog posts</a> on your website.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/\">How to Get More Guest Post Submissions on Your WordPress Blog</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"How to Create an Event Feedback Form 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wpforms.com/how-to-create-an-event-feedback-form-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wpforms.com/how-to-create-an-event-feedback-form-in-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Dec 2018 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s: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:17:\"customer feedback\";s: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:16:\"survey reporting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:19:\"event feedback form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wpforms.com/?p=345826\";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:575:\"<p>Are you looking for an easy way to find out how people feel about events you host? Whether you run an event planning business, host fundraisers for your nonprofit, or like to throw big birthday bashes for your closest friends, getting feedback about your events can help you make improvements for next time. In this [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-an-event-feedback-form-in-wordpress/\">How to Create an Event Feedback Form in WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s: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:17489:\"<p>Are you looking for an easy way to find out how people feel about events you host? Whether you run an event planning business, host fundraisers for your nonprofit, or like to throw big birthday bashes for your closest friends, getting feedback about your events can help you make improvements for next time.</p>\n<p>In this article, we’ll show you step by step how to create an event feedback form in WordPress so you can ask all your attendees what they liked and what they want to see change at the next event.</p>\n<h3>Why Create an Event Feedback Form?</h3>\n<p>No matter what type of events you host, it’s important to find out how attendees feel when they’re over so that you can do better next time. This is especially true if you run an event planning business and want to grow.</p>\n<p>Here are some of the benefits a good event feedback form offers:</p>\n<ul>\n<li>Determine whether expectations were met</li>\n<li>Find out what people thought went well, and what people felt went wrong</li>\n<li>Get suggestions that can make your next event more satisfying for attendees</li>\n<li>Find out if people would be willing to attend a similar event in the future, and if not, why</li>\n</ul>\n<p>You might think after hosting what you feel is a successful event that everyone that attended feels the same way. But the truth is, people aren’t always going to love your events.</p>\n<p>By placing an event feedback form on your website, you may find that there are simple ways to fix those negative opinions and make your next event better than ever.</p>\n<p>So, let’s take a look at how to create an event feedback form in WordPress.</p>\n<h3>Step 1: Create an Event Feedback Form</h3>\n<p>The first thing you’ll need to do is install and activate the <a href=\"https://wpforms.com/pricing/\">WPForms plugin</a>. For more details, see this step by step guide on <a title=\"Step by step guide on How to Install a WordPress Plugin\" href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\" rel=\"noopener\">how to install a plugin in WordPress</a>.</p>\n<p>Next, you’ll need to install and activate the <a href=\"https://wpforms.com/features/form-templates/\">Form Templates Pack addon</a>.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Addon</strong> and find the one labeled <strong>Form Templates Pack addon</strong>.</p>\n<p>Click <strong>Install Addon</strong> and then <strong>Activate</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-291194\" src=\"https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon.png\" alt=\"form templates pack addon\" width=\"562\" height=\"193\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon.png 562w, https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon-300x103.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Now you’ll need to create a new form.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Add New</strong>, and name your form. Then, scroll down to the section labeled <strong>Additional Templates</strong> and type “Event Feedback Form” into the search bar.</p>\n<p><img class=\"alignnone size-full wp-image-345828\" src=\"https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form-template.png\" alt=\"event feedback form template\" width=\"562\" height=\"273\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form-template.png 562w, https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form-template-300x146.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>When the pre-built event feedback form template loads, most of the work is already done for you. In fact, you’ll find the fields in the form asking the following questions:</p>\n<ul>\n<li>Please rate your overall experience at our event</li>\n<li>Would you return again next year?</li>\n<li>What could we have improved?</li>\n<li>Do you have any additional feedback?</li>\n</ul>\n<p><img class=\"alignnone size-full wp-image-345829\" src=\"https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form.png\" alt=\"event feedback form\" width=\"562\" height=\"455\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form.png 562w, https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form-300x243.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You can add additional fields to your form by dragging them from the left hand panel to the right hand panel.</p>\n<p>Then, click on the field to make any changes. You can also click on a form field and drag it to rearrange the order on your event feedback form.</p>\n<p>For example, you might add some of these form fields to your event feedback form:</p>\n<ul>\n<li><strong><a href=\"https://wpforms.com/beginners-guide-what-is-a-likert-scale-and-how-to-use-it/\">Likert Scale</a>:</strong> gauge people’s opinions, feelings, or attitudes about the event you hosted or the event planning business you run.</li>\n<li><strong><a href=\"https://wpforms.com/how-to-create-a-net-promoter-score-nps-survey-in-wordpress/\">Net Promoter Score</a>:</strong> if you run an event planning business or regularly host people’s parties, nonprofit fundraisers, or office galas, find out how loyal people are to your business.</li>\n<li><strong><a href=\"https://wpforms.com/how-to-add-user-ratings-to-your-wordpress-forms-step-by-step/\">Rating</a>:</strong> Give attendees the chance to rate your party planning skills and the event itself by adding a rating form field to your website.</li>\n</ul>\n<p>You can also use WPForms’ smart conditional logic to display additional form fields based on an attendee’s answer. For instance, if you receive a rating of 3 or lower, you might display another form field asking your site visitor to explain why.</p>\n<p>For help with setting up conditional logic on your WordPress forms, check out this article on <a href=\"https://wpforms.com/how-to-create-clutter-free-forms-with-smart-logic/\">creating clutter-free forms here</a>.</p>\n<p>When your form looks the way you want it to, click <strong>Save</strong>.</p>\n<h3>Step 2: Configure Your Event Feedback Form’s Settings</h3>\n<p>There are several settings to configure when creating an event feedback form in WordPress. We’ll start with the general settings first.</p>\n<p>To start, go to <strong>Settings</strong> » <strong>General</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-246850\" src=\"https://wpforms.com/wp-content/uploads/2018/08/WPForms-General-Settings.png\" alt=\"WPForms General Settings\" width=\"562\" height=\"443\" srcset=\"https://wpforms.com/wp-content/uploads/2018/08/WPForms-General-Settings.png 562w, https://wpforms.com/wp-content/uploads/2018/08/WPForms-General-Settings-300x236.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Here you can configure the following:</p>\n<ul>\n<li><strong>Form Name.</strong> Rename your form if you want to.</li>\n<li><strong>Form Description.</strong> Give your form a description.</li>\n<li><strong>Submit Button Text.</strong> Customize the submit button copy.</li>\n<li><strong>Spam Prevention.</strong> <a href=\"https://wpforms.com/how-to-build-a-spam-free-contact-form-without-captcha/\">Enable the anti-spam honeypot feature</a> to prevent fake feedback form submissions. This feature is automatically enabled on all WordPress forms. If you decide to use another form of spam prevention, you can unclick this option or use it in addition to things like Google’s invisible CAPTCHA.</li>\n<li><strong>GDPR Enhancements.</strong> You can disable the storing of entry information and user details, such as IP addresses and user agents, in an effort to <a href=\"https://wpforms.com/docs/how-to-create-gdpr-compliant-forms/\">comply with GDPR requirements</a>.</li>\n</ul>\n<p>Click <strong>Save</strong>.</p>\n<h3>Step 3: Configure Your Event Feedback Form’s Notifications</h3>\n<p>Notifications are a great way to send an email whenever a person submits a feedback form on your WordPress website.</p>\n<p><img class=\"alignnone size-full wp-image-246852\" src=\"https://wpforms.com/wp-content/uploads/2018/08/WPForms-Notifications-Settings.png\" alt=\"WPForms Notifications Settings\" width=\"562\" height=\"228\" srcset=\"https://wpforms.com/wp-content/uploads/2018/08/WPForms-Notifications-Settings.png 562w, https://wpforms.com/wp-content/uploads/2018/08/WPForms-Notifications-Settings-300x122.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>In fact, unless you disable this feature, whenever someone leaves feedback on your site, you’ll get a notification about it.</p>\n<p>If you <a href=\"https://wpforms.com/docs/how-to-use-smart-tags-in-wpforms/\">use smart tags</a>, you can also send a notification to your attendee when they submit feedback, letting them know you received their form and will be in contact shortly. This assures site visitors their forms have gone through properly.</p>\n<p>For help with this step, check out our documentation on <a href=\"https://wpforms.com/docs/setup-form-notification-wpforms/\">how to set up form notifications in WordPress</a>.</p>\n<p>And, if you want to send more than one email, read this article on <a href=\"https://wpforms.com/how-to-create-multiple-form-notifications-in-wordpress-forms/\">how to create multiple form notifications in WordPress</a>.</p>\n<p>Lastly, if you want to keep branding across your notification emails consistent, you can check out this guide on <a href=\"https://wpforms.com/docs/how-to-add-custom-header-image-in-your-wpforms-email-template/\">adding a custom header to your email template</a>.</p>\n<p><img class=\"alignnone size-full wp-image-211599\" src=\"https://wpforms.com/wp-content/uploads/2018/06/Custom-Email-Header.jpg\" alt=\"Custom Email Header\" width=\"562\" height=\"314\" srcset=\"https://wpforms.com/wp-content/uploads/2018/06/Custom-Email-Header.jpg 562w, https://wpforms.com/wp-content/uploads/2018/06/Custom-Email-Header-300x168.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<h3>Step 4: Configure Your Event Feedback Form’s Confirmations</h3>\n<p>Form confirmations are messages that display to site visitors once they submit an event feedback form on your website. They let people know that their feedback has been received and offer you the chance to let them know the next steps.</p>\n<p>WPForms has three confirmation types to choose from:</p>\n<ol>\n<li><strong>Message.</strong> This is the default confirmation type in WPForms. When a site visitor leaves feedback, a simple message confirmation will appear letting them know it was received. Look here for some <a href=\"https://wpforms.com/form-success-message-ideas-to-boost-customer-happiness/\">great success messages</a> to help boost customer happiness.</li>\n<li><strong>Show Page.</strong> This confirmation type will take site visitors to a specific web page on your site thanking them for filling out your feedback form. For help doing this, check out our tutorial on <a href=\"https://wpforms.com/how-to-redirect-users-after-wordpress-form-submit/\">redirecting customers to a thank you page</a>. In addition, be sure to check out our article on <a href=\"https://wpforms.com/4-thank-you-page-examples-to-boost-customer-loyalty/\">creating effective Thank You pages</a> for boosting customer loyalty.</li>\n<li><strong>Go to URL (Redirect).</strong> This option is used when you want to send site visitors to a different website.</li>\n</ol>\n<p>Let’s see how to set up a simple form confirmation in WPForms so you can customize the message site visitors will see when they leave feedback about an event you hosted.</p>\n<p>To start, click on the <strong>Confirmation</strong> tab in the Form Editor under <strong>Settings</strong>.</p>\n<p>Next, select the type of confirmation type you’d like to create. For this example, we’ll select <strong>Message</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-246854\" src=\"https://wpforms.com/wp-content/uploads/2018/08/Confirmation-Message.png\" alt=\"Confirmation Message\" width=\"562\" height=\"290\" srcset=\"https://wpforms.com/wp-content/uploads/2018/08/Confirmation-Message.png 562w, https://wpforms.com/wp-content/uploads/2018/08/Confirmation-Message-300x155.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Then, customize the confirmation message to your liking, and click <strong>Save</strong> when you’re done.</p>\n<p>For help with other confirmation types, see out documentation on <a href=\"https://wpforms.com/docs/setup-form-confirmation-wpforms/\">setting up form confirmations</a>.</p>\n<h3>Step 5: Enable Surveys and Polls Reporting</h3>\n<p>If you’ve added survey or poll questions to your event feedback form using form fields like the Likert Scale or Rating field, you’ll need to enable survey and/or poll reporting so you can see the results in one convenient location.</p>\n<p>You can collect and view survey results on the following form fields:</p>\n<ul>\n<li>Single Line Text</li>\n<li>Paragraph Text</li>\n<li>Dropdown</li>\n<li>Checkboxes</li>\n<li>Multiple Choice</li>\n<li>Rating</li>\n<li>Likert Scale</li>\n<li>Net promoter Score</li>\n</ul>\n<p>Survey results are only seen by you in the backend of your website.</p>\n<p>You can collect and view poll results on the following form fields:</p>\n<ul>\n<li>Dropdown</li>\n<li>Checkboxes</li>\n<li>Multiple Choice</li>\n</ul>\n<p>Poll results are seen by you on the backend of your website <strong>and by site visitors</strong> on the frontend of your website.</p>\n<p>To enable survey and/or poll reporting, go to <strong>Surveys and Polls</strong> tab in the Form Editor under <strong>Settings</strong>.</p>\n<p>Next, click <strong>Enable Survey Reporting</strong> and/or <strong>Enable Poll Results</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345832\" src=\"https://wpforms.com/wp-content/uploads/2018/12/surveys-and-polls-settings.png\" alt=\"surveys and polls settings\" width=\"562\" height=\"239\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/surveys-and-polls-settings.png 562w, https://wpforms.com/wp-content/uploads/2018/12/surveys-and-polls-settings-300x128.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Now, anytime someone submits feedback about an event you recently hosted using your event feedback form, you can access the results by clicking on <strong>Survey Results</strong> in the <strong>Forms Overview</strong> section.</p>\n<p><img class=\"alignnone size-full wp-image-345831\" src=\"https://wpforms.com/wp-content/uploads/2018/12/survey-results.png\" alt=\"survey results\" width=\"562\" height=\"230\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/survey-results.png 562w, https://wpforms.com/wp-content/uploads/2018/12/survey-results-300x123.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Here is an example of what your results might look like:</p>\n<p><img class=\"alignnone size-full wp-image-345830\" src=\"https://wpforms.com/wp-content/uploads/2018/12/example-survey-results.png\" alt=\"example survey results\" width=\"562\" height=\"373\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/example-survey-results.png 562w, https://wpforms.com/wp-content/uploads/2018/12/example-survey-results-300x199.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<h3>Step 6: Add Your Event Feedback Form to Your Website</h3>\n<p>After you’ve created your event feedback form, you need to add it to your WordPress website.</p>\n<p>WPForms allows you to add your forms to many locations on your website, including your blog posts, pages, and even <a href=\"https://wpforms.com/how-to-add-a-contact-form-in-wordpress-sidebar-widget/\">sidebar widgets</a>.</p>\n<p>Let’s take a look at the most common post/page embed option.</p>\n<p>To start, create a new post or page in WordPress and then click on the <strong>Add Form</strong> button.</p>\n<p>Next, select your contact form in the modal popup and click <strong>Add Form</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345827\" src=\"https://wpforms.com/wp-content/uploads/2018/12/add-event-feedback-form.png\" alt=\"add event feedback form\" width=\"562\" height=\"339\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/add-event-feedback-form.png 562w, https://wpforms.com/wp-content/uploads/2018/12/add-event-feedback-form-300x181.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Then, publish your post or page so your event feedback form will appear on your website.</p>\n<p>And there you have it! You now know how to create an event feedback form in WordPress.</p>\n<p>Do you want to increase the visibility of your event feedback form and encourage more form submissions? Try <a href=\"https://wpforms.com/how-to-create-a-popup-feedback-form-in-wordpress/\">creating a popup feedback form in WordPress</a> and find out how your attendees’ really feel about the events you plan or host.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-an-event-feedback-form-in-wordpress/\">How to Create an Event Feedback Form in WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wpforms.com/how-to-create-an-event-feedback-form-in-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"How to Create a Custom Support Ticket Form in WordPress With Zendesk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Dec 2018 13:00: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"zapier\";s: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:19:\"support ticket form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"zendesk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=43947\";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:623:\"<p>Are you looking to create a customized Zendesk support ticket form in WordPress? With WPForms, you can easily allow your users to request assistance on your site and ask for whatever information you need. In this article, we’ll look at how to create a Zendesk support ticket form in WordPress. Why Use WPForms With Zendesk? [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/\">How to Create a Custom Support Ticket Form in WordPress With Zendesk</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s: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:19384:\"<p>Are you looking to create a customized Zendesk support ticket form in WordPress? With WPForms, you can easily allow your users to request assistance on your site and ask for whatever information you need.</p>\n<p>In this article, we’ll look at how to create a Zendesk support ticket form in WordPress.</p>\n<h3>Why Use WPForms With Zendesk?</h3>\n<p>Zendesk is the most popular support ticket system that allows you to track, prioritize, and solve customer support tickets. You can manage all your customer information in one place, which makes communication with your customers easy and efficient.</p>\n<p>If you want to allow your customers to submit a Zendesk ticket on your site, you can embed a simple contact form using WPForms.</p>\n<p>But what if you want to customize the form to request more information, <a title=\"How to Add an Image to a WordPress Form to Increase Engagement\" href=\"https://wpforms.com/add-image-to-wordpress-form/\">add images to your form</a> or other custom HTML, or send <a title=\"How to Create Multiple Notifications in WordPress Forms\" href=\"https://wpforms.com/how-to-create-multiple-notifications-in-wordpress-forms/\">additional form notifications</a> when it&#8217;s submitted?</p>\n<p>With WPForms, you can easily create a custom support ticket form in WordPress and connect it with Zendesk. No need to learn any code!</p>\n<p>Let’s see how it works.</p>\n<h3>Step 1: Create a Custom Support Ticket Form</h3>\n<p>The first thing you’ll need to do is install and activate the <a href=\"https://wpforms.com/pricing/\">WPForms plugin</a>. For more details, see this step by step guide on <a title=\"Step by step guide on How to Install a WordPress Plugin\" href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\" rel=\"noopener\">how to install a plugin in WordPress</a>.</p>\n<p>Next, you’ll need to install and activate the <a href=\"https://wpforms.com/features/form-templates/\">Form Templates Pack addon</a> so you can create a support ticket form. Keep in mind, if you prefer to create a form from scratch, or use a different template, you can. The Support Ticket Form template is just an easy way to get started.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Addon</strong> and find the one labeled <strong>For Templates Pack</strong>.</p>\n<p>Click <strong>Install Addon</strong> and then <strong>Activate</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-291194\" src=\"https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon.png\" alt=\"form templates pack addon\" width=\"562\" height=\"193\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon.png 562w, https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon-300x103.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Now you’ll need to create a new form.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Add New</strong>, name your form, and choose the <strong>Support Ticket Form</strong> template.</p>\n<p><img class=\"alignnone size-full wp-image-345384\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-template.png\" alt=\"support ticket form template\" width=\"562\" height=\"271\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-template.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-template-300x145.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>WPForms will create a form for you. For our example, we’ll name our form Support Ticket Form.</p>\n<p><img class=\"alignnone size-full wp-image-345383\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form.png\" alt=\"support ticket form\" width=\"562\" height=\"504\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-300x269.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You’ll see your support ticket form has the following form fields:</p>\n<ul>\n<li>Name</li>\n<li>Email</li>\n<li>What can we help you with today? (Multiple Choice)</li>\n<li>Your website (Website / URL)</li>\n<li>Issues / Message (Paragraph Text)</li>\n</ul>\n<p>Of course, this is just to get you started and is geared towards those that provide computer support to customers. You can easily add or remove any form fields you want to customize the support form to meet your needs.</p>\n<p>To add additional fields to your form, drag them from the left hand panel to the right hand panel.</p>\n<p>Then, click on the field to make any changes. You can also click on a form field and drag it to rearrange the order.</p>\n<p>This is what our form looks like:</p>\n<p><img class=\"alignnone size-full wp-image-345385\" src=\"https://wpforms.com/wp-content/uploads/2017/05/final-support-ticket-form.png\" alt=\"final support ticket form\" width=\"562\" height=\"663\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/final-support-ticket-form.png 562w, https://wpforms.com/wp-content/uploads/2017/05/final-support-ticket-form-254x300.png 254w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>For more help with creating your form, check out this tutorial on <a href=\"https://wpforms.com/how-to-create-a-support-ticket-form-template-best-practices/\">how to create a support ticket form in WordPress</a>.</p>\n<p>After you create your form, you’ll need to install and activate the <a href=\"https://wpforms.com/addons/zapier-addon/\">Zapier addon</a>.</p>\n<p>The Zapier addon lets you connect your WordPress forms to over 1,000+ web apps, including Zendesk. It’s quick and easy, and the best way to manage support tickets submitted on your WordPress website.</p>\n<p>For more help with this step, take a look at how to <a href=\"https://wpforms.com/docs/how-to-install-and-use-zapier-addon-with-wpforms/\">install and use the Zapier addon</a>.</p>\n<p>Now, let’s take a look at how to connect your WordPress support form to Zendesk.</p>\n<h3>Step 2: Create a New Zap</h3>\n<p>The first thing you’ll need to do is log into your Zapier account and click on the <strong>Make a Zap</strong> button near the top of the screen. If you don’t have a Zapier account, you can <a href=\"https://zapier.com/\" target=\"_blank\" rel=\"nofollow noopener\">create one here</a>.</p>\n<p><img class=\"alignnone size-full wp-image-345386\" src=\"https://wpforms.com/wp-content/uploads/2017/05/create-a-new-zap.png\" alt=\"create a new zap\" width=\"562\" height=\"132\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/create-a-new-zap.png 562w, https://wpforms.com/wp-content/uploads/2017/05/create-a-new-zap-300x70.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Next, you’ll need to choose a trigger app, which in our case is WPForms. Search for WPForms in the search bar and click on it.</p>\n<p>The only option available will be <strong>New Form Entry</strong>. Click <strong>Save + Continue</strong> to make WPForms the trigger when a form entry is submitted on your website.</p>\n<p><img class=\"alignnone size-full wp-image-345401\" src=\"https://wpforms.com/wp-content/uploads/2017/05/wpforms-zapier-trigger.png\" alt=\"wpforms + zapier trigger\" width=\"562\" height=\"302\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/wpforms-zapier-trigger.png 562w, https://wpforms.com/wp-content/uploads/2017/05/wpforms-zapier-trigger-300x161.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>From there, follow the instructions for finalizing WPForms as the trigger app. This will include selecting a WPForms account and verifying that it’s valid.</p>\n<p>For help with this step, take a look at this step by step tutorial for <a href=\"https://wpforms.com/docs/how-to-install-and-use-zapier-addon-with-wpforms/\">using Zapier with WPForms</a>.</p>\n<p>When you finish, Zapier will now be connected to WPForms.</p>\n<p>When prompted to set up the WPForms entry, make sure to select the new WordPress form you created earlier. Remember, we named our form Support Ticket Form.</p>\n<p><img class=\"alignnone size-full wp-image-345387\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry-in-zapier.png\" alt=\"support ticket form entry in zapier\" width=\"562\" height=\"305\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry-in-zapier.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry-in-zapier-300x163.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Continue</strong>.</p>\n<p>You will now need to test your support ticket form to make sure it works right. The only way for Zapier to test your form is to have at least one test entry form submitted.</p>\n<p>To create a test entry so Zapier can fetch and test your WordPress form, navigate to <strong>WPForms</strong> » <strong>All Forms</strong> and find your Support Ticket form. Click on <strong>Preview</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345388\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-preview.png\" alt=\"support ticket preview\" width=\"562\" height=\"239\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-preview.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-preview-300x128.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You’ll see a preview of your support ticket form. Fill out the form and submit it as though you’re a site visitor. This will give your support ticket form one entry, which you’ll see in the dashboard.</p>\n<p><img class=\"alignnone size-full wp-image-345389\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry.png\" alt=\"support ticket form entry\" width=\"562\" height=\"184\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry-300x98.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>After you have at least one form entry for your support ticket form, go back to your Zapier account and click <strong>Pull in Samples</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345390\" src=\"https://wpforms.com/wp-content/uploads/2017/05/pull-in-samples-in-zapier.png\" alt=\"pull in samples in zapier\" width=\"562\" height=\"432\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/pull-in-samples-in-zapier.png 562w, https://wpforms.com/wp-content/uploads/2017/05/pull-in-samples-in-zapier-300x231.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>If your test form entry was successful, and Zapier is connected to WPForms, you’ll see the form entry on the next screen. If you click on the dropdown arrow, you’ll see the form fields as they were filled out on your test form entry.</p>\n<p><img class=\"alignnone size-full wp-image-345391\" src=\"https://wpforms.com/wp-content/uploads/2017/05/complete-zapier-sample.png\" alt=\"complete zapier sample\" width=\"562\" height=\"608\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/complete-zapier-sample.png 562w, https://wpforms.com/wp-content/uploads/2017/05/complete-zapier-sample-277x300.png 277w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Continue</strong>.</p>\n<h3>Step 3: Connect Your WordPress Forms to Zendesk</h3>\n<p>Now that Zapier is connected to the WPForms plugin, you need to connect WPForms to Zendesk.</p>\n<p>To start, search for the Zendesk app in the search bar and select it as the action app.</p>\n<p><img class=\"alignnone size-full wp-image-345392\" src=\"https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action-app.png\" alt=\"choose zendesk action app\" width=\"562\" height=\"203\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action-app.png 562w, https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action-app-300x108.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Next, you’ll choose the Zendesk action. Since we are creating a support ticket form to collect site visitor support requests, we’ll select <strong>Create Ticket</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345393\" src=\"https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action.png\" alt=\"choose zendesk action\" width=\"562\" height=\"452\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action.png 562w, https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action-300x241.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Save + Continue</strong>.</p>\n<p>Now you need to connect your Zendesk account to Zapier.</p>\n<p>To do this, you’ll need to authorize Zapier to access your Zendesk account by entering your Zendesk account name, agent email, and API Token. You can find the API token by going to <strong>Admin » Channels » API</strong> in your Zendesk account.</p>\n<p><img class=\"alignnone size-full wp-image-345394\" src=\"https://wpforms.com/wp-content/uploads/2017/05/zapier-api-token-in-zendesk-account.png\" alt=\"zapier api token in zendesk account\" width=\"562\" height=\"279\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/zapier-api-token-in-zendesk-account.png 562w, https://wpforms.com/wp-content/uploads/2017/05/zapier-api-token-in-zendesk-account-300x149.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Fill in the requested information in Zapier to connect Zendesk to Zapier.</p>\n<p><img class=\"alignnone size-full wp-image-345402\" src=\"https://wpforms.com/wp-content/uploads/2017/05/connect-zapier-to-zendesk-account.png\" alt=\"connect zapier to zendesk account\" width=\"562\" height=\"499\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/connect-zapier-to-zendesk-account.png 562w, https://wpforms.com/wp-content/uploads/2017/05/connect-zapier-to-zendesk-account-300x266.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Yes, Continue</strong> to proceed to the next step.</p>\n<p><img class=\"alignnone size-full wp-image-345395\" src=\"https://wpforms.com/wp-content/uploads/2017/05/connected-zendesk-and-zapier.png\" alt=\"connected zendesk and zapier\" width=\"562\" height=\"320\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/connected-zendesk-and-zapier.png 562w, https://wpforms.com/wp-content/uploads/2017/05/connected-zendesk-and-zapier-300x171.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Save + Continue</strong> to proceed to the next step.</p>\n<h3>Step 4: Create a Zendesk Ticket</h3>\n<p>Now you need to set up a Zendesk Ticket.</p>\n<p>In this step, you’ll have to configure the correct WPForms fields in its corresponding Zendesk fields. You can select the right WPForms field by clicking the + icon on each field in Zapier.</p>\n<p>See the screenshot below.</p>\n<p><img class=\"alignnone size-full wp-image-345396\" src=\"https://wpforms.com/wp-content/uploads/2017/05/set-up-zendesk-ticket.png\" alt=\"set up zendesk ticket\" width=\"562\" height=\"495\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/set-up-zendesk-ticket.png 562w, https://wpforms.com/wp-content/uploads/2017/05/set-up-zendesk-ticket-300x264.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Continue</strong>.</p>\n<p>To test the Zendesk ticket, click <strong>Send Test to Zendesk</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345397\" src=\"https://wpforms.com/wp-content/uploads/2017/05/test-zendesk-support-ticket.png\" alt=\"test zendesk support ticket\" width=\"562\" height=\"609\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/test-zendesk-support-ticket.png 562w, https://wpforms.com/wp-content/uploads/2017/05/test-zendesk-support-ticket-277x300.png 277w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You&#8217;ll see a success message if the test went through.</p>\n<p><img class=\"alignnone size-full wp-image-345398\" src=\"https://wpforms.com/wp-content/uploads/2017/05/successful-test.png\" alt=\"successful test\" width=\"562\" height=\"286\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/successful-test.png 562w, https://wpforms.com/wp-content/uploads/2017/05/successful-test-300x153.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You may log in to your Zendesk account to view the newly added ticket.</p>\n<p><img class=\"alignnone size-full wp-image-345399\" src=\"https://wpforms.com/wp-content/uploads/2017/05/zendesk-account-ticket.png\" alt=\"zendesk account ticket\" width=\"562\" height=\"192\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/zendesk-account-ticket.png 562w, https://wpforms.com/wp-content/uploads/2017/05/zendesk-account-ticket-300x102.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Finish</strong> in your Zapier account.</p>\n<p>Lastly, name your Zap and turn it on so that when someone submits a support ticket form on your WordPress website, the form entry goes directly to your Zendesk account.</p>\n<p><img class=\"alignnone size-full wp-image-345400\" src=\"https://wpforms.com/wp-content/uploads/2017/05/name-and-turn-on-zap.png\" alt=\"name and turn on zap\" width=\"562\" height=\"294\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/name-and-turn-on-zap.png 562w, https://wpforms.com/wp-content/uploads/2017/05/name-and-turn-on-zap-300x157.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<h3>Make Your Support System More Efficient</h3>\n<p>You can follow the below tips to speed up your response time and resolution time. These simple things can make your support system more efficient.</p>\n<ul>\n<li>Ask detailed questions in your support ticket form. This can help you better understand the issues of your customers and resolve them quickly.</li>\n<li>If you have extensive documentation published on your site, you might want to encourage your users to read it before submitting a support ticket.</li>\n<li>Tell your customers how long it usually takes to get a response from an agent. This can help your customers to set an expectation on turnaround time.</li>\n</ul>\n<p>And there you have it! You now know how to create a custom support ticket form in WordPress with Zendesk.</p>\n<p>If you enjoyed this article, you might also want to check out <a href=\"https://wpforms.com/form-success-message-ideas-to-boost-customer-happiness/\">3 Form Success Message Ideas to Boost Customer Happiness</a> so that when people submit support tickets on your site, they know right away their request was processed.</p>\n<p>Better yet, come read about how <a href=\"https://wpforms.com/wpforms-is-one-of-zapiers-fastest-growing-apps/\">WPForms is one of Zapier’s fastest growing apps</a> and see why connecting WPForms to Zapier is one of the best things you can do for your business.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/\">How to Create a Custom Support Ticket Form in WordPress With Zendesk</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Formstack Alternative: WPForms vs Formstack Compared (Pros and Cons)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Dec 2018 13:00:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Marketing\";s: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:12:\"contact form\";s: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:7:\"WPForms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"form builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpforms.com/?p=343035\";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:613:\"<p>Are you looking for a Formstack alternative? If you’re trying to decide which contact form builder to use on your website, you might be curious to know how WPForms matches up against Formstack. In this article, we’ll compare WPForms and Formstack so you can decide which is the best form plugin for you. Since this [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/\">Formstack Alternative: WPForms vs Formstack Compared (Pros and Cons)</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s: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:30176:\"<p>Are you looking for a Formstack alternative? If you’re trying to decide which contact form builder to use on your website, you might be curious to know how WPForms matches up against Formstack.</p>\n<p>In this article, we’ll compare WPForms and Formstack so you can decide which is the best form plugin for you.</p>\n<p>Since this is a detailed comparison of WPForms vs Formstack, here&#8217;s a quick table of contents:</p>\n<ul>\n<li><a href=\"#overview\">Overview: WPForms vs Formstack</a></li>\n<li><a href=\"#criteria\">What to Look for in a Contact Form Builder</a></li>\n<li><a href=\"#ease-of-use\">Ease of Use Comparison</a></li>\n<li><a href=\"#features\">Features Comparison</a></li>\n<li><a href=\"#support\">Support Comparison</a></li>\n<li><a href=\"#account-management\">Account Management Comparison</a></li>\n<li><a href=\"#integrations\">Integrations Comparison</a></li>\n<li><a href=\"#price\">Price Comparison</a></li>\n<li><a href=\"#conclusion\">Conclusion: WPForms vs Formstack: Which is Better?</a></li>\n</ul>\n<h3 id=\"overview\">Overview: WPForms vs Formstack</h3>\n<p>Before we start with our comparison of WordPress form builders, let’s take a look a look at the basics behind each.</p>\n<p><strong>What is WPForms?</strong></p>\n<p><a href=\"https://wpforms.com/\">WPForms</a> is a beginner friendly contact form plugin that aims to make creating WordPress forms easy to do no matter how much experience you have.</p>\n<p>It comes with plenty of built-in features for creating smart, yet powerful online forms, has a variety of fields making your forms completely customizable, and cuts down on the time needed to create stunning forms for your website that convert.</p>\n<p>Everything is drag and drop with WPForms. Pair this with the pre-made templates available and you have everything you need to create and launch a WordPress form on your site with one single click.</p>\n<p>In addition, WPForms comes with multiple premium addons, making it possible to do things like <a href=\"https://wpforms.com/addons/surveys-and-polls-addon/\">add surveys and polls</a> to your forms and <a href=\"https://wpforms.com/how-to-let-customers-choose-between-check-or-paypal-payments/\">accept online payments</a>.</p>\n<p>Whether you want to create a simple contact form, or a more complex online order form, WPForms makes it easy to do.</p>\n<p><strong>What is Formstack?</strong></p>\n<p>Formstack is an online form builder that has tools to help you create forms.</p>\n<p>It comes with pre-designed templates to pick from for creating forms, metrics reporting, and the ability to collect payments.</p>\n<p>It also has a drag and drop interface for adding form fields and customization options for branding your forms.</p>\n<p>Now, let’s take a look at the specifics of each contact form to find out whether WPForms is a good Formstack alternative or not.</p>\n<h3 id=\"criteria\">What to Look for in a Contact Form Builder</h3>\n<p>There are few things you should focus on when comparing two contact form builder options before making your final decision:</p>\n<ul>\n<li><strong>Ease of Use:</strong> It should be easy to use for everyone, even complete beginners.</li>\n<li><strong>Features:</strong> There should be plenty of built-in features so you can create unique, powerful forms for your website.</li>\n<li><strong>Support:</strong> You should have access to support any time you run into a problem.</li>\n<li><strong>Account Management:</strong> Being able to easily access and manage your form entries should be easy to do.</li>\n<li><strong>Integrations: </strong>Your forms should integrate with a variety of email service providers, payment gateways, and more, for simplifying the form building process.</li>\n<li><strong>Price:</strong> Price will always play a role in your final decision. In the end, you should get more than what you pay for.</li>\n</ul>\n<p>These are some of the most basic things to look for in any contact form builder you consider using on your WordPress website, no matter whay kind of forms you’re looking to create.</p>\n<p>That’s why in our WPForms vs Formstack comparison, we’ll take a look at how each stacks up against all of these requirements.</p>\n<h3 id=\"ease-of-use\">Ease of Use: WPForms vs Formstack</h3>\n<p>Being able to use the contact form builder solution you choose is the key to creating effective and highly converting forms.</p>\n<p>If you struggle with creating forms, you won’t get the results you desire. Plus, you’ll lose out on potential leads, conversions, and sales.</p>\n<p><strong>Formstack: Ease of Use</strong></p>\n<p>Formstack is an online form builder that comes with a drag and drop interface that requires no coding, or so that&#8217;s the claim.</p>\n<p>To add form fields to your form, drag a form field from the choices on the right hand side to the left hand side. If you want, you can also use a pre-made template to get you started.</p>\n<p><img class=\"alignnone size-full wp-image-343036\" src=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-interface.png\" alt=\"formstack interface\" width=\"562\" height=\"528\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-interface.png 562w, https://wpforms.com/wp-content/uploads/2018/12/formstack-interface-300x282.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>The interface is not very intuitive because there are so many different options to click on to make changes. For example, click on one of two buttons to create or style your forms. Drag and drop form fields on the actual form itself, or click another button to reorder the fields.</p>\n<p>If you want to apply special functionality, you guessed it, click on another button to see which changes you can make and apply them there.</p>\n<p>If you want to see a preview of your form after clicking on all of the these buttons and making changes, you have to click <strong>View Live Form</strong>.</p>\n<p>Don’t like something on your form? You have to go back to the form builder, make a change, and check out the live preview again. This can quickly become frustrating for the user if there are many changes to be made.</p>\n<p>Lastly, getting your form to appear on your website is very confusing for beginners. Not to mention, Formstack mentions that that some WordPress themes overpower Formstack styling. To fix this, you will have to override those changes by editing the CSS of your form. This means messing with code, which is not user friendly.</p>\n<p><strong>WPForms: Ease of Use</strong></p>\n<p>WPForms is a modern WordPress form builder that <strong>focuses on usability and simplicity</strong>.</p>\n<p>It’s the most beginner friendly WordPress contact form plugin on the market today, and truly requires no coding knowledge to create forms. And to help you get started when you install and activate the plugin, we have created the WPForms challenge, which guides you through creating your first form, so you can get a feel for how easy it is to get a form up and running on your site – all in under five minutes.</p>\n<p>WPForms comes with pre-designed templates that have all the form fields you need to get your form started. And while Formstack has tons of templates to choose from, once you choose one to work with, it’s difficult to find out how to change it once in the form builder. The only other solution seems to be to start all over again, which is annoying.</p>\n<p>On the other hand, WPForms has templates for any kind of form you can think of, including survey forms, registrations and login forms, job applications, support ticket forms, donation forms, and so much more.</p>\n<p>Accessing WPForms’ pre-made templates is easy since they are found right in the WPForms Form Editor. And if you need to change an existing template while customizing the form you’re working on, all you have to do is access the templates and make a change.</p>\n<p><img class=\"alignnone size-full wp-image-299348\" src=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-templates.png\" alt=\"wpforms templates\" width=\"562\" height=\"514\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-templates.png 562w, https://wpforms.com/wp-content/uploads/2018/10/wpforms-templates-300x274.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>When you want to add a new field to your form, use the drag and drop functionality. Just drag the field you want from the left hand panel to your form on the right hand side.</p>\n<p>Then, click on the field to make changes. As you make changes to your fields, you’ll see those changes in real-time on your form in the preview panel. There is no back and forth nonsense while creating forms. What you see is what you get, right there in the Form Editor.</p>\n<p>WPForms comes with plenty of form fields right out of the box.</p>\n<p><img class=\"alignnone size-full wp-image-218831\" src=\"https://wpforms.com/wp-content/uploads/2018/06/Simple-Contact-Form.png\" alt=\"Simple Contact Form\" width=\"562\" height=\"372\" srcset=\"https://wpforms.com/wp-content/uploads/2018/06/Simple-Contact-Form.png 562w, https://wpforms.com/wp-content/uploads/2018/06/Simple-Contact-Form-300x199.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>For example, WPForms allows you to <a href=\"https://wpforms.com/how-to-accept-recurring-payments-on-your-wordpress-forms/\">accept payments from site visitors</a> on your forms using Stripe, which supports recurring payments, or PayPal. Plus, it comes with Single Item, Multiple Item, Dropdown Items, Credit Card, and Total form fields so you can <a href=\"http://www.wpbeginner.com/beginners-guide/make-money-online/\" target=\"_blank\" rel=\"noopener\">make money online</a> in the easiest way possible.</p>\n<p>This is in addition to unique form fields such as:</p>\n<ul>\n<li>GDPR Agreement</li>\n<li>Captcha</li>\n<li>Section Divider</li>\n<li>Page break</li>\n<li>Hidden Field</li>\n<li>Password</li>\n<li>Website / URL</li>\n</ul>\n<p>If you want a form builder plugin that’s easy to use right out of the box, but still offers a ton of built-in features, WPForms works great as an alternative to Formstack.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"features\">Features: WPForms vs Formstack</h3>\n<p>It’s not enough for your contact form builder to be easy to use. If it’s too basic, or doesn’t provide a lot of flexibility, you won’t be able to create powerful forms that grab people’s attention and convince them to convert.</p>\n<p>The success of your business depends on how well potential followers or customers can get in touch with you. That’s why an extensive feature set is so important.</p>\n<p><strong>Formstack Features</strong></p>\n<p>Formstack&#8217;s feature set is very limited when compared to what WPForms has to offer.</p>\n<p>In fact, here are some of the most blatant limitations:</p>\n<ul>\n<li>There are no specialty form fields like WPForms&#8217; GDPR Agreement, Captcha, or Password fields</li>\n<li>You can only collect a limited number of form entries per month, even on the first tier paid plan</li>\n<li>Each paid plan has a form creation limit</li>\n<li>Although you can customize your forms with themes, each plan has a theme limit</li>\n<li>Since Formstack stores your form entries, and any files that are uploaded to your forms, there are storage limits on all plans</li>\n<li>If your email notifications aren&#8217;t sending to you or your site visitors, you have to troubleshoot on your own to fix it</li>\n<li>There are no email service provider integrations on the first tier paid plan, making email marketing difficult</li>\n</ul>\n<p>When you want to create forms for your website, and find that the limitations outweigh the feature set, it&#8217;s time to look for a Formstack alternative.</p>\n<p><strong>WPForms Features</strong></p>\n<p>On the other hand, WPForms stands out as more than just a simple form builder because of the sheer amount of built-in features and addons you receive as a customer:</p>\n<ul>\n<li><strong><a href=\"https://wpforms.com/how-to-create-clutter-free-forms-with-smart-logic/\">Smart Conditional Logic</a>: </strong>create as many conditional logic rules as you want, on as many forms as you&#8217;d like so your users have the best experience possible and your forms convert.</li>\n<li><strong>Entry Management:</strong> manage all form entries right in the WordPress dashboard in an organized and easy to understand way. Plus, take advantage of the WPForms dashboard widget and see how yoru forms are performing right in your WordPress dashboard.</li>\n<li><strong>File Uploads:</strong> enjoy unlimited file uploads on all plans. Plus, easily view them, save them to your Media Library, and even access them in the notification you receive when someone submits a form.</li>\n<li><strong>Automatic Form Confirmations:</strong> Choose from three form confirmation types &#8211; Message, Show Page, and Redirect &#8211; or use a combination of all three using smart conditional logic.</li>\n<li><strong><a href=\"https://wpforms.com/addons/surveys-and-polls-addon/\">Survey and Poll</a> Form Creation: </strong>add survey or poll forms to your site, collect responses in one convenient location, and access multiple reports displaying results for easy analysis of data.</li>\n<li><strong>Partial Form Saving: </strong>capture partial form entries and follow up on those leads to turn abandoning site visitors into subscribers, followers, or customers.</li>\n<li><strong>Exhaustive Spam Protection: </strong>enjoy built-in honeypot spam protection, enable captchas, customize your own captchas, or even use Google invisible reCAPTCHA to protect your forms from spam submissions.</li>\n<li><strong>No Limits: </strong>Create as many forms as you want, with as many form fields as you want, and accept as many entries as you like, no matter which plan you choose.</li>\n<li><strong>Online Signature Capability: </strong>collect signatures from site visitors right on your forms for things like contracts and agreements.</li>\n<li><strong>Form Permissions and Access Controls: </strong>password protect your forms, schedule start and stop dates, limit the number of entries you&#8217;ll accept, and even limit form submissions to logged in users, regardless of which plan you have.</li>\n<li><strong>Geolocation Tracking: </strong>learn more about site visitors and their locations with geolocation tracking so you can send targeted email campaigns that are more relevant to them.</li>\n</ul>\n<p>If you’re looking for reasons why WPForms serves as a better solution than Formstack, its feature set alone is compelling.</p>\n<p>In fact, WPForms’ flexibility gives you a chance to create <a href=\"https://wpforms.com/research-based-tips-to-improve-contact-form-conversions/\">standout forms that will convert</a>.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"support\">Support: WPForms vs Formstack</h3>\n<p>No matter how much experience you have with form builders or even websites in general, you’re bound to run into problems every now and then.</p>\n<p>Since your success hinges on your website working right, including your contact forms, knowing there’s a support team backing you at all times can give you the peace of mind that if something did happen, you’d be okay.</p>\n<p><strong>Level of Support: Formstack</strong></p>\n<p>With Formstack, you can access support in two ways:</p>\n<ol>\n<li>Using the generic contact form and choosing a topic that hopefully relates to your issue</li>\n<li>Reading articles in the Resources and Learning section</li>\n</ol>\n<p><img class=\"alignnone size-full wp-image-343039\" src=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-resources.png\" alt=\"formstack resources\" width=\"562\" height=\"511\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-resources.png 562w, https://wpforms.com/wp-content/uploads/2018/12/formstack-resources-300x273.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Formstack’s resource section does not have a search bar, which makes finding a solution very hard. Though there are content types and topics to pick from, if you’re unsure about how to handle an issue, your guess is as good as mine as to where to start.</p>\n<p>The level of support you get will depend on how much you pay for your monthly Formstack plan.</p>\n<p>Here are some of the most significant support limitations:</p>\n<ul>\n<li>From the first paid tier through the fourth (which will cost you $249 a month!) you do not receive personal onboarding when you sign up</li>\n<li>The first three paid plans (with the third costing you $99 a month!) are not eligible for priority support or technical phone consultations</li>\n</ul>\n<p>Want to add priority support to your Formstack plan? Tack on an extra $99/month to your already high monthly bill and you can.</p>\n<p>What this says to customers is that even though you are willing to shell out hundreds of dollars a month for forms on your site, you do not pay enough to get priority support, and that if you do want it, you’ll have to pay even more.</p>\n<p><strong>Level of Support: WPForms</strong></p>\n<p>If you’re looking for more comprehensive support through a variety of channels, look no further than the best Formstack alternative around: WPForms.</p>\n<p><img class=\"alignnone size-full wp-image-299305\" src=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-support.png\" alt=\"wpforms support\" width=\"562\" height=\"456\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-support.png 562w, https://wpforms.com/wp-content/uploads/2018/10/wpforms-support-300x243.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You can access the support ticket system and receive help from the knowledgeable and friendly support team, read through the <a href=\"https://wpforms.com/docs/\">extensive documentation</a> for configuring every little setting possible, and even check out the blog to learn tips and tricks for creating highly converting, good looking WordPress forms.</p>\n<p>And if you want, you can even check out the <a href=\"https://wordpress.org/support/plugin/wpforms-lite\" target=\"_blank\" rel=\"nofollow noopener\">official WordPress Repository</a> where people using WPForms Lite get answers to their most pressing questions.</p>\n<p>Remember when we mentioned that Formstack doesn&#8217;t have an explicit solution to emails not delivering properly when a form is submitted and an email notification goes out?</p>\n<p>Well, not only does WPForms have an explicit solution, which is to use the WP Mail SMPT plugin, the support team is knowledgeable about how to set it up on your site and troubleshoot issues if you run into them. We take a proactive approach to helping you get the most out our easy to use WordPress form builder.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"account-management\">Account Management: WPForms vs Formstack</h3>\n<p>It won’t matter if you’re able to use your online forms to build a bigger email list, collect data based on surveys and polls, or run a nonprofit organization, complete with volunteers, staff, and hosted events, if you can’t manage the entries in an organized and easy way.</p>\n<p><strong>Formstack Account Management</strong></p>\n<p>There is a glaring difference between the way you manage Formstack forms and WPForms forms: the location.</p>\n<p>With Formstack, you have an account on their website where you create and save forms, manage form entries, and analyze results.</p>\n<p>The problem is, every time you want to create a form, make a change, view an entry, or check out metrics, you have to log into your account first. Then you have to go back to your WordPress website and re-embed the form with the new code.</p>\n<p>This is annoying to have to go back and forth between your website and Formstack account.</p>\n<p><strong>WPForms Account Management</strong></p>\n<p>On the other hand, WPForms lets you conveniently manage your forms all within the WordPress dashboard so you never have to leave your website.</p>\n<p>For example, you can do the following:</p>\n<ul>\n<li>View forms you’ve already created</li>\n<li>Create new forms</li>\n<li>Access form entries</li>\n<li>Configure settings related to: your license, email, reCAPTCHA, validation messages, payments, integrations, and more</li>\n<li>Use the import and export tools</li>\n<li>Activate addons that can be used on your forms immediately</li>\n</ul>\n<p><img class=\"alignnone size-full wp-image-299303\" src=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-form-management.png\" alt=\"wpforms form management\" width=\"562\" height=\"277\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-form-management.png 562w, https://wpforms.com/wp-content/uploads/2018/10/wpforms-form-management-300x148.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>And if you want to get a bird’s eye view of how your forms are performing, take a look at the WPForms dashboard widget. You can see how many total form entries your forms have, as well as a graph view over 7 or 30 days, without ever having to click into your entry management section.</p>\n<p><img class=\"alignnone size-full wp-image-330711\" src=\"https://wpforms.com/wp-content/uploads/2018/11/wpforms-dashboard-widget-1.png\" alt=\"WPForms Dashboard Widget\" width=\"620\" height=\"452\" srcset=\"https://wpforms.com/wp-content/uploads/2018/11/wpforms-dashboard-widget-1.png 620w, https://wpforms.com/wp-content/uploads/2018/11/wpforms-dashboard-widget-1-300x219.png 300w\" sizes=\"(max-width: 620px) 100vw, 620px\" /></p>\n<p>This is perfect for those times you want to monitor a form that means a lot to you in the quickest way possible.</p>\n<p>Managing your website’s forms shouldn’t be difficult. WPForms makes sure it&#8217;s not.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"integrations\">Integrations: WPForms vs Formstack</h3>\n<p>If you&#8217;re going to pay for a WordPress form builder, it better integrate with other platforms to make form creation even better.</p>\n<p><strong>Formstack Integrations</strong></p>\n<p>Formstack offers dozens of third-party integrations.</p>\n<p>For instance, you can integrate with popular tools like Salesforce, Dropbox, and Google Drive. The problem is, if you want to integrate with any of these third-party tools, you have to do so individually. This takes time and makes the process of connecting your forms to helpful tools you rely on to run your business difficult.</p>\n<p>For those collecting payments on their forms, Formstack has 10 payment gateway integrations to choose from. That said, having too many payment processors to deal with can make your job harder and more expensive since that means you’ll have to manage 10 different accounts.</p>\n<p>Lastly, you can connect your forms to email service providers like MailChimp, AWeber, and Constant Contact.</p>\n<p><strong>WPForms Integrations</strong></p>\n<p>WPForms integrates with two of the most popular and widely used payment processors &#8211; PayPal and Stripe &#8211; making life easy for you and your customers. And to top it off, WPForms accepts recurring Stripe payments, which makes collecting donations and subscription or membership payments a cinch.</p>\n<p>In addition, thanks to the Zapier addon, WPForms integrates with <strong>over 1,000 different web apps</strong> from CRMs to invoicing software, calendaring systems to instant messengers.</p>\n<p>For example, you can easily interconnect your forms to apps such as:</p>\n<ul>\n<li>Asana</li>\n<li>QuickBooks</li>\n<li>Google Calendar</li>\n<li>Sendy</li>\n<li>and much more</li>\n</ul>\n<p>Lastly, WPForms integrates with the following powerful email service providers:</p>\n<ul>\n<li>MailChimp</li>\n<li>AWeber</li>\n<li>Campaign Monitor</li>\n<li>Constant Contact</li>\n<li>Drip</li>\n<li>GetResponse</li>\n</ul>\n<p>Being able to connect your WordPress forms to various third-party platforms is a must when choosing the right form builder solution for your needs. And since connecting to these third-party tools using Zapier involves the same process every time, getting connecting is easy.</p>\n<p><strong>Winner: Tie</strong></p>\n<h3 id=\"price\">Price: WPForms vs Formstack</h3>\n<p>Price will almost always play a significant role in whether you decide to use a certain WordPress from builder solution or not.</p>\n<p>Make sure to determine your budget before you conduct your research, and look into what your potential solutions cost upfront so you don’t end up paying too much for too little.</p>\n<p><strong>Price of Formstack</strong></p>\n<p>Formstack has 4 highly priced premium plans to choose from ranging from $19/month to $249/month.</p>\n<p>Each plan has their own form, entry, user, theme, and upload storage limits. In addition, to unlock some of their best features, you have to invest in the most expensive premium plans, making form creation expensive for site owners. And if you decide to pay annually, you get a small break on price, but no flexibility when it comes to the limitations.</p>\n<p>For instance, you can accept payments on your forms with payment processors other than credit cards, integrate with email service providers, integrate with popular third-party tools, and receive priority support only if you use the Silver plan or higher, which will put you in the red a hefty $59/month.</p>\n<p><img class=\"alignnone size-full wp-image-343038\" src=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-paid-plans.png\" alt=\"formstack paid plans\" width=\"562\" height=\"231\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-paid-plans.png 562w, https://wpforms.com/wp-content/uploads/2018/12/formstack-paid-plans-300x123.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>If the number of form entries goes over the limit for the plan you’re using, you will not incur any overage charges. However, if your form entries exceed the form submission limit, all future entries will be sent right to your email. This not only makes managing your form entries difficult, it has the potential to flood your inbox and make running your business a hassle.</p>\n<p>Lastly, there is no money-back guarantee to be found on Formstack’s website, so if you don’t like what you’ve paid for you’re out of luck.</p>\n<p><strong>Price of WPForms</strong></p>\n<p>On the other hand, WPForms comes in at significantly lower price points, ranging from $39.50/year for the Basic plan to $299.50/year for the Elite plan.</p>\n<p>This is a far cry from the expensive payments you&#8217;ll have to make even with Formstack&#8217;s most basic premium plan.</p>\n<p>In fact, with each plan upgrade, you can access more <a href=\"http://www.wpbeginner.com/showcase/best-email-marketing-services/\" target=\"_blank\" rel=\"noopener\">email service provider</a> integrations, addons, and priority support and still pay <strong>far less than Formstack&#8217;s lowest paid plans</strong>.</p>\n<p>For instance, to accept payments on your online forms, you&#8217;ll need the Pro plan, which also happens to be our most popular plan. At $199.50 for the year, this plan&#8217;s price pales in comparison to Formstacks&#8217;s equivalent plan, which will set you back over $700/year.</p>\n<p>And it comes with a ton more features too, making this the most cost-effective form builder solution.</p>\n<p><img class=\"alignnone size-full wp-image-299304\" src=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-price-plans.png\" alt=\"wpforms price plans\" width=\"562\" height=\"467\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-price-plans.png 562w, https://wpforms.com/wp-content/uploads/2018/10/wpforms-price-plans-300x249.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>WPForms offers a 14-day 100% money-back guarantee on all premium plans, so if you change your mind for whatever reason, you’ll get your money back.</p>\n<p>And lastly, WPForms sticks by the motto “Simple Prices. No Surprises,” meaning there are no overage charges like the ones found in Formstack.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"conclusion\">Conclusion: WPForms vs Formstack: Which is Better?</h3>\n<p>Formstack is not to be considered a viable form creation solution. It does not have a user friendly interface, falls short in its feature set, and has way too many limitations when it comes to styling, form entries, storage of file uploads, and forms themselves.</p>\n<p>It’s also very expensive for the features you do receive, does not provide the kind of stellar support one would expect when using a premium service, and forces you to handle email marketing manually unless you agree to shell out a ton of money a month for the next level plan.</p>\n<p>On the other hand, WPForms continues to grow in popularity, now with over 10 million downloads, because it offers businesses a faster, easier way to create online forms that go beyond the basics. You can create any kind of form imaginable, not break the bank doing so, and manage your forms right in your WordPress dashboard.</p>\n<p>In fact, price points, feature sets, ease of use, and superior support are all reasons why the most successful business owners choose WPForms as their WordPress form builder solution.</p>\n<p>And there you have it! A comparison of WPForms vs Formstack, with <strong>WPForms coming out at the clear winner</strong>.</p>\n<p>If you’re still on the fence about whether WPForms is the very best Formstack alternative, make sure to <a href=\"https://wpforms.com/user-reviews/\">see what our happy customers have to say</a>.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/\">Formstack Alternative: WPForms vs Formstack Compared (Pros and Cons)</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"How to Enable Anonymous Guest Posting on Your Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Dec 2018 13:00: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"user login\";s: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:16:\"post submissions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"guest blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=73346\";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:581:\"<p>Have you ever seen websites that allow users to submit posts or other type of content anonymously? Do you want to enable anonymous guest posting on your blog? In this article, we&#8217;ll show you how to allow anonymous guest posting on your WordPress blog. Step 1: Create a WordPress Form The first thing you’ll need [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/\">How to Enable Anonymous Guest Posting on Your Blog</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s: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:11069:\"<p>Have you ever seen websites that allow users to submit posts or other type of content anonymously? Do you want to enable anonymous guest posting on your blog?</p>\n<p>In this article, we&#8217;ll show you how to allow anonymous guest posting on your WordPress blog.</p>\n<h3>Step 1: Create a WordPress Form</h3>\n<p>The first thing you’ll need to do is install and activate the <a href=\"https://wpforms.com/pricing/\">WPForms plugin</a>. For more details, see this step by step guide on <a title=\"Step by step guide on How to Install a WordPress Plugin\" href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\" rel=\"noopener\">how to install a plugin in WordPress</a>.</p>\n<p>Next, you’ll need to install and activate the <a href=\"https://wpforms.com/addons/post-submissions-addon/\">Post Submissions addon</a> so users can submit blog posts on your website.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Addon</strong> and find the one labeled <strong>Post Submissions</strong>.</p>\n<p>Click <strong>Install Addon</strong> and then <strong>Activate</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-235134\" src=\"https://wpforms.com/wp-content/uploads/2018/07/WPForms-Post-Submissions-Addon.png\" alt=\"WPForms Post Submissions Addon\" width=\"562\" height=\"193\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/WPForms-Post-Submissions-Addon.png 562w, https://wpforms.com/wp-content/uploads/2018/07/WPForms-Post-Submissions-Addon-300x103.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Now you’ll need to create a new form.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Add New</strong>, name your form, and choose the <strong>Blog Post Submission Form</strong> template.</p>\n<p><img class=\"alignnone size-full wp-image-235136\" src=\"https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form-Template.png\" alt=\"Blog Post Submission Form Template\" width=\"562\" height=\"307\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form-Template.png 562w, https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form-Template-300x164.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>WPForms will create a form for you.</p>\n<p><img class=\"alignnone size-full wp-image-235133\" src=\"https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form.png\" alt=\"Blog Post Submission Form\" width=\"562\" height=\"522\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form.png 562w, https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form-300x279.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You’ll notice your blog post submissions form has the following form fields:</p>\n<ul>\n<li><strong>Author Details.</strong> This includes name, email, and author bio form fields.</li>\n<li><strong>Create a Blog Post.</strong> This includes post title, post content, featured image, post excerpt, and category form fields.</li>\n</ul>\n<p>You can add additional fields by dragging them from the left hand panel to the right hand panel.</p>\n<p>Then, click on the field to make any changes. You can also click on a form field and drag it to rearrange the order on your user registration form.</p>\n<h3>Step 2: Enable Anonymous Guest Posting</h3>\n<p>Before you save the changes you’ve made to your blog post submissions form, you’ll need to enable anonymous guest posting.</p>\n<p>To do this, click on the <strong>Name</strong> form field on your form. Then, in the left hand side of the Form Editor, find the box labeled <strong>Required</strong> and unclick it.</p>\n<p><img class=\"alignnone wp-image-342235\" src=\"https://wpforms.com/wp-content/uploads/2018/12/enable-anonymous-guest-posting.png\" alt=\"enable anonymous guest posting\" width=\"562\" height=\"307\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/enable-anonymous-guest-posting.png 620w, https://wpforms.com/wp-content/uploads/2018/12/enable-anonymous-guest-posting-300x164.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>By doing this, anyone can submit your blog post submission form on your website without having to fill out the name form field.</p>\n<p>Click <strong>Save</strong>.</p>\n<p>If you want to learn more about how to customize your blog post submissions form, check out this article outlining <a href=\"https://wpforms.com/how-to-allow-users-to-submit-blog-posts-on-your-wordpress-site/\">how to allow users to submit blog posts on your WordPress website</a>.</p>\n<h3>Step 3: Configure Your Form’s General Settings</h3>\n<p>There are many general settings to configure on a WordPress form:</p>\n<ul>\n<li><strong>General Settings:</strong> Here you can change things like your form’s name, description, and submit button copy. You can also <a href=\"https://wpforms.com/how-to-build-spam-free-wordpress-contact-forms-the-ultimate-guide/\">enable additional spam prevention features</a> to <a href=\"https://www.wpbeginner.com/wordpress-security/\" target=\"_blank\" rel=\"noopener\">keep your website secure</a> from unwanted form submissions.</li>\n<li><strong>Form Confirmations:</strong> Form confirmations are messages that display to site visitors once they submit a blog post for your website. WPForms has three confirmation types to choose from: Message, Show Page, and Redirect. To choose more than one form confirmation at a time, check out this helpful tutorial on <a href=\"https://wpforms.com/how-to-create-multiple-form-confirmations-in-wpforms/\">how to create multiple form confirmations</a>.</li>\n<li><strong>Form Notifications:</strong> Notifications are a great way to send an email whenever a form is submitted on your website. A notification will automatically send to your once a form is submitted on your site. You can also send one to the site visitor that submitted the form and anyone else that needs to be notified of a form submission. To learn how to do this, read here about <a href=\"https://wpforms.com/how-to-create-multiple-form-notifications-in-wordpress-forms/\">creating multiple form notifications</a>.</li>\n</ul>\n<p>Click <strong>Save</strong>.</p>\n<h3>Step 4: Allow Post Submissions</h3>\n<p>To allow anonymous guest post submissions on your blog, go to <strong>Settings</strong> » <strong>Post Submissions</strong> and turn <strong>Post Submissions</strong> &#8220;On&#8221;.</p>\n<p><img class=\"alignnone size-full wp-image-235154\" src=\"https://wpforms.com/wp-content/uploads/2018/07/Post-Submissions-On.png\" alt=\"Post Submissions On\" width=\"562\" height=\"216\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/Post-Submissions-On.png 562w, https://wpforms.com/wp-content/uploads/2018/07/Post-Submissions-On-300x115.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Next, make sure all the dropdown menu items match up to the form field title found above each dropdown menu. If you changed or added any new form fields, you’ll need to match them up with the corresponding custom fields for your posts.</p>\n<ul>\n<li><strong>Post Title:</strong> the title of the blog post</li>\n<li><strong>Post Content:</strong> the main body of the blog post</li>\n<li><strong>Post Excerpt:</strong> a short summary of the blog post</li>\n<li><strong>Post Featured Image:</strong> the image added to the beginning of the blog post</li>\n<li><strong>Post Type:</strong> options include Posts or Pages, but can include custom post types as well</li>\n<li><strong>Post Status:</strong> the status you want each blog post to be in when submitted. You can automatically publish all post submissions or require approval before being published to your website.</li>\n<li><strong>Post Author:</strong> choose an author of the blog post. If you require users to login before submitting blog post submission forms, the signed in user will be assigned as the author. Since you’re allowing anonymous guest posting, if a site visitor doesn’t enter a name, the post author will remain blank.</li>\n</ul>\n<p>Click <strong>Save</strong>.</p>\n<h3>Step 5: Add Your Form to Your Site</h3>\n<p>After you’ve created your blog post submissions form, you need to add it to your WordPress website.</p>\n<p>WPForms allows you to add your forms to many locations on your website, including your blog posts, pages, and even <a href=\"https://wpforms.com/how-to-add-a-contact-form-in-wordpress-sidebar-widget/\">sidebar widgets</a>.</p>\n<p>Let’s take a look at the most common post/page embed option.</p>\n<p>To start, create a new post or page in WordPress and then click on the <strong>Add Form</strong> button.</p>\n<p>Next, select your contact form in the modal popup and click <strong>Add Form</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-235135\" src=\"https://wpforms.com/wp-content/uploads/2018/07/Add-Form-2.png\" alt=\"Add Form\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/Add-Form-2.png 562w, https://wpforms.com/wp-content/uploads/2018/07/Add-Form-2-300x172.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Then, publish your post or page so your blog post submissions form will appear on your website.</p>\n<p>To view post submission form entries after they’ve been submitted, check out this <a href=\"https://wpforms.com/docs/complete-guide-to-form-entries/\">complete guide to form entries</a>. You can view, search for, filter, print, and delete any form entries that people submit on your website.</p>\n<p>And the great thing is, you can also use our <a href=\"https://wpforms.com/addons/zapier-addon/\">Zapier addon</a> to automatically save file uploads to cloud services like <a href=\"https://wpforms.com/how-to-create-a-wordpress-google-drive-upload-form/\">Google Drive</a>, <a href=\"https://wpforms.com/how-to-send-wordpress-form-entries-to-basecamp/\">Basecamp</a>, and <a href=\"https://wpforms.com/how-to-create-a-simple-dropbox-upload-form-in-wordpress/\">Dropbox</a>.</p>\n<p>And there you have it! You now know how to enable anonymous guest posting on your blog.</p>\n<p>To get more content on your blog, see our tips on <a href=\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/\">how to get more guest post submissions</a>. You can also get sponsored posts by <a href=\"https://wpforms.com/how-to-require-users-to-pay-to-submit-a-post-in-wordpress/\">requiring payment for post submissions</a>.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/\">How to Enable Anonymous Guest Posting on Your Blog</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:54:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"How to Add a WordPress Form With Datepicker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wpforms.com/how-to-add-a-wordpress-form-with-datepicker/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wpforms.com/how-to-add-a-wordpress-form-with-datepicker/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Dec 2018 13:00:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"wordpress form\";s: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:12:\"contact form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:15:\"Google Calendar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:10:\"datepicker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=23418\";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:529:\"<p>Do you need a way to add a WordPress form with a datepicker? We&#8217;ve made it easy for you to allow users to select a date and time in your forms. In this article, we&#8217;ll show you how to add a datepicker form field to any WordPress form. Step 1: Create A WordPress Form The [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-add-a-wordpress-form-with-datepicker/\">How to Add a WordPress Form With Datepicker</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s: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:9957:\"<p>Do you need a way to add a WordPress form with a datepicker? We&#8217;ve made it easy for you to allow users to select a date and time in your forms.</p>\n<p>In this article, we&#8217;ll show you how to add a datepicker form field to any WordPress form.</p>\n<h3>Step 1: Create A WordPress Form</h3>\n<p>The first thing you’ll need to do is install and activate the <a href=\"https://wpforms.com/pricing/\">WPForms plugin</a>. For more details, see this step by step guide on <a title=\"Step by step guide on How to Install a WordPress Plugin\" href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\" rel=\"noopener\">how to install a plugin in WordPress</a>.</p>\n<p>Once you’ve installed WPForms plugin, go to <strong>WPForms » Add New</strong> to create a new form.</p>\n<p>On the setup screen, name your form and select the form template you want to use. The great thing is, WPForms comes with over 100 pre-designed templates.</p>\n<p>In our example, we&#8217;ll use the <strong>Simple Contact Form</strong> template.</p>\n<p><img class=\"alignnone size-full wp-image-218835\" src=\"https://wpforms.com/wp-content/uploads/2018/06/Simple-Contact-Form-Template.png\" alt=\"Simple Contact Form Template\" width=\"562\" height=\"307\" srcset=\"https://wpforms.com/wp-content/uploads/2018/06/Simple-Contact-Form-Template.png 562w, https://wpforms.com/wp-content/uploads/2018/06/Simple-Contact-Form-Template-300x164.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>WPForms will create a simple contact form for you.</p>\n<h3>Step 2: Customize Your Form</h3>\n<p>You can add additional fields by dragging them from the left hand panel to the right hand panel. Then, click on the field to make any changes.</p>\n<p>You can also click on a form field and drag it to rearrange the order on your form.</p>\n<p><img class=\"alignnone size-full wp-image-23939\" src=\"https://wpforms.com/wp-content/uploads/2017/01/datepicker-field.gif\" alt=\"adding a date and time field to your form\" width=\"574\" height=\"325\" /></p>\n<p>Click the fields on the right hand side of the screen to customize them or to rearrange their order.</p>\n<p><img class=\"alignnone size-full wp-image-341359\" src=\"https://wpforms.com/wp-content/uploads/2018/12/click-to-edit-field.png\" alt=\"click to edit field\" width=\"562\" height=\"309\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/click-to-edit-field.png 562w, https://wpforms.com/wp-content/uploads/2018/12/click-to-edit-field-300x165.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Since we’re showing you how to add a datepicker to your WordPress form, we’ll drag a <strong>Date / Time</strong> form field from the left hand side to the right and then click on it to make changes.</p>\n<p>When you click on the <strong>Date / Time</strong> form field, you’ll see the following options:</p>\n<ul>\n<li><strong>Label</strong>: This is the title of the field that site visitors will see on your form.</li>\n<li><strong>Format</strong>: You can ask your customer to choose the date, time, or both.</li>\n<li><strong>Description</strong>: Add a description for the field. This is a good spot for adding instructions or details for your users.</li>\n<li><strong>Required</strong>: When this box is checked, users can&#8217;t submit the form unless they fill out this field.</li>\n</ul>\n<p>If you scroll down and click on <strong>Advanced Options</strong>, you can customize the <strong>Date / Time</strong> field even more.</p>\n<p><img class=\"alignnone size-full wp-image-341360\" src=\"https://wpforms.com/wp-content/uploads/2018/12/advanced-options-for-date.png\" alt=\"advanced options for date\" width=\"562\" height=\"522\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/advanced-options-for-date.png 562w, https://wpforms.com/wp-content/uploads/2018/12/advanced-options-for-date-300x279.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<ul>\n<li><strong>Field Size</strong>: Here you can choose how big you want this field to be.</li>\n<li><strong>Date</strong>: In the placeholder box, you can add default text to be displayed in the field. You can also choose what format you&#8217;d like the users to type the date in.</li>\n<li><strong>Type</strong>: Here you can choose whether you want the field to be a datepicker with a calendar, or have dropdown fields for the month, day, and year.</li>\n<li><strong>Time</strong>: You can add default placeholder text for the time field, and you can choose if you want it to be 12 hour or 24 hour timing and how long you want the intervals to be.</li>\n<li><strong>Hide Label &amp; Hide Sub-Labels</strong>: This option shows or hides the label and sub-labels for the field.</li>\n<li><strong>CSS Classes</strong>: This field allows you to style specific fields without affecting other fields. You can <a href=\"https://wpforms.com/how-to-customize-button-styles-with-css-with-examples/\">change the colors, spacing, and more with CSS</a>.</li>\n</ul>\n<p>Here&#8217;s what the datepicker and dropdown types look like:</p>\n<p><img class=\"alignnone size-full wp-image-23942\" src=\"https://wpforms.com/wp-content/uploads/2017/01/datepicker-vs-dropdown.gif\" alt=\"Datepicker vs dropdown date and time fields\" width=\"555\" height=\"342\" /></p>\n<p>If you want to style the look and layout of your form to match your theme, check out <a href=\"https://wpforms.com/docs/how-to-add-custom-css-to-your-wpforms/\">how to add custom CSS to your WPForms</a>.</p>\n<p>Once you&#8217;re done customizing your settings, and picking <strong>Date Dropdown</strong>, click <strong>Save</strong>.</p>\n<h3>Step 3: Configure Your Form’s Settings</h3>\n<p>Before you add your form to your WordPress website, you should configure its settings.</p>\n<p>There are many settings to configure on a WordPress form:</p>\n<ul>\n<li><strong>General Settings:</strong> Here you can change things like your form’s name, description, and submit button copy. You can also <a href=\"https://wpforms.com/how-to-build-spam-free-wordpress-contact-forms-the-ultimate-guide/\">enable additional spam prevention features</a> to <a href=\"https://www.wpbeginner.com/wordpress-security/\" target=\"_blank\" rel=\"noopener\">keep your website secure</a> from unwanted form submissions.</li>\n<li><strong>Form Confirmations:</strong> Form confirmations are messages that display to site visitors once they submit a form on your website. WPForms has three confirmation types to choose from: Message, Show Page, and Redirect. You can choose one or a combination.</li>\n<li><strong>Form Notifications:</strong> Notifications are a great way to send an email whenever a form is submitted on your website. A notification will automatically send to your once a form is submitted on your site. You can also send one to the site visitor that submitted the form and anyone else that needs to be notified of a form submission.</li>\n</ul>\n<p>Click <strong>Save</strong>.</p>\n<p>In addition, you can use the <a href=\"https://wpforms.com/addons/zapier-addon/\">Zapier addon</a> to integrate your WordPress form with your Google Calendar. This way, anytime someone submits a form on your website that has a date and time, this information automatically adds to your Google Calendar.</p>\n<p>For help with this step, be sure to check out our step by step tutorial on <a href=\"https://wpforms.com/how-to-send-wpforms-entries-to-google-calendar/\">how to send form entries to your Google Calendar</a>.</p>\n<p>Not sure Zapier is worth it? Check out this exciting article about how <a href=\"https://wpforms.com/wpforms-is-one-of-zapiers-fastest-growing-apps/\">WPForms is one of Zapier’s fastest growing apps</a>.</p>\n<h3>Step 4: Add Your Form to Your Site</h3>\n<p>WPForms allows you to add your forms in various locations from your blog posts, pages, and your sidebar (<a href=\"http://www.wpbeginner.com/glossary/sidebar/\" target=\"_blank\" rel=\"noopener\">widget-ready areas</a>).</p>\n<p>First, let’s take a look at the most common option: embedding your form in a post or page.</p>\n<p>Start by creating a new post or page in WordPress and then click on the <strong>Add Form</strong> button.</p>\n<p><img class=\"alignnone size-full wp-image-218834\" src=\"https://wpforms.com/wp-content/uploads/2018/06/Add-Form-1.png\" alt=\"Add Form\" width=\"562\" height=\"326\" srcset=\"https://wpforms.com/wp-content/uploads/2018/06/Add-Form-1.png 562w, https://wpforms.com/wp-content/uploads/2018/06/Add-Form-1-300x174.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Publish your post or page so your form will appear on your website.</p>\n<p>The other place you can add a form to your site is in the sidebar widget area.</p>\n<p>Go to <strong>Appearance » Widgets</strong> and <a href=\"https://wpforms.com/how-to-add-a-contact-form-in-wordpress-sidebar-widget/\">add a WPForms widget to your sidebar</a>. After that, select the Simple Contact Form from the drop-down menu and save your changes to the widgets area.</p>\n<p>And there you have it! You now know how to add a WordPress form with a datepicker to your website.</p>\n<p>Do you want to know how to boost form conversions on your website? Check out this roundup of <a href=\"https://wpforms.com/simple-ways-to-design-your-forms-and-boost-conversions/\">simple ways to design your forms</a> so people will submit them.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-add-a-wordpress-form-with-datepicker/\">How to Add a WordPress Form With Datepicker</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wpforms.com/how-to-add-a-wordpress-form-with-datepicker/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"16\";s: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:54:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"How to Create Service Agreements in WordPress (With Digital Signatures)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wpforms.com/how-to-create-service-agreements-in-wordpress-with-digital-signatures/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wpforms.com/how-to-create-service-agreements-in-wordpress-with-digital-signatures/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Dec 2018 13:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s: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:22:\"digital signature form\";s: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:20:\"small business forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"WPForms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:15:\"signature addon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=23357\";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:656:\"<p>Do you want to create signed service agreement forms in WordPress? With WPForms, you can easily get a WordPress contract agreement signed without having to print, scan, or fax it. In this article, we’ll show you how to create service agreements in WordPress, complete with digital signatures. Why Create Signed Service Agreements in WordPress? Creating [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-service-agreements-in-wordpress-with-digital-signatures/\">How to Create Service Agreements in WordPress (With Digital Signatures)</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s: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:11635:\"<p>Do you want to create signed service agreement forms in WordPress? With WPForms, you can easily get a WordPress contract agreement signed without having to print, scan, or fax it.</p>\n<p>In this article, we’ll show you how to create service agreements in WordPress, complete with digital signatures.</p>\n<h3>Why Create Signed Service Agreements in WordPress?</h3>\n<p>Creating signed service agreements in WordPress is a win-win situation for both you and your clients.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2016/11/wpforms-signature.gif\" alt=\"Users can draw their signatures right on your form\" width=\"620\" height=\"230\" /></p>\n<p>Service agreements on your website:</p>\n<ul>\n<li><strong>Make it easy for clients to sign your contract.</strong> With <a href=\"http://www.wpforms.com\">WPForms</a>, you can allow your clients to sign service agreements using their mouse or touch screen.</li>\n<li><strong>Are more convenient for you.</strong> You don&#8217;t have to send emails back and forth to get a document signed.</li>\n<li><strong>Allow you to close deals faster.</strong> Since you can close more deals in a shorter period of time, your signed service agreement forms may lead to faster business growth.</li>\n</ul>\n<h3>Before You Create Your Service Agreement</h3>\n<p>When it comes to creating a service agreement, many small businesses shy away from consulting a lawyer. It is true that you can save on legal fees by doing a quick Google search and writing it up by yourself.</p>\n<p>However, when you create a service agreement, you&#8217;re making a huge business decision. A lawyer can assure you that the agreement is written the right way, so you can avoid legal issues down the line.</p>\n<p>A typical service agreement will usually:</p>\n<ul>\n<li>Specify the terms of service and payment</li>\n<li>Ask for client details including physical address and phone number</li>\n<li>Get the signature of your client</li>\n</ul>\n<p>To get an idea of what a service agreement for your business might look like, you can look at a sample agreement. This <a href=\"https://www.docracy.com/0w094wi9e0i/cleaning-company-contract\" target=\"_blank\" rel=\"nofollow noopener\">sample service agreement for a small cleaning business</a> may not relate directly to your business, but it gives you an idea of what your service agreement should include.</p>\n<p>Now, let’s take a look at how to create service agreements in WordPress with WPForms.</p>\n<h3>Step 1: Create Your Service Agreement Page</h3>\n<p>The first step in creating a service agreement on your WordPress site is to add a page with your agreement terms.</p>\n<p>In this tutorial, we&#8217;ll name our WordPress page &#8220;Service Agreement.&#8221;</p>\n<p><img class=\"alignnone size-full wp-image-340516\" src=\"https://wpforms.com/wp-content/uploads/2018/12/service-agreement-page-example.png\" alt=\"service agreement page example\" width=\"562\" height=\"391\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/service-agreement-page-example.png 562w, https://wpforms.com/wp-content/uploads/2018/12/service-agreement-page-example-300x209.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>After adding your agreement text, save your page as a draft. You&#8217;ll add your service agreement form before publishing it.</p>\n<p><img class=\"alignnone size-full wp-image-340515\" src=\"https://wpforms.com/wp-content/uploads/2018/12/save-as-draft.png\" alt=\"save as draft\" width=\"562\" height=\"270\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/save-as-draft.png 562w, https://wpforms.com/wp-content/uploads/2018/12/save-as-draft-300x144.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<h3>Step 2: Create Your Signature Form</h3>\n<p>Once you draft the service agreement page on your site, the next step is to add a signature form to it. By collecting a digital signature on your website, you won&#8217;t need to send the contract back and forth to your clients to get it signed.</p>\n<p>In order to accept digital signatures on your site, the first thing you’ll need to do is install and activate the <a href=\"https://wpforms.com/pricing/\">WPForms plugin</a>. For more details, see this step by step guide on <a title=\"Step by step guide on How to Install a WordPress Plugin\" href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\" rel=\"noopener\">how to install a plugin in WordPress</a>.</p>\n<p>You’ll also need to install the <a href=\"https://wpforms.com/addons/signature-addon\">Signature addon</a> so you can allow users to submit a digital signature in WordPress as a part of the agreement. You can learn <a href=\"https://wpforms.com/docs/how-to-install-and-use-the-signature-addon-in-wpforms\">how to install and use the Signature addon here</a>.</p>\n<p><img class=\"alignnone size-full wp-image-340519\" src=\"https://wpforms.com/wp-content/uploads/2018/12/signtaure-addon.png\" alt=\"signtaure addon\" width=\"562\" height=\"248\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/signtaure-addon.png 562w, https://wpforms.com/wp-content/uploads/2018/12/signtaure-addon-300x132.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>After installing the plugin and the Signature addon, you’ll need to create a form.</p>\n<p>You can see our tutorial on <a href=\"https://wpforms.com/how-to-create-a-contact-form-in-wordpress/\">creating a simple contact form</a> as a guide to get started.</p>\n<p>In our example, we’ll use the Blank Form template so that we can create a WordPress contract agreement form from scratch.</p>\n<p><img class=\"alignnone size-full wp-image-340522\" src=\"https://wpforms.com/wp-content/uploads/2018/12/wpforms-blank-form-template.png\" alt=\"wpforms blank form template\" width=\"562\" height=\"344\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/wpforms-blank-form-template.png 562w, https://wpforms.com/wp-content/uploads/2018/12/wpforms-blank-form-template-300x184.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Once in the Form Editor, you’ll find the <strong>Signature</strong> form field under the <strong>Fancy Fields</strong> section.</p>\n<p>Click the button to add it to your form, or drag and drop it where you want to place the field.</p>\n<p><img class=\"alignnone size-full wp-image-340518\" src=\"https://wpforms.com/wp-content/uploads/2018/12/signature-form-field.png\" alt=\"signature form field\" width=\"562\" height=\"358\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/signature-form-field.png 562w, https://wpforms.com/wp-content/uploads/2018/12/signature-form-field-300x191.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>To make changes to the <strong>Signature</strong> form field, just click on it. At the very least, make sure to set the field as <strong>Required</strong> so users can’t submit your form unless they add a signature.</p>\n<p><img class=\"alignnone size-full wp-image-340517\" src=\"https://wpforms.com/wp-content/uploads/2018/12/signature-form-field-required-setting.png\" alt=\"signature form field required setting\" width=\"562\" height=\"307\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/signature-form-field-required-setting.png 562w, https://wpforms.com/wp-content/uploads/2018/12/signature-form-field-required-setting-300x164.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Save</strong>.</p>\n<h3>Step 3: Configure Your Form’s Settings</h3>\n<p>Before you add your service agreement form to your Service Agreement page, you should configure its settings.</p>\n<p>There are many settings to configure on a WordPress form:</p>\n<ul>\n<li><strong>General Settings:</strong> Here you can change things like your form’s name, description, and submit button copy. You can also <a href=\"https://wpforms.com/how-to-build-spam-free-wordpress-contact-forms-the-ultimate-guide/\">enable additional spam prevention features</a> to <a href=\"https://www.wpbeginner.com/wordpress-security/\" target=\"_blank\" rel=\"noopener\">keep your website secure</a> from unwanted form submissions.</li>\n<li><strong>Form Confirmations:</strong> Form confirmations are messages that display to site visitors once they submit a service agreement form on your website. WPForms has three confirmation types to choose from: Message, Show Page, and Redirect. You can choose one or a combination.</li>\n<li><strong>Form Notifications:</strong> Notifications are a great way to send an email whenever a form is submitted on your website. A notification will automatically send to you once a form is submitted on your site. You can also send one to the site visitor that submitted the form and anyone else that needs to be notified of a form submission.</li>\n</ul>\n<p>If you’ve added a subscribe checkbox to your service agreement form, you’ll need to integrate it with your preferred email marketing provider.</p>\n<p>WPForms offers the following email service provider integrations:</p>\n<ul>\n<li><a href=\"https://wpforms.com/addons/aweber-addon/\">AWeber</a></li>\n<li><a href=\"https://wpforms.com/addons/drip-addon/\">Drip</a></li>\n<li><a href=\"https://wpforms.com/features/constant-contact/\">Constant Contact</a></li>\n<li><a href=\"https://wpforms.com/addons/mailchimp-addon/\">MailChimp</a></li>\n<li><a href=\"https://wpforms.com/addons/campaign-monitor-addon/\">Campaign Monitor</a></li>\n<li><a href=\"https://wpforms.com/addons/getresponse-addon/\">GetResponse</a></li>\n</ul>\n<p>Click <strong>Save</strong> every time you make a change to any of your form’s settings.</p>\n<p>Now you’re ready to add your service agreement form to your WordPress website.</p>\n<h3>Step 4: Publish Your WordPress Service Agreement</h3>\n<p>Once you create the service agreement form, you can add it to your Service Agreement page.</p>\n<p>Go to the <strong>Service Agreement</strong> page you made earlier and click the <strong>Add Form</strong> button just above the text editor.</p>\n<p>Next, select your service agreement form in the modal popup and click <strong>Add Form</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-340513\" src=\"https://wpforms.com/wp-content/uploads/2018/12/add-service-agreement-form-to-website.png\" alt=\"add service agreement form to website\" width=\"562\" height=\"335\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/add-service-agreement-form-to-website.png 562w, https://wpforms.com/wp-content/uploads/2018/12/add-service-agreement-form-to-website-300x179.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Then, publish your service agreement page so it will appear on your website.</p>\n<p>And there you have it! You now know how to create service agreements in WordPress with digital signatures.</p>\n<p>Want to save more time with WPForms? Try <a href=\"https://wpforms.com/how-to-create-a-job-application-form-in-wordpress/\">creating a job application form</a> so you can quickly gather all the information you need to select the best candidate.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-service-agreements-in-wordpress-with-digital-signatures/\">How to Create Service Agreements in WordPress (With Digital Signatures)</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wpforms.com/how-to-create-service-agreements-in-wordpress-with-digital-signatures/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:54:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WPForms is Zapier’s 8th Fastest Growing App in 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wpforms.com/wpforms-is-one-of-zapiers-fastest-growing-apps/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wpforms.com/wpforms-is-one-of-zapiers-fastest-growing-apps/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 16:30: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:5:{i:0;a:5:{s:4:\"data\";s:12:\"Announcement\";s: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:12:\"contact form\";s: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:7:\"WPForms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"form builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:12:\"zapier addon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpforms.com/?p=336914\";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:605:\"<p>In August of 2017, we announced the launch of WPForms’ Zapier integration. This made it easy for you to connect your WordPress forms with over 1300+ apps and automatically move information between them without writing a single line of code. Today, we&#8217;re excited to share that WPForms is the 8th fastest growing app on Zapier&#8217;s [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/wpforms-is-one-of-zapiers-fastest-growing-apps/\">WPForms is Zapier&#8217;s 8th Fastest Growing App in 2018</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s: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:13954:\"<p>In August of 2017, we announced the launch of <a title=\"Zapier Addon\" href=\"https://wpforms.com/addons/zapier-addon/\">WPForms’ Zapier integration</a>. This made it easy for you to connect your WordPress forms with over 1300+ apps and automatically move information between them without writing a single line of code.</p>\n<p>Today, we&#8217;re excited to share that WPForms is the <strong>8th fastest growing app</strong> on Zapier&#8217;s platform in 2018.</p>\n<p><img class=\"alignnone size-full wp-image-336936\" src=\"https://wpforms.com/wp-content/uploads/2018/12/fastest-growing-apps-in-zapier-2018.png\" alt=\"fastest growing apps in zapier 2018\" width=\"562\" height=\"393\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/fastest-growing-apps-in-zapier-2018.png 562w, https://wpforms.com/wp-content/uploads/2018/12/fastest-growing-apps-in-zapier-2018-300x210.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>This is a huge win for our hardworking team that strives to make smart WordPress forms easy.</p>\n<p>But the real winners here are our loyal WPForms users that save time and money integrating their WordPress forms with such a flexible and comprehensive online automation tool.</p>\n<p>We created WPForms to help small businesses grow and compete with the big guys.</p>\n<p>We&#8217;re on a mission to make it easy for business owners (you) to create forms without writing any code, so you can start collecting data that empowers your business and send it anywhere you want to streamline your workflow.</p>\n<p>With WPForms and our <a href=\"https://wpforms.com/addons/zapier-addon/\">Zapier addon</a>, you can connect your forms with your favorite apps to automate your business processes without writing a single line of code.</p>\n<p>Here the most popular Zapier integrations WPForms customers use to grow their business.</p>\n<h3>1. Salesforce</h3>\n<p>Salesforce is the most popular customer relationship management (CRM) platform giving companies a way to grow their business by strengthening customer relationships.</p>\n<p><strong>Why use Salesforce with WPForms?</strong></p>\n<p><img class=\"alignnone size-full wp-image-336927\" src=\"https://wpforms.com/wp-content/uploads/2018/12/salesforce-zapier-integration-with-wpforms.jpg\" alt=\"salesforce zapier integration with wpforms\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/salesforce-zapier-integration-with-wpforms.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/salesforce-zapier-integration-with-wpforms-300x172.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>With WPForms + Zapier, you can collect lead information with your form and send it straight to your Salesforce CRM. No need to manually enter subscribers’ contact information into your Salesforce account. Now you can use the time you save here on other areas to grow your business.</p>\n<h3>2. Google Sheets</h3>\n<p>Google Sheets is a web-based spreadsheet that you can use anywhere, no matter the location or device. Bundled with Google Drive, Docs, and Slides, you can easily share files, documents, and online presentations with others.</p>\n<p>Functioning much like an Excel spreadsheet, this online application takes it further by giving you features such as real-time collaboration capabilities, instant messaging, and the ability to upload spreadsheets directly from your computer.</p>\n<p><strong>Why Use Google Sheets with WPForms?</strong></p>\n<p><img class=\"alignnone size-full wp-image-336925\" src=\"https://wpforms.com/wp-content/uploads/2018/12/google-sheets-integration-with-wpforms.jpg\" alt=\"google sheets integration with wpforms\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/google-sheets-integration-with-wpforms.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/google-sheets-integration-with-wpforms-300x172.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You might be asking yourself why you’d need a spreadsheet app with your WordPress form builder.</p>\n<p>Well for starters, you can automatically add all lead data to your Google Sheets, so your team can review and analyze data trends from a single place.</p>\n<p>For instance, if you have a <a href=\"https://wpforms.com/create-a-survey-form-in-wordpress-step-by-step/\">survey form on your website</a>, you can automatically add all survey submissions to your Google Sheets and then tally survey responses, evaluate customer complaints, and even identify best-selling products.</p>\n<p>In addition, with Google Sheets connected to your WordPress forms, you’ll never have to manually input data for evaluation. This saves you time and money, so you can focus on more important things, like promoting your brand and generating revenue.</p>\n<h3>3. PipeDrive</h3>\n<p>PipeDrive is a sales management tool that helps small business owners manage sales processes after collecting lead information. You can use it to send emails to prospects, setup reminder emails, and even get activity-based alerts during the process.</p>\n<p><strong>Why Use PipeDrive with WPForms?</strong></p>\n<p><img class=\"alignnone size-full wp-image-336926\" src=\"https://wpforms.com/wp-content/uploads/2018/12/pipedrive-integration-with-wpforms.jpg\" alt=\"pipedrive integration with wpforms\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/pipedrive-integration-with-wpforms.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/pipedrive-integration-with-wpforms-300x172.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>PipeDrive and WPForms work together seamlessly for helping you generate new leads and following up with current customers to encourage them to come back and buy again.</p>\n<p>WPForms handles things like collecting necessary information, <a href=\"https://wpforms.com/how-to-create-a-simple-order-form-in-wordpress/\">processing online orders</a>, gathering poll and survey results, and even determining the location of people, so you can better cater to their needs.</p>\n<p>You can then send all the information submitted through your WordPress forms straight to your PipeDrive account and get proactive about landing more sales.</p>\n<p>Don’t waste time figuring out who is a first-time buyer, when someone fits specific customer criteria, or when a form is submitted on your website. All you have to do is worry about how you’re going to improve customer relationships and convince more people to convert as customers.</p>\n<h3>4. Slack</h3>\n<p>Slack is a communication hub giving you and your team an easy, real-time way to talk to each other, share files, assigns tasks, and more.</p>\n<p><strong>Why Use Slack with WPForms?</strong></p>\n<p><img class=\"alignnone size-full wp-image-336928\" src=\"https://wpforms.com/wp-content/uploads/2018/12/slack-integration-with-wpforms.jpg\" alt=\"slack integration with wpforms\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/slack-integration-with-wpforms.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/slack-integration-with-wpforms-300x172.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>When you connect your WordPress forms to Slack, choose one of two things to automate:</p>\n<ol>\n<li>Notify your entire team when a new form has been submitted</li>\n<li>Notify a single point of contact within your organization when a new form has been submitted</li>\n</ol>\n<p>In addition, you can configure WPForms’ email notifications to send out at a specified time to avoid distracting people with too many emails whenever someone submits a form on your website.</p>\n<p>Adding form entries to your Slack channels is a great way to keep your team updated on which forms have been processed. It prevents your team from missing critical lead information, improves your customer support procedures, and gives site visitors more satisfaction when they receive faster responses.</p>\n<p>This integration is great for both sales and marketing teams.</p>\n<h3>5. Google Calendar</h3>\n<p>As part of the comprehensive G Suite, Google Calendar lets you schedule meetings, receive reminders about upcoming events, and share calendars with other people so everyone is on the same page at all times.</p>\n<p><strong>Why Use Google Calendar with WPForms?</strong></p>\n<p><img class=\"alignnone size-full wp-image-336924\" src=\"https://wpforms.com/wp-content/uploads/2018/12/google-calendar-integration-with-wpforms.jpg\" alt=\"google calendar integration with wpforms\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/google-calendar-integration-with-wpforms.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/google-calendar-integration-with-wpforms-300x172.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>The great thing about using our Zapier addon to <a href=\"https://wpforms.com/how-to-send-wpforms-entries-to-google-calendar/\">connect your WordPress forms to your Google Calendar</a> is that you and your team will never be late to another meeting or event again.</p>\n<p>In fact, managing events will become a whole lot easier because WPForms will automate the calendaring part of event planning for you, so you don’t forget to schedule things or have to add things to your calendar manually.</p>\n<p>Whenever you add an RSVP form, an <a href=\"https://wpforms.com/how-to-create-a-client-booking-form-in-wordpress/\">appointment booking form</a>, or even a simple event planner form on your website, all information on the form automatically gets added to your Google Calendar.</p>\n<p>You can get a bird’s eye view of what your week looks like by automating the scheduling process in your business. This way you never overbook yourself or your team, but you always have a working appointments system for securing leads, landing sales, and growing your business.</p>\n<h3>6. SMS Text Messaging</h3>\n<p>SMS, also known as text messages are part of most phones. It’s an easy way to communicate with customers that can be used by small business owners like yourself to reach out to new leads and current customers.</p>\n<p><strong>Why Use SMS Text Messaging with WPForms?</strong></p>\n<p><img class=\"alignnone size-full wp-image-336930\" src=\"https://wpforms.com/wp-content/uploads/2018/12/twilio-integration-with-wpforms.jpg\" alt=\"twilio integration with wpforms\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/twilio-integration-with-wpforms.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/twilio-integration-with-wpforms-300x172.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Connecting your WordPress forms to an SMS app like Twilio, makes staying up to date on form submissions easier than ever. It also makes communicating with customers simple and offers a better, less intrusive experience for those that are interested in doing business with your company.</p>\n<p>When you integrate your WordPress forms with an SMS text messaging system, anytime someone submits a form on your website, you’ll receive an alert, even if you’re offline. This can help expedite responses to sales questions and concerns, close deals faster, and boost customer satisfaction.</p>\n<p>You can also use it to send SMS reminders to people submitting the forms like your customers.</p>\n<h3>7. Trello</h3>\n<p>Trello is a an online project management tool that lets your team collaborate on projects in real-time.</p>\n<p><strong>Why Use Trello with WPForms?</strong></p>\n<p><img class=\"alignnone size-full wp-image-336929\" src=\"https://wpforms.com/wp-content/uploads/2018/12/trello-integration-with-wpforms.jpg\" alt=\"trello integration with wpforms\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/trello-integration-with-wpforms.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/trello-integration-with-wpforms-300x172.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Connecting your Trello account with your WordPress forms allows you to automate the process of assigning tasks to your team. For example, whenever someone submits a form on your website, you can automatically add a card to your Trello board.</p>\n<p>Sales inquiries, support tickets, email subscribers, and more can all be their own Trello card, so your team stays on track with responses and customer satisfaction.</p>\n<p>You can track the progress of form entries in Trello by assigning them to team members and setting due dates. And best of all, say goodbye to manually entering any Trello board or card information as form entries come in, since WPForms and Zapier do it all for you automatically.</p>\n<p>And there you have it!</p>\n<p>These are 7 of the best integrations WPForms has with Zapier, so you can save time, money, and the hassle of having to manually handle every business process you have in place. But these are just scratching the surface. There are over <a title=\"WPforms Zapier Integration\" href=\"https://zapier.com/apps/wpforms/integrations\" target=\"_blank\" rel=\"noopener\">1300 apps you can connect with WPForms</a>.</p>\n<p>There’s a reason why over 1 million websites use WPForms. Small business owners looking to grow their business while automating important tasks, rely on their WordPress forms to generate leads and stay in touch with their website visitors.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today and integrate with Zapier, so you can improve your workflow and grow your business.</p>\n<p>As always, thank you for your continued support of WPForms. We look forward to bringing you more updates soon!</p>\n<p><em>Lindsay and the WPForms team</em></p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/wpforms-is-one-of-zapiers-fastest-growing-apps/\">WPForms is Zapier&#8217;s 8th Fastest Growing App in 2018</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wpforms.com/wpforms-is-one-of-zapiers-fastest-growing-apps/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:57:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"8 of the Best Remote Working Tools Needed for Success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wpforms.com/the-best-remote-working-tools-needed-for-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wpforms.com/the-best-remote-working-tools-needed-for-success/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Dec 2018 13:00:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Marketing\";s: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:20:\"job application form\";s: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:20:\"small business forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"make money online\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:22:\"employee referral form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:11:\"remote work\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpforms.com/?p=336325\";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:559:\"<p>Are you a company that employs remote workers and are in need of some of the best remote working tools? There are many benefits to running a remote team, so long as you’re equipped with the right tools to succeed. In this article, we’ll share with you 8 of the best tools for working remotely [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/the-best-remote-working-tools-needed-for-success/\">8 of the Best Remote Working Tools Needed for Success</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s: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:14705:\"<p>Are you a company that employs remote workers and are in need of some of the best remote working tools? There are many benefits to running a remote team, so long as you’re equipped with the right tools to succeed.</p>\n<p>In this article, we’ll share with you 8 of the best tools for working remotely so you and your team members can maximize productivity and secure more sales than ever before, no matter where in the world you are.</p>\n<h3>1. <a href=\"https://wpforms.com\">WPForms</a></h3>\n<p><img class=\"alignnone size-full wp-image-229627\" src=\"https://wpforms.com/wp-content/uploads/2018/07/WPForms-WordPress-Contact-Plugin.png\" alt=\"WPForms WordPress Contact Plugin\" width=\"562\" height=\"321\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/WPForms-WordPress-Contact-Plugin.png 562w, https://wpforms.com/wp-content/uploads/2018/07/WPForms-WordPress-Contact-Plugin-300x171.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Last week we talked about how easy it is to hire remote workers for your team using WPForms. In fact, you can use the traditional <a href=\"https://wpforms.com/how-to-create-a-job-application-form-in-wordpress/\">job application form</a> and gather potential job candidates or <a href=\"https://wpforms.com/how-to-create-an-employee-referral-form-in-wordpress/\">create an employee referral form</a> and let your current team members find the best talent for you.</p>\n<p>But WPForms can help your remote team beyond the hiring process.</p>\n<p>For example, you can <a href=\"https://wpforms.com/how-to-create-a-simple-contact-form-in-wordpress/\">create a simple contact form</a>, let team members <a href=\"https://wpforms.com/how-to-create-a-file-upload-form-in-wordpress/\">upload files</a> for open projects, <a href=\"https://wpforms.com/addons/surveys-and-polls-addon/\">display a survey or poll</a> to customers for testimonials or new product ideas, and even <a href=\"https://wpforms.com/how-to-create-a-donation-form-popup-in-wordpress/\">collect donations</a> for your nonprofit organization using WPForms.</p>\n<p>In addition, WPForms helps you with the following:</p>\n<ul>\n<li><a href=\"http://optinmonster.com/beginners-guide-to-email-marketing/\" target=\"_blank\" rel=\"noopener\">Email marketing efforts</a> with MailChimp, Drip, Constant Contact, Campaign Monitor, AWeber, and GetResponse integrations</li>\n<li>Collecting signatures on important documents from employees</li>\n<li>Managing order form entries from the backend of your website</li>\n<li>Accepting payments from customers via Stripe or PayPal</li>\n<li>Letting team members submit blog posts to be used on various platforms using the <a href=\"https://wpforms.com/addons/post-submissions-addon/\">post submissions addon</a></li>\n<li>And so much more</li>\n</ul>\n<p>With the WPForms form builder plugin for WordPress, you never have to worry about where in the world your remote employees are. You can handle internal business operations, as well as customer-related operations as a team, all from the backend of your website.</p>\n<h3>2. <a href=\"https://www.wpbeginner.com/refer/slack/\" target=\"_blank\" rel=\"nofollow noopener\">Slack</a></h3>\n<p><img class=\"alignnone size-full wp-image-336335\" src=\"https://wpforms.com/wp-content/uploads/2018/12/slack-channel-example.jpg\" alt=\"slack channel example\" width=\"562\" height=\"372\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/slack-channel-example.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/slack-channel-example-300x199.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Slack offers real-time messaging between teams, regardless of time zone. It works perfectly for remote teams that need to have an open line of communication at all times, and comes with neat features like:</p>\n<ul>\n<li>Different channels so teams can divide into groups and keep conversations organized</li>\n<li>The ability to share files with one another</li>\n<li>Third-party app integrations</li>\n<li>Archived messages with search feature</li>\n<li>Voice and video calls</li>\n</ul>\n<p>Being able to communicate with remote workers is the key to your business’ success.</p>\n<p>Using Slack, you and your team can be on the same page at all times, without having to deal with messy inboxes full of random email messages.</p>\n<h3>3. <a href=\"https://everytimezone.com/\" target=\"_blank\" rel=\"nofollow noopener\">Every Time Zone</a></h3>\n<p><img class=\"alignnone size-full wp-image-336328\" src=\"https://wpforms.com/wp-content/uploads/2018/12/every-time-zone-example.png\" alt=\"every time zone example\" width=\"562\" height=\"291\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/every-time-zone-example.png 562w, https://wpforms.com/wp-content/uploads/2018/12/every-time-zone-example-300x155.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Speaking of communicating in real time. It’s tough to know who’s awake and who’s asleep when you work with a large team that’s spread across the globe.</p>\n<p>Make things easier on yourself, and eliminate the need to do the math, by referencing Every Time Zone before you chat it up with someone. Check out the time zones of fellow remote employees and see who is awake and available to talk.</p>\n<p>Though this might seem insignificant, there will be times when you need to get ahold of someone right away. If that person is 12 hours ahead of you, and fast asleep, you can easily redirect your efforts to someone else closer to your time zone and discuss the issue with them instead.</p>\n<h3>4. <a href=\"https://www.google.com/drive/\" target=\"_blank\" rel=\"nofollow noopener\">Google Docs</a></h3>\n<p><img class=\"alignnone size-full wp-image-336329\" src=\"https://wpforms.com/wp-content/uploads/2018/12/google-drive.jpg\" alt=\"google drive\" width=\"562\" height=\"276\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/google-drive.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/google-drive-300x147.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Used as a more comprehensive file sharing tool than Slack, which is mainly for messaging team members, Google Drive has it all.</p>\n<p>For starters, share word formatted documents, excel spreadsheets, and even powerpoint presentations all from one convenient location.</p>\n<p>In addition, grant people access to certain Google documents and allow them to view or edit them as you wish. Plus, let team members collaborate on a document, make real-time changes, leave comments, and even chat with one another while working from afar.</p>\n<p>With this neat remote working tool you can save any file types such as images, recordings, or videos, organize work according to team or project using folders, and access files from any device.</p>\n<p>You can also scan important documents and upload them directly to your Google Drive, work offline, and even see old versions of documents in case you need to go back in time and make a fix.</p>\n<p>Working together in different places has never been so easy.</p>\n<p>Need something a little simpler?</p>\n<p>Google Drive is an amazing platform, but comes with a steep learning curve if you&#8217;re not used to working with all of its services at once. For those that need a simple place to store, share, and view documents, check out <a href=\"https://www.dropbox.com/\" target=\"_blank\" rel=\"nofollow noopener\">Dropbox</a> instead.</p>\n<h3>5. <a href=\"https://zoom.us/\" target=\"_blank\" rel=\"nofollow noopener\">Zoom</a></h3>\n<p><img class=\"alignnone size-full wp-image-336332\" src=\"https://wpforms.com/wp-content/uploads/2018/12/zoom.jpg\" alt=\"zoom\" width=\"562\" height=\"310\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/zoom.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/zoom-300x165.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Need an easy way to hold remote meetings? Then you need to check out Zoom. As one of the most powerful webinar software in the market to date, this interactive video conferencing tool makes getting your remote team together for a meeting a cinch.</p>\n<p>It comes with HD quality audio and video and allows you to share your screens with others. This is great if you&#8217;re teaching someone how to use a new online tool or want to display a document for the team.</p>\n<p>What’s more, Zoom lets people in the meeting chat in real-time, so anytime someone has a question, but doesn’t want to interrupt the team member talking, all they have to do is type it out using the chat feature for all to see.</p>\n<p>This awesome remote working tool also comes with features such as:</p>\n<ul>\n<li>Full screen and gallery view</li>\n<li>Join as view only attendee</li>\n<li>Annotation and co-annotation functionality</li>\n<li>Built-in security measures such as password protection</li>\n<li>Toll-free options in 60+ countries for joining meetings</li>\n<li>Instant or scheduled meeting setups</li>\n</ul>\n<p>Stop worrying about how you’re going to meet with your remote team and use Zoom instead.</p>\n<p>You’ll see how much more productive your team is, and successful your business becomes after scheduling a few meetings with your remote employees.</p>\n<h3>6. <a href=\"https://www.lastpass.com/\" target=\"_blank\" rel=\"nofollow noopener\">LastPass</a></h3>\n<p><img class=\"alignnone size-full wp-image-336330\" src=\"https://wpforms.com/wp-content/uploads/2018/12/lastpass-example.png\" alt=\"lastpass example\" width=\"562\" height=\"370\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/lastpass-example.png 562w, https://wpforms.com/wp-content/uploads/2018/12/lastpass-example-300x198.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>In today’s digital world it’s not unusual to see people with countless numbers of online accounts, all with different passwords. And the crazy thing is, all of these accounts are a necessary part of running a successful business.</p>\n<p>In an effort to safeguard those passwords, ensure people don’t lock themselves out of applications, and make sharing team passwords easier, look into using LastPass.</p>\n<p>With LastPass, each remote worker will have one master login password to remember after installing LastPass on their browser. Every other password they want saved in the LastPass account will automatically load when needed.</p>\n<p>Available on a wide variety of devices, LastPass makes managing passwords easy and safe to do, which is essential when running an online business made up of remote employees.</p>\n<h3>7. <a href=\"https://idonethis.com/\" target=\"_blank\" rel=\"nofollow noopener\">I Done This</a></h3>\n<p><img class=\"alignnone size-full wp-image-336334\" src=\"https://wpforms.com/wp-content/uploads/2018/12/i-done-this-example.jpg\" alt=\"i done this example\" width=\"562\" height=\"336\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/i-done-this-example.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/i-done-this-example-300x179.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Accountability, staying on track with tasks, and managing a team spread across the globe can be challenging at best. That’s why investing in something as simple as I Done This can be so helpful.</p>\n<p>With this neat check-in tool, each team member checks in on a daily basis, either via their browser or email. They check off what was accomplished for the day and make notes of roadblocks. Then, the entire team gets to see what everyone else is up to so that everyone is on the same page at all times.</p>\n<p>A simple tool like this boosts accountability and productivity on all fronts. It keeps tasks organized, informs the group when something is stalled and why, and lets people take charge of their work, even if they are in a different time zone than others.</p>\n<h3>8. <a href=\"https://trello.com/\" target=\"_blank\" rel=\"nofollow noopener\">Trello</a></h3>\n<p><img class=\"alignnone size-full wp-image-336331\" src=\"https://wpforms.com/wp-content/uploads/2018/12/trello-example.png\" alt=\"trello example\" width=\"562\" height=\"321\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/trello-example.png 562w, https://wpforms.com/wp-content/uploads/2018/12/trello-example-300x171.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>If you’re in the market for a simple project management tool, Trello is for you. Not only does it visually map out what you and your team are working on, it’s free to use.</p>\n<p>Here are some of Trello’s best features:</p>\n<ul>\n<li>Collaborate with your remote team via the cloud</li>\n<li>Use the drag and drop functionality to move tasks around</li>\n<li>Color code boards and tasks so teams always know what tasks are theirs</li>\n<li>Assign tasks, due dates, and even add comments</li>\n<li>Integrate third-party apps and get more done</li>\n<li>Sync your Trello boards across all devices and access from them anywhere</li>\n<li>Upload file attachments from various locations</li>\n<li>Invite new people to your boards so they can join the project</li>\n</ul>\n<p>Though Trello does have all the basics you could need in a project management tool, it’s good to know about more comprehensive tools as well.</p>\n<p>For example, <a href=\"https://hootsuite.com/\" target=\"_blank\" rel=\"nofollow noopener\">Hootsuite</a> or <a href=\"https://coschedule.com/ls\" target=\"_blank\" rel=\"nofollow noopener\">CoSchedule</a> are perfect for managing tasks, publishing blog posts, and scheduling social media messages automatically.</p>\n<p>All of these tools serve to save you time and money so your business not only grows, but also succeeds.</p>\n<p>And there you have it! Some of the very best remote working tools needed for your online business to succeed.</p>\n<p>If you’re looking for additional tools and plugins to help you run your remote business, be sure to check out our roundups of <a href=\"https://wpforms.com/the-best-free-wordpress-plugins-for-your-website/\">free WordPress plugins</a> for your site, as well as the <a href=\"https://wpforms.com/must-have-plugins-and-tools-for-wordpress-sites/\">must-have plugins and tools</a> for all WordPress websites.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/the-best-remote-working-tools-needed-for-success/\">8 of the Best Remote Working Tools Needed for Success</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wpforms.com/the-best-remote-working-tools-needed-for-success/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:25:\"https://wpforms.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s: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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:12:\"nginx/1.15.2\";s:4:\"date\";s:29:\"Sun, 30 Dec 2018 20:30:18 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"set-cookie\";s:98:\"srv_id=587cf80a2a75f4f026cdf9547549c7f8; expires=Sun, 30-Dec-18 21:30:18 GMT; max-age=3600; path=/\";s:13:\"last-modified\";s:29:\"Sun, 30 Dec 2018 11:39:11 GMT\";s:4:\"etag\";s:34:\"\"59a4a9af3c7d0a4edb393c30fd5f04b0\"\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:9:\"x-backend\";s:22:\"awesomemotive-web1.com\";s:25:\"strict-transport-security\";s:13:\"max-age=86400\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(7645,'_site_transient_timeout_boldgrid_backup_premium_version_data','1546230612','no'),(7646,'_site_transient_boldgrid_backup_premium_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:23:\"BoldGrid Backup Premium\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"asset_id\";i:971099;s:12:\"release_date\";s:19:\"2018-12-05 21:18:39\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"5.0.0\";s:8:\"sections\";s:1094:\"{\"description\":\"<p>Premium extension for the BoldGrid Backup plugin.<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP 5.3 or higher<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire boldgrid-backup-premium folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.0.3<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed ob_flush warning with S3.<\\/li>\\n<li>Bug fix: Fixed error: Invalid argument supplied for foreach().<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: October 25th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed handling of hook parameter on non-bulk plugin upgrades.<\\/li>\\n<li>Bug fix: Fatal error: Uncaught Error: Call to undefined function wp<em>generate<\\/em>password.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: April 11th, 2017<\\/p>\\n\\n<ul>\\n<li>Initial release.<\\/li>\\n<\\/ul>\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:6645:\"{\"4.9.8\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.9.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.9.6\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.9.5\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.9.4\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.9.3\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.9.2\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.9.1\":{\"1.0.0\":[100,12],\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.8.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.8.6\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.8.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.8.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.8.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.8.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.8.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.11\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.10\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.12\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.11\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.10\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]},\"4.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:129:\"{\"boldgrid\":\"Boldgrid\",\"backup\":\"Backup\",\"restore\":\"Restore\",\"migrate\":\"Migrate\",\"migration\":\"Migration\",\"amazon s3\":\"Amazon s3\"}\";s:7:\"banners\";s:125:\"{\"low\":\"//repo.boldgrid.com/assets/banner-backup-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-backup-1544x500.png\"}\";}}s:7:\"updated\";i:1546201812;}','no'),(6985,'_transient_timeout_plugin_slugs','1546288260','no'),(6986,'_transient_plugin_slugs','a:9:{i:0;s:19:\"akismet/akismet.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:3;s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";i:4;s:31:\"boldgrid-gallery/wc-gallery.php\";i:5;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:6;s:9:\"hello.php\";i:7;s:47:\"post-and-page-builder/post-and-page-builder.php\";i:8;s:24:\"wpforms-lite/wpforms.php\";}','no'),(7648,'_transient_timeout_wpforms_dash_widget_lite_entries_by_form','1546214405','no'),(7649,'_transient_wpforms_dash_widget_lite_entries_by_form','a:12:{i:26;a:3:{s:7:\"form_id\";i:26;s:5:\"count\";i:0;s:5:\"title\";s:22:\"Customer Feedback Form\";}i:24;a:3:{s:7:\"form_id\";i:24;s:5:\"count\";i:0;s:5:\"title\";s:25:\"Shipping Information Form\";}i:25;a:3:{s:7:\"form_id\";i:25;s:5:\"count\";i:0;s:5:\"title\";s:12:\"Sign Up Form\";}i:22;a:3:{s:7:\"form_id\";i:22;s:5:\"count\";i:0;s:5:\"title\";s:23:\"Event Registration Form\";}i:23;a:3:{s:7:\"form_id\";i:23;s:5:\"count\";i:0;s:5:\"title\";s:24:\"Information Request Form\";}i:20;a:3:{s:7:\"form_id\";i:20;s:5:\"count\";i:0;s:5:\"title\";s:24:\"Email Form (Traditional)\";}i:21;a:3:{s:7:\"form_id\";i:21;s:5:\"count\";i:0;s:5:\"title\";s:39:\"Event Registration Form (Group Support)\";}i:19;a:3:{s:7:\"form_id\";i:19;s:5:\"count\";i:0;s:5:\"title\";s:17:\"Address Form (US)\";}i:18;a:3:{s:7:\"form_id\";i:18;s:5:\"count\";i:0;s:5:\"title\";s:28:\"Address Form (International)\";}i:17;a:3:{s:7:\"form_id\";i:17;s:5:\"count\";i:0;s:5:\"title\";s:15:\"BoldGrid Form 3\";}i:16;a:3:{s:7:\"form_id\";i:16;s:5:\"count\";i:0;s:5:\"title\";s:15:\"BoldGrid Form 2\";}i:15;a:3:{s:7:\"form_id\";i:15;s:5:\"count\";i:0;s:5:\"title\";s:15:\"BoldGrid Form 1\";}}','no'),(7650,'_transient_timeout_feed_052500b17b6986c854ef52a9542abd78','1546245012','no'),(7651,'_transient_feed_052500b17b6986c854ef52a9542abd78','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:22:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\" | BoldGrid\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://www.boldgrid.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Create a Website with a WordPress Website Builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Dec 2018 17:45: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:30:\"https://wordpress.org/?v=5.0.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:1:{i:0;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adding a PDF to Your WordPress Site with BoldGrid\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://www.boldgrid.com/adding-a-pdf-to-your-wordpress-site-with-boldgrid/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 27 Jan 2018 01:02:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"How To\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"dashboard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:20:\"Page and Post Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:12:\"page builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://www.boldgrid.com/?p=14240\";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:314:\"Adding a PDF to your WordPress site with BoldGrid is as easy as drag-and-drop. Thanks to the Page Builder plugin, you can add or update pages in the Page and Post Editor quickly, so you can get back to the important stuff sooner.&#160; Log in to your WordPress admin dashboard to get started. Next, click [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Chris Pendergraft\";s: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:5948:\"<div class=\"boldgrid-section\">\n<div class=\"container-fluid\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n\n<span style=\"font-weight: 400;\">Adding a PDF to your WordPress site with BoldGrid is as easy as drag-and-drop. Thanks to the Page Builder plugin, you can add or update pages in the Page and Post Editor quickly, so you can get back to the important stuff sooner.&nbsp;</span>\n<p class=\"\"><span id=\"more-14240\"></span></p>\n<span style=\"font-weight: 400;\">Log in to your WordPress admin dashboard to get started. Next, c</span>lick on &#8220;Pages&#8221; from the left-hand sidebar. Then, choose &#8220;All Pages&#8221; and select the page you would like to edit. Alternatively, you can add a new, blank page.\n\n<a href=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Adding-a-Blank-Page.png\"><img class=\"alignnone size-full wp-image-14241\" src=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Adding-a-Blank-Page.png\" alt=\"\" width=\"1903\" height=\"957\"></a>\n<h2><b>Adding a PDF Using BoldGrid’s Page and Post Editor</b></h2>\nThe Page and Post Editor&#8217;s simple functionality makes adding things like an <a style=\"background-color: #ffffff;\" href=\"https://www.boldgrid.com/blog/how-to/adding-and-embedding-videos-with-boldgrid/\">embedded video</a>as easy as copy-and-paste, and drag-and-drop. If you have started a new page, give the page a title and fill in surrounding content that explains why the site visitor should download the PDF.\n\n<span style=\"font-weight: 400;\">Next, simply click the location on your webpage where you would like the uploaded&nbsp;PDF to appear. Either drag the PDF file to the spot or click &#8220;Add Media&#8221; at the top to view your media library. </span>\n\nIf you dragged the file into the editor, the PDF will display in your media library already. If you chose&nbsp;to click the &#8220;Add Media&#8221; button, click &#8220;Upload File&#8221; and select the appropriate file from your&nbsp;hard drive.\n\n<a href=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Click-Select-Files-in-WordPress-Media-Library.png\"><img class=\"alignnone size-full wp-image-14242\" src=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Click-Select-Files-in-WordPress-Media-Library.png\" alt=\"\" width=\"1903\" height=\"957\"></a>\n\nWhen you see your PDF displayed and selected in your WordPress Media Library, give that file an appropriate title and a meta description. Adding a meta description for items like a PDF is a search engine optimization (SEO) best practice, and can lead to better search results for your page. Remember to add a title for your PDF document, as that text will display on your page and in search results so visitors know what it is. By labeling your file definitively, it will rank higher on the web when people search for those keywords and garner more clicks.&nbsp;\n\n<a href=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Adding-a-Meta-Description-to-your-PDF-is-important.png\"><img class=\"alignnone size-full wp-image-14243\" src=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Adding-a-Meta-Description-to-your-PDF-is-important.png\" alt=\"Adding a Meta Description to your PDF is important\" width=\"1903\" height=\"957\"></a>\n\n<span style=\"font-weight: 400;\">After filling out the information you find necessary for this PDF, click the blue “Insert&nbsp;Into Page” button in the bottom right corner of your media library. </span>\n\nThe PDF will then display in hyperlinked text, making it more apparent to web visitors that they can download it.\n\n<a href=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Example-of-a-PDF-File-Hyperlinked.png\"><img class=\"alignnone size-full wp-image-14245\" src=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Example-of-a-PDF-File-Hyperlinked.png\" alt=\"\" width=\"1903\" height=\"908\"></a>\n\n<span style=\"font-weight: 400;\">If you want to edit the URL linked to your PDF document, click on the link in your Page and Post Editor, then select the pencil button in the bottom left corner.</span>\n\n<a href=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Editing-a-PDF-link.png\"><img class=\"alignnone size-full wp-image-14244\" src=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Editing-a-PDF-link.png\" alt=\"\" width=\"1903\" height=\"908\"></a>\n\n<span style=\"font-weight: 400;\">You can either edit the link and click &#8220;Apply,&#8221; or you can click on the gear button to see more link options. </span>\n\n<span style=\"font-weight: 400;\"><a href=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Editing-a-PDF-Link-Options.png\"><img class=\"alignnone size-full wp-image-14246\" src=\"https://www.boldgrid.com/wp-content/uploads/2018/01/Editing-a-PDF-Link-Options.png\" alt=\"\" width=\"1903\" height=\"908\"></a></span>\n\nEdit the information you want to change, then select &#8220;Update&#8221; in the bottom right corner to save those changes.\n\nFinally, save the draft and select either &#8220;Update&#8221; if you are working with an existing page, or &#8220;Publish&#8221; if it is a new page. You will find these buttons on the right side of the admin menu.\n\n<span style=\"font-weight: 400;\">Finally, to see the PDF as displayed on your site, select the &#8220;Preview Changes&#8221; button. </span>\n<h2><strong>Ready to Try it for Yourself?</strong></h2>\nWe hope that the information provided about how adding a PDF to your WordPress site with BoldGrid makes things easier while building out your website. If you have not yet, download the <a style=\"background-color: #ffffff;\" href=\"https://www.boldgrid.com/get-it-now/\">BoldGrid suite of plugins</a>or just the<a style=\"background-color: #ffffff;\" href=\"https://www.boldgrid.com/wordpress-page-builder-by-boldgrid/\">Page Builder Plugin</a>to start using your WordPress site more efficiently.\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container-fluid\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:44:\"https://www.boldgrid.com/tag/dashboard/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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 30 Dec 2018 20:30:12 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:14:\"content-length\";s:4:\"7826\";s:13:\"last-modified\";s:29:\"Fri, 28 Dec 2018 17:45:16 GMT\";s:4:\"etag\";s:34:\"\"5cec05a9f6f4f792d6ee17202750f0d4\"\";s:4:\"link\";s:61:\"<https://www.boldgrid.com/wp-json/>; rel=\"https://api.w.org/\"\";s:13:\"cache-control\";s:14:\"max-age=172800\";s:7:\"expires\";s:29:\"Tue, 01 Jan 2019 20:24:36 GMT\";s:13:\"x-proxy-cache\";s:3:\"HIT\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(7800,'_site_transient_timeout_available_translations','1546213288','no'),(7801,'_site_transient_available_translations','a:114:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-20 10:32:33\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-29 01:38:46\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-04 08:43:29\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.5/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-11 16:43:39\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2017-10-01 12:57:10\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.6/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-18 01:37:03\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-16 20:26:14\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-14 13:53:59\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.9/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-18 18:53:16\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-30 18:17:51\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-20 09:45:39\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.0.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-20 09:43:07\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-28 18:01:39\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-28 17:27:10\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.0.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-25 19:26:15\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-16 16:16:28\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-15 21:52:53\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-10 07:52:38\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-15 21:53:14\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-29 20:53:24\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:19:\"2018-12-13 12:01:56\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-16 04:34:59\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-06 12:47:45\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-06 21:26:01\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-07 18:38:30\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-14 13:48:04\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.9/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-15 15:03:42\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-26 13:33:36\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-26 19:16:17\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:9:\"5.0-beta3\";s:7:\"updated\";s:19:\"2018-11-28 16:04:33\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.0-beta3/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-12-09 21:12:23\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-10-04 08:05:41\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-18 19:13:01\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-17 22:20:45\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-11-08 18:24:55\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-01-31 11:16:06\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.6/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-15 12:06:51\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.8/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-27 08:54:31\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.7\";s:7:\"updated\";s:19:\"2018-06-17 09:33:44\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.7/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-20 08:32:37\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-15 10:23:47\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-07-28 13:16:13\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.7.11\";s:7:\"updated\";s:19:\"2018-09-20 11:13:37\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.7.11/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-22 19:32:28\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-18 18:01:10\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-24 13:53:29\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:19:\"2018-12-14 12:07:33\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.1/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-21 14:15:57\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.8/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-12 08:08:32\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-11-22 02:28:45\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-18 14:32:44\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.9/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-16 19:15:50\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-02-13 07:38:55\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.6/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-08-30 20:27:25\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-19 12:52:46\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-27 10:30:26\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-16 08:18:53\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.0.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-04 07:59:37\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-16 08:19:20\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-15 19:12:58\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.3/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-19 07:57:12\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-15 13:09:27\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-17 18:27:57\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.9/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-09 09:30:48\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/4.9.5/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-23 14:28:43\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-26 12:33:18\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-20 13:47:02\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-24 10:56:54\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2018-01-04 13:33:13\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-19 15:45:12\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-19 00:24:55\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-15 14:32:02\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-28 07:57:47\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-20 18:00:20\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-12 12:31:53\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-28 15:43:01\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-24 10:37:55\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.9/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-17 09:44:25\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-18 01:45:17\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-20 04:58:53\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.0.2\";s:7:\"updated\";s:19:\"2018-12-21 00:57:14\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-07 06:14:39\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(7796,'_site_transient_timeout_boldgrid_plugins','1546231279','no'),(7797,'_site_transient_boldgrid_plugins','O:8:\"stdClass\":4:{s:21:\"boldgrid-inspirations\";O:8:\"stdClass\":24:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"1.6.4\";s:8:\"asset_id\";i:971098;s:12:\"release_date\";s:19:\"2018-12-05 21:18:02\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"5.0.0\";s:8:\"sections\";a:4:{s:11:\"description\";s:377:\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.</p>\n<p>The first phase is Inspiration; the guided tool creates your base website. If you already have a website, then you can skip this step.</p>\n<p>The second phase is Customization; tools to transform your website into your vision.</p>\n\";s:12:\"installation\";s:283:\"<ol>\n<li><p>Upload the entire boldgrid-inspirations folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n<li><p>You will find the Inspirations menu in your WordPress Dashboard / admin panel.</p></li>\n</ol>\n\";s:9:\"changelog\";s:36991:\"<h4>1.6.4</h4>\n<p>Release date: Dec 5th, 2018</p>\n<ul>\n<li>Bug fix: Unable to save \"boldgrid<em>menu</em>option\" on settings page.</li>\n<li>Bug fix: Fixed updating plugin via ajax.</li>\n</ul>\n<h4>1.6.3</h4>\n<p>Release date: Dec 4th, 2018</p>\n<ul>\n<li>Bug fix: Coin Budget help was not toggling when clicked.</li>\n</ul>\n<h4>1.6.2</h4>\n<p>Release date: Nov 26th, 2018</p>\n<ul>\n<li>Bug fix: JIRA BGINSP-33 Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.</li>\n</ul>\n<h4>1.6.1</h4>\n<p>Release date: Nov 20th, 2018</p>\n<ul>\n<li>Update: JIRA BGCONN-20 Removed update settings; have been moved to the BoldGrid Library packages.</li>\n<li>Bug fix: JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.</li>\n<li>Bug fix: BoldGrid Connect Search / WP 5.0 fix.</li>\n<li>Bug fix: Attribution page not being rebuilt / WP 5.0 fix.</li>\n<li>Bug fix: BoldGrid Connect Search in the Customizer / WP 5.0 fix.</li>\n<li>Bug fix: Recommended image sizes not working as expected.</li>\n</ul>\n<h4>1.6.0</h4>\n<ul>\n<li>Update: Updated BoldGrid library to version 2.4.2.</li>\n<li>New feature: JIRA BGINSP-24 Log data when there may be a connection or Ajax error.</li>\n</ul>\n<h4>1.5.8</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-16 Warnings and notices within inspiration w/ Crio theme</li>\n<li>Bug fix: JIRA BGINSP-23 Fixed issue: Connect Search may load with connection notice.</li>\n</ul>\n<h4>1.5.7</h4>\n<ul>\n<li>Update: Updated to library version 2.3.5.</li>\n</ul>\n<h4>1.5.6</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-14 Fatal in PHP >=7.1.0 when creating internal preview builds.</li>\n<li>Bug fix: JIRA WPB-3767 Prevent invalid API calls for check-version.</li>\n<li>Update: JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.</li>\n<li>Update: JIRA WPB-3730 Updated library dependency to ^2.0.0.</li>\n<li>Update: JIRA BGINSP-3 Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.</li>\n<li>Update: JIRA WPB-3684 Updated composer.json, due to package changes.</li>\n<li>New feature: JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.</li>\n</ul>\n<h4>1.5.5</h4>\n<ul>\n<li>Bug fix: JIRA BGSTAGE-32 Fixed staging plugin install.</li>\n</ul>\n<h4>1.5.4</h4>\n<ul>\n<li>Update: JIRA BGINSP-4 Removed admin notice recommending plugin installations.</li>\n</ul>\n<h4>1.5.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3643 Ensure that deployment does not install new wporg plugins if old ones are installed.</li>\n</ul>\n<h4>1.5.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3587 Menu assignment after deployment broken in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3570 Inspirations Select button misplaced in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3593 Changes require to help Staging support new Customizer scheduler.</li>\n</ul>\n<h4>1.5.1</h4>\n<ul>\n<li>Update: Updates to library.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.11</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3336 All and Default categories do not align.</li>\n<li>Bug fix: JIRA WPB-3337 On a fresh install, Pages - New From GridBlocks fails.</li>\n<li>Bug fix: JIRA WPB-3333 Image search only searching one provider instead of all.</li>\n<li>Bug fix: JIRA WPB-3346 Edit Image button not working for attachment.</li>\n<li>Bug fix: JIRA WPB-3387 Loading GridBlocks just spins.</li>\n<li>Update: JIRA WPB-3352 Purchase coins through BoldGrid Central.</li>\n<li>Update: JIRA WPB-3355 Add data-image-url attribute.</li>\n<li>Update: JIRA WPB-3382 More descriptive creative commons icon.</li>\n<li>Update: JIRA WPB-3384 Add License details to attachment details.</li>\n<li>Update: JIRA WPB-3383 Filter out boldgrid-gridblock-set-preview-page.</li>\n</ul>\n<h4>1.4.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3318 When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.</li>\n<li>Bug fix: JIRA WPB-3312 Ensure activation of preferred form plugin. Added filter for preferred slug.</li>\n<li>Bug fix: JIRA WPB-3317 New page from GridBlocks not working.</li>\n<li>Update: JIRA WPB-3252 Disable \'default\' category and configure \'showcase\'.</li>\n<li>Bug fix: JIRA WPB-3332 New from gridblocks button not showing.</li>\n</ul>\n<h4>1.4.8</h4>\n<ul>\n<li>New feature: JIRA WPB-3200 Added WPForms support.</li>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n<li>Update: JIRA WPB-3296 Add Inspirations as first menu item child.</li>\n<li>Bug Fix: JIRA WPB-3274 Plugins > Add New Updates fail in modals.</li>\n<li>New feature: JIRA WPB-3293 Resize images during deployment vs imgr server.</li>\n</ul>\n<h4>1.4.7</h4>\n<ul>\n<li>Update: JIRA WPB-3243 Change feedback admin notice display frequency.</li>\n<li>Update: JIRA WPB-3264 Adding twitch social media option.</li>\n<li>New Feature: Added BoldGrid Library to plugin.</li>\n</ul>\n<h4>1.4.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3179 Gradient style being lost during normal deployment.</li>\n<li>Bug fix: JIRA WPB-3180 Open WordPress/BoldGrid links in attribution page in new tab.</li>\n</ul>\n<h4>1.4.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n<li>Bug fix: JIRA WPB-3162 Fixed issue creating .htaccess file in deployment.</li>\n<li>Bug fix: JIRA WPB-3171 As an author, when installing a site I do not want background images to be processed.</li>\n<li>Bug fix: JIRA WPB-3176 Background gradient / url bug during deplyment.</li>\n</ul>\n<h4>1.4.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Bug fix: JIRA WPB-3141 Fixed invalid updates for BoldGrid Prime theme.</li>\n<li>Bug fix: JIRA WPB-3158 Deployment\'s gallery updates are not saved.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3106 As an Author, I can set background images for elements.</li>\n<li>New feature: JIRA WPB-3095 Update generic builds to display per theme channel.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2745 Fixed upgrade notices displaying when activation version was not recorded.</li>\n<li>Update: JIRA WPB-3019 Updating attribution link creation.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>New feature: JIRA WPB-3044 Automatically get Unsplash attribution.</li>\n<li>Update: JIRA WPB-3043 Updating plugin description.</li>\n</ul>\n<h4>1.4.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3232 Deploy Staging menu item missing.</li>\n<li>Bug fix: JIRA WPB-3233 BoldGrid Connect Search missing from new image widget.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Update: JIRA WPB-2936 Updating YouTube videos for BoldGrid Dashboard\'s new release.</li>\n<li>Bug fix: JIRA WPB-2927 Social media menu disappears.</li>\n<li>Update: JIRA WPB-2949 Configure blog using categories.</li>\n<li>Bug fix: JIRA WPB-2950 Added max height for reseller logos on login page.</li>\n<li>Bug fix: JIRA WPB-2925 Sidebar widgets don\'t match between preview and installed site.</li>\n<li>Bug fix: JIRA WPB-2951 Images in staging posts not being downloaded.</li>\n<li>Bug fix: JIRA WPB-2955 Backwards compatibility - maps taking up 200px empty space.</li>\n<li>Bug fix: JIRA WPB-2984 Attribution page 404.</li>\n</ul>\n<h4>1.3.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n<li>Bug fix: JIRA WPB-2916 Inspirations deploy fatal error if an old forked plugin had the original installed.</li>\n<li>Bug fix: JIRA WPB-2905 If installing via Author, do not update pages with survey data.</li>\n<li>Bug fix: JIRA WPB-2910 Unterminated entity reference bug.</li>\n<li>Update: JIRA WPB-2913 Validate email address in survey.</li>\n<li>Bug fix: JIRA WPB-2404 iframe timeout in step 2 of Inspirations.</li>\n<li>Bug fix: JIRA WPB-2173 Error deleting image and redownloading.</li>\n<li>Bug fix: JIRA WPB-2635 Start over staging affecting active site.</li>\n<li>Bug fix: JIRA WPB-2493 Publish private posts during staging deployment.</li>\n<li>Bug fix: JIRA WPB-2796 Social media urls end in /username, go to 404s.</li>\n</ul>\n<h4>1.3.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Update: JIRA WPB-2900 Update verbiage of build coin cost.</li>\n<li>Bug fix: JIRA WPB-2901 Scroll bars not visible on preview iframe in Chrome.</li>\n<li>Bug fix: Removing CTA hooks.</li>\n</ul>\n<h4>1.3.7</h4>\n<ul>\n<li>Update: JIRA WPB-2819 Use switch instead of checkbox for Demo.</li>\n<li>Bug fix: JIRA WPB-2780 Theme screenshots opening directly, rather than within gallery.</li>\n<li>Update: JIRA WPB-2825 Adjust do not display formatting.</li>\n<li>Update: JIRA WPB-2829 Updating hook to resolve BoldGrid SEO plugin conflicts.</li>\n<li>Update: JIRA WPB-2837 Remove loading image after selecting theme in Gallery.</li>\n<li>Update: JIRA WPB-2839 Minor verbiage change for Add a blog.</li>\n<li>Update: JIRA WPB-2785 Entering words with apostrophe in it for Site title displays with a Backslash.</li>\n<li>Bug fix: JIRA WPB-2848 Customize link takes users back to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2527 \'New from GridBlocks\' preview page appearing in cart.</li>\n<li>Bug fix: JIRA WPB-2862 Survey, invalid argument supplied for foreach.</li>\n<li>Bug fix: JIRA WPB-2601 Inspirations Internet Explorer/ Stuck on loading themes.</li>\n<li>Bug fix: JIRA WPB-2854 Downloading Image spinner never stops spinning.</li>\n</ul>\n<h4>1.3.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2772 PHP warnings on deploy in WordPress 4.3.7.</li>\n<li>Bug fix: JIRA WPB-2766 Plesk and WP-CLI were not getting private repo updates.</li>\n<li>Update: JIRA WPB-2763 Update email and address on Contact Us page.</li>\n<li>Update: JIRA WPB-2764 Remove option to add a map.</li>\n<li>Update: JIRA WPB-2765 Allow iframes for preview builds.</li>\n<li>New feature: JIRA WPB-2771 Update footer-company-details widget with survey data.</li>\n<li>New feature: JIRA WPB-2777 Add an Install sample blog checkbox.</li>\n<li>New feature: JIRA WPB-2778 Setup a blog during deployment.</li>\n<li>Bug fix: JIRA WPB-2792 Staged posts (private posts) are trashed when starting over active site.</li>\n<li>Update: JIRA WPB-2800 Ensure \'Install a blog\' works with Staging.</li>\n<li>Update: JIRA WPB-2801 Remove milestones classes.</li>\n<li>Bug fix: JIRA WPB-2779 Survey not working with Staging.</li>\n<li>Update: JIRA WPB-2805 Preview builds w & w/o blogs.</li>\n<li>New feature: JIRA WPB-2806 Add filter for Inspirations configs.</li>\n<li>Bug fix: JIRA WPB-2808 Do not request generic builds when requesting blog as well.</li>\n</ul>\n<h4>1.3.5</h4>\n<ul>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Update: JIRA WPB-2376 Filter the bgtfw contact blocks.</li>\n<li>Update: JIRA WPB-2476 Update case of Company name.</li>\n<li>Update: JIRA WPB-2747 Update Add a map verbiage.</li>\n<li>Update: JIRA WPB-2749 Add a map to my Contact page.</li>\n<li>Bug fix: JIRA WPB-2658 Fix spacing issues atop Inspirations.</li>\n<li>Bug fix: JIRA WPB-2751 Show all in the smaller view of inspirations doesn\'t work anymore.</li>\n<li>Bug fix: JIRA WPB-2757 Apostrophe and other strange characters installed via Inspirations.</li>\n<li>Bug fix: JIRA WPB-2759 DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.</li>\n</ul>\n<h4>1.3.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2696 Remove placeholders from survey.</li>\n<li>New feature: JIRA WPB-2697 Update phone numbers in widgets.</li>\n<li>New feature: JIRA WPB-2699 Use phone number entered during survey.</li>\n<li>Update: JIRA WPB-2704 Adjust format of how social media icons are saved.</li>\n<li>New feature: JIRA WPB-2705 Use survey social media items when creating menu.</li>\n<li>Update: JIRA WPB-2711 Show optional message in survey.</li>\n<li>Update: JIRA WPB-2712 Have plus sign toggle more social icons.</li>\n<li>Update: JIRA WPB-2723 Update phone in pages.</li>\n</ul>\n<h4>1.3.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2627 Back / next buttons should not be clickable.</li>\n<li>Bug fix: JIRA WPB-2625 Behavior of last image\'s next button in Inspirations.</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Update: JIRA WPB-2582 Always show arrows in Inspirations gallery.</li>\n<li>Update: JIRA WPB-2583 Ensure first letter in theme\'s title attribute is capitalized.</li>\n<li>Update: JIRA WPB-2599 Add placeholder for 4th step to Inspirations.</li>\n<li>Update: JIRA WPB-2551 Duplicate images.</li>\n<li>New feature: JIRA WPB-2603 Add initial version of survey.</li>\n<li>Bug fix: JIRA WPB-2622 Inspirations - Step 4 - Go back button installs site.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n<li>Bug fix: JIRA WPB-2539 Fix possible duplicate connection issue notice from ajax.js call.</li>\n<li>Bug fix: JIRA WPB-2558 Don\'t display feedback widget if user hasn\'t entered their key.</li>\n<li>Bug fix: JIRA WPB-2559 Don\'t allow widgets to drag into welcome box area.</li>\n<li>Bug fix: JIRA WPB-2555 Images in search results flicker.</li>\n<li>Update: JIRA WPB-2563 Convert Attribution page to use custom post type.</li>\n<li>Update: JIRA WPB-2568 Added fancybox and large previews to Inspirations.</li>\n<li>Update: JIRA WPB-2570 Milestone blogname change.</li>\n<li>Update: JIRA WPB-2574 Milestone Social Media Change.</li>\n<li>Update: JIRA WPB-2578 Milestone Contact Info Footer Change.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2544 Disable \'Install\' button after clicking it.</li>\n</ul>\n<h4>1.2.13</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2531 Javascript error checking needed for mine count.</li>\n</ul>\n<h4>1.2.12</h4>\n<ul>\n<li>Update: JIRA WPB-2472 Added update notice for 1.3.</li>\n<li>Bug fix: JIRA WPB-2486 Incorrect page count on All Pages.</li>\n<li>Bug fix: JIRA WPB-2467 With staging disabled, Customize goes to \"Change Themes\".</li>\n<li>Update: JIRA WPB-2488 Remove \'Permanently delete pages instead of sending to trash\'.</li>\n<li>Update: JIRA WPB-2490 Move default option to \'install as staging\'.</li>\n<li>Update: JIRA WPB-2491 Add \'Customize > Active Theme\' navigation to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2496 Require comment text in feedback form.</li>\n<li>Update: JIRA WPB-2229 Update error reporting when purchasing images.</li>\n<li>Update: JIRA WPB-2498 Change \'Company Name\' to theme name.</li>\n<li>Update: JIRA WPB-2497 Add new dashboard videos.</li>\n<li>Bug fix: JIRA WPB-2376 \'No search results\' method is not cleared in BGCS.</li>\n</ul>\n<h4>1.2.11</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2468 Switching between boldgrid admin menu and standard wp menu no longer works.</li>\n<li>Bug fix: JIRA WPB-2477 If you have an existing site non BG, no route for staging exists.</li>\n</ul>\n<h4>1.2.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2446 Fixed missing build id passed on site install.</li>\n<li>Bug fix: JIRA WPB-2426 Insert Gridblock button is missing.</li>\n<li>Bug fix: JIRA WPB-2443 When starting over, I get a blank page.</li>\n<li>Bug fix: JIRA WBP-2445 Inspirations is not fetching cached themes.</li>\n<li>Update: JIRA WPB-2458 Update \'Recommended\' verbiage in last step of Inspirations.</li>\n</ul>\n<h4>1.2.9</h4>\n<ul>\n<li>Misc: JIRA WPB-2420 Added EOF line breaks.</li>\n<li>Bug fix: JIRA WPB-2387 Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.</li>\n<li>Bug fix: JIRA WPB-2324 Attribution should not show in 404 sitemap.</li>\n<li>Bug fix: JIRA WPB-2403 No plugins recommended still showing notice.</li>\n<li>Update: JIRA WPB-2416 Text changes for confirmation section of Inspirations.</li>\n<li>Update: JIRA WPB-2417 Add additional text to deployment success page for staging.</li>\n<li>Bug fix: JIRA WPB-2421 Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...</li>\n<li>Bug fix: JIRA WPB-2112 BoldGrid Connect Search missing for galleries.</li>\n<li>Bug fix: JIRA WPB-2422 Fixed CSS Loading graphic animation in chrome to display properly.</li>\n<li>Bug fix: JIRA WPB-2401 Gallery not displaying correctly in Chrome && FF.</li>\n<li>Bug fix: JIRA WPB-2423 Trying to get property of non-object in ...stock-photography.php.</li>\n</ul>\n<h4>1.2.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2398 Error requesting free key.</li>\n<li>Bug fix: JIRA WPB-2399 Only show feedback widget to admins.</li>\n</ul>\n<h4>1.2.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2389 Fixed saving BoldGrid Settings.</li>\n<li>Bug fix: JIRA WPB-2388 Removed duplicate boldgrid_activate().</li>\n<li>Update: JIRA WPB-2390 Update verbiage for inspirations install success.</li>\n<li>Bug fix: JIRA WPB-2391 Hide BoldGrid Welcome Panel if key isn\'t entered yet.</li>\n<li>Bug fix: JIRA WPB-2392 If key is less than 32 char don\'t make call to validate.</li>\n<li>Bug fix: JIRA WPB-2393 Error messages should be removed when resubmitting keys.</li>\n<li>Bug fix: JIRA WPB-2394 Cursor for show/hide log should be a pointer.</li>\n<li>Update: JIRA WPB-2395 Update login page styling.</li>\n<li>Bug fix: JIRA WPB-2396 Remove staging from recommended plugin notices.</li>\n<li>Bug fix: JIRA WPB-2327 Check if framework is handling plugin recommendations before recommending.</li>\n</ul>\n<h4>1.2.6</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Bug fix: JIRA WPB-2248 Removed \'New From GridBlocks\' button on edit submission page.</li>\n<li>Bug fix: JIRA WPB-2332 Reset scroll position on step 2 of Inspirations to top.</li>\n<li>Bug fix: JIRA WPB-2339 Remove notices from Inspirations page.</li>\n<li>Update: JIRA WPB-2208 Removed tutorials from Inspirations.</li>\n<li>Update: JIRA WPB-2359 Order \'Category Filter\' by category display order.</li>\n<li>Update: JIRA WPB-2360 Sort themes by category and then order within category.</li>\n<li>Update: JIRA WPB-2368 Read version constant from plugin file.</li>\n<li>Update: JIRA WPB-2361 Add BoldGrid Connect Search to Editor\'s background image tool.</li>\n<li>Update: JIRA WPB-2354 Preview button needs to always be visible in mobile view.</li>\n<li>Update: JIRA WPB-2355 Remove extraneous \'Preview\' button.</li>\n<li>Bug fix: JIRA WPB-2364 Inspirations not respecting theme release channel.</li>\n<li>Bug fix: JIRA WPB-2370 Color in screenshot does not match preview.</li>\n<li>Bug fix: JIRA WPB-2373 Duplicate themes in Inspirations.</li>\n<li>Bug fix: JIRA WPB-2379 Wrong budget passed when going form step 2 to step 1.</li>\n<li>Update: JIRA WPB-2380 Remove references to tutorials in deployment congrats message.</li>\n<li>Bug fix: JIRA WPB-2383 Image Search tab appears when clicking \'Add GridBlock\'.</li>\n</ul>\n<h4>1.2.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2325 Added wrapper to handle mb<em>convert</em>encoding() if mbstring is not loaded.</li>\n<li>Bug fix: JIRA WPB-2313 Disabled GridBlocks in network admin pages.</li>\n<li>New feature: JIRA WPB-2268 Changed to resized preview screenshots for Inspirations Design First concept.</li>\n<li>New feature: JIRA WPB-2287 Adjust device preview buttons in step 2 to behave like those in editor.</li>\n<li>New feature: JIRA WPB-2291 Auto install staging in final step if user chooses staging.</li>\n<li>Update: JIRA WPB-2290 Changed \'Install\' button to \'Next\'.</li>\n<li>Bug fix: JIRA WPB-2289 Continuously clicking category in step 1 shuffles themes.</li>\n<li>Update: JIRA WPB-2267 Added message to Inspirations when no generic themes are available.</li>\n<li>Update: JIRA WPB-2315 Added error handling for malformed ajax results for call to /api/build/get-generic.</li>\n<li>Update: JIRA WPB-2316 Add error handling for failures to fetch categories.</li>\n<li>Update: JIRA WPB-2317 Add error handling for failures to fetch pagesets.</li>\n<li>Update: JIRA WPB-2319 Check user capabilities before prompting for api key.</li>\n<li>Update: JIRA WPB-2320 Ensure user has permission to edit page before allowing download<em>and</em>insert<em>into</em>page.</li>\n<li>Update: JIRA WPB-2322 Sanitize user feedback before adding to options table.</li>\n<li>Update: JIRA WPB-2323 Allow admin notices to be dismissed per user.</li>\n<li>Update: JIRA WPB-2326 Update \'update\' class to utilize Admin Notices class.</li>\n<li>Update: JIRA WPB-2327 Check user capabilities before showing admin notices.</li>\n<li>Update: JIRA WPB-2331 Update confirmation messages.</li>\n</ul>\n<h4>1.2.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2269 Typo fix in Boldgrid<em>Inspirations</em>Dependency<em>Plugins::print</em>uninstalled_plugins().</li>\n<li>Bug fix: JIRA WPB-2270 New From GridBlocks became unavailable.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>New feature: JIRA WPB-2172 For preview generic builds, added an option for identification for purges, etc.</li>\n<li>Bug fix: JIRA WPB-2263 For preview sites under multisite, set the admin email address using the network admin email address.</li>\n<li>Bug fix: JIRA WPB-2223 Reworked API key validation and connection issue notices, formatting.</li>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-2150 Moved API methods to a new class, formatting, and phpcs rework.</li>\n<li>Bug fix: JIRA WPB-2224 Hide the email address field when widget is loaded.</li>\n<li>Bug fix: JIRA WPB-2225 Fixed jQuery Migrate deprecated warning.</li>\n<li>Update: JIRA WPB-2245 Changed feed to pull from dashboard tag on blog.</li>\n<li>Bug fix: JIRA WPB-2265 Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.</li>\n<li>Bug fix: JIRA WBP-2236 Errors everywhere when logging in as an Editor.</li>\n<li>Bug fix: JIRA WPB-2234 Add current<em>user</em>can checks to Boldgrid<em>Inspirations->set</em>api<em>key</em>callback().</li>\n<li>Bug fix: JIRA WPB-2237 Limit ajax requests by user.</li>\n<li>Bug fix: JIRA WPB-2240 Limit printing of configs in head.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to the tutorials page.</li>\n<li>Bug fix: JIRA WPB-2184 In PHP 5.2, deactivate and die properly.</li>\n<li>New feature: Added BoldGrid news widget to dashboard.</li>\n<li>Bug fix: JIRA WPB-1994 Fixed issue with WP Theme Editor not being available.</li>\n<li>New feature: Added BoldGrid Feedback widget.</li>\n<li>Bug fix: JIRA WPB-2169 Connect Search defaults to smallest image size when no recommended sizes available.</li>\n<li>Bug fix: JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2160 New From GridBlocks, multiple pages are installed.</li>\n<li>Update: Changed text of getting and entering connect keys.</li>\n<li>Security: JIRA WPB-2151 Disabled autocomplete for API key entry fields.</li>\n<li>Bug fix: JIRA WPB-2145 Fixing issue with theme screenshots on Chrome Ubuntu.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2119 For asset downloads, when Imagick is loaded, set the thread limit to 1.</li>\n<li>Bug fix: JIRA WPB-2125 Fixing issue where theme was overwritten without version change.</li>\n<li>Bug fix: JIRA WPB-2104 Go back button hides all themes (Inspirations > Add Theme).</li>\n<li>Bug fix: JIRA WPB-2107 BoldGrid Connect Search overlapping footer (Dashboard > Media).</li>\n<li>Bug fix: JIRA WPB-2109 Session issues when starting over and importing active site.</li>\n<li>Bug fix: JIRA WPB-2116 Changes to the order of images in a gallery are not saving.</li>\n<li>Bug fix: JIRA WPB-2134 Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.</li>\n<li>Bug fix: JIRA WPB-2135 Image not replaced in Page & Post Editor after using Connect Search.</li>\n</ul>\n<h4>1.1.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to Inspirations, so admin notices are displayed at the top.</li>\n<li>Bug fix: JIRA WPB-2041 Fixed BoldGrid theme update check in WordPress 4.6.</li>\n<li>Testing: JIRA WPB-2046 Tested on WordPress 4.5.3.</li>\n<li>New feature: JIRA WPB-599 Added options for plugin and theme auto-updates via WordPress autoupdater.</li>\n<li>Update: JIRA WPB-2008 Deploy class updated to allow for is_generic flag.</li>\n<li>Bug fix: JIRA WPB-1950 Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.</li>\n</ul>\n<h4>1.1.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2032 Fixed issue when activating key. Added nonce to api key form.</li>\n<li>Rework: JIRA WPB-2030 Updated the \"I don\'t have an API key\" section.</li>\n<li>New feature: JIRA WPB-2029 Added TOS box to API key submission form.</li>\n<li>New feature: JIRA WPB-1905 Added capability for auto-updates of boldgrid-inspirations by API response.</li>\n<li>Bug fix: JIRA WPB-2002 Fixed theme update issue where upgrader says is up to date at times.</li>\n<li>Bug fix: JIRA WPB-2006 Pdes and Homepage not installing correctly on Inpirations Theme Only installs.</li>\n</ul>\n<h4>1.1.6</h4>\n<ul>\n<li>New feature: JIRA WPB-1839 Users can now change their theme release channel.</li>\n<li>Security fix: JIRA WPB-1977 Validate nonce for feedback form diagnostic data callback and form submit.</li>\n<li>Bug fix: JIRA WPB-1955 Fatal error: Class \'Boldgrid<em>Staging</em>Plugin\' not found.</li>\n</ul>\n<h4>1.1.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1914 Staged image used on Active page not showing in cart.</li>\n</ul>\n<h4>1.1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1886 Fixed feedback notice being displayed too often (more than a week after submitting).</li>\n<li>New feature: JIRA WPB-1183 Refresh the Library Tab after downloading an image.</li>\n<li>Update: JIRA WPB-1865 Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.</li>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1855 Do not display feedback notice on update or setting pages.</li>\n<li>Bug fix: JIRA WPB-1860 Fixed horizontal line through screenshot in step 2.</li>\n<li>Bug fix: JIRA WPB-1863 Cart does not look for watermarked images used within staged pages.</li>\n<li>Bug fix: JIRA WPB-1891 View / Download of images within receipts not working for images purchased via Staging.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n<li>Bug fix: JIRA WPB-1900 Attribution shows in menu when menu generated using wp<em>page</em>menu.</li>\n</ul>\n<h4>1.1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1824 Fixed order of plugin deactivation and uninstall in Start Over process.</li>\n<li>Bug fix: JIRA WPB-1814 Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.</li>\n<li>Bug fix: JIRA WPB-1823 Fixed display of \"Themes\" H1 and the additional themes bar when choosing active or staging before installing a theme.</li>\n<li>Bug fix: JIRA WPB-1840 Fixing thumbnail presentation in inspirations and add new theme.</li>\n</ul>\n<h4>1.1.2.3</h4>\n<ul>\n<li>Update: Sync version. See version 1.1.1.1.</li>\n</ul>\n<h4>1.1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1833 Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).</li>\n</ul>\n<h4>1.1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1817 BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.</li>\n<li>Rework: JIRA WPB-1541 Removed feedback form bug report diagnostic report items.</li>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n<li>Rework: JIRA WPB-1541 Reworked admin feedback notice.</li>\n<li>Rework: JIRA WPB-1751 Removed analysis processing and optional logging capabilities. Added support for XHProf.</li>\n<li>Bug fix: JIRA WPB-1805 Now adds theme update info on the Customizer Themes page.</li>\n<li>Rework: JIRA WPB-1785 Enabled and reworked image caching for the preview server.</li>\n<li>Rework: JIRA WPB-1751 Reworked analysis processing.</li>\n<li>Update: JIRA WPB-1658 Storing more reliable install data through inspirations.</li>\n<li>Bug fix: JIRA WPB-1787 When not using BoldGrid menu, cart does not dynamically update total page price.</li>\n<li>Update: JIRA WPB-1754 Remove attribution page from search results.</li>\n<li>Bug fix: JIRA WPB-1788 webkit css missing from \'new from gridblocks\'.</li>\n<li>New feature: JIRA WPB-1806 Add \'BoldGrid search\' tab when replacing an image.</li>\n</ul>\n<h4>1.1.1.1</h4>\n<ul>\n<li>Bug Fix: Fixing logo display on login screen.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Bug fix: Fixed analysis include for preview server.</li>\n<li>Bug fix: New From GridBlocks: Asset download issues.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1751 Added analysis processing and optional logging capabilities.</li>\n<li>Bug fix: JIRA WPB-1781 Removed boldgrid<em>dismissed</em>admin_notices from Start Over cleanup.</li>\n<li>New feature: JIRA WPB-1541 Added feedback notice.</li>\n<li>Bug fix: JIRA WPB-1747 New From GridBlocks: For non BoldGrid themes, only load grid css.</li>\n<li>Bug fix: JIRA WPB-1760 New From GridBlocks: Ensure page title shows on preview page.</li>\n<li>Update: JIRA WPB-1779 New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.</li>\n</ul>\n<h4>1.0.12.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1710 Fixed missing device preview tabs on Add New Theme preview modal.</li>\n<li>Bug fix: JIRA WPB-1710 Fixed notice dismissal checking.</li>\n<li>Bug fix: JIRA WPB-1749 On start over, staging menus are not deleted.</li>\n<li>Bug fix: JIRA WPB-1755 Gallery images not showing in cart.</li>\n</ul>\n<h4>1.0.12</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1740 Fixed \"In Menu\" messages in editor when staging plugin is not active, and fixed saving menu selections.</li>\n<li>New feature: JIRA WPB-1726 Added optional feedback for GridBlock Add Page.</li>\n<li>Removed Ft: JIRA WPB-1710 Removed Inspirations Add Pages; replaced by GridBlocks.</li>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>New feature: Don\'t assign footer contact widget if using base pagesets.</li>\n<li>Bug Fix: JIRA WPB-1732 Fixing css issues on login screen (firefox).</li>\n<li>Bug Fix: JIRA WPB-1687 Image search: Title, Caption, Alt Text and Description do not display on new pages.</li>\n</ul>\n<h4>1.0.11</h4>\n<ul>\n<li>New feature: JIRA WPB-1699 Added optional feedback for theme activation.</li>\n<li>New feature: JIRA WPB-1690 Adding BoldGrid themes to All themes install menu.</li>\n<li>Bug fix: JIRA WPB-1686 Limited items loaded in network admin pages.</li>\n<li>Improvement: JIRA WPB-1604 Added a \"Cancel\" link to the \"In Menu\" section.</li>\n<li>Improvement: JIRA WPB-1603 Display menu locations in the editor \"In Menu\" section.</li>\n<li>Bug fix: JIRA WPB-1602 Corrected capitalization of \"None\" under \"In menu\" in the editor.</li>\n<li>Improvement: JIRA WPB-1664 Gets api<em>key and site</em>hash from configs instead of get_option.</li>\n<li>Bug fix: JIRA WPB-1597 Fixing indefined index error</li>\n<li>New feature: JIRA WPB-1649 Added reporting of PHP version and mobile ratio.</li>\n<li>Bug fix: JIRA WPB-1598 \'Mine\' count on \'all pages\' is incorrect.</li>\n<li>Bug fix: JIRA WPB-1647 JS error with easy-attachment-preview-size.js.</li>\n<li>Bug fix: JIRA WPB-1651 When the BG menu is turned off, Appearance link should take you to themes.</li>\n</ul>\n<h4>1.0.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1632 Fixed handling of subcategory<em>id in deploy</em>page_sets.</li>\n<li>New feature: JIRA WPB-1510 Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations</em>Utility).</li>\n<li>Rework: JIRA WPB-1553 Updated require and include statements for standards.</li>\n<li>Bug fix: JIRA WPB-1563 Updated pages in which wp<em>iframe-media</em>upload.css is loaded.</li>\n<li>Bug fix: JIRA WPB-1549 Resolve attribution page missing attribution for several images.png.</li>\n</ul>\n<h4>1.0.9.2</h4>\n<ul>\n<li>Bug fix: Add GridBlock Sets feature disabled.</li>\n</ul>\n<h4>1.0.9.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed support for PHP 5.2 to deactivate plugin.</li>\n<li>Bug fix: Prevent click of links in add<em>new</em>page_selection previews.</li>\n<li>Bug fix: JIRA WPB-1554 Fixed undefined JavaScript variable pagenow for customizer link.</li>\n</ul>\n<h4>1.0.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1554 Fixed theme link in network dashboard nav menu.</li>\n<li>Bug fix: JIRA WPB-1590 Fixed JavaScript error for undefined screen info in network dashboard.</li>\n<li>Bug fix: JIRA WPB-1535 Fixed theme deployment issues.</li>\n<li>New feature: JIRA WPB-1584 Added an opt-out feedback payload delivery system.</li>\n<li>New feature: JIRA WPB-1580 Added optional feedback for customizer_start.</li>\n<li>Bug fix: JIRA WPB-1571 Removed plugin dependency admin notice when editing an attachment (image).</li>\n<li>New feature: JIRA WPB-1579 Added feedback opt-out in BoldGrid Settings, hidden for now.</li>\n<li>Bug fix: JIRA WPB-1575 Addressed an issue causing mismatch color palettes on cached previews</li>\n<li>New feature: JIRA WPB-1514 Add new pages offers page templates to choose from.</li>\n</ul>\n<h4>1.0.8.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed PHP version check condition (<5.3).</li>\n</ul>\n<h4>1.0.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1561 Fixed missing get<em>plugin</em>data on update calls.</li>\n<li>New feature: JIRA WPB-1511 Added dependency plugin notice on editor pages.</li>\n<li>Bug fix: JIRA WPB-1553 Added support for <strong>DIR</strong> in PHP <=5.2.</li>\n<li>Bug fix: JIRA WPB-1371 JSON encoded image data for media download requests.</li>\n<li>New feature: JIRA WPB-1332 Swapping loading GIF to CSS loading image.</li>\n<li>New feature: JIRA WPB-1072 Storing static pages on install</li>\n<li>New feature: JIRA WPB-1539 When deleting a page, remove it from any applicable menus as well.</li>\n<li>New feature JIRA WPB-1542 Manage menu assignment within editor.</li>\n<li>New feature JIRA WPB-1555 Add wp-image-## class to images during deployment.</li>\n<li>New feature JIRA WPB-1557 Add wp-image-## class to images when adding gridblocks.</li>\n<li>Bug fix: JIRA WPB-1506 Theme naming missing in preview.</li>\n<li>Bug fix: JIRA WPB-1443 Extra page listed under \'Mine\'.</li>\n<li>Bug fix: JIRA WPB-1560 Install options not available on preview server</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.6</h4>\n<ul>\n<li>Rework: JIRA WPB-1411 Added more output to the deploy log.</li>\n</ul>\n<h4>1.0.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1462 Fixed position of dependency plugins admin notice. Also limited to Dashboard and plugins page.</li>\n<li>Bug fix: JIRA WPB-1290 Fixing issues with galleries leaving empty spaces</li>\n<li>Bug fix: JIRA WPB-1471 Made deployment plugin installation respect release channel.</li>\n<li>Rework: JIRA WPB-1452 Remove unneeded call to \'boldgrid<em>activate</em>framework\' during deployment.</li>\n<li>Bug fix: JIRA WPB-946 Fixed margin bug on step 2 additional themes.</li>\n<li>Bug fix: JIRA WPB-1384 Increase width of select input on image search modal.</li>\n<li>Bug fix: JIRA WPB-1508 BoldGrid Image search box size is inconsistent.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1442 Fixing inspiration border styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1461 Updating login button styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1411 Added initialization and checks for empty image queues in deployment.</li>\n<li>Bug fix: JIRA WPB-1406 Attribution page still showing in \'All Pages\'.</li>\n<li>Bug fix: JIRA WPB-1451 Active images are showing in Staging attribution page.</li>\n<li>Bug fix: JIRA WPB-1466 Tabs on tutorials page too small at 1035px - 1482px.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n<li>New feature: JIRA WPB-1389 When starting over theme mods are saved with a flag to recompile sass</li>\n<li>Bug fix: JIRA WPB-1420 Content of Attribution page is overwriting page saves.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1395 Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.</li>\n<li>Rework JIRA WPB-1374 Updated activation timestamp to use GMT/UTC.</li>\n<li>Bug fix: JIRA WPB-1377 Reseller option is now set on first call to either the front end or wp_login.</li>\n<li>Bug fix: Adjusted handling for image purchases when errors occur.</li>\n<li>Bug fix: JIRA WPB-1365 Purchase link on editing a page goes to wrong link.</li>\n<li>Bug fix: JIRA WPB-1368 Inspirations step 0 text refers to nonexisting help tabs.</li>\n<li>Rework: JIRA WPB-1378 Adjusted formatting of footer in Dashboard.</li>\n<li>Rework: JIRA WPB-1369 Update minus signs on \'Transaction History\'.</li>\n<li>New feature: JIRA WPB-1379 On the transactions page, show the reseller that processed the credits.</li>\n<li>Bug fix: Count of \'All\' pages inaccurate on \'All pages\'.</li>\n<li>Bug fix: JIRA WPB-1367 Updated link for \'Lost your BoldGrid Connect Key?\'.</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1374 Updated activation timestamp to include timezone in UTC.</li>\n<li>Bug fix: Attribution page shows style tags.</li>\n<li>Bug fix: Strict Standards fix for wp<em>kses</em>allowed_html.</li>\n<li>Bug fix: Fixed incorrect link.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:311:\"<h4>1.3</h4>\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https://www.boldgrid.com/boldgrid-1-3-released/ .</p>\n<h4>1.0.2</h4>\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.</p>\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:17776:\"{\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:5:{s:11:\"inspiration\";s:11:\"Inspiration\";s:13:\"customization\";s:13:\"Customization\";s:5:\"build\";s:5:\"Build\";s:6:\"create\";s:6:\"Create\";s:6:\"design\";s:6:\"Design\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\";s:4:\"high\";s:66:\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\";}s:11:\"new_version\";s:5:\"1.6.4\";s:4:\"name\";s:21:\"BoldGrid Inspirations\";s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:17:\"short_description\";s:135:\"BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.\";s:12:\"last_updated\";s:19:\"2018-12-05 21:18:02\";s:6:\"author\";s:64:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid </a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.png\";s:2:\"2x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-256x256.png\";s:3:\"svg\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:147:\"https://api.boldgrid.com/api/open/getAsset?key=ef1c94d49d98e5a56bb1d7dcfd9319d1&id=971098&installed_plugin_version=1.6.4&installed_wp_version=5.0.2\";}s:16:\"boldgrid-staging\";O:8:\"stdClass\":24:{s:5:\"title\";s:16:\"BoldGrid Staging\";s:7:\"version\";s:5:\"1.5.1\";s:8:\"asset_id\";i:876738;s:12:\"release_date\";s:19:\"2017-11-14 20:16:10\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"4.9\";s:8:\"sections\";a:4:{s:11:\"description\";s:136:\"<p>BoldGrid Staging is a standalone plugin to allow use of a staged website while keeping a live website intact during development.</p>\n\";s:12:\"installation\";s:183:\"<ol>\n<li><p>Upload the entire boldgrid-staging folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n</ol>\n\";s:9:\"changelog\";s:9076:\"<h4>1.5.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3586 Stage button missing from Change themes.</li>\n<li>Bug fix: JIRA WPB-3589 Customizer switcher not working.</li>\n<li>New feature: JIRA WPB-3593 Support new Customizer scheduler.</li>\n<li>Bug fix: JIRA WPB-3611 Customizer changeset, save draft of staging, it loads on active.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3351 wp.template is not a function.</li>\n<li>Bug fix: JIRA WPB-2930 The slug \'primary-staging\' is already in use by another term.</li>\n</ul>\n<h4>1.4.4</h4>\n<ul>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n<li>Bug fix: JIRA WPB-3325 Error when searching and not logged in.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>Update: Updated for WordPress 4.8.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Update: JIRA WPB-3106 Cleanup deploy type.</li>\n</ul>\n<h4>1.4.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3213 Footer displays atop page in customizer when going from staging to active.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2951 Images in staging posts not being downloaded.</li>\n<li>Bug fix: JIRA WPB-2961 Fatal error: Class \'Boldgrid<em>Inspirations</em>Deploy_Metadata\' not found.</li>\n<li>Bug fix: JIRA WPB-2976 In Staging Customizer, links in menu 404.</li>\n<li>Bug fix: JIRA WPB-2984 Attribution page 404.</li>\n</ul>\n<h4>1.3.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n<li>Bug fix: JIRA WPB-2917 New staging deploy using active site\'s colors.</li>\n<li>Bug fix: JIRA WPB-2635 Start over staging affecting active site.</li>\n<li>Bug fix: JIRA WPB-2493 Publish private posts during staging deployment.</li>\n<li>New feature: JIRA WPB-2914 Add staging button to theme details modal.</li>\n</ul>\n<h4>1.3.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n</ul>\n<h4>1.3.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2681 Staging switcher missing from Customizer.</li>\n</ul>\n<h4>1.3.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2791 Filter get_pages on front end.</li>\n<li>Update: JIRA WPB-2800 Ensure \'Install a blog\' works with Staging.</li>\n</ul>\n<h4>1.3.5</h4>\n<ul>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Bug fix: JIRA WPB-1450 Staging pages show in search results when searching on the front end.</li>\n</ul>\n<h4>1.3.4</h4>\n<ul>\n<li>Update: Merging wp47 branch.</li>\n</ul>\n<h4>1.3.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2664 Memory error when loading Customizer.</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2507 Hide staging menus when customizing active site.</li>\n<li>Bug fix: JIRA WPB-2602 Parent pages don\'t list staging pages.</li>\n<li>New feature: JIRA WPB-2603 Add initial version of Inspirations survey.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n<li>Update: JIRA WPB-2563 Convert Attribution page to use custom post type.</li>\n<li>Bug fix: JIRA WPB-2548 Fix sloppy post name issues when copying to staging (and vice versa).</li>\n</ul>\n<h4>1.3.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2685 Active pages showing as menu options in Staging Customizer.</li>\n<li>Bug fix: JIRA WPB-2686 New staged pages created in Customizer are not saved as staged.</li>\n</ul>\n<h4>1.3.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2667 Staging switcher missing from Customizer in WordPress 4.7</li>\n<li>Bug fix: JIRA WPB-2668 Staging theme name listed incorrectly in Customizer.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.2.7</h4>\n<p>*Update: JIRA WPB-2491 Add \'Customize > Active Theme\' navigation to Inspirations.</p>\n<h4>1.2.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2437 Fixing issue with compiling staging colors.</li>\n</ul>\n<h4>1.2.5</h4>\n<ul>\n<li>Update: JIRA WPB-2437 Button.css needs to compile after updates and work with staging.</li>\n<li>Bug fix: JIRA WPB-2424 \'Deploy Staging\' button appears when clicking on active theme.</li>\n<li>Bug fix: JIRA WPB-2459 Undefined index error - class-boldgrid-staging-theme.php.</li>\n</ul>\n<h4>1.2.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2425 Link to Staging tutorials needs to be removed.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2075 If themes are lazy loaded, staging button does not appear on later themes.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Update: JIRA WPB-2378 Set the version constant from plugin file.</li>\n<li>Bug fix: If a post type isn\'t found, then don\'t query.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-1825 Formatting.</li>\n<li>Bug fix: JIRA WPB-2235 Only send staged site promotion to active if was built with Inspirations.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2124 Customizer\'s list of pages to add to a menu are always active pages.</li>\n<li>Bug fix: JIRA WPB-2134 Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.</li>\n</ul>\n<h4>1.1.3</h4>\n<ul>\n<li>New feature: JIRA WPB-2037 Added capability for auto-updates by BoldGrid API response.</li>\n<li>Testing: JIRA WPB-2046 Tested on WordPress 4.5.3.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>New feature: JIRA WPB-1865 Add active / staging navigation to BoldGrid Inspirations Cart.</li>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1863 BoldGrid Cart does not look for watermarked images used within staged pages.</li>\n<li>Bug fix: JIRA WPB-1888 Staging options missing from Dashboard > Settings > Reading.</li>\n<li>Bug fix: JIRA WPB-1887 Copy to Staging link does not have correct cursor.</li>\n<li>Bug fix: JIRA WPB-1892 Page template not saving correctly for staged pages.</li>\n<li>Bug fix: JIRA WPB-1898 When no menu is assigned to a location, active pages show in menu on staged site.</li>\n<li>Bug fix: JIRA WPB-1899 Warnings and Notices thrown when using BoldGrid Inspirations start over.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1834 Delete BoldGrid Staging Attribution page when starting over.</li>\n</ul>\n<h4>1.1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n</ul>\n<h4>1.0.9</h4>\n<ul>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>Bug fix: JIRA WPB-1723 Switching between Staging and Active in the customizer loads wrong content.</li>\n</ul>\n<h4>1.0.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1604 Updated some CSS for standards.</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1634 Now does not enable staging theme on install; use the enable link.</li>\n<li>Rework: JIRA WPB-1620 Updated require and include statements for standards.</li>\n<li>New feature: JIRA WPB-1538 Added a way to set staging site\'s homepage.</li>\n</ul>\n<h4>1.0.6</h4>\n<ul>\n<li>New feature: JIRA WPB-1580 Added feedback when deploying a staged site.</li>\n<li>New feature: JIRA WPB-1572 Added staging switch for static gridblocks</li>\n</ul>\n<h4>1.0.5.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed PHP version check condition (<5.3).</li>\n</ul>\n<h4>1.0.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Added support for <strong>DIR</strong> in PHP <=5.2.</li>\n<li>New feature JIRA WPB-1542 Manage menu assignment within editor.</li>\n<li>Misc: JIRA WPB-1468 Updated readme.txt for Tested up to: 4.4.1</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1426 When installing into staging, with active site, active widgets are overwritten..</li>\n<li>Bug fix: JIRA WPB-1452 Upon deploying staging, new active sites lost Social Media icons.</li>\n<li>Bug fix: JIRA WPB-1450 Staging pages show in search results when searing on the front end.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1422 Customize links showing in wrong menu...</li>\n<li>New feature JIRA WPB-1439 Tie into Theme Framework\'s filter for creating attribution page link and fix it for Staging.</li>\n<li>Bug fix: JIRA WPB-1428 Live Preview of staged theme throws JS error.</li>\n<li>Bug fix: JIRA WPB-1446 Properly rename a staged page when it ends with \'-staging-(a number)\'</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n<li>Bug Fix: JIRA WPB-1396 Call to action disappears when customizing staging.</li>\n<li>Bug Fix: JIRA WPB-1389 Setting Launched staging theme mods to allow theme to trigger activation</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>Rework: Created class Boldgrid<em>Staging</em>Dashboard_Menus and reorganized related code.</li>\n<li>Bug Fix: JIRA WPB-1383 Fixing issue that prevented color palettes from updating on staging deploy.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:119:\"<h4>1.0.1</h4>\n<p>Users should upgrade to version 1.0.1 to receive a fix for color palettes in staging deployment.</p>\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:3784:\"{\"4.8.3\":{\"1.5.1\":[100,95]},\"4.8.2\":{\"1.5.1\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.7\":{\"1.5.1\":[100,95]},\"4.7.6\":{\"1.5.1\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.8\":{\"1.5.1\":[100,95]},\"4.6.7\":{\"1.5.1\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.11\":{\"1.5.1\":[100,95]},\"4.5.10\":{\"1.5.1\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.3.1\":{\"0.1\":[100,12],\"0.2\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5.1\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8\":[100,12],\"1.0.9\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.1.3\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.6\":[100,12],\"1.2.7\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.0.1\":[100,12],\"1.3.3\":[100,12],\"1.3.0.2\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.0.1\":[100,12],\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:3:{s:7:\"staging\";s:7:\"Staging\";s:11:\"duplication\";s:11:\"Duplication\";s:5:\"clone\";s:5:\"Clone\";}s:7:\"banners\";a:2:{s:3:\"low\";s:60:\"//repo.boldgrid.com/assets/banner-staging-banner-772x250.png\";s:4:\"high\";s:61:\"//repo.boldgrid.com/assets/banner-staging-banner-1544x500.png\";}s:11:\"new_version\";s:5:\"1.5.1\";s:4:\"name\";s:16:\"BoldGrid Staging\";s:4:\"slug\";s:16:\"boldgrid-staging\";s:17:\"short_description\";s:128:\"BoldGrid Staging is a standalone plugin to allow use of a staged website while keeping a live website intact during development.\";s:12:\"last_updated\";s:19:\"2017-11-14 20:16:10\";s:6:\"author\";s:67:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com</a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-staging-128x128.png\";s:2:\"2x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-staging-256x256.png\";s:3:\"svg\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-staging-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:116:\"https://api.boldgrid.com/api/open/getAsset?key=ef1c94d49d98e5a56bb1d7dcfd9319d1&id=876738&installed_wp_version=5.0.2\";}s:16:\"boldgrid-gallery\";O:8:\"stdClass\":24:{s:5:\"title\";s:16:\"BoldGrid Gallery\";s:7:\"version\";s:3:\"1.5\";s:8:\"asset_id\";i:842930;s:12:\"release_date\";s:19:\"2017-08-08 18:07:20\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"4.8.1\";s:8:\"sections\";a:4:{s:11:\"description\";s:82:\"<p>BoldGrid Gallery is a standalone plugin used for slideshows and galleries.</p>\n\";s:12:\"installation\";s:183:\"<ol>\n<li><p>Upload the entire boldgrid-gallery folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n</ol>\n\";s:9:\"changelog\";s:2946:\"<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Update: JIRA WPB-3112 Updated wc-gallery: 1.52 => 1.55.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Update: Bump Version.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Update: JIRA WPB-2368 Version constant is now set from plugin file.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2310 Removed broken plugin Settings link. Pending review on WPB-2309.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-1825 Formatting.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2114 Fixed gallery displaying in editor on wordpress 4.6.</li>\n<li>Bug fix: JIRA WPB-2114 Fixing ordering of gallery items.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>New feature: JIRA WPB-2037 Added capability for auto-updates by BoldGrid API response.</li>\n<li>Update: JIRA WPB-2024 Updated wc-gallery: 1.48 => 1.52.</li>\n<li>Misc: Updated editor.js to pass JSHint.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n</ul>\n<h4>1.1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>Bug Fix: JIRA WPB-1646 Fixing Issues where masonry gallery was not WYSIWYG.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>Update: JIRA WPB-1611 Updated wc-gallery: 1.40 => 1.48.</li>\n<li>Rework: JIRA WPB-1617 Updated require and include statements for standards.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Changed <strong>DIR</strong> to dirname( <strong>FILE</strong> ) for PHP <=5.2.</li>\n<li>Misc JIRA WPB-1468 Updated readme.txt for Tested up to: 4.4.1</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:1:\"\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:1636:\"{\"4.8.1\":{\"1.5\":[100,95]},\"4.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.3.1\":{\"0.4\":[100,12],\"1.0\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.3\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,95],\"1.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:4:{s:7:\"gallery\";s:7:\"Gallery\";s:6:\"slider\";s:6:\"Slider\";s:9:\"slideshow\";s:9:\"Slideshow\";s:7:\"masonry\";s:7:\"Masonry\";}s:7:\"banners\";a:2:{s:3:\"low\";s:53:\"//repo.boldgrid.com/assets/banner-gallery-772x250.png\";s:4:\"high\";s:54:\"//repo.boldgrid.com/assets/banner-gallery-1544x500.png\";}s:11:\"new_version\";s:3:\"1.5\";s:4:\"name\";s:16:\"BoldGrid Gallery\";s:4:\"slug\";s:16:\"boldgrid-gallery\";s:17:\"short_description\";s:74:\"BoldGrid Gallery is a standalone plugin used for slideshows and galleries.\";s:12:\"last_updated\";s:19:\"2017-08-08 18:07:20\";s:6:\"author\";s:68:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com </a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.png\";s:2:\"2x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-256x256.png\";s:3:\"svg\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:145:\"https://api.boldgrid.com/api/open/getAsset?key=ef1c94d49d98e5a56bb1d7dcfd9319d1&id=842930&installed_plugin_version=1.5&installed_wp_version=5.0.2\";}s:20:\"boldgrid-ninja-forms\";O:8:\"stdClass\":24:{s:5:\"title\";s:20:\"BoldGrid Ninja Forms\";s:7:\"version\";s:3:\"1.5\";s:8:\"asset_id\";i:842931;s:12:\"release_date\";s:19:\"2017-08-08 18:07:25\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"4.8.1\";s:8:\"sections\";a:3:{s:11:\"description\";s:93:\"<p>BoldGrid Ninja Forms is a webform builder with unparalleled ease of use and features.</p>\n\";s:12:\"installation\";s:330:\"<p>This section describes how to install the plugin and get it working.</p>\n<ol>\n<li>Upload the entire boldgrid-ninja-forms folder to the /wp-content/plugins/ directory.</li>\n<li>Activate the plugin through the Plugins menu in WordPress.</li>\n<li>You will find the Forms menu in your WordPress Dashboard / admin panel.</li>\n</ol>\n\";s:14:\"upgrade_notice\";s:268:\"<h4>1.2.1</h4>\n<p>Shortcodes have been re-implemented. They are used like so: [ninja_form id=3] where 3 is the ID number of the form you want to display.</p>\n<h4>1.1.1</h4>\n<p>Users should update to boldgrid-ninja-forms version 1.1.1 for support in WordPress 4.5.</p>\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:2292:\"{\"4.8.1\":{\"1.5\":[100,95]},\"4.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.3.1\":{\"0.0.1\":[100,12],\"1.0\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4.1\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7.1\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.1.3\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.3\":[100,12],\"1.2.4\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.0.1\":[100,12],\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:3:{s:12:\"contact form\";s:12:\"Contact form\";s:4:\"form\";s:4:\"Form\";s:12:\"form builder\";s:12:\"Form builder\";}s:7:\"banners\";a:2:{s:3:\"low\";s:57:\"//repo.boldgrid.com/assets/banner-ninja-forms-772x250.png\";s:4:\"high\";s:58:\"//repo.boldgrid.com/assets/banner-ninja-forms-1544x500.png\";}s:11:\"new_version\";s:3:\"1.5\";s:4:\"name\";s:20:\"BoldGrid Ninja Forms\";s:4:\"slug\";s:20:\"boldgrid-ninja-forms\";s:17:\"short_description\";s:85:\"BoldGrid Ninja Forms is a webform builder with unparalleled ease of use and features.\";s:12:\"last_updated\";s:19:\"2017-08-08 18:07:25\";s:6:\"author\";s:67:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com</a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:70:\"https://repo.boldgrid.com/assets/icon-boldgrid-ninja-forms-128x128.png\";s:2:\"2x\";s:70:\"https://repo.boldgrid.com/assets/icon-boldgrid-ninja-forms-256x256.png\";s:3:\"svg\";s:70:\"https://repo.boldgrid.com/assets/icon-boldgrid-ninja-forms-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:116:\"https://api.boldgrid.com/api/open/getAsset?key=ef1c94d49d98e5a56bb1d7dcfd9319d1&id=842931&installed_wp_version=5.0.2\";}}','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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=213 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,4,'_wp_page_template','default'),(44,10,'boldgrid_hide_page_title','0'),(61,27,'_wp_page_template','page_home.php'),(62,27,'_wp_page_template','page_home.php'),(63,27,'boldgrid_in_page_containers','1'),(64,27,'boldgrid_page_id','278'),(67,29,'_wp_page_template','default'),(68,29,'boldgrid_in_page_containers','1'),(69,29,'boldgrid_page_id','67'),(155,64,'_wp_attached_file','2018/12/Aurora_-_illustration.jpg'),(153,63,'_wp_trash_meta_status','publish'),(72,30,'_wp_page_template','default'),(73,30,'boldgrid_in_page_containers','1'),(74,30,'boldgrid_page_id','68'),(77,31,'_wp_page_template','default'),(78,31,'boldgrid_page_id','69'),(87,32,'_wp_page_template','default'),(88,32,'boldgrid_in_page_containers','1'),(89,32,'boldgrid_page_id','28'),(98,34,'_wp_page_template','default'),(99,34,'boldgrid_in_page_containers','1'),(100,34,'boldgrid_page_id','29'),(101,2,'_wp_trash_meta_status','publish'),(102,2,'_wp_trash_meta_time','1545903159'),(103,2,'_wp_desired_post_slug','sample-page'),(104,1,'_wp_trash_meta_status','publish'),(105,1,'_wp_trash_meta_time','1545903159'),(106,1,'_wp_desired_post_slug','hello-world'),(107,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(108,38,'_wp_attached_file','2018/12/tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl.jpg'),(109,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:50:\"2018/12/tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-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:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:50:\"tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-600x500.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:500;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:{}}}'),(110,39,'_wp_attached_file','2018/12/tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft.jpg'),(111,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:50:\"2018/12/tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft-300x285.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:285;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:{}}}'),(112,40,'_wp_attached_file','2018/12/tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps.jpg'),(113,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:50:\"2018/12/tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps-300x285.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:285;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:{}}}'),(114,41,'_wp_attached_file','2018/12/tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x.jpg'),(115,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:50:\"2018/12/tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x-300x285.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:285;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:{}}}'),(116,42,'_wp_attached_file','2018/12/tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74.jpg'),(117,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:50:\"2018/12/tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74-300x285.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:285;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:{}}}'),(118,43,'_wp_attached_file','2018/12/tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh.jpg'),(119,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:50:\"2018/12/tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh-300x285.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:285;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:{}}}'),(120,44,'_wp_attached_file','2018/12/tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf.jpg'),(121,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:50:\"2018/12/tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf-300x285.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:285;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:{}}}'),(122,45,'_wp_attached_file','2018/12/tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d.jpg'),(123,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:50:\"2018/12/tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-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:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-550x550.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:50:\"tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-600x500.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:500;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:{}}}'),(124,46,'_wp_attached_file','2018/12/tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n.jpg'),(125,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:50:\"2018/12/tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n-300x285.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:285;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:{}}}'),(126,47,'_wp_attached_file','2018/12/clock-imhwpb-ueaegla4i1gpi5i.jpg'),(127,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:390;s:4:\"file\";s:40:\"2018/12/clock-imhwpb-ueaegla4i1gpi5i.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"clock-imhwpb-ueaegla4i1gpi5i-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:40:\"clock-imhwpb-ueaegla4i1gpi5i-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:38:\"clock-imhwpb-ueaegla4i1gpi5i-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:40:\"clock-imhwpb-ueaegla4i1gpi5i-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:40:\"clock-imhwpb-ueaegla4i1gpi5i-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:40:\"clock-imhwpb-ueaegla4i1gpi5i-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:40:\"clock-imhwpb-ueaegla4i1gpi5i-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:40:\"clock-imhwpb-ueaegla4i1gpi5i-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:40:\"clock-imhwpb-ueaegla4i1gpi5i-293x285.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:285;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:{}}}'),(128,48,'_wp_attached_file','2018/12/desktop-imhwpb-j5ip7kfq9yw9dlf.jpg'),(129,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2018/12/desktop-imhwpb-j5ip7kfq9yw9dlf.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-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:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:40:\"desktop-imhwpb-j5ip7kfq9yw9dlf-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-250x125.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-550x275.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-360x180.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:42:\"desktop-imhwpb-j5ip7kfq9yw9dlf-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;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:{}}}'),(130,49,'_wp_attached_file','2018/12/laptop-imhwpb-id7lp8imt7hfuys.jpg'),(131,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:41:\"2018/12/laptop-imhwpb-id7lp8imt7hfuys.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"laptop-imhwpb-id7lp8imt7hfuys-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:41:\"laptop-imhwpb-id7lp8imt7hfuys-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:39:\"laptop-imhwpb-id7lp8imt7hfuys-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:41:\"laptop-imhwpb-id7lp8imt7hfuys-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:41:\"laptop-imhwpb-id7lp8imt7hfuys-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:41:\"laptop-imhwpb-id7lp8imt7hfuys-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:41:\"laptop-imhwpb-id7lp8imt7hfuys-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;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:{}}}'),(132,50,'_wp_attached_file','2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83.jpg'),(133,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:101:\"2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-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:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-550x413.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;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:{}}}'),(134,51,'_wp_attached_file','2018/12/6-Y9nzl9tA3Lw-360x200.jpg'),(135,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2018/12/6-Y9nzl9tA3Lw-360x200.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"6-Y9nzl9tA3Lw-360x200-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:33:\"6-Y9nzl9tA3Lw-360x200-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:31:\"6-Y9nzl9tA3Lw-360x200-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:33:\"6-Y9nzl9tA3Lw-360x200-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:33:\"6-Y9nzl9tA3Lw-360x200-250x139.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:33:\"6-Y9nzl9tA3Lw-360x200-324x180.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:33:\"6-Y9nzl9tA3Lw-360x200-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;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:{}}}'),(136,52,'_wp_attached_file','2018/12/6-sHzMcXkJNrw-360x200.jpg'),(137,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2018/12/6-sHzMcXkJNrw-360x200.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"6-sHzMcXkJNrw-360x200-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:33:\"6-sHzMcXkJNrw-360x200-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:31:\"6-sHzMcXkJNrw-360x200-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:33:\"6-sHzMcXkJNrw-360x200-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:33:\"6-sHzMcXkJNrw-360x200-250x139.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:33:\"6-sHzMcXkJNrw-360x200-324x180.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:33:\"6-sHzMcXkJNrw-360x200-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;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:{}}}'),(138,53,'_wp_attached_file','2018/12/6-bAPQgfthcrI-360x200.jpg'),(139,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2018/12/6-bAPQgfthcrI-360x200.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"6-bAPQgfthcrI-360x200-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:33:\"6-bAPQgfthcrI-360x200-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:31:\"6-bAPQgfthcrI-360x200-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:33:\"6-bAPQgfthcrI-360x200-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:33:\"6-bAPQgfthcrI-360x200-250x139.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:33:\"6-bAPQgfthcrI-360x200-324x180.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:33:\"6-bAPQgfthcrI-360x200-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;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:{}}}'),(140,54,'_wp_attached_file','2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y.jpg'),(141,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:101:\"2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-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:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-550x413.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;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:{}}}'),(154,63,'_wp_trash_meta_time','1545908266'),(152,62,'_wp_trash_meta_time','1545903612'),(151,62,'_wp_trash_meta_status','publish'),(150,62,'_edit_lock','1545903581:1'),(148,61,'_wp_attached_file','2018/12/linx-consulting-imhwpb-jnemxr7pr9e175f.jpg'),(149,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:50:\"2018/12/linx-consulting-imhwpb-jnemxr7pr9e175f.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-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:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"linx-consulting-imhwpb-jnemxr7pr9e175f-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:48:\"linx-consulting-imhwpb-jnemxr7pr9e175f-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:50:\"linx-consulting-imhwpb-jnemxr7pr9e175f-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:51:\"linx-consulting-imhwpb-jnemxr7pr9e175f-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;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:{}}}'),(156,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1375;s:6:\"height\";i:916;s:4:\"file\";s:33:\"2018/12/Aurora_-_illustration.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-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:33:\"Aurora_-_illustration-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Aurora_-_illustration-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:31:\"Aurora_-_illustration-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-550x366.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-751x500.jpg\";s:5:\"width\";i:751;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:33:\"Aurora_-_illustration-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:34:\"Aurora_-_illustration-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;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:{}}}'),(157,65,'_wp_attached_file','2018/12/cropped-Aurora_-_illustration.jpg'),(158,65,'_wp_attachment_context','background-image'),(159,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1375;s:6:\"height\";i:774;s:4:\"file\";s:41:\"2018/12/cropped-Aurora_-_illustration.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-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:41:\"cropped-Aurora_-_illustration-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"cropped-Aurora_-_illustration-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:39:\"cropped-Aurora_-_illustration-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-550x310.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-888x500.jpg\";s:5:\"width\";i:888;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:41:\"cropped-Aurora_-_illustration-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:42:\"cropped-Aurora_-_illustration-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;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:{}}}'),(160,66,'_wp_trash_meta_status','publish'),(161,66,'_wp_trash_meta_time','1545908333'),(168,27,'_edit_lock','1546074730:1'),(163,68,'_wp_attached_file','2018/12/starlogo-connect.png'),(164,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:310;s:4:\"file\";s:28:\"2018/12/starlogo-connect.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"starlogo-connect-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:28:\"starlogo-connect-300x227.png\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:26:\"starlogo-connect-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:28:\"starlogo-connect-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:28:\"starlogo-connect-250x189.png\";s:5:\"width\";i:250;s:6:\"height\";i:189;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:28:\"starlogo-connect-238x180.png\";s:5:\"width\";i:238;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:28:\"starlogo-connect-397x300.png\";s:5:\"width\";i:397;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:28:\"starlogo-connect-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:28:\"starlogo-connect-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;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:{}}}'),(165,69,'_wp_attached_file','2018/12/cropped-starlogo-connect.png'),(166,69,'_wp_attachment_context','site-icon'),(167,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:36:\"2018/12/cropped-starlogo-connect.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-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:36:\"cropped-starlogo-connect-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:34:\"cropped-starlogo-connect-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-512x500.png\";s:5:\"width\";i:512;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:36:\"cropped-starlogo-connect-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:34:\"cropped-starlogo-connect-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(169,67,'_customize_restore_dismissed','1'),(171,72,'_customize_restore_dismissed','1'),(175,34,'_wp_trash_meta_status','publish'),(176,34,'_wp_trash_meta_time','1546083969'),(177,34,'_wp_desired_post_slug','contact-us'),(181,32,'_wp_trash_meta_status','publish'),(182,32,'_wp_trash_meta_time','1546083969'),(183,32,'_wp_desired_post_slug','about-us'),(187,27,'_wp_trash_meta_status','publish'),(188,27,'_wp_trash_meta_time','1546083969'),(189,27,'_wp_desired_post_slug','home'),(190,10,'_wp_trash_meta_status','publish'),(191,10,'_wp_trash_meta_time','1546083969'),(192,10,'_wp_desired_post_slug','website-coming-soon'),(193,73,'_wp_trash_meta_status','draft'),(194,73,'_wp_trash_meta_time','1546083969'),(195,73,'_wp_desired_post_slug','boldgrid-gridblock-set-preview-page'),(196,70,'_wp_trash_meta_status','draft'),(197,70,'_wp_trash_meta_time','1546083969'),(198,70,'_wp_desired_post_slug',''),(199,3,'_wp_trash_meta_status','draft'),(200,3,'_wp_trash_meta_time','1546083969'),(201,3,'_wp_desired_post_slug','privacy-policy'),(202,31,'_wp_trash_meta_status','publish'),(203,31,'_wp_trash_meta_time','1546083969'),(204,31,'_wp_desired_post_slug','tips-for-better-writing'),(205,30,'_wp_trash_meta_status','publish'),(206,30,'_wp_trash_meta_time','1546083969'),(207,30,'_wp_desired_post_slug','basic-taxonomies'),(208,29,'_wp_trash_meta_status','publish'),(209,29,'_wp_trash_meta_time','1546083969'),(210,29,'_wp_desired_post_slug','blogging-101');
/*!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_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2018-11-28 06:36:25','2018-11-28 06:36:25','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','trash','open','open','','hello-world__trashed','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/?p=1',0,'post','',1),(2,1,'2018-11-28 06:36:25','2018-11-28 06:36:25','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','trash','closed','open','','sample-page__trashed','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/?page_id=2',0,'page','',0),(3,1,'2018-11-28 06:36:25','2018-11-28 06:36:25','<h2>Who we are</h2><p>Our website address is: http://paulocoelhovieira.com/bg_paulocoelhovieira.com.</p><h2>What personal data we collect and why we collect it</h2><h3>Comments</h3><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><h3>Media</h3><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><h3>Contact forms</h3><h3>Cookies</h3><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><h3>Embedded content from other websites</h3><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.</p><h3>Analytics</h3><h2>Who we share your data with</h2><h2>How long we retain your data</h2><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><h2>What rights you have over your data</h2><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><h2>Where we send your data</h2><p>Visitor comments may be checked through an automated spam detection service.</p><h2>Your contact information</h2><h2>Additional information</h2><h3>How we protect your data</h3><h3>What data breach procedures we have in place</h3><h3>What third parties we receive data from</h3><h3>What automated decision making and/or profiling we do with user data</h3><h3>Industry regulatory disclosure requirements</h3>','Privacy Policy','','trash','closed','open','','privacy-policy__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/?page_id=3',0,'page','',0),(4,0,'2018-11-28 06:36:27','2018-11-28 06:36:27','\n	<p>\n		This site has been created with the help of many different people and companies.\n	</p>\n\n	<p>\n		In particular, a special thanks goes to the following for content running on this site:\n	</p>\n\n			<style>\n				.attributed{height:250px;overflow:hidden;}\n				.attributed img{max-height:180px;}\n			</style>\n			<div class=\"row\">\n		<div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/clock-imhwpb-ueaegla4i1gpi5i-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/desktop-imhwpb-j5ip7kfq9yw9dlf-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/laptop-imhwpb-id7lp8imt7hfuys-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"http://unsplash.com/photos/ziwuqMZNRvs\" target=\"_blank\"><img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"http://unsplash.com/@benchaccounting\" target=\"_blank\">Bench Accounting</a> / <a href=\"https://unsplash.com/\" target=\"_blank\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://unsplash.com/photos/Y9nzl9tA3Lw\" target=\"_blank\"><img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-Y9nzl9tA3Lw-360x200-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://www.rawpixel.com/\" target=\"_blank\">rawpixel</a> / <a href=\"https://unsplash.com/\" target=\"_blank\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://unsplash.com/photos/sHzMcXkJNrw\" target=\"_blank\"><img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-sHzMcXkJNrw-360x200-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://www.rawpixel.com/\" target=\"_blank\">rawpixel</a> / <a href=\"https://unsplash.com/\" target=\"_blank\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://unsplash.com/photos/bAPQgfthcrI\" target=\"_blank\"><img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-bAPQgfthcrI-360x200-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://www.rawpixel.com/\" target=\"_blank\">rawpixel</a> / <a href=\"https://unsplash.com/\" target=\"_blank\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"http://unsplash.com/photos/HzEb3ZRtV88\" target=\"_blank\"><img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"http://unsplash.com/@laurenmancke\" target=\"_blank\">Lauren Mancke</a> / <a href=\"https://unsplash.com/\" target=\"_blank\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://images.unsplash.com/photo-1430760903787-4d91bbf15384?ixlib=rb-0.3.5&amp;q=80&amp;fm=jpg&amp;crop=entropy&amp;s=de43e34bc7e1f68795ecefced65144ff\" target=\"_blank\"><img src=\'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/linx-consulting-imhwpb-jnemxr7pr9e175f-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://unsplash.com/@albertosaure\" target=\"_blank\">Luis Llerena</a><br /><strong>License</strong>: <a href=\"http://creativecommons.org/licenses/by/2.0/\" target=\"_blank\"><img src=\"https://licensebuttons.net/l/by/2.0/80x15.png\" title=\"Attribution License\" /></a> </div></div><hr />\n	<p style=\"clear:both\">\n		In addition, this  site was built on a powerful, Inspirations based web builder called <a href=\"http://www.boldgrid.com\" target=\"_blank\">BoldGrid</a>. It is running on <a href=\"http://wordpress.org\" target=\"_blank\">WordPress</a>, the most popular content management software online today. Web hosting support is provided by <a href=\"http://www.inmotionhosting.com/\">InMotion Hosting</a>.\n	</p>\n<div class=\"boldgrid-attribution\"><p>Additional functionality provided by:</p><ul><li><a href=\"https://wordpress.org/plugins/wc-gallery/\">WP Canvas - Gallery</a></li></ul></div>','Attribution','','publish','closed','closed','','attribution','','','2018-12-27 13:00:47','2018-12-27 16:00:47','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/attribution/',0,'bg_attribution','',0),(10,0,'2018-11-28 06:36:35','2018-11-28 06:36:35','<div class=\"row\">\r\n	<div class=\"col-md-5\">\r\n		<h2 class=\"title-main\">WEBSITE COMING SOON</h2>\r\n		<h2>JUST VISITING?</h2>\r\n		<p>If you are a looking for more information, please check back soon, our new site is on the way!</p>\r\n		<h2>IS THIS YOUR SITE?</h2>\r\n		<p>If you own this site, we have installed this \"Coming Soon\" page as a temporary placeholder. Go to your <strong><a href=\"wp-admin\">BoldGrid Login</a></strong> to choose your <strong>Inspiration</strong> to replace this placeholder.  Your username and password were provided in your Welcome Email.</p>\r\n	</div>\r\n	<div class=\"col-md-7\">\r\n		<p>\r\n			<img src=\"//www.boldgrid.com/assets/images/default-1.jpg\" alt=\"hikers in the mountains\" width=\"800\" height=\"904\" class=\"alignnone size-full\" />\r\n		</p>\r\n	</div>\r\n</div>\r\n','WEBSITE COMING SOON','','trash','closed','closed','','website-coming-soon__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'https://paulocoelhovieira.com/bg_paulocoelhovieira.com/website-coming-soon/',0,'page','',0),(73,1,'2018-12-29 08:46:09','2018-12-29 11:46:09','','BoldGrid - GridBlock Set - Preview Page','','trash','closed','closed','','boldgrid-gridblock-set-preview-page__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/?page_id=73',0,'page','',0),(12,1,'2018-11-29 02:39:24','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-11-29 02:39:24','0000-00-00 00:00:00','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/?p=12',0,'post','',0),(14,1,'2018-12-27 09:32:38','2018-12-27 09:32:38','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','private','closed','closed','','wpforms-preview','','','2018-12-27 09:32:38','2018-12-27 09:32:38','',0,'http://paulocoelhovieira.com/wpforms-preview/',0,'page','',0),(15,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":15,\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 1\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 1 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 1','','publish','closed','closed','','boldgrid-form-1','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=15',0,'wpforms','',0),(16,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":16,\"field_id\":14,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 2\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 2 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 2','','publish','closed','closed','','boldgrid-form-2','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=16',0,'wpforms','',0),(17,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":17,\"field_id\":17,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Alternate Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"radio\",\"label\":\"When is the best time to contact you?\",\"choices\":{\"1\":{\"label\":\"Morning\",\"value\":\"Morning\"},\"2\":{\"label\":\"Afternoon\",\"value\":\"Afternoon\"},\"3\":{\"label\":\"Evening\",\"value\":\"Evening\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"radio\",\"label\":\"What is the best way to contact you?\",\"choices\":{\"1\":{\"label\":\"Phone\",\"value\":\"Phone\"},\"2\":{\"label\":\"Email\",\"value\":\"Email\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 3\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 3 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 3','','publish','closed','closed','','boldgrid-form-3','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=17',0,'wpforms','',0),(18,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":18,\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State / Province\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (International)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (International) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Address Form (International)','','publish','closed','closed','','address-form-international','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=18',0,'wpforms','',0),(19,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":19,\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (US)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (US) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Address Form (US)','','publish','closed','closed','','address-form-us','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=19',0,'wpforms','',0),(20,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":20,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Body\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Email Form (Traditional)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Email Form (Traditional) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Email Form (Traditional)','','publish','closed','closed','','email-form-traditional','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=20',0,'wpforms','',0),(21,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":21,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"number\",\"label\":\"Group Size\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form (Group Support)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form (Group Support) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Event Registration Form (Group Support)','','publish','closed','closed','','event-registration-form-group-support','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=21',0,'wpforms','',0),(22,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":22,\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Event Registration Form','','publish','closed','closed','','event-registration-form','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=22',0,'wpforms','',0),(23,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":23,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Information Request Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Information Request Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Information Request Form','','publish','closed','closed','','information-request-form','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=23',0,'wpforms','',0),(24,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":24,\"field_id\":17,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Company Name\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Shipping Information Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Shipping Information Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Shipping Information Form','','publish','closed','closed','','shipping-information-form','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=24',0,'wpforms','',0),(25,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":25,\"field_id\":3,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Sign Up Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Sign Up\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Sign Up Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Sign Up Form','','publish','closed','closed','','sign-up-form','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=25',0,'wpforms','',0),(26,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','{\"id\":26,\"field_id\":9,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"On a scale of 1 to 5, how would you rate your experience with our product / service?\",\"choices\":{\"1\":{\"label\":\"1 (poor)\",\"value\":\"1\"},\"2\":{\"label\":\"2 (mediocre)\",\"value\":\"2\"},\"3\":{\"label\":\"3 (average)\",\"value\":\"3\"},\"4\":{\"label\":\"4 (fair)\",\"value\":\"4\"},\"5\":{\"label\":\"5 (excellent)\",\"value\":\"5\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"radio\",\"label\":\"How likely are you to recommend our product / service to people you know?\",\"choices\":{\"1\":{\"label\":\"Likely\",\"value\":\"Likely\"},\"2\":{\"label\":\"Somewhat Likely\",\"value\":\"Somewhat Likely\"},\"3\":{\"label\":\"Somewhat Unlikely\",\"value\":\"Somewhat Unlikely\"},\"4\":{\"label\":\"Unlikely\",\"value\":\"Unlikely\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"radio\",\"label\":\"Would you use our product / service in the future?\",\"choices\":{\"1\":{\"label\":\"Yes\",\"value\":\"Yes\"},\"2\":{\"label\":\"No\",\"value\":\"No\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"select\",\"label\":\"How long have you used our product / service?\",\"choices\":{\"1\":{\"label\":\"Select...\",\"value\":\"\"},\"6\":{\"label\":\"Less than a month\",\"value\":\"Less than a month\"},\"2\":{\"label\":\"1 Month - 11 Months\",\"value\":\"1 Month - 11 Months\"},\"3\":{\"label\":\"1 Year - 2 Years\",\"value\":\"1 Year - 2 Years\"},\"5\":{\"label\":\"3 Years - 5 Years\",\"value\":\"3 Years - 5 Years\"},\"4\":{\"label\":\"Over 5 Years\",\"value\":\"Over 5 Years\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"textarea\",\"label\":\"Please tell us what you liked or disliked about our product / service\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"textarea\",\"label\":\"Additional Comments\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Customer Feedback Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Customer Feedback Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Customer Feedback Form','','publish','closed','closed','','customer-feedback-form','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',0,'http://paulocoelhovieira.com/?post_type=wpforms&#038;p=26',0,'wpforms','',0),(27,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color5-background-color color5-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div style=\"background-color: transparent;\">\n<h2 class=\"color3-color\" style=\"text-align: center;\">The Best In The Industry</h2>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 64px;\">\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<div style=\"padding: 1.5em 3em; margin: 10px 0px;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-left color1-text-default color1-background-color\">\n<h4 class=\"color2-color\">A Different Approach</h4>\n<p class=\"\">At NTP Consulting, we believe the spirit under which your company was formed is a vital part of its future growth. We won&rsquo;t tell you to change your corporate culture or anything else that makes your business an amazingly unique enterprise.</p>\n<p class=\"\">At NTP Partners Consulting, we don&rsquo;t get our testimonials by asking our clients for them &ndash; we wait for them to develop organically in emails, commentary or blog posts.</p>\n&nbsp;\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More </a></p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\n<div style=\"background-color: transparent;\" class=\"\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded wp-image-38\" style=\"margin-top: 13px; margin-bottom: 13px;\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl.jpg\" alt=\"e7rlgujjazc\" data-imhwpb-asset-id=\"695290\" width=\"600\" height=\"600\">\n\n&nbsp;\n<p class=\"\">Though our services are divided into basic areas of marketing, finance, production and growth, we treat all our clients as individuals and don&rsquo;t think a one-sized-fits-all solution will work. We&rsquo;ll help you develop a customized plan to your unique position.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12 added-element\">\n<div style=\"background-color: transparent;\" class=\"\">\n<h4 class=\"\">Quality Over Quantity</h4>\n<p class=\"\">Because we have so many brilliant consultants in a wide variety of industries, we&rsquo;ve been able to pick the very best advice for re-inventing your business into a dynamic, thriving enterprise where people are lining up to get in and share the experience. If you&rsquo;ve dreamed of making your business extraordinary, our Business Renovation Program will take you there.</p>\n<p class=\"\">We believe in honoring the unique personalities, culture and market that has grown your business so far, and hire only the very best consultants to help you take your business into the future with success beyond your wildest dreams.</p>\n<p class=\"\">Although you can tell a lot about a business or service by looking at its website, the best way to see what they can do is by looking through their customer&rsquo;s eyes and seeing what they&rsquo;ve accomplished.</p>\n\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div>\n<ul class=\"\"><li>Optimize Performance</li>\n 	<li>Contract Consultants</li>\n</ul></div>\n</div>\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div>\n<ul class=\"\"><li>Costs in Advance</li>\n 	<li>Technology Planning</li>\n</ul></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color2-background-color color2-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 41px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color1-color\" style=\"text-align: center;\">Services</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 83px;\">\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-39\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft.jpg\" alt=\"jwimshwif14\" data-imhwpb-asset-id=\"695291\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">&nbsp;Makeover</h4>\n<p class=\"\" style=\"text-align: center;\">Whether you need to have some serious work done on your social media marketing, we have marketing experts who can help.</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-40\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps.jpg\" alt=\"unrkg2jh1j0\" data-imhwpb-asset-id=\"695292\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">Flow Finance</h4>\n<p class=\"\" style=\"text-align: center;\">What if running finance was about being able to capture the very best out of every new possibility that was presented to you?</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-41\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x.jpg\" alt=\"jrh5laq-mis\" data-imhwpb-asset-id=\"695293\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">Production Plus</h4>\n<p class=\"\" style=\"text-align: center;\">Production Plus puts the world&rsquo;s top manufacturing and operations gurus into action cutting your overhead.</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 14px; margin-bottom: 14px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-42\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74.jpg\" alt=\"t5bva-q_m_y\" data-imhwpb-asset-id=\"695294\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">Dynamic Growth</h4>\n<p class=\"\" style=\"text-align: center;\">If it&rsquo;s time to take your business to the next level, Dynamic Growth will get you there quickly and efficiently. Let us take you there!</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color5-background-color color5-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 20px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color3-color\" style=\"text-align: center;\">Testimonials</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 20px;\">\n<div class=\"col-md-3 col-sm-4 col-xs-12\">\n<h4 style=\"text-align: center;\"><img class=\"aligncenter bg-img bg-img-circle wp-image-43\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh.jpg\" alt=\"aslrezyut4c\" data-imhwpb-asset-id=\"695295\" width=\"140\" height=\"140\"></h4>\n<h4 style=\"text-align: center;\">Alan Smith</h4>\n</div>\n<div class=\"col-md-9 col-sm-8 col-xs-12\">\n<div style=\"padding: 2em 3em; margin-top: 10px; margin-bottom: 10px;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-left color1-text-default color1-background-color\">\n<p class=\"\" style=\"font-size: 16px;\">After we dealt poorly with a product recall, we were worried that our business was going to fail. We had marketing people who could tell us how to promote our products, but nobody could tell us how to regain our customers&rsquo; trust and loyalty. NTP&rsquo;s Marketing Makeover put us back in the game.</p>\n\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 64px;\">\n<div class=\"col-md-3 col-sm-4 col-xs-12\">\n<h4 style=\"text-align: center;\"><img class=\"aligncenter size-full bg-img bg-img-circle wp-image-44\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf.jpg\" alt=\"3hoaon9mc88\" data-imhwpb-asset-id=\"695296\" width=\"140\" height=\"140\"></h4>\n<h4 class=\"\" style=\"text-align: center;\">Aimee Lee</h4>\n</div>\n<div class=\"col-md-9 col-sm-8 col-xs-12\">\n<div style=\"padding: 2em 3em; margin-top: 10px; margin-bottom: 10px;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-left color1-text-default color1-background-color\">\n<p class=\"\" style=\"font-size: 16px;\">We knew we had a great product, but we didn&rsquo;t know how to take the business to the next level so that we could see real success. The comprehensive Dynamic Growth program offered by NTP worked with us every step of the way so we could grow our company without sacrificing our company spirit. We just made Fortune 500!</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color2-background-color color2-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 20px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div>\n<h2 class=\"color1-color\" style=\"text-align: center;\">About Our Company</h2>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 89px;\">\n<div class=\"col-md-4 col-sm-5 col-xs-12\">\n<div class=\"\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded-bottom-left bg-img-rounded-top-left wp-image-45\" style=\"margin-top: 15px; margin-bottom: 15px;\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d.jpg\" alt=\"ttpmpll_2lc\" data-imhwpb-asset-id=\"695297\" width=\"600\" height=\"600\"></div>\n</div>\n<div class=\"col-md-4 col-sm-7 col-xs-12\">\n<div style=\"padding: 2.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-edged color1-text-default color1-background-color\">\n<p class=\"\"><img class=\"aligncenter bg-img bg-img-1 wp-image-46\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n.jpg\" alt=\"wnz7_5evuwu\" data-imhwpb-asset-id=\"695298\" width=\"240\" height=\"240\"></p>\n&nbsp;\n<p class=\"\">Determined to create something better, our company was formed to help small businesses reach that next level without losing their personality. Fortune 500 and some of the best marketers in the world created a dynamic company of consultants who were able to take a small business in hand and turn it into a growing, dynamic powerhouse.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12\">\n<div style=\"padding: 2.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-edged color1-text-default color1-background-color\">\n<p class=\"\">We believe that creating growth is only helpful if the company is able to continue. Destroying a company&rsquo;s spirit in the interest of growth only leads to a failed enterprise.</p>\n<p class=\"\">Because of this value, we&rsquo;re always happy to go above and beyond for your company, reaching out to our extensive network of contact to develop the perfect program so your company can realize an amazing level of dynamic growth.</p>\n<p class=\"\">We don&rsquo;t want you to change. We&rsquo;ll help you get there without sacrificing your values.</p>\n&nbsp;\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More&nbsp; </a></p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n','Home','','trash','closed','closed','','home__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'http://paulocoelhovieira.com/home/',0,'page','',0),(29,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h3>Pages vs. Posts</h3>\r\n<p class=\"mod-reset\"><img class=\"alignright wp-image-47\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/clock-imhwpb-ueaegla4i1gpi5i.jpg\" alt=\"clock\" data-imhwpb-asset-id=\"788447\" height=\"390\" width=\"293\" style=\"margin-bottom: 20px;\"></p>\r\nIf you\'re new to WordPress you may be wondering what\'s the big deal behind <em><strong>Pages</strong></em> and <em><strong>Posts</strong></em>. At first glance they appear to be one and the same: if you were to create either a new page or a new post you\'d be presented with nearly identical interfaces and in many cases the public appearance of pages and posts will look the same.\r\n\r\nDon\'t let this fool you. There\'s a very fundamental difference between the two and that difference is what makes CMSs, like WordPress, great platforms for integrating blogs with traditional websites.\r\n<h4>Pages</h4>\r\nThink about the kind of pages that make up a typical website. Most often you\'ll see pages like \"Home\", \"About Us\", \"Services\", \"Contact Us\", etc. Within WordPress these are often treated as <em><strong>Pages</strong></em>; documents that have no particular regard for the time they were posted.\r\n\r\nFor example, when you visit the \"About Us\" page of your favorite company\'s website you don\'t expect the content to be very different from what was available there a week ago.\r\n\r\n<!--more Read more > -->\r\n<h4>Posts</h4>\r\nNow take a moment to think of your favorite news website. A news site is an ideal example of when you\'d expect content to be different from the last time you visited &mdash; after all, news just wouldn\'t be news if it weren\'t current. In the case of news sites, <em><strong>Posts</strong></em> are most often used to write articles.\r\n\r\nWhen you publish a post within WordPress it knows to treat the post differently than the way it treats a page. For example, when you enable a blog within your BoldGrid theme, it will list all of your published posts in reverse chronological order on your <em><strong>Blog</strong></em> page.\r\n\r\nYour BoldGrid site can contain both pages and posts, i.e. you may have an \"About Author\" page to compliment your weekly blog. When done well, utilizing pages and posts in this way can help you build a more engaging experience for your visitors.\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</div>\n','Blogging 101','','trash','closed','open','','blogging-101__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'http://paulocoelhovieira.com/uncategorized/blogging-101/',0,'post','',0),(30,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h3>Categories and Tags</h3>\r\n<p class=\"mod-reset\"><img class=\"aligncenter size-full wp-image-48\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/desktop-imhwpb-j5ip7kfq9yw9dlf.jpg\" alt=\"desktop\" data-imhwpb-asset-id=\"788448\" height=\"450\" width=\"900\"></p>\r\n\r\nIf you write about a variety of subjects, categories can help your readers find the posts that are most relevant to them. For instance, if you run a consulting business, you may want some of your posts to reflect work you\'ve done with previous clients, while having other posts act as informational resources. In this particular case, you can set up 2 categories: one labeled <em><strong>Projects</strong></em> and another labeled <em><strong>Resources</strong></em>. You\'d then place your posts in their respective categories.\r\n\r\n<!--more Read more > -->\r\n\r\nCategories are accessible from the post editor. There you can create new categories and assign them to your posts.\r\n\r\nTags, on the other hand, allow you to label your posts with relevant topics. For instance, within one of your resource posts you may choose to write about a set of project management tools. While you can certainly create a new category called \"Project Management Tools,\" you may not plan to write about the topic often enough to justify giving it a dedicated category. Instead, you may want to tag your post with several topics that exists within the post; e.g. <em><strong>project management tools, communication, time tracking</strong></em>, etc.\r\n\r\nWhat\'s great about tags is that they are searchable and provide your users another way to find content on your site. Anyone searching for \"project management tools\" will be able to locate any posts you\'ve tagged with those words!\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</div>\n','Basic Taxonomies','','trash','closed','open','','basic-taxonomies__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'http://paulocoelhovieira.com/uncategorized/basic-taxonomies/',0,'post','',0),(31,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h3>Plan Your Content</h3>\r\n<p class=\"mod-reset\"><img class=\"alignright wp-image-49\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/laptop-imhwpb-id7lp8imt7hfuys.jpg\" alt=\"laptop\" data-imhwpb-asset-id=\"788449\" height=\"225\" width=\"300\" style=\"margin-bottom: 20px;\"></p>\r\nIf you\'re considering adding a blog to your site, you\'ll want to have a plan beforehand. Planning your blog will help your subject matter remain consistent over time. It\'ll also help you determine whether or not there\'s enough material to maintain a steady stream of posts.\r\n\r\nOne pitfall many new bloggers run into is starting a blog that isn\'t posted to frequently enough. A shortage of recent posts can give your visitors a bad impression of your business. One may think \"I wonder if they&rsquo;re still in business\" or \"they may want to hire a writer.\"\r\n\r\nA blog, like any other customer facing aspect of your business, communicates your brand. If it isn\'t maintained and given proper attention, people will notice. Post regularly and keep your content fresh. Give your audience a reason to visit often.\r\n<p class=\"\"><!--more Read more > --></p>\r\n&nbsp;\r\n<h3>Find Your Audience</h3>\r\nWhile on the topic of audiences, you\'ll likely want to identify yours early on. If your blog is going to be set up to compliment a business, your target audience will likely be the same as your consumer base; you\'re then writing for the same people that buy your product. You\'ll want to allow any marketing material you\'ve used inform the style and tone of your writing. Think of your blog as an extension of your company\'s brand.\r\n\r\nIf, on the other hand, your business is completely new or you don\'t happen to be selling anything in particular, this is the time to start thinking about your brand ...\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n','Tips For Better Writing','','trash','closed','open','','tips-for-better-writing__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'http://paulocoelhovieira.com/uncategorized/tips-for-better-writing/',0,'post','',0),(32,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2>Helping Your Business Build Success</h2>\r\n<h4>Develop Your Path to Greatness</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nAt Amazing Business Consulting, our business is helping your business succeed. Whether you need help with business planning, need back office support or need to change up your game to higher-level executive action, we\'ve got programs and services you need to make your business rock.\r\n\r\nFounded by Bradley Jessup in 1995, we\'ve had over 20 years\' experience in helping entrepreneurs develop success in their business and personal lives. Our focus is finding areas where your business could be more productive and successful and then helping you develop the path to get it there.\r\n<div class=\"mod-space\"></div>\r\n<div class=\"gridblock\">\r\n<p class=\"p-button-primary\"><a class=\"button-primary\" href=\"#\">Customer Testimonials</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-50\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780426\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-Y9nzl9tA3Lw-360x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"14|landscape\" width=\"360\" class=\"wp-image-51\"></p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<h2>Professional Services</h2>\r\nWe offer a variety of professional services that help you achieve your business goals. Do you need help with building a comprehensive business plan to get financing? What about one-on-one mentoring to take your career to the next level? We\'ve got that.\r\n\r\n</div>\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-sHzMcXkJNrw-360x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"14|landscape\" width=\"360\" class=\"wp-image-52\"></p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<h2>Comprehensive Programs</h2>\r\nOur dynamic programs cover businesses in a variety of stages and sizes. Whether you\'re just starting out, have too many hats as a SME owner, need high-level executive mentoring or need marketing tips that fit your schedule, our programs fit the bill.\r\n\r\n</div>\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-bAPQgfthcrI-360x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"14|landscape\" width=\"360\" class=\"wp-image-53\"></p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<h2>Amazing Results</h2>\r\nWhere do we deliver the most? In our client\'s results. We\'ve worked with companies from single-person startups to Fortune 500 executives and everything in between. We provide a guarantee that if you follow our plan and don\'t see amazing results, you don\'t pay.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n','About Us','','trash','closed','closed','','about-us__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'http://paulocoelhovieira.com/about-us/',0,'page','',0),(34,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\n\nPlease use the contact form below, if you have any general questions or requests about our services.\n\nWe will try our best to respond back to you within 24 hours.\n\n[wpforms id=\"20\"]\n\n</div>\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\n\n\n\n\n\n\n\n\n\n\n\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-54\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780433\"></p>\n\n</div>\n</div>\n</div>\n</div>\n','Contact Us','','trash','closed','closed','','contact-us__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'http://paulocoelhovieira.com/contact-us/',0,'page','',0),(36,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',2,'http://paulocoelhovieira.com/uncategorized/2-revision-v1/',0,'revision','',0),(37,1,'2018-12-27 09:32:39','2018-12-27 09:32:39','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2018-12-27 09:32:39','2018-12-27 09:32:39','',1,'http://paulocoelhovieira.com/uncategorized/1-revision-v1/',0,'revision','',0),(38,1,'2018-12-27 09:32:42','2018-12-27 09:32:42','','e7rlgujjazc','','inherit','open','closed','','e7rlgujjazc','','','2018-12-27 09:32:42','2018-12-27 09:32:42','',27,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl.jpg',0,'attachment','image/jpeg',0),(39,1,'2018-12-27 09:32:43','2018-12-27 09:32:43','','jwimshwif14','','inherit','open','closed','','jwimshwif14','','','2018-12-27 09:32:43','2018-12-27 09:32:43','',27,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft.jpg',0,'attachment','image/jpeg',0),(40,1,'2018-12-27 09:32:43','2018-12-27 09:32:43','','unrkg2jh1j0','','inherit','open','closed','','unrkg2jh1j0','','','2018-12-27 09:32:43','2018-12-27 09:32:43','',27,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps.jpg',0,'attachment','image/jpeg',0),(41,1,'2018-12-27 09:32:43','2018-12-27 09:32:43','','jrh5laq-mis','','inherit','open','closed','','jrh5laq-mis','','','2018-12-27 09:32:43','2018-12-27 09:32:43','',27,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x.jpg',0,'attachment','image/jpeg',0),(42,1,'2018-12-27 09:32:43','2018-12-27 09:32:43','','t5bva-q_m_y','','inherit','open','closed','','t5bva-q_m_y','','','2018-12-27 09:32:43','2018-12-27 09:32:43','',27,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74.jpg',0,'attachment','image/jpeg',0),(43,1,'2018-12-27 09:32:43','2018-12-27 09:32:43','','aslrezyut4c','','inherit','open','closed','','aslrezyut4c','','','2018-12-27 09:32:43','2018-12-27 09:32:43','',27,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh.jpg',0,'attachment','image/jpeg',0),(44,1,'2018-12-27 09:32:44','2018-12-27 09:32:44','','3hoaon9mc88','','inherit','open','closed','','3hoaon9mc88','','','2018-12-27 09:32:44','2018-12-27 09:32:44','',27,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf.jpg',0,'attachment','image/jpeg',0),(45,1,'2018-12-27 09:32:44','2018-12-27 09:32:44','','ttpmpll_2lc','','inherit','open','closed','','ttpmpll_2lc','','','2018-12-27 09:32:44','2018-12-27 09:32:44','',27,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d.jpg',0,'attachment','image/jpeg',0),(46,1,'2018-12-27 09:32:44','2018-12-27 09:32:44','','wnz7_5evuwu','','inherit','open','closed','','wnz7_5evuwu','','','2018-12-27 09:32:44','2018-12-27 09:32:44','',27,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n.jpg',0,'attachment','image/jpeg',0),(47,1,'2018-12-27 09:32:44','2018-12-27 09:32:44','','','','inherit','open','closed','','47','','','2018-12-27 09:32:44','2018-12-27 09:32:44','',29,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/clock-imhwpb-ueaegla4i1gpi5i.jpg',0,'attachment','image/jpeg',0),(48,1,'2018-12-27 09:32:44','2018-12-27 09:32:44','','','','inherit','open','closed','','48','','','2018-12-27 09:32:44','2018-12-27 09:32:44','',30,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/desktop-imhwpb-j5ip7kfq9yw9dlf.jpg',0,'attachment','image/jpeg',0),(49,1,'2018-12-27 09:32:45','2018-12-27 09:32:45','','','','inherit','open','closed','','49','','','2018-12-27 09:32:45','2018-12-27 09:32:45','',31,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/laptop-imhwpb-id7lp8imt7hfuys.jpg',0,'attachment','image/jpeg',0),(50,1,'2018-12-27 09:32:45','2018-12-27 09:32:45','','','','inherit','open','closed','','50','','','2018-12-27 09:32:45','2018-12-27 09:32:45','',32,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83.jpg',0,'attachment','image/jpeg',0),(51,1,'2018-12-27 09:32:45','2018-12-27 09:32:45','','','','inherit','open','closed','','51','','','2018-12-27 09:32:45','2018-12-27 09:32:45','',32,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-Y9nzl9tA3Lw-360x200.jpg',0,'attachment','image/jpeg',0),(52,1,'2018-12-27 09:32:45','2018-12-27 09:32:45','','','','inherit','open','closed','','52','','','2018-12-27 09:32:45','2018-12-27 09:32:45','',32,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-sHzMcXkJNrw-360x200.jpg',0,'attachment','image/jpeg',0),(53,1,'2018-12-27 09:32:45','2018-12-27 09:32:45','','','','inherit','open','closed','','53','','','2018-12-27 09:32:45','2018-12-27 09:32:45','',32,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-bAPQgfthcrI-360x200.jpg',0,'attachment','image/jpeg',0),(54,1,'2018-12-27 09:32:45','2018-12-27 09:32:45','','','','inherit','open','closed','','54','','','2018-12-27 09:32:45','2018-12-27 09:32:45','',34,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y.jpg',0,'attachment','image/jpeg',0),(55,1,'2018-12-27 09:32:46','2018-12-27 09:32:46','\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color5-background-color color5-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div style=\"background-color: transparent;\">\n<h2 class=\"color3-color\" style=\"text-align: center;\">The Best In The Industry</h2>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 64px;\">\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<div style=\"padding: 1.5em 3em; margin: 10px 0px;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-left color1-text-default color1-background-color\">\n<h4 class=\"color2-color\">A Different Approach</h4>\n<p class=\"\">At NTP Consulting, we believe the spirit under which your company was formed is a vital part of its future growth. We won&rsquo;t tell you to change your corporate culture or anything else that makes your business an amazingly unique enterprise.</p>\n<p class=\"\">At NTP Partners Consulting, we don&rsquo;t get our testimonials by asking our clients for them &ndash; we wait for them to develop organically in emails, commentary or blog posts.</p>\n&nbsp;\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More </a></p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\n<div style=\"background-color: transparent;\" class=\"\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded wp-image-38\" style=\"margin-top: 13px; margin-bottom: 13px;\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_E7RLgUjjazc-imhwpb-fs2n4536vit6znl.jpg\" alt=\"e7rlgujjazc\" data-imhwpb-asset-id=\"695290\" width=\"600\" height=\"600\">\n\n&nbsp;\n<p class=\"\">Though our services are divided into basic areas of marketing, finance, production and growth, we treat all our clients as individuals and don&rsquo;t think a one-sized-fits-all solution will work. We&rsquo;ll help you develop a customized plan to your unique position.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12 added-element\">\n<div style=\"background-color: transparent;\" class=\"\">\n<h4 class=\"\">Quality Over Quantity</h4>\n<p class=\"\">Because we have so many brilliant consultants in a wide variety of industries, we&rsquo;ve been able to pick the very best advice for re-inventing your business into a dynamic, thriving enterprise where people are lining up to get in and share the experience. If you&rsquo;ve dreamed of making your business extraordinary, our Business Renovation Program will take you there.</p>\n<p class=\"\">We believe in honoring the unique personalities, culture and market that has grown your business so far, and hire only the very best consultants to help you take your business into the future with success beyond your wildest dreams.</p>\n<p class=\"\">Although you can tell a lot about a business or service by looking at its website, the best way to see what they can do is by looking through their customer&rsquo;s eyes and seeing what they&rsquo;ve accomplished.</p>\n\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div>\n<ul class=\"\"><li>Optimize Performance</li>\n 	<li>Contract Consultants</li>\n</ul></div>\n</div>\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div>\n<ul class=\"\"><li>Costs in Advance</li>\n 	<li>Technology Planning</li>\n</ul></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color2-background-color color2-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 41px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color1-color\" style=\"text-align: center;\">Services</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 83px;\">\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-39\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_JWiMShWiF14-imhwpb-w2w7p4xqkavssft.jpg\" alt=\"jwimshwif14\" data-imhwpb-asset-id=\"695291\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">&nbsp;Makeover</h4>\n<p class=\"\" style=\"text-align: center;\">Whether you need to have some serious work done on your social media marketing, we have marketing experts who can help.</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-40\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_unRkg2jH1j0-imhwpb-1i3zos13dh58eps.jpg\" alt=\"unrkg2jh1j0\" data-imhwpb-asset-id=\"695292\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">Flow Finance</h4>\n<p class=\"\" style=\"text-align: center;\">What if running finance was about being able to capture the very best out of every new possibility that was presented to you?</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-41\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_jrh5lAq-mIs-imhwpb-q83m83wqofvt77x.jpg\" alt=\"jrh5laq-mis\" data-imhwpb-asset-id=\"695293\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">Production Plus</h4>\n<p class=\"\" style=\"text-align: center;\">Production Plus puts the world&rsquo;s top manufacturing and operations gurus into action cutting your overhead.</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n<div style=\"padding: 1.5em 2em; margin-top: 14px; margin-bottom: 14px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color1-text-default color1-background-color\">\n<h4 class=\"\"><img class=\"aligncenter bg-img bg-img-circle wp-image-42\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_t5BvA-Q_m_Y-imhwpb-fjmellfnqinoe74.jpg\" alt=\"t5bva-q_m_y\" data-imhwpb-asset-id=\"695294\" width=\"160\" height=\"160\"></h4>\n<h4 class=\"color2-color\" style=\"text-align: center;\">Dynamic Growth</h4>\n<p class=\"\" style=\"text-align: center;\">If it&rsquo;s time to take your business to the next level, Dynamic Growth will get you there quickly and efficiently. Let us take you there!</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color5-background-color color5-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 20px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color3-color\" style=\"text-align: center;\">Testimonials</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 20px;\">\n<div class=\"col-md-3 col-sm-4 col-xs-12\">\n<h4 style=\"text-align: center;\"><img class=\"aligncenter bg-img bg-img-circle wp-image-43\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_aSlReZyUt4c-imhwpb-u1ausd7qae3p3kh.jpg\" alt=\"aslrezyut4c\" data-imhwpb-asset-id=\"695295\" width=\"140\" height=\"140\"></h4>\n<h4 style=\"text-align: center;\">Alan Smith</h4>\n</div>\n<div class=\"col-md-9 col-sm-8 col-xs-12\">\n<div style=\"padding: 2em 3em; margin-top: 10px; margin-bottom: 10px;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-left color1-text-default color1-background-color\">\n<p class=\"\" style=\"font-size: 16px;\">After we dealt poorly with a product recall, we were worried that our business was going to fail. We had marketing people who could tell us how to promote our products, but nobody could tell us how to regain our customers&rsquo; trust and loyalty. NTP&rsquo;s Marketing Makeover put us back in the game.</p>\n\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 64px;\">\n<div class=\"col-md-3 col-sm-4 col-xs-12\">\n<h4 style=\"text-align: center;\"><img class=\"aligncenter size-full bg-img bg-img-circle wp-image-44\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_3hoAon9Mc88-imhwpb-3db25ssugurmbkf.jpg\" alt=\"3hoaon9mc88\" data-imhwpb-asset-id=\"695296\" width=\"140\" height=\"140\"></h4>\n<h4 class=\"\" style=\"text-align: center;\">Aimee Lee</h4>\n</div>\n<div class=\"col-md-9 col-sm-8 col-xs-12\">\n<div style=\"padding: 2em 3em; margin-top: 10px; margin-bottom: 10px;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-left color1-text-default color1-background-color\">\n<p class=\"\" style=\"font-size: 16px;\">We knew we had a great product, but we didn&rsquo;t know how to take the business to the next level so that we could see real success. The comprehensive Dynamic Growth program offered by NTP worked with us every step of the way so we could grow our company without sacrificing our company spirit. We just made Fortune 500!</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color2-background-color color2-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 20px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div>\n<h2 class=\"color1-color\" style=\"text-align: center;\">About Our Company</h2>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 89px;\">\n<div class=\"col-md-4 col-sm-5 col-xs-12\">\n<div class=\"\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded-bottom-left bg-img-rounded-top-left wp-image-45\" style=\"margin-top: 15px; margin-bottom: 15px;\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_TTPMpLl_2lc-imhwpb-5do35s3wtvgp39d.jpg\" alt=\"ttpmpll_2lc\" data-imhwpb-asset-id=\"695297\" width=\"600\" height=\"600\"></div>\n</div>\n<div class=\"col-md-4 col-sm-7 col-xs-12\">\n<div style=\"padding: 2.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-edged color1-text-default color1-background-color\">\n<p class=\"\"><img class=\"aligncenter bg-img bg-img-1 wp-image-46\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/tmp_wNz7_5EvUWU-imhwpb-1dwhcq3pe4aky8n.jpg\" alt=\"wnz7_5evuwu\" data-imhwpb-asset-id=\"695298\" width=\"240\" height=\"240\"></p>\n&nbsp;\n<p class=\"\">Determined to create something better, our company was formed to help small businesses reach that next level without losing their personality. Fortune 500 and some of the best marketers in the world created a dynamic company of consultants who were able to take a small business in hand and turn it into a growing, dynamic powerhouse.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12\">\n<div style=\"padding: 2.5em 2em; margin-top: 15px; margin-bottom: 15px;\" class=\"bg-box bg-box-edged color1-text-default color1-background-color\">\n<p class=\"\">We believe that creating growth is only helpful if the company is able to continue. Destroying a company&rsquo;s spirit in the interest of growth only leads to a failed enterprise.</p>\n<p class=\"\">Because of this value, we&rsquo;re always happy to go above and beyond for your company, reaching out to our extensive network of contact to develop the perfect program so your company can realize an amazing level of dynamic growth.</p>\n<p class=\"\">We don&rsquo;t want you to change. We&rsquo;ll help you get there without sacrificing your values.</p>\n&nbsp;\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More&nbsp; </a></p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n','Home','','inherit','closed','closed','','27-revision-v1','','','2018-12-27 09:32:46','2018-12-27 09:32:46','',27,'http://paulocoelhovieira.com/uncategorized/27-revision-v1/',0,'revision','',0),(56,1,'2018-12-27 09:32:46','2018-12-27 09:32:46','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h3>Pages vs. Posts</h3>\r\n<p class=\"mod-reset\"><img class=\"alignright wp-image-47\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/clock-imhwpb-ueaegla4i1gpi5i.jpg\" alt=\"clock\" data-imhwpb-asset-id=\"788447\" height=\"390\" width=\"293\" style=\"margin-bottom: 20px;\"></p>\r\nIf you\'re new to WordPress you may be wondering what\'s the big deal behind <em><strong>Pages</strong></em> and <em><strong>Posts</strong></em>. At first glance they appear to be one and the same: if you were to create either a new page or a new post you\'d be presented with nearly identical interfaces and in many cases the public appearance of pages and posts will look the same.\r\n\r\nDon\'t let this fool you. There\'s a very fundamental difference between the two and that difference is what makes CMSs, like WordPress, great platforms for integrating blogs with traditional websites.\r\n<h4>Pages</h4>\r\nThink about the kind of pages that make up a typical website. Most often you\'ll see pages like \"Home\", \"About Us\", \"Services\", \"Contact Us\", etc. Within WordPress these are often treated as <em><strong>Pages</strong></em>; documents that have no particular regard for the time they were posted.\r\n\r\nFor example, when you visit the \"About Us\" page of your favorite company\'s website you don\'t expect the content to be very different from what was available there a week ago.\r\n\r\n<!--more Read more > -->\r\n<h4>Posts</h4>\r\nNow take a moment to think of your favorite news website. A news site is an ideal example of when you\'d expect content to be different from the last time you visited &mdash; after all, news just wouldn\'t be news if it weren\'t current. In the case of news sites, <em><strong>Posts</strong></em> are most often used to write articles.\r\n\r\nWhen you publish a post within WordPress it knows to treat the post differently than the way it treats a page. For example, when you enable a blog within your BoldGrid theme, it will list all of your published posts in reverse chronological order on your <em><strong>Blog</strong></em> page.\r\n\r\nYour BoldGrid site can contain both pages and posts, i.e. you may have an \"About Author\" page to compliment your weekly blog. When done well, utilizing pages and posts in this way can help you build a more engaging experience for your visitors.\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</div>\n','Blogging 101','','inherit','closed','closed','','29-revision-v1','','','2018-12-27 09:32:46','2018-12-27 09:32:46','',29,'http://paulocoelhovieira.com/uncategorized/29-revision-v1/',0,'revision','',0),(57,1,'2018-12-27 09:32:46','2018-12-27 09:32:46','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h3>Categories and Tags</h3>\r\n<p class=\"mod-reset\"><img class=\"aligncenter size-full wp-image-48\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/desktop-imhwpb-j5ip7kfq9yw9dlf.jpg\" alt=\"desktop\" data-imhwpb-asset-id=\"788448\" height=\"450\" width=\"900\"></p>\r\n\r\nIf you write about a variety of subjects, categories can help your readers find the posts that are most relevant to them. For instance, if you run a consulting business, you may want some of your posts to reflect work you\'ve done with previous clients, while having other posts act as informational resources. In this particular case, you can set up 2 categories: one labeled <em><strong>Projects</strong></em> and another labeled <em><strong>Resources</strong></em>. You\'d then place your posts in their respective categories.\r\n\r\n<!--more Read more > -->\r\n\r\nCategories are accessible from the post editor. There you can create new categories and assign them to your posts.\r\n\r\nTags, on the other hand, allow you to label your posts with relevant topics. For instance, within one of your resource posts you may choose to write about a set of project management tools. While you can certainly create a new category called \"Project Management Tools,\" you may not plan to write about the topic often enough to justify giving it a dedicated category. Instead, you may want to tag your post with several topics that exists within the post; e.g. <em><strong>project management tools, communication, time tracking</strong></em>, etc.\r\n\r\nWhat\'s great about tags is that they are searchable and provide your users another way to find content on your site. Anyone searching for \"project management tools\" will be able to locate any posts you\'ve tagged with those words!\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</div>\n','Basic Taxonomies','','inherit','closed','closed','','30-revision-v1','','','2018-12-27 09:32:46','2018-12-27 09:32:46','',30,'http://paulocoelhovieira.com/uncategorized/30-revision-v1/',0,'revision','',0),(58,1,'2018-12-27 09:32:46','2018-12-27 09:32:46','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h3>Plan Your Content</h3>\r\n<p class=\"mod-reset\"><img class=\"alignright wp-image-49\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/laptop-imhwpb-id7lp8imt7hfuys.jpg\" alt=\"laptop\" data-imhwpb-asset-id=\"788449\" height=\"225\" width=\"300\" style=\"margin-bottom: 20px;\"></p>\r\nIf you\'re considering adding a blog to your site, you\'ll want to have a plan beforehand. Planning your blog will help your subject matter remain consistent over time. It\'ll also help you determine whether or not there\'s enough material to maintain a steady stream of posts.\r\n\r\nOne pitfall many new bloggers run into is starting a blog that isn\'t posted to frequently enough. A shortage of recent posts can give your visitors a bad impression of your business. One may think \"I wonder if they&rsquo;re still in business\" or \"they may want to hire a writer.\"\r\n\r\nA blog, like any other customer facing aspect of your business, communicates your brand. If it isn\'t maintained and given proper attention, people will notice. Post regularly and keep your content fresh. Give your audience a reason to visit often.\r\n<p class=\"\"><!--more Read more > --></p>\r\n&nbsp;\r\n<h3>Find Your Audience</h3>\r\nWhile on the topic of audiences, you\'ll likely want to identify yours early on. If your blog is going to be set up to compliment a business, your target audience will likely be the same as your consumer base; you\'re then writing for the same people that buy your product. You\'ll want to allow any marketing material you\'ve used inform the style and tone of your writing. Think of your blog as an extension of your company\'s brand.\r\n\r\nIf, on the other hand, your business is completely new or you don\'t happen to be selling anything in particular, this is the time to start thinking about your brand ...\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n','Tips For Better Writing','','inherit','closed','closed','','31-revision-v1','','','2018-12-27 09:32:46','2018-12-27 09:32:46','',31,'http://paulocoelhovieira.com/uncategorized/31-revision-v1/',0,'revision','',0),(59,1,'2018-12-27 09:32:46','2018-12-27 09:32:46','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2>Helping Your Business Build Success</h2>\r\n<h4>Develop Your Path to Greatness</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nAt Amazing Business Consulting, our business is helping your business succeed. Whether you need help with business planning, need back office support or need to change up your game to higher-level executive action, we\'ve got programs and services you need to make your business rock.\r\n\r\nFounded by Bradley Jessup in 1995, we\'ve had over 20 years\' experience in helping entrepreneurs develop success in their business and personal lives. Our focus is finding areas where your business could be more productive and successful and then helping you develop the path to get it there.\r\n<div class=\"mod-space\"></div>\r\n<div class=\"gridblock\">\r\n<p class=\"p-button-primary\"><a class=\"button-primary\" href=\"#\">Customer Testimonials</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-50\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ppd3VxTVpOUnZzLzYwMHg0NTA_3D-imhwpb-ppp2ygjccmcas83.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780426\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-Y9nzl9tA3Lw-360x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"14|landscape\" width=\"360\" class=\"wp-image-51\"></p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<h2>Professional Services</h2>\r\nWe offer a variety of professional services that help you achieve your business goals. Do you need help with building a comprehensive business plan to get financing? What about one-on-one mentoring to take your career to the next level? We\'ve got that.\r\n\r\n</div>\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-sHzMcXkJNrw-360x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"14|landscape\" width=\"360\" class=\"wp-image-52\"></p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<h2>Comprehensive Programs</h2>\r\nOur dynamic programs cover businesses in a variety of stages and sizes. Whether you\'re just starting out, have too many hats as a SME owner, need high-level executive mentoring or need marketing tips that fit your schedule, our programs fit the bill.\r\n\r\n</div>\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/6-bAPQgfthcrI-360x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"14|landscape\" width=\"360\" class=\"wp-image-53\"></p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<h2>Amazing Results</h2>\r\nWhere do we deliver the most? In our client\'s results. We\'ve worked with companies from single-person startups to Fortune 500 executives and everything in between. We provide a guarantee that if you follow our plan and don\'t see amazing results, you don\'t pay.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n','About Us','','inherit','closed','closed','','32-revision-v1','','','2018-12-27 09:32:46','2018-12-27 09:32:46','',32,'http://paulocoelhovieira.com/uncategorized/32-revision-v1/',0,'revision','',0),(60,1,'2018-12-27 09:32:46','2018-12-27 09:32:46','\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\n\nPlease use the contact form below, if you have any general questions or requests about our services.\n\nWe will try our best to respond back to you within 24 hours.\n\n[wpforms id=\"20\"]\n\n</div>\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\n\n\n\n\n\n\n\n\n\n\n\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-54\" src=\"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0h6RWIzWlJ0Vjg4LzYwMHg0NTA_3D-imhwpb-qiic6rmqaoosy7y.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780433\"></p>\n\n</div>\n</div>\n</div>\n</div>\n','Contact Us','','inherit','closed','closed','','34-revision-v1','','','2018-12-27 09:32:46','2018-12-27 09:32:46','',34,'http://paulocoelhovieira.com/uncategorized/34-revision-v1/',0,'revision','',0),(61,1,'2018-12-27 09:32:48','2018-12-27 09:32:48','','','','inherit','open','closed','','61','','','2018-12-27 09:32:48','2018-12-27 09:32:48','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/linx-consulting-imhwpb-jnemxr7pr9e175f.jpg',0,'attachment','image/jpeg',0),(62,1,'2018-12-27 09:40:12','2018-12-27 09:40:12','{\n    \"page_for_posts\": {\n        \"value\": \"10\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-27 09:40:12\"\n    }\n}','','','trash','closed','closed','','5fcdd9e9-1760-451d-b756-136dc7117e6f','','','2018-12-27 09:40:12','2018-12-27 09:40:12','',0,'http://paulocoelhovieira.com/?p=62',0,'customize_changeset','',0),(63,1,'2018-12-27 07:57:46','2018-12-27 10:57:46','{\n    \"boldgrid-linx::background_attachment\": {\n        \"value\": \"parallax\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-27 10:57:46\"\n    }\n}','','','trash','closed','closed','','cb799707-2c73-48de-a533-546de393154f','','','2018-12-27 07:57:46','2018-12-27 10:57:46','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/uncategorized/cb799707-2c73-48de-a533-546de393154f/',0,'customize_changeset','',0),(64,1,'2018-12-27 07:58:21','2018-12-27 10:58:21','','Aurora_-_illustration','','inherit','open','closed','','aurora_-_illustration','','','2018-12-27 07:58:21','2018-12-27 10:58:21','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/Aurora_-_illustration.jpg',0,'attachment','image/jpeg',0),(65,1,'2018-12-27 07:58:40','2018-12-27 10:58:40','http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/cropped-Aurora_-_illustration.jpg','cropped-Aurora_-_illustration.jpg','','inherit','open','closed','','cropped-aurora_-_illustration-jpg','','','2018-12-27 07:58:40','2018-12-27 10:58:40','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/cropped-Aurora_-_illustration.jpg',0,'attachment','image/jpeg',0),(66,1,'2018-12-27 07:58:53','2018-12-27 10:58:53','{\n    \"boldgrid-linx::background_image\": {\n        \"value\": \"http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/cropped-Aurora_-_illustration.jpg\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-27 10:58:53\"\n    }\n}','','','trash','closed','closed','','e1201a28-e7b8-43c2-9dde-5131a5977734','','','2018-12-27 07:58:53','2018-12-27 10:58:53','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/uncategorized/e1201a28-e7b8-43c2-9dde-5131a5977734/',0,'customize_changeset','',0),(67,1,'2018-12-29 04:38:12','0000-00-00 00:00:00','{\n    \"blogdescription\": {\n        \"value\": \"Blog, Papers, Articles... Intelligence and Strategy on Patents and Innovation\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:17:12\"\n    },\n    \"site_icon\": {\n        \"value\": 69,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:19:12\"\n    },\n    \"boldgrid-linx::boldgrid_font_toggle\": {\n        \"value\": true,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:38:12\"\n    },\n    \"boldgrid-linx::logo_font_size\": {\n        \"value\": \"48\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:20:12\"\n    },\n    \"boldgrid-linx::background_attachment\": {\n        \"value\": \"parallax\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:26:12\"\n    },\n    \"boldgrid-linx::boldgrid_background_image_size\": {\n        \"value\": \"cover\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:26:12\"\n    },\n    \"boldgrid-linx::boldgrid_background_type\": {\n        \"value\": \"image\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:26:12\"\n    },\n    \"boldgrid-linx::headings_font_size\": {\n        \"value\": \"14\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:27:12\"\n    },\n    \"boldgrid-linx::navigation_primary_font_size\": {\n        \"value\": \"12\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:27:12\"\n    },\n    \"sidebars_widgets[boldgrid-widget-1]\": {\n        \"value\": [],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:36:12\"\n    },\n    \"widget_archives[5]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTozOntzOjU6InRpdGxlIjtzOjEwOiJXaGF0J3MgTmV3IjtzOjU6ImNvdW50IjtpOjA7czo4OiJkcm9wZG93biI7aTowO30=\",\n            \"title\": \"What\'s New\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"4f09195900c564cc9533b34dc770a8b7\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:33:12\"\n    }\n}','','','auto-draft','closed','closed','','eb15d85f-4121-44c4-9899-edc9e6a9bf03','','','2018-12-29 04:38:12','2018-12-29 07:38:12','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/?p=67',0,'customize_changeset','',0),(68,1,'2018-12-29 04:18:09','2018-12-29 07:18:09','','starlogo connect','','inherit','open','closed','','starlogo-connect','','','2018-12-29 04:18:09','2018-12-29 07:18:09','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/starlogo-connect.png',0,'attachment','image/png',0),(69,1,'2018-12-29 04:19:01','2018-12-29 07:19:01','http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/cropped-starlogo-connect.png','cropped-starlogo-connect.png','','inherit','open','closed','','cropped-starlogo-connect-png','','','2018-12-29 04:19:01','2018-12-29 07:19:01','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/wp-content/uploads/2018/12/cropped-starlogo-connect.png',0,'attachment','image/png',0),(70,1,'2018-12-29 08:46:09','2018-12-29 11:46:09','','Block Preview Page','','trash','closed','closed','','__trashed','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/?page_id=70',0,'page','',0),(72,1,'2018-12-29 04:58:58','0000-00-00 00:00:00','{\n    \"sidebars_widgets[boldgrid-widget-1]\": {\n        \"value\": [\n            \"media_image-3\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:58:58\"\n    },\n    \"widget_text[3]\": {\n        \"value\": [],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:54:57\"\n    },\n    \"widget_media_image[3]\": {\n        \"value\": [],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-29 07:58:58\"\n    }\n}','','','auto-draft','closed','closed','','e726f671-5278-46ab-b6dc-b679479da13e','','','2018-12-29 04:58:58','2018-12-29 07:58:58','',0,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/?p=72',0,'customize_changeset','',0),(74,1,'2018-12-29 08:46:09','2018-12-29 11:46:09','<div class=\"row\">\r\n	<div class=\"col-md-5\">\r\n		<h2 class=\"title-main\">WEBSITE COMING SOON</h2>\r\n		<h2>JUST VISITING?</h2>\r\n		<p>If you are a looking for more information, please check back soon, our new site is on the way!</p>\r\n		<h2>IS THIS YOUR SITE?</h2>\r\n		<p>If you own this site, we have installed this \"Coming Soon\" page as a temporary placeholder. Go to your <strong><a href=\"wp-admin\">BoldGrid Login</a></strong> to choose your <strong>Inspiration</strong> to replace this placeholder.  Your username and password were provided in your Welcome Email.</p>\r\n	</div>\r\n	<div class=\"col-md-7\">\r\n		<p>\r\n			<img src=\"//www.boldgrid.com/assets/images/default-1.jpg\" alt=\"hikers in the mountains\" width=\"800\" height=\"904\" class=\"alignnone size-full\" />\r\n		</p>\r\n	</div>\r\n</div>\r\n','WEBSITE COMING SOON','','inherit','closed','closed','','10-revision-v1','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',10,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/uncategorized/10-revision-v1/',0,'revision','',0),(75,1,'2018-12-29 08:46:09','2018-12-29 11:46:09','','BoldGrid - GridBlock Set - Preview Page','','inherit','closed','closed','','73-revision-v1','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',73,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/uncategorized/73-revision-v1/',0,'revision','',0),(76,1,'2018-12-29 08:46:09','2018-12-29 11:46:09','','Block Preview Page','','inherit','closed','closed','','70-revision-v1','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',70,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/uncategorized/70-revision-v1/',0,'revision','',0),(77,1,'2018-12-29 08:46:09','2018-12-29 11:46:09','<h2>Who we are</h2><p>Our website address is: http://paulocoelhovieira.com/bg_paulocoelhovieira.com.</p><h2>What personal data we collect and why we collect it</h2><h3>Comments</h3><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><h3>Media</h3><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><h3>Contact forms</h3><h3>Cookies</h3><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><h3>Embedded content from other websites</h3><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.</p><h3>Analytics</h3><h2>Who we share your data with</h2><h2>How long we retain your data</h2><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><h2>What rights you have over your data</h2><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><h2>Where we send your data</h2><p>Visitor comments may be checked through an automated spam detection service.</p><h2>Your contact information</h2><h2>Additional information</h2><h3>How we protect your data</h3><h3>What data breach procedures we have in place</h3><h3>What third parties we receive data from</h3><h3>What automated decision making and/or profiling we do with user data</h3><h3>Industry regulatory disclosure requirements</h3>','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2018-12-29 08:46:09','2018-12-29 11:46:09','',3,'http://paulocoelhovieira.com/bg_paulocoelhovieira.com/uncategorized/3-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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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),(29,4,0),(30,4,0),(31,4,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_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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,0),(5,5,'category','Featured posts',0,0),(4,4,'category','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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),(5,'Featured','featured',0),(4,'Blog','blog',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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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','arrowman'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','wp410_dfw,wp496_privacy,text_widget_custom_html'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"9657db26a3984a111f142cf3fe16c8924acc87cb07b0c43082d458fa30b3eeae\";a:4:{s:10:\"expiration\";i:1546237538;s:2:\"ip\";s:13:\"45.234.103.45\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:5:\"login\";i:1545027938;}s:64:\"3a9f13b3a8f10ee917f715fe94957471b6b647024499f33a087a71ef8d938e02\";a:4:{s:10:\"expiration\";i:1547277050;s:2:\"ip\";s:13:\"45.234.103.39\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:5:\"login\";i:1546067450;}}'),(17,1,'first_login','2018-11-29 02:39:19'),(18,1,'last_login','2018-12-29 07:10:50'),(19,1,'wp_dashboard_quick_press_last_post_id','12'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"45.234.103.0\";}'),(21,1,'wp_user-settings','libraryContent=browse&editor=html'),(22,1,'wp_user-settings-time','1546074850');
/*!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_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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,'arrowman','$P$Bwn8dF0KosW59AoCHBxuwborC7bBFm1','arrowman','pvieira@arrowplan.com','','2018-11-28 06:36:25','',0,'arrowman');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2018-12-30 17:19:49
