-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: gardenguide_wp
-- ------------------------------------------------------
-- Server version 10.6.16-MariaDB
/*!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 utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!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) DEFAULT NULL,
`meta_value` longtext 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) 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 NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
`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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-01-16 11:58:31','2021-01-16 11:58:31','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','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_duplicator_packages`
--
DROP TABLE IF EXISTS `wp_duplicator_packages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_duplicator_packages` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(250) NOT NULL,
`hash` varchar(50) NOT NULL,
`status` int(11) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`owner` varchar(60) NOT NULL,
`package` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_duplicator_packages`
--
LOCK TABLES `wp_duplicator_packages` WRITE;
/*!40000 ALTER TABLE `wp_duplicator_packages` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_duplicator_packages` 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) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) 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) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=335 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://gardenguide.org','yes'),(2,'home','http://gardenguide.org','yes'),(3,'blogname','GardenGuide','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','steve@gardenguide.org','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:94:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=7&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:5:{i:0;s:32:\"duplicate-page/duplicatepage.php\";i:1;s:25:\"duplicator/duplicator.php\";i:2;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";i:3;s:41:\"wp-pagebuilder-pro/wp-pagebuilder-pro.php\";i:4;s:33:\"wp-pagebuilder/wp-pagebuilder.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','shutter-up','yes'),(41,'stylesheet','shutter-up','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','49752','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','7','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1626350311','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'initial_db_version','49752','yes'),(99,'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'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'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'),(104,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:12:\"categories-2\";i:3;s:10:\"nav_menu-3\";}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'nonce_key','SdwW),8EKfRifGH<H(.}f!8bC#ynNwg$s{NA-s!p{{@q.7o~IY:]vh~*Mc{`T(QO','no'),(115,'nonce_salt','#&4s4CP|Fl*2fI$@vBGN9&<Ipj0K[0 OLqk2G|Z`BhX~v3P4[-L[7oQN(BaR}VW1','no'),(116,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_nav_menu','a:2:{i:3;a:1:{s:8:\"nav_menu\";i:6;}s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'auth_key','@5FUS^/#;u{w(_iZW.zm2,VX]VD|2D$#I)6wn8A?ATS{r|KvtAyQ4b7:7FGWY-7f','no'),(121,'auth_salt','TBZa=myfg^9AQk `d[Fwl$37b8}~F3OeI{I#Dvaf[AYq|mPxW7,g2YAdHB8CA$kb','no'),(122,'logged_in_key','FVtnlJ?!F%A/zu#xXCEvzwM-g-E)IC:S^ca1m%fJY~A-LqS_dgIg8g4b1 1Q#G53','no'),(123,'logged_in_salt','4g/K.~Gub~,reI}DqvM|P.kBn/GT!}f=T~hP4EM23?f6gIc8!>N<DY{K7g)<7_![','no'),(163,'wppb_is_used','1.2.3','yes'),(164,'wppb_fontawesome_five_upgrade','completed','yes'),(133,'can_compress_scripts','1','no'),(107,'cron','a:8:{i:1610798314;a:5:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}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:1610798316;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:1610798323;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1610798376;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1610799075;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1610805871;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"c8bde69a9f79ca24059e3807f9a3bcf8\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:10;}}}}i:1610884714;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(321,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1614986322','no'),(322,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1614943122','no'),(323,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1614986322','no'),(324,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/03/the-month-in-wordpress-february-2021/\'>The Month in WordPress: February 2021</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/03/wordpress-5-7-release-candidate-2/\'>WordPress 5.7 Release Candidate 2</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://poststatus.com/joe-casabona-on-creating-quality-content-and-courses-2/\'>Post Status: Joe Casabona on creating quality content and courses</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/gutenberg-10-1-enhances-reusable-blocks-updates-social-icons-spacing-options-and-normalizes-image-block-toolbar?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-10-1-enhances-reusable-blocks-updates-social-icons-spacing-options-and-normalizes-image-block-toolbar\'>WPTavern: Gutenberg 10.1 Enhances Reusable Blocks, Updates Social Icons Spacing Options, and Normalizes Image Block Toolbar</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/03/the-month-in-wordpress-february-2021/\'>WordPress.org blog: The Month in WordPress: February 2021</a></li></ul></div>','no'),(326,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1614943145;s:7:\"checked\";a:5:{s:13:\"generatepress\";s:5:\"3.0.3\";s:10:\"shutter-up\";s:5:\"1.0.7\";s:14:\"twentynineteen\";s:3:\"1.8\";s:12:\"twentytwenty\";s:3:\"1.6\";s:15:\"twentytwentyone\";s:3:\"1.0\";}s:8:\"response\";a:2:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.9.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.1.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:3:{s:13:\"generatepress\";a:6:{s:5:\"theme\";s:13:\"generatepress\";s:11:\"new_version\";s:5:\"3.0.3\";s:3:\"url\";s:43:\"https://wordpress.org/themes/generatepress/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/generatepress.3.0.3.zip\";s:8:\"requires\";s:5:\"4.5.0\";s:12:\"requires_php\";s:5:\"5.4.0\";}s:10:\"shutter-up\";a:6:{s:5:\"theme\";s:10:\"shutter-up\";s:11:\"new_version\";s:5:\"1.0.7\";s:3:\"url\";s:40:\"https://wordpress.org/themes/shutter-up/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/shutter-up.1.0.7.zip\";s:8:\"requires\";s:3:\"5.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.6.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(328,'theme_mods_generatepress','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:4;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1614943244;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:12:\"categories-2\";i:3;s:10:\"nav_menu-3\";}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:0:{}s:6:\"header\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:8:\"footer-5\";a:0:{}s:10:\"footer-bar\";a:0:{}s:7:\"top-bar\";a:0:{}}}}','yes'),(331,'generate_db_version','3.0.3','yes'),(330,'generate_dynamic_css_cached_version','3.0.3','yes'),(332,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1614943146;s:8:\"response\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.7\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/duplicator\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:5:\"1.4.0\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/duplicator.1.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/duplicator/assets/icon-256x256.png?rev=2083921\";s:2:\"1x\";s:63:\"https://ps.w.org/duplicator/assets/icon-128x128.png?rev=2083921\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/duplicator/assets/banner-772x250.png?rev=2085472\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.6.2\";s:12:\"requires_php\";s:5:\"5.3.8\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}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:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/regenerate-thumbnails\";s:4:\"slug\";s:21:\"regenerate-thumbnails\";s:6:\"plugin\";s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/regenerate-thumbnails/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/regenerate-thumbnails/assets/icon-128x128.png?rev=1753390\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/regenerate-thumbnails/assets/banner-1544x500.jpg?rev=1753390\";s:2:\"1x\";s:76:\"https://ps.w.org/regenerate-thumbnails/assets/banner-772x250.jpg?rev=1753390\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"wp-pagebuilder/wp-pagebuilder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/wp-pagebuilder\";s:4:\"slug\";s:14:\"wp-pagebuilder\";s:6:\"plugin\";s:33:\"wp-pagebuilder/wp-pagebuilder.php\";s:11:\"new_version\";s:5:\"1.2.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-pagebuilder/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wp-pagebuilder.1.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-pagebuilder/assets/icon-256x256.jpg?rev=2451894\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-pagebuilder/assets/icon-128x128.jpg?rev=2451894\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wp-pagebuilder/assets/banner-1544x500.jpg?rev=2451894\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-pagebuilder/assets/banner-772x250.jpg?rev=2451894\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(317,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1614986322','no'),(318,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1614943122','no'),(319,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1614986322','no'),(320,'_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:65:\"Post Status: Joe Casabona on creating quality content and courses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=81417\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://poststatus.com/joe-casabona-on-creating-quality-content-and-courses-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1558:\"<p>David Bisset interviews front-end developer, educator, and podcaster Joe Casabona to talk about his latest book, web standards, and creating quality content for online courses. They also get into some recent news topics.</p>\n\n\n\n\n\n\n\n<h3 id=\"h-links\">Links</h3>\n\n\n\n<ul><li>W3C <a href=\"https://wptavern.com/w3c-drops-wordpress-from-consideration-for-redesign-narrows-cms-shortlist-to-statamic-and-craft\">drops WordPress</a> from consideration for its redesign.</li><li>W3C <a href=\"https://wptavern.com/w3c-selects-craft-cms-for-redesign-project\">selects Craft</a> CMS and its <a href=\"https://w3c.studio24.net/docs/cms-selection-report/\">selection report</a>.</li><li><a href=\"https://www.youtube.com/watch?v=14RcHPfStA0\">Disabling full-screen mode</a>.</li><li><a href=\"https://creatorcourses.com/shop/\">Creator Courses</a></li><li>How I Built It <a href=\"https://howibuilt.it/recording-notes/\">recording notes</a>.</li><li><a href=\"https://reincubate.com/camo/\">Camo</a></li></ul>\n\n\n\n<h3>Partner: <a href=\"https://poststatus.com/sandhills\">Sandhills Development</a></h3>\n\n\n\n<p><a href=\"https://poststatus.com/sandhills\">Sandhills Development</a> crafts ingenuity, developed with care:</p>\n\n\n\n<ul><li><strong>Easy Digital Downloads</strong> – Sell digital products with WordPress.</li><li><strong>AffiliateWP </strong>– A full-featured affiliate marketing solution.</li><li><strong>Sugar Calendar</strong> – WordPress event management made simple.</li><li><strong>WP Simple Pay</strong> – A lightweight Stripe payments plugin.</li></ul>\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:\"Fri, 05 Mar 2021 06:26:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:123:\"WPTavern: Gutenberg 10.1 Enhances Reusable Blocks, Updates Social Icons Spacing Options, and Normalizes Image Block Toolbar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113244\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:287:\"https://wptavern.com/gutenberg-10-1-enhances-reusable-blocks-updates-social-icons-spacing-options-and-normalizes-image-block-toolbar?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-10-1-enhances-reusable-blocks-updates-social-icons-spacing-options-and-normalizes-image-block-toolbar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6430:\"<p class=\"has-drop-cap\">Gutenberg 10.1 <a href=\"https://make.wordpress.org/core/2021/03/02/whats-new-in-gutenberg-10-1-3-march/\">landed yesterday</a> with several new features, many of which focused on improvements to the interface and user experience. Users can now control the justification of items in the Social Icons block. The new release also enhances the UX for creating reusable blocks, groups the Image block toolbar controls, and introduces categorized template parts in the site editor.</p>\n\n\n\n<p>The development team corrected two dozen bugs for this release. As usual, they continued to polish the site-editing experience, which should land in WordPress later this year.</p>\n\n\n\n<p>One of the better improvements to the UX is with the <a href=\"https://github.com/WordPress/gutenberg/pull/28676\">dragging performance for the focal point picker</a>. Users can test the Cover or Media & Text blocks to see it in action.</p>\n\n\n\n<h2>Spacing Options for Social Icons and Buttons</h2>\n\n\n\n<img />Adding space between items in the Social Icons block.\n\n\n\n<p class=\"has-drop-cap\">The Gutenberg development team <a href=\"https://github.com/WordPress/gutenberg/pull/28980\">added the justification toolbar</a> control to the Social Icons block. This allows users to determine how they want their social links to display. The following are the current justification options:</p>\n\n\n\n<ul><li>Justify items left</li><li>Justify items center</li><li>Justify items right</li><li>Space between items</li></ul>\n\n\n\n<p>The Buttons block now has the space-between option, which gives it and Social Icons the same flexibility as the Navigation block.</p>\n\n\n\n<p>The Social Icons block still has left, right, and center alignment options too. This is separate from the justification setting. In comparison, the Buttons and Navigation blocks only have wide and full alignments if the active theme supports them. However, the Social Icons block does not have those options. These blocks’ alignments should all have parity unless I am missing some crucial reason for the difference.</p>\n\n\n\n<h2>Reusable Blocks Updates</h2>\n\n\n\n<img />Modal for naming, saving, or canceling a reusable block.\n\n\n\n<p class=\"has-drop-cap\">The development team continues to refine the reusable blocks feature. Version 10.1’s highlight is a new modal that <a href=\"https://github.com/WordPress/gutenberg/pull/29040\">pops up when first creating a reusable block</a>. It has a simple title field along with buttons for canceling or saving. The cancel feature is also a new addition.</p>\n\n\n\n<p>This modal clears up a problem <a href=\"https://wptavern.com/gutenberg-9-7-improves-user-experience-updates-reusable-blocks-and-brings-page-templates-to-fse-themes\">introduced in Gutenberg 9.7</a>. That release moved the title field for the reusable block into the sidebar panel. If users did not have that panel open, they could easily overlook it.</p>\n\n\n\n<p>“Based on these changes, the UI for reusable blocks is most likely going to see some iterations in the upcoming weeks,” said Gutenberg developer Riad Benguella at the time. The team has delivered on this promise.</p>\n\n\n\n<p>Gutenberg also uses this new modal as <a href=\"https://github.com/WordPress/gutenberg/pull/29108\">part of its template creation flow</a> in the site editor.</p>\n\n\n\n<p>The editor toolbar now displays a reusable block’s name when it is selected in the content canvas. This adds clarity and helps users better see what they are editing. Users can also update the name of a reusable block from within the editor sidebar.</p>\n\n\n\n<p>One issue I still have with reusable blocks is when using wide or full-aligned elements. Once a block is saved, it displays at the regular content width, making it less of a WYSIWYG experience. There is an <a href=\"https://github.com/WordPress/gutenberg/issues/17640\">open ticket</a> for this bug. However, it has seen little movement as of late.</p>\n\n\n\n<h2>Semantic Toolbar for Images</h2>\n\n\n\n<img />Grouped sections in the Image block toolbar.\n\n\n\n<p class=\"has-drop-cap\">The Image block’s toolbar received an upgrade. Its <a href=\"https://github.com/WordPress/gutenberg/pull/29205\">controls are grouped</a>, with each group separated by a border. The toolbar follows a specific order: meta, block-level, inline-level, and more options. The goal is for controls on every block to use this order, which translates to a standard UI that users can follow.</p>\n\n\n\n<p>This improvement for the Image block brings enough clarity that I already want this across the board. There is an open ticket to <a href=\"https://github.com/WordPress/gutenberg/issues/25983\">normalize the toolbar</a> for all blocks.</p>\n\n\n\n<h2>Categorized Template Parts</h2>\n\n\n\n<img />“General” template parts category.\n\n\n\n<p class=\"has-drop-cap\">For the experimental site editor, a new patch to <a href=\"https://github.com/WordPress/gutenberg/pull/29030\">group template parts</a> landed in the latest release. The UI change separates parts into four categories: headers, footers, sidebars, and general.</p>\n\n\n\n<p>I could not get this feature to work. There are no clear instructions for theme authors to follow. Header templates named <code>header-one.html</code> went to the general category. Template parts in sub-folders, such as <code>header/one.html</code>, also failed. Even just plain <code>header.html</code> did not get grouped.</p>\n\n\n\n<p>While there is obviously a bug, I am excited about the prospect of categorized template parts. It is a preemptive step toward decluttering the interface.</p>\n\n\n\n<p>The problem with the current approach is that it is unnecessarily limiting. It assumes that headers, footers, and sidebars are the only specific categories of template parts needed. By defining them in core, we lose all flexibility. In past themes, I have built more content-related template parts than I have for those three groups. Under this system, all of these would be tossed into a “general” category with every other template.</p>\n\n\n\n<p>This is not an argument for WordPress to have a category to meet my needs. Instead, put this into the hands of theme authors to make the best decision for their theme. Create a way for end-users to categorize their custom template parts as a next step.</p>\n\n\n\n<p>Sure, create some defaults like headers, footers, and sidebars. That makes sense. Just hand over some of the control.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Mar 2021 22:54:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.org blog: The Month in WordPress: February 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=9842\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/03/the-month-in-wordpress-february-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15743:\"<blockquote class=\"wp-block-quote\"><p>You don’t have to be rich to have an online presence. You don’t have to find loopholes in proprietary platforms and hope that they never change their terms of service. You own all of the content that you create on a WordPress site and have the liberty to move it to a new host if you need to, or switch your theme if it fits your mood.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was Josepha Haden Chomphosy on <a href=\"https://wordpress.org/news/2021/02/wordpress-is-freedom/\">WordPress is Free(dom) episode</a> of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the four freedoms of open-source software. Those four freedoms are core to how WordPress is developed. A lot of the updates we bring you this month will resonate with those freedoms.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress now powers 40% of the web</h2>\n\n\n\n<p>W3Techs reported that <a href=\"https://w3techs.com/blog/entry/40_percent_of_the_web_uses_wordpress\">WordPress now powers 40% of the top 10 million websites in the world</a>! Every two minutes, a new website using WordPress says, <em>“Hello world”</em>! For the top 1000 sites, the market share is even higher at 51.8%. Over the past 10 years, the growth rate has increased, which is reflected by the fact that 66.2% of all new websites use WordPress!</p>\n\n\n\n<h2>WordPress release updates</h2>\n\n\n\n<p>February was an eventful month for WordPress releases!</p>\n\n\n\n<ul><li>WordPress maintenance releases — <a href=\"https://wordpress.org/news/2021/02/wordpress-5-6-1-maintenance-release/\">version 5.6.1</a> and <a href=\"https://wordpress.org/news/2021/02/wordpress-5-6-2-maintenance-release/\">version 5.6.2</a> — came out this in February. Update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org.</li><li>Members of the Core team are working hard on WordPress 5.7, due in March. <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-3/\">Beta 3</a> versions of WordPress 5.7 launched in February. The <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-release-candidate/\">first</a> and <a href=\"https://wordpress.org/news/2021/03/wordpress-5-7-release-candidate-2/\">second</a> release candidates of WordPress 5.7 are also out! You can test the Beta versions and the release candidate by <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin. To know more about WordPress 5.7, <a href=\"https://make.wordpress.org/polyglots/2021/02/22/wordpress-5-7-ready-to-be-translated/\">check out its field guide</a>. </li></ul>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>. The Core team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&min=00&sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&min=00&sec=0\">8 PM</a>. UTC. You can also contribute to WordPress 5.7 <a href=\"https://make.wordpress.org/polyglots/2021/02/22/wordpress-5-7-ready-to-be-translated/\">by translating it into your local language</a>. Learn more on the <a href=\"https://make.wordpress.org/polyglots/2021/03/02/wordpress-5-7-translation-status-march-2-2020/\">translation status post</a>.</p>\n\n\n\n<h2>Gutenberg celebrates its 100th release with version 10</h2>\n\n\n\n<p>The 100th release of the Gutenberg plugin — <a href=\"https://make.wordpress.org/core/2021/02/17/whats-new-in-gutenberg-10-0-february/\">Version 10</a>, launched on February 17th, more than four years after the project was first announced at WordCamp US 2016. <a href=\"https://wordpress.org/news/2021/02/reflecting-on-gutenbergs-100th-release/\">Matias Ventura’s post</a> offers a bird’s eye view of the project over the last four years. Version 10 adds the basic pages block and makes the parent block selector visible in the block toolbar. <a href=\"https://make.wordpress.org/core/2021/02/05/whats-new-in-gutenberg-9-9-5-february/\">Version 9.9</a> of Gutenberg — coincidentally, the 99th release of the plugin, which is also the latest Gutenberg release that will be featured in WordPress 5.7, also came out in February. Key highlights of the release include custom icons and background colors in social icons, a redesigned options modal for blocks (which is now called block preferences), and text labels in the block toolbar. </p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/handbook/focuses/full-site-editing/\">Full Site Editing (FSE)</a> is an exciting new WordPress feature that allows you to use blocks outside the post or page content. The <a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">main focus</a> of the Core team for 2021 is to merge FSE into WordPress core. Here’s the latest on the Full Site Editing project: </p>\n\n\n\n<ul><li>The <a href=\"https://make.wordpress.org/test/2021/02/18/fse-program-testing-call-2-build-a-homepage-with-site-editing-blocks/\">second call for testing</a> as part of the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing outreach program</a> is out! To participate, <a href=\"https://make.wordpress.org/test/2021/02/18/fse-program-testing-call-2-build-a-homepage-with-site-editing-blocks/\">check out the second testing call</a> on the <a href=\"https://make.wordpress.org/test/\">Make/Test blog</a> and join the <a href=\"https://make.wordpress.org/core/tag/fse-outreach-experiment/\">#fse-outreach-experiment</a> Slack channel. Deadline: March 5, 2021.</li><li>In case you missed participating in the FSE outreach program, <a href=\"https://make.wordpress.org/test/2021/02/04/fse-program-test-fse-anytime/\">you can now test FSE anytime</a> —check out <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/how-to-test-fse/\">this handbook page on testing FSE</a> to learn more.</li><li>Contributor teams are asking for help from local WordPress Communities to support the FSE Project.<a href=\"https://make.wordpress.org/test/2021/02/05/fse-program-connecting-with-local-communities/\"> Learn more on how you can contribute</a>.</li><li><a href=\"https://make.wordpress.org/test/tag/fse-answers/\">Check out these answers</a> for the most common FSE questions on the Make/Test blog.</li><li><a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a> has provided an update on the <a href=\"https://make.wordpress.org/core/2021/02/01/full-site-editing-and-themes-where-things-are/\">current status of the FSE and themes</a>.</li></ul>\n\n\n\n<h2>Decision-making checklist for in-person meetups</h2>\n\n\n\n<p>The Community Team <a href=\"https://make.wordpress.org/community/2021/02/16/announcement-decision-making-checklist-for-in-person-meetups-now-available/\">has published handbook pages and a decision-making checklist for organizers</a> to restart in-person meetups at areas where it is safe to do so (e.g., countries such as New Zealand, Australia, and Taiwan, where there are lower COVID-19 risks). However, WordPress meetups and WordCamps in most parts of the world will remain online due to COVID-19.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>The Polyglots team has <a href=\"https://make.wordpress.org/polyglots/2021/02/09/proposal-call-for-volunteers-polyglots-training-working-group/\">kicked-off a proposal to create a working group of contributors </a>to develop training resources for translation contributors.</li><li>The Meta team is actively <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">working on a tool</a> to help the Themes team automate the theme testing process. The team has already shipped a <a href=\"https://github.com/WordPress/theme-review-action\">proof-of-concept of the Theme Review Action tool</a> to test the process and is <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">looking for feedback</a>. The Meta team is also working on <a href=\"https://make.wordpress.org/meta/2021/02/19/reducing-the-plugin-review-teams-workload-through-automation/\">reducing the Plugin team’s workload by improving the code scanner tool</a> used for scanning plugins.</li><li>The <a href=\"https://make.wordpress.org/themes/2021/02/24/meeting-notes-matt-josepha-and-theme-review-team/\">Themes team met with the WordPress project leadership team (Matt Mullenweg and Josepha Haden)</a> about improving the Theme directory. They decided to reframe the theme review process by adding “review guard rails” with automated tooling.</li><li>The Plugin Review Team reiterated that <a href=\"https://make.wordpress.org/plugins/2021/02/16/reminder-forked-premium-plugins-are-not-permitted/\">forked premium plugins are not allowed in the Plugin directory.</a> </li><li>After three weekends of celebrating WordPress, <a href=\"https://india.wordcamp.org/2021/\">WordCamp India 2021</a> concluded on February 15. <a href=\"https://prague.wordcamp.org/2021/\">WordCamp Prague 2021</a> took place on February 27. WordCamp India <a href=\"https://india.wordcamp.org/2021/watch-now/\">videos are already available</a>, and videos of both camps will soon be uploaded to WordPress.tv. </li><li>Several online WordCamps were scheduled this month. <a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica</a>, <a href=\"https://greece.wordcamp.org/2021/\">WordCamp Greece</a>, and <a href=\"https://neo.wordcamp.org/2021/\">WordCamp North East Ohio</a> are scheduled for April 2021. <a href=\"https://japan.wordcamp.org/2021/\">WordCamp Japan</a> takes place in June and has opened-up their <a href=\"https://japan.wordcamp.org/2021/call-for-speakers-is-now-open/\">call for speakers in English and Japanese</a>. Meanwhile, the inaugural <a href=\"https://cochabamba.wordcamp.org/2021/\">WordCamp Cochabamba (Bolivia)</a> runs in July!.</li><li>The Community Team wants <a href=\"https://make.wordpress.org/community/2021/02/25/proposal-to-improve-the-organizing-experience-for-online-wordcamps/\">feedback on how to improve online WordCamps</a>. The team has also announced a <a href=\"https://make.wordpress.org/community/2021/02/18/proposal-2021-global-community-sponsorship-program/\">revamped 2021 Global Community sponsorship program</a> to support online events.</li><li>The Design Team is <a href=\"https://make.wordpress.org/design/2021/02/03/review-feedback-request-ux-for-learn-wordpress-org/\">reviewing the user experience</a> for <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>. Please share any <a href=\"https://make.wordpress.org/design/2021/02/03/review-feedback-request-ux-for-learn-wordpress-org/\">design-feedback that you have as comments on the post</a>.</li><li>The Accessibility Team is working on <a href=\"https://make.wordpress.org/accessibility/2021/02/28/accessibility-team-meeting-notes-february-26-2021/\">publishing the updated accessibility standards document </a>(with regard to WCAG 2.1 changes) alongside the WordPress version 5.7 release. The team has also <a href=\"https://make.wordpress.org/accessibility/2021/02/28/accessibility-teams-goals-for-wordpress-5-8-and-beyond/\">started brainstorming goals for WordPress 5.8</a> and beyond. </li><li>The Support Team is <a href=\"https://make.wordpress.org/support/2021/02/rethinking-the-master-list/\">rethinking the use of the master list</a> used for troubleshooting recurring issues. The team is also <a href=\"https://make.wordpress.org/support/2021/02/removing-plugin-and-theme-names-used-as-topic-tags-on-the-forums/\">removing plugin/theme names used as topic tags</a> in forums.</li><li>The Training Team has <a href=\"https://make.wordpress.org/training/2021/03/02/march-2021-sprint-planning/\">kicked off their March 2021 sprint planning</a> to work on their goals.</li><li>The <a href=\"https://make.wordpress.org/core/tag/feature-notifications/\">WP Notify project</a> working group (which is working toward a better notification system for WordPress) has completed the <a href=\"https://github.com/WordPress/wp-notify/wiki/Requirements-(v1)\">first version of the requirements document</a>, and officially kicked off <a href=\"https://make.wordpress.org/core/2021/02/09/wp-notify-meeting-notes-february-8-2021/\">active development of the feature plugin</a>. Contact the team in the <a href=\"https://wordpress.slack.com/archives/C2K1C71FE\">#feature-notifications</a> Slack channel if you would like to contribute. You can start by reviewing the <a href=\"https://github.com/WordPress/wp-notify/issues\">list of the current issues</a>.</li><li><a href=\"https://wordpress.org/news/2021/02/people-of-wordpress-pooja-derashri/\">Pooja Derashri of India</a> was featured in February’s <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a> series. A cross-team initiative led by the Marketing Team with support from <a href=\"https://heropress.com/\">HeroPress</a>, the series aims to highlight lesser-known stories of WordPress contributors. The Contributor Story series is collecting new features. If you are an active contributor to a WordPress.org team or a local WordCamp, contact the <a href=\"https://make.wordpress.org/marketing/\">Marketing Team</a> in the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> Slack channel for more information.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\n\n\n\n<p><em>The Month in WordPress post series is a collective effort, and it would not be possible without contributions from different members of the WordPress Community. Starting this month, we would like to credit and thank all individuals that support this effort with their contributions. I would like to thank the following folks for their contributions to February’s Month in WordPress: <a href=\"https://profiles.wordpress.org/adityakane/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>adityakane</a> <a href=\"https://profiles.wordpress.org/chaion07/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chaion07</a> <a href=\"https://profiles.wordpress.org/courtneypk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>courtneypk</a> <a href=\"https://profiles.wordpress.org/kristastevens/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>kristastevens</a></em> <em>and <a href=\"https://profiles.wordpress.org/psykro/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>psykro</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Mar 2021 16:00:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s: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:84:\"WPTavern: Recreating the Music Artist WordPress Theme Homepage With 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:30:\"https://wptavern.com/?p=113164\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/recreating-the-music-artist-wordpress-theme-homepage-with-the-block-editor?utm_source=rss&utm_medium=rss&utm_campaign=recreating-the-music-artist-wordpress-theme-homepage-with-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:7940:\"<p class=\"has-drop-cap\">One of my favorite activities each week is to peruse the latest themes to land in the WordPress theme directory. Often, there are intriguing design concepts. However, much of the time, I am disappointed to learn that homepage designs of many rely on theme options instead of the block editor.</p>\n\n\n\n<p>While the editor has several design limitations, theme authors have tons of room to explore. It has enough power to pull off some of these custom homepage designs with far less code work.</p>\n\n\n\n<p><a href=\"https://wordpress.org/themes/music-artist/\">Music Artist</a> was one of the latest themes to catch my eye. I loved the large hero area and several elements of the theme’s design. After installing it, I realized the homepage layout was handled through theme options. However, the theme author could have built this page entirely out of blocks and wrapped each section or even the entire design into block patterns.</p>\n\n\n\n<p>This is all doable with the block editor.</p>\n\n\n\n<p>So that I am practicing what I am preaching, I took a couple of hours and recreated the homepage demo for the theme directly from the block editor. No code required. There were a few tricky pieces, which I will get into. However, it was not that hard to build and could have been made easier if the theme supported the block editor.</p>\n\n\n\n<p>The plan was to replicate the custom page with the Music Artist theme installed. However, the theme’s lack of block support meant that some things were fundamentally broken. Instead, I activated a theme with design similarities, such as fonts and colors. Because I already knew <a href=\"https://wptavern.com/ariele-lite-is-a-fun-and-refreshing-theme-for-wordpress-bloggers\">Ariele Lite worked with the block editor</a>, it made sense to see if I could build with it. It proved to be a solid foundation.</p>\n\n\n\n<p>The following is a comparison of the original Music Artist theme homepage (first) and a recreation using blocks via the <a href=\"https://wordpress.org/themes/ariele-lite/\">Ariele Lite</a> theme (second):</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><a href=\"https://wptavern.com/wp-content/uploads/2021/03/music-artist-original-scaled.jpg\"><img /></a>Original Music Artist Homepage</li><li class=\"blocks-gallery-item\"><a href=\"https://wptavern.com/wp-content/uploads/2021/03/ariel-music-artist-scaled.jpg\"><img /></a>Block-Designed Homepage</li></ul>\n\n\n\n<p>There are obviously differences in spacing, colors, typography, and other elements. Much of this comes down to stylistic choices by the theme designers. Given more time and modifications via a plugin like <a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus</a>, I could have adjusted this enough to get a closer replica. However, my goal was to stick as close as possible as I could to core WordPress. Technically, I have the latest version of the Gutenberg plugin installed, so there might be a few items that have yet to land in WordPress.</p>\n\n\n\n<p>For this experiment, I used:</p>\n\n\n\n<ul><li>WordPress 5.7 Beta</li><li>Gutenberg 10.1 Beta</li><li>Ariele Lite 1.0.8</li><li>Editor Plus 2.6</li></ul>\n\n\n\n<p>I only needed Editor Plus to make a couple of margin adjustments on the Group block. I could have left it alone, but I wanted to reduce some of the spacing between sections on the page to get a closer recreation. In the future, we will see more spacing controls in WordPress, so I considered this a fair trade-off.</p>\n\n\n\n<p>This experiment is to show theme authors that they can build their custom designs with the block system. Dropping old-school theme options means a lot less code work for developers, allowing them to focus more on styling. End-users also benefit from more flexibility, such as adding custom elements or removing parts they do not want. That does not even include the style options on the individual block level.</p>\n\n\n\n<p>The secondary purpose is to show users that they can create some of these homepages without code. The block editor and a well-rounded, block-ready theme can get you pretty far.</p>\n\n\n\n<h2>Recreating the Music Artist Homepage</h2>\n\n\n\n<p class=\"has-drop-cap\">Starting with a base of Ariele Lite meant that the design was boxed. However, the theme has a custom “Blank Canvas” page template that lets users design the entire page.</p>\n\n\n\n<p>There were elements I could not recreate entirely because of limitations with the block editor. Other parts were issues or design choices coming from the theme.</p>\n\n\n\n<p>The following is a general overview of how I accomplished building out each section of the homepage. I will skip over parts like adding colors and changing font sizes while focusing on the layout-related concepts.</p>\n\n\n\n<h3>Hero Section</h3>\n\n\n\n<img />\n\n\n\n<p>WordPress’s Cover block remains one of my favorite blocks. It allows users to create hero sections without much work. I grabbed the background image from the original demo and plopped it in. I had taken the first real step down this journey.</p>\n\n\n\n<p>Then, I added a Heading block, adjusting its size a bit. I followed it with a Spacer and Social Icons block.</p>\n\n\n\n<p>I immediately hit two snags. The first was that WordPress does not include an iTunes social icon. I was unable to find an open issue on the Gutenberg repository for this. Perhaps it is not an oft-requested feature. The second issue was that the Social Icons block does not output the social network labels, so I could not replicate that part of the design.</p>\n\n\n\n<h3>Discography Section</h3>\n\n\n\n<img />\n\n\n\n<p>There are a few ways to handle this section. Assuming the albums listed are a custom post type, whatever plugin these albums came from would ideally have a custom block for outputting them. Users could also use the Latest Posts block if these are blog posts or the upcoming Query block.</p>\n\n\n\n<p>For simplicity, I decided to add a Columns block and drop three linked images in.</p>\n\n\n\n<h3>Media and Text Section</h3>\n\n\n\n<img />\n\n\n\n<p>My plan for this section was to use the core Media & Text block. However, it only supports self-hosted media. There was no way for me to embed a YouTube video.</p>\n\n\n\n<p>Instead, I went with a Columns block. In the left column, I dropped a YouTube video URL. On the right, I added Heading, Paragraph, and Buttons blocks.</p>\n\n\n\n<h3>Videos Section</h3>\n\n\n\n<img />\n\n\n\n<p>This was a relatively simple section to recreate. For the layout, it took only a Heading block followed by a Columns block. Then, I grabbed a couple of video links from YouTube and pasted the URLs into the editor.</p>\n\n\n\n<h3>Latest Posts Section</h3>\n\n\n\n<img />\n\n\n\n<p>This was the part of the layout that I had the most trouble with. WordPress provides the Latest Posts block, which can be set in a grid. However, Ariele Lite did not correctly handle the columns.</p>\n\n\n\n<p>So, I cheated a bit.</p>\n\n\n\n<p>I switched to a block-based theme that supports the upcoming Full Site Editing feature. Then, I dropped in a Query block to get more control over the columns of posts. Afterward, I switched back to the Ariele Lite theme.</p>\n\n\n\n<p>The original design could be done with the current Latest Posts block, so this is not a block-editor problem.</p>\n\n\n\n<h3>Footer Sidebar Section</h3>\n\n\n\n<img />\n\n\n\n<p>Technically, the footer sidebar is outside the scope of the homepage design. It is a part of the theme’s footer across the entire site. However, I decided to add it since I was already on a roll.</p>\n\n\n\n<p>This section requires the Columns block. From that point, it is a matter of dropping in a Heading block for each column. I added a Paragraph, Calendar, and Gallery block to recreate the three “widgets.”</p>\n\n\n\n<p>Ariele Lite’s Calendar block design works better on a light-colored background. It was a small pain point that I overlooked. In the long term, WordPress should provide design controls on blocks that are missing them.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Mar 2021 22:52:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:53:\"WordPress.org blog: WordPress 5.7 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9829\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/03/wordpress-5-7-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2677:\"<p>The second release candidate for WordPress 5.7 is now available! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p>You can test the WordPress 5.7 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “Bleeding edge” channel and Beta/RC Only” stream options)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.7-RC2.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta/RC releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</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.7 and update the <em>Tested up to</em> version in the readme file to 5.7. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so those can be figured out before the final release.</p>\n\n\n\n<p>The <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide\">WordPress 5.7 Field Guide</a> will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/lukecarbis/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>lukecarbis</a> for the haiku and <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a> and <a href=\"https://profiles.wordpress.org/hellofromtonya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellofromtonya</a> for peer reviewing!</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Five-seven next week<br />So test your plugins and themes<br />Update your readme</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Mar 2021 20:49:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ebonie Butler\";s: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:71:\"Akismet: Version 4.1.9 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2112\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2021/03/02/version-4-1-9-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:544:\"<p>Version 4.1.9 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:</p>\n<ul>\n<li>Improvements to how Akismet handles checking pingbacks in XML-RPC multicall requests.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Mar 2021 18:13: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:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WPTavern: Editor Plus 2.6 Adds Block Pattern and Template Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113093\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"https://wptavern.com/editor-plus-2-6-adds-block-pattern-and-template-library?utm_source=rss&utm_medium=rss&utm_campaign=editor-plus-2-6-adds-block-pattern-and-template-library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6226:\"<p class=\"has-drop-cap\">A couple of weeks ago, Munir Kamal released version 2.6 of his <a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus</a> WordPress plugin. The latest version does not add a slew of features as its users have seen in the past. However, it introduces one major upgrade. The new version lets users insert templates from <a href=\"https://gutenberghub.com/\">Gutenberg Hub’s</a> growing library directly from the block editor.</p>\n\n\n\n<p>I first asked Kamal whether he would include a template inserter in his plugin in July 2020. “I will possibly include a direct inserter for templates and blocks in the Editor Plus plugin,” he said at the time, not giving away too much.</p>\n\n\n\n<p>He had just launched <a href=\"https://wptavern.com/copy-and-paste-editor-blocks-via-gutenberghubs-block-library\">Gutenberg Hub’s block library</a> (<em>really, something more akin to block patterns</em>). The system was useful but far from perfect. Users could copy a JSON code snippet and import it via Editor Plus. This was a slight improvement over copying separate block HTML and CSS snippets from an earlier iteration of a <a href=\"https://wptavern.com/gutenberg-hub-launches-collection-of-100-block-templates\">block template system</a> he had launched last March. It was still not an ideal system, but anyone paying attention could see the possibilities.</p>\n\n\n\n<p>Over the months since that launch, Kamal continued to build more tools into Editor Plus. He launched a separate <a href=\"https://wptavern.com/gutenberg-hub-launches-landing-page-templates-directory\">landing page template directory</a>. And, he continued adding more items to Gutenberg Hub’s library.</p>\n\n\n\n<p>“I am already working on adding a Template Inserter in my EditorPlus plugin,” he said when we talked in September. “It will allow users to browse and insert these templates directly from Gutenberg without leaving the website.”</p>\n\n\n\n<p>I had already been hounding him for months, and he knew that I would ask. He was looking for feedback, not wanting to push something out before he felt that it worked.</p>\n\n\n\n<p>“Earlier, I created a template inserter similar to other blocks plugins, but later I changed my mind and thought that I should integrate with the Gutenberg Patterns API and load the templates into the ‘patterns’ panel in the block inserter,” he said. “But, I am having a few issues and thinking about going back to the original idea to have a Templates button on the top toolbar that opens a popup window to browse and filter templates that users can insert on a click.”</p>\n\n\n\n<p>It was an almost methodical process toward building a massive body of work in a year. As is often the case with Kamal’s work, he quietly pushed out version 2.6 of his plugin. Even without much fanfare, he has managed to surpass 4,000 active installs, doubling its number in the past few months.</p>\n\n\n\n<p>Now all of the plugin’s users have direct access to Gutenberg Hub’s section patterns and landing page templates.</p>\n\n\n\n<h2>The Template Library</h2>\n\n\n\n<p class=\"has-drop-cap\">Editor Plus 2.6 adds a new “Library” button to the block editor’s post header toolbar. It pops up a simple overlay of the plugin’s layout choices.</p>\n\n\n\n<p>Users can insert a “Pattern” or a “Template,” as they are called through the plugin’s UI. Patterns are pre-designed sections that end-users can use to piece together larger page layouts. Templates are full-blown page designs, ready for deployment after content customization. Many of the patterns are present in the templates. It all comes down to how users want to build their pages — piecemeal vs. having everything in place.</p>\n\n\n\n<img />Modal showing block templates.\n\n\n\n<p>Of course, everything is editable. Users can insert a template then proceed to removing the bits they do not need and adding custom blocks of their choosing.</p>\n\n\n\n<p>The overlay that appears after clicking the Library button allows users to select a pattern or template. This method is becoming increasingly common among block-related plugins. Where the Gutenberg project has <a href=\"https://wptavern.com/proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter\">fallen behind in its patterns UI</a>, plugin authors are filling the gaps and creating better user experiences. Genesis Blocks, for example, adds a similar <a href=\"https://wptavern.com/genesis-block-theme-beta-studiopress-pursuing-a-block-first-future\">overlay for choosing layouts</a>. Patterns, templates, layouts, or whatever-you-want-to-call-them all need room to breathe instead of being relegated to a width-restrained flyout. What makes sense on mobile does not always create an ideal experience on larger screens.</p>\n\n\n\n<img />Viewing a photography template.\n\n\n\n<p>Once a user finds a pattern or template to insert, they can click on it to view a larger version. If they are satisfied, they merely need to click the “Add” button to insert it into the content canvas.</p>\n\n\n\n<p>An important caveat is that what you see in the library is not <em>exactly</em> what you will get. The library uses screenshots to showcase the patterns and templates. These images are created while using a different theme than what a particular user has installed on their site. Things like fonts will match whatever theme is installed. Generally speaking, the overall designs should match up fine.</p>\n\n\n\n<p>In the future, perhaps Editor Plus will handle the pattern and template previews with live instances instead of screenshots.</p>\n\n\n\n<img />Cafe-type full landing template.\n\n\n\n<p>The plugin breaks its library down into 15 categories, such as Arts & Entertainment, Photography, and Real Estate. It is almost a bit excessive. Some contain only one or two templates. Combining categories like Home Services, Professional Services, and Retail into an all-encompassing Business group could help curb the dizzying effects of <em>too much choice</em>.</p>\n\n\n\n<p>The new library in Editor Plus 2.6 is a welcome addition. Overall, it worked well in testing.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Mar 2021 21:35: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:14:\"Justin Tadlock\";s: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: Elementor Raises Eyebrows with Google Ads Targeting Full-Site Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112932\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"https://wptavern.com/elementor-raises-eyebrows-with-google-ads-targeting-full-site-editing?utm_source=rss&utm_medium=rss&utm_campaign=elementor-raises-eyebrows-with-google-ads-targeting-full-site-editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6143:\"<p>WordPress’ <a href=\"https://wptavern.com/wordpress-passes-40-market-share-of-alexa-top-10-million-websites\">growing market share</a> is fueling a continual influx of new users but also a higher level of scrutiny around advertising. Companies with large advertising budgets target this segment of consumers, because many who are new to WordPress need help hosting and creating their websites.</p>\n\n\n\n<p>Last week Bluehost pulled an advertisement that <a href=\"https://wptavern.com/bluehost-misuses-wordpress-trademark-reigniting-controversy-over-recommended-hosts-page\">misused WordPress’ trademark</a>. The company’s PR department has not responded to our request for comment, but onlookers have noted that this isn’t the first time Bluehost has floated questionable ads. <a href=\"https://www.facebook.com/ads/library/?active_status=all&ad_type=all&country=ALL&view_all_page_id=235969756424648&sort_data%5Bdirection%5D=desc&sort_data%5Bmode%5D=relevancy_monthly_grouped\">Multiple Facebook campaigns</a>, dating back several years, include trademark abuses, as well as <a href=\"https://www.youtube.com/channel/UCURv2b4zbEiwN626-T321HQ\">active campaigns</a> on YouTube in various markets. </p>\n\n\n\n<p>In another advertising-related matter, <a href=\"https://wordpress.org/plugins/elementor/\">Elementor</a>, a popular page builder used by more than five million websites, has caught some attention recently for its Google ads that target “full-site editing.” Birgit Pauli-Haack, publisher of the <a href=\"https://gutenbergtimes.com/\">Gutenberg Times</a>, pointed out the ads last week in the <a href=\"https://poststatus.com/\">Post Status</a> Slack community. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>“I have no trouble if Elementor and Beaver Builder duke it out on the Google Ads,” Pauli-Haack said. “It’s certainly fair game. Why I think it’s shady in regards to WordPress? It’s the searcher’s intent diverted, in a misleading way. <a href=\"https://www.wordstream.com/blog/ws/2012/07/17/google-advertising#SEO%20vs%20PPC\">30% of Google Searchers</a> do not know that the first results are paid ads and are led astray. Information about Full Site Editing has people already confused and worried. It doesn’t help if someone hijacks the new feature’s keyword. WordPress is also an easy target because the Foundation certainly doesn’t have any money to throw at the problem to bid higher on the keywords.”</p>\n\n\n\n<p>At first glance the keyword targeting may appear to skirt the line of ethical advertising, but Elementor representative Ben Pines claims the company is simply advertising for <a href=\"https://elementor.com/help/full-site-editing/\">a feature set of the same name</a>. It enables customers to edit the header, footer, archive and single templates, and page or post content on the same screen.</p>\n\n\n\n<p>“Our google ads vary to provide the most value for users in the search,” Pines said. “This one is no different. This doesn’t represent any new strategy. We released full site editing back in March 2020.”</p>\n\n\n\n<p>Pines referenced a <a href=\"https://github.com/elementor/elementor/issues/10718\">beta release post</a> dated March 1, 2020, which referred to Elementor’s “groundbreaking Full Site Editing feature.” WordPress’ Full-Site Editing project predates this release by at least a year. </p>\n\n\n\n<p>“Full site editing is a very generic industry name and is a fundamental capability in website building tools, searched by many of our users,” Pines said.</p>\n\n\n\n<p>When asked if Elementor is considering changing the name to avoid confusion with the core WordPress project, Pines said, “We don’t see any potential confusion. Elementor’s capabilities and ads are clear.”</p>\n\n\n\n<p>Others involved in the conversation on Post Status Slack said this type of advertising seems to be standard practice in the world of ad buying, since they are buying based on relevant keywords. Competitors also routinely purchase each other’s keywords. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>“Instead of supporting, it is undermining the project,” Pauli-Haack said. </p>\n\n\n\n<p>She and other participants in the conversation about the ads found it hard to believe that the strategy is not intentional. Some were also irked by <a href=\"https://www.facebook.com/ads/library/?active_status=all&ad_type=political_and_issue_ads&country=US&id=471775237521825&view_all_page_id=1595730204071266\">other Elementor ads</a> running on Google and Facebook that attempt to capitalize on users’ frustration with WordPress.</p>\n\n\n\n<p>Elementor’s advertising appears to be a self-preservation strategy, as Gutenberg’s full site editing capabilities will inevitably ring the death knell for page builders that don’t build on top of the core standard. Third-party page builders will need to overcome severe <a href=\"https://wptavern.com/gutenbergs-faster-performance-is-eroding-page-builders-dominance\">performance deficiencies</a> in order to remain competitive.</p>\n\n\n\n<p>Understanding where full-site editing is heading is critical for WordPress site owners who are adopting new tools and workflows that will be future-proof with core changes. During this transition many will likely be googling for solutions that will enable them to be on the ground running when core introduces its full-site editing MVP in WordPress 5.8.</p>\n\n\n\n<p>Participants in the conversation noted that the Elementor team is not very involved in contributing to the open source project. This may be why the team claims they cannot see any confusion in targeting Google ads at users searching “full-site editing.” </p>\n\n\n\n<p>“We actively contribute to WP and its ecosystem through sponsoring events, translations, accessibility tools and more,” Pines said. “We are looking to further our contribution even more this year and are on the look out for a dedicated team member.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Mar 2021 21:06:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:56:\"WPTavern: Chrome is Testing a Follow Button for 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112943\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:157:\"https://wptavern.com/chrome-is-testing-a-follow-button-for-websites?utm_source=rss&utm_medium=rss&utm_campaign=chrome-is-testing-a-follow-button-for-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2322:\"<p><a href=\"https://www.google.com/chrome/canary/\">Chrome Canary</a>, the browser’s nightly build for developers, has been testing a new Follow button, as spotted on Android by the publishers of <a href=\"https://www.chromestory.com/2021/02/chrome-follow-button/\"><em>Chrome Story</em></a>. The button appears on the homepage of a site, as well as in the browser menu:</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>\n\n\n\n<p>Chrome Story speculates that it may be integrated with Google’s Discover feature, allowing sites to be easily added to that feed. Others speculated more broadly that Google may be building a replacement for Google Reader.</p>\n\n\n\n<p>Any whisper of Google Reader being resurrected always causes a bit of a stir, as many loyal users are still in mourning for the beloved RSS reader, which was discontinued in 2013. Linking this new Follow feature with Discover may be the closest Google gets to bringing it back. A full-featured RSS reader will likely still be a better option to have full control of your feeds and how they display. However, it may be possible for developers to build tools that fetch and aggregate feeds captured by the Follow button.</p>\n\n\n\n<p>Before the explosion of social media sites, RSS buttons were prominently featured on WordPress blogs. Having the ability to follow a site for new updates, without having to check back manually, was an important feature if you wanted to be found in the nascent blogosphere. RSS is still alive and well, even if following a curated list of sites isn’t the primary way people get their news today. Many internet users don’t know the first thing about subscribing to feeds but Google’s new Follow feature might make the idea more approachable.</p>\n\n\n\n<p>Canary is unstable, but if want to check out features on the bleeding edge of Chrome development, you can install <a href=\"https://play.google.com/store/apps/details?id=com.chrome.canary&hl=en_GB&gl=US\">Canary for Android</a> alongside your regular browser and choose when you launch it. At the time of publishing, the Follow button was not in the latest build but Google sometimes puts features in and pulls them out while they are in development. We will be following to see how this takes shape.</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, 27 Feb 2021 02:40: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: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:68:\"WPTavern: Ask the Bartender: What Happens When Block Markup Changes?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112921\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/ask-the-bartender-what-happens-when-block-markup-changes?utm_source=rss&utm_medium=rss&utm_campaign=ask-the-bartender-what-happens-when-block-markup-changes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6837:\"<blockquote class=\"wp-block-quote\"><p>I’m a developer that has started developing with Gutenberg recently. There are a bunch of amazing benefits and features, but there are also a ton of drawbacks, inconsistencies, as well as absolutely awful and outdated documentation.</p><p>One of the worst aspects of Gutenberg from a developer perspective has been block validation. Consider the following scenario. I build a custom (non-dynamic) JavaScript-based block, and a CMS editor adds the block to thousands of pages. What happens when or if I need to update the markup of the block?</p><p>By default, all of the blocks will enter a state of invalidation and not reflect on the front-end of the site. The CMS editor would have to go into thousands of pages and manually click the button which allows the block to be recovered.</p><p>Block deprecations have been suggested as a way to resolve this, but the API is poorly documented, confusing, and seems like it would become unmaintainable in the long term with more than a few deprecations.</p><p>Shouldn’t there either be a way for block developers to opt-out of the validation process or a global way to recover blocks?</p><cite>PJ</cite></blockquote>\n\n\n\n<p>You are certainly not holding anything back, PJ. While much of this is a bit more technical than I typically like to cover here at the Tavern, I decided to reach out to Riad Benguella, one of the lead Gutenberg developers, for more insight into the situation.</p>\n\n\n\n<p>Before diving into his response, I have given one aspect of your question some thought. There are times when developers need to deprecate old markup and move onto something new. However, this should not happen often. Generally, it is a sign of poor architecture if the HTML needs to be overhauled regularly. This also leads to other issues, such as a third party not being able to maintain stylistic changes.</p>\n\n\n\n<p>When developing blocks or any type of application that outputs front-end code, you need to think about what that should look like today and in 10 years. What happens if a user adds some custom CSS to style your block and the block’s HTML structure has changed? From their perspective, your block update has broken their site. The same could be said for another plugin that extends your plugin in some way.</p>\n\n\n\n<p>Ask any theme author how frustrating it is any time Gutenberg/WordPress changes its block output. While it has improved in the last couple of years, styling blocks for the editor and front-end has often been a maintenance nightmare.</p>\n\n\n\n<p>As a developer, I have always tried to think through any real-world consequences of making these changes from a user’s perspective. That should happen from Day #1, not after you have released your project.</p>\n\n\n\n<p>Doing this adds time to the early project when you are just trying to get it out the door and into users’ hands. This is where taking a pre-release step back helps. Get away from the computer. Go on a walk. Think about the architecture of your project and whether it is ideal for the long term.</p>\n\n\n\n<p>“For the block versioning/updates, it’s indeed one of the areas of the Gutenberg APIs where we needed to make architectural tradeoffs, and we decided to favor the user experience over the developer’s,” said Benguella.</p>\n\n\n\n<p>Regardless of your development method, following the project’s approach of a user-first experience will help in the long term.</p>\n\n\n\n<p>“To understand the problem properly, one needs to understand how blocks work and are edited,” said Benguella. “Block instances are a JSON object, and the editor UI manipulate that JSON, but in order to stay backward compatible, to ensure the preservation of user’s content in the most readable format, and to embrace web standards as much as possible, the block editor doesn’t store the JSON object but an HTML serialization of it in <code>post_content</code>.”</p>\n\n\n\n<p>That serialization is parsed and converted to JSON when the editor reloads the content to edit again. In the final stages of parsing, it is up to the block author to decide how to save and parse the object.</p>\n\n\n\n<p>“Now, imagine if a user altered the saved HTML (serialization) and just put any random content there,” said Benguella. “The block might not be able to parse the HTML properly because it doesn’t match its expectations (what has been defined by the block author), which means recreating that JSON object in order to be manipulated won’t be possible at this point.”</p>\n\n\n\n<p>When this happens, the block editor provides the user with an interface to make an informed decision. They can attempt to “force parse” the block JSON or convert it to an HTML or Classic block.</p>\n\n\n\n<img />Invalid block after altering the markup.\n\n\n\n<p>This same type of invalidation can happen when a plugin developer updates their block. However, instead of the saved HTML changing, the developer changed the “expectations” of the block — altering how it gets saved and parsed.</p>\n\n\n\n<p>“Which is why we ask block developers to provide block deprecations representing the old markup of the same block,” said Benguella. “Deprecations can also be thought of as valid, alternate sources for the same block. This allows the editor to parse the old markup when loaded and save the new markup back if an update is made to the block.”</p>\n\n\n\n<p>WordPress has <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-deprecation/\">block deprecation documentation</a>. However, it is not thorough. The best source of seeing real-world deprecations is looking through Gutenberg’s <a href=\"https://github.com/WordPress/gutenberg/tree/HEAD/packages/block-library/src\">block library</a>. Deprecated blocks have a <code>deprecated.js</code> file.</p>\n\n\n\n<p>Benguella said that this system can be frustrating for block authors. This is especially evident in a development environment when making changes. This has lead developers to ask for a method of disabling the validation algorithm.</p>\n\n\n\n<p>“It’s something we don’t want to provide at the moment because, as explained above, the validation is also important when markup changes for another reason (external edit, another editor, etc.),” he said. “So it may cause content loss for users without them being aware of anything. The preference right now is given to user awareness.”</p>\n\n\n\n<p>The team has improved the validation system over time, allowing for small changes that do not break the block state. There is also an <a href=\"https://github.com/WordPress/gutenberg/issues/21703\">open ticket for improvements</a> 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, 26 Feb 2021 16:53: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:14:\"Justin Tadlock\";s: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:79:\"WPTavern: The Gutenberg WordPress Plugin To Introduce a Table of Contents Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112826\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"https://wptavern.com/the-gutenberg-wordpress-plugin-to-introduce-a-table-of-contents-block?utm_source=rss&utm_medium=rss&utm_campaign=the-gutenberg-wordpress-plugin-to-introduce-a-table-of-contents-block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4589:\"<p class=\"has-drop-cap\">What was once likely viewed as plugin territory is now a reality as part of the Gutenberg project. Yesterday, the team <a href=\"https://github.com/WordPress/gutenberg/pull/21234\">merged a pull request for a Table of Contents</a> (TOC) block into the plugin’s codebase. It was a contribution driven by developer Zebulan Stanphill, starting nearly a year ago.</p>\n\n\n\n<p>The TOC block may feel a bit niche. However, there is obviously a need for it. There are at least two standalone block plugins to handle the feature, and several block library plugins cover it. Last week, a <a href=\"https://wptavern.com/ask-the-bartender-frustrations-and-finding-the-right-wordpress-block-plugins\">reader asked about such a solution</a>. Soon, the Gutenberg plugin and, eventually, WordPress will have him and others covered.</p>\n\n\n\n<p>The block is not currently available in the plugin on WordPress.org. It has not officially shipped yet. To test it, users will either need to clone the <a href=\"https://github.com/WordPress/gutenberg\">Gutenberg GitHub repository</a> or grab a ZIP file of the <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">nightly beta</a>. It should land in Gutenberg 10.1 in the coming weeks for those who want to wait.</p>\n\n\n\n<p>Including these more-niche blocks is a good direction for the project — a <a href=\"https://github.com/WordPress/gutenberg/pull/28261\">Footnotes block</a> is also a possibility. While it can feel like stepping on the toes of plugin developers, WordPress needs to branch out. There is plenty of room for third-party devs to build other blocks. The experience is degraded when users have to sift through multitudes of plugins to find something core to their writing process. There are limits on what blocks should ultimately be included in the platform. However, WordPress is publishing software. Advanced writing features, such as TOCs and footnotes, belong firmly in the default setup.</p>\n\n\n\n<h2>The Table of Contents Block</h2>\n\n\n\n<p class=\"has-drop-cap\">This block is a bit different than other blocks users are accustomed to. A TOC is a list of all the headings in a document. In the case of WordPress and webpages in general, a TOC links to those headings. This allows users to jump around the page. The block depends on other blocks in the content, a slightly new concept for the block editor.</p>\n\n\n\n<p>When first adding the block to an empty page, it will display a helper message.</p>\n\n\n\n<img />Initial TOC block when no Heading blocks are present.\n\n\n\n<p>Users must begin adding Heading blocks in their post to make use of the TOC block. Once they are added, each Heading is shown as a list item. The block also properly nests list items for sub-headings — an H3 goes into a sub-list under an H2, for example.</p>\n\n\n\n<img />Headings become list items in the TOC block.\n\n\n\n<p>This is the moment things become more complex. On the web, a TOC needs to link to those headings so that readers can jump to the section they want to view. Right now, this does not happen automatically. Perhaps it will do so in the future, but users must manually add HTML anchors to make the linking part work. <em>Ideally, the initial helper message would link to the <a href=\"https://wordpress.org/support/article/page-jumps/\">documentation page</a> on how to do this for new users.</em></p>\n\n\n\n<p>Adding HTML anchors is easy. However, it could be a ton of work for long posts with dozens of headings.</p>\n\n\n\n<p>To add the anchor, users must click on each Heading and navigate to the block options panel. Under the Advanced tab, enter a unique ID. It is easiest to name this after the text itself. A Heading block with “A New World” gets an anchor of <code>a-new-world</code>. This also helps when others are deep linking into posts, creating prettier URLs, such as <code>yoursite.com/blog/post-name/#a-new-world</code>.</p>\n\n\n\n<img />Adding anchors to Heading blocks.\n\n\n\n<p>The TOC block does not have any design settings. If users need to change the colors or other design-related elements, it is best to wrap it inside another block, such as Group or Cover.</p>\n\n\n\n<img />Wrapping the TOC into a Group block.\n\n\n\n<p>If adding a heading for the Group block or before the TOC block, it will be added to the list. It is best to use the Paragraph block as a <em>faux</em> heading and change the font size.</p>\n\n\n\n<p>Overall, the block works well. Except for the manual insertion of anchors, it is a welcome addition. Perhaps a plugin author will come along and write the code to make it automatic.</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, 25 Feb 2021 21: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:98:\"WPTavern: Bluehost Misuses WordPress Trademark, Reigniting Controversy Over Recommended Hosts Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112479\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:239:\"https://wptavern.com/bluehost-misuses-wordpress-trademark-reigniting-controversy-over-recommended-hosts-page?utm_source=rss&utm_medium=rss&utm_campaign=bluehost-misuses-wordpress-trademark-reigniting-controversy-over-recommended-hosts-page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12680:\"<p><a href=\"https://www.bluehost.com/\">Bluehost</a> was called out this week for misusing WordPress’ trademark, as the WordPress Foundation prohibits its use in advertising. The company has been featured on <a href=\"https://wordpress.org/hosting/\">WordPress’ recommended hosting</a> page for the past 16 years, as one of a handful of hosts that have been arbitrarily selected based on an incomplete list of criteria.</p>\n\n\n\n<p>The wording of the ad in this instance,<em> “There is a reason WordPress officially recommends Bluehost more than any other hosting service,”</em> was a visceral reminder to the hosting community of being excluded from the benefits that listing confers. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">\"We do not allow the use of the trademark in advertising, including AdSense/AdWords.\"<br />– <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> Foundation Trademark Policy <a href=\"https://t.co/0pO0z6uAdp\">https://t.co/0pO0z6uAdp</a> <a href=\"https://t.co/NTNShWI2yg\">pic.twitter.com/NTNShWI2yg</a></p>— Morten Wears a Mask (@mor10) <a href=\"https://twitter.com/mor10/status/1363967590733729793?ref_src=twsrc%5Etfw\">February 22, 2021</a></blockquote>\n</div>\n\n\n\n<p>In response to the issue, WordPress’ Executive Director, Josepha Haden Chomphosy <a href=\"https://twitter.com/JosephaHaden/status/1364308731991781376\">scheduled a call</a> with Bluehost to find a resolution. She provided the following statement after the call:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This was flagged to me on Twitter, and I immediately reached out to learn more. Bluehost removed the ad proactively, and they scheduled a call with me and a representative of Automattic to understand the concerns being raised. As Matt <a href=\"https://robertjacobi.com/wordpress-org-hosting-and-trademark-rumors-answered.html\">mentioned</a>, commercial use of the WordPress trademark is permitted, and Automattic can sub-license that use.</p></blockquote>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>From a WordPress project standpoint, Bluehost was swift to respond to this issue, and took immediate steps to better understand how the trademark and logo are allowed to be used. When mistakes like this happen, we ask companies to keep us informed about how the issue is resolved, and Bluehost has agreed to do that.</p></blockquote>\n\n\n\n<p>Bluehost has not yet responded to our request for comment.</p>\n\n\n\n<p>In the meantime, the incident reignited the controversy that has plagued <a href=\"https://wordpress.org/hosting/\">WordPress’ recommended hosting page</a> for years. Continuing the conversation that started on Twitter, members of the <a href=\"https://poststatus.com/\">Post Status</a> community pressed for more clarification in the club’s #hosting channel.</p>\n\n\n\n<p>In response to claims that inclusion on the page is a closed process, and that the selected hosts haven’t changed in three years, Matt Mullenweg offered what is perhaps the most forthcoming response the community has seen on this topic: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>When the list is open, anyone can apply. I take 100% responsibility for the editorial, though in the past and future will have people help with testing hosts, and collating all the threads in the forums. I also get a fair number of people emailing me directly feedback about the hosts listed, and how the host follows up is part of my evaluation.</p><p>It’s true the list of hosts hasn’t been changed in a while. The current list is all in good standing. I stand by the long-term behavior and service of every company linked on that page. It is past-due for open applications again, but I have prioritized other work on .org.</p><p>No one can pay to be on the page, and there are no affiliate payments made for customers sent from that page. It’s free, opinionated, and editorially driven. I do believe it drives many millions of year in business, which is why the potential for things like bribery or conflict is high if it were open to a larger group deciding who’s on there.</p></blockquote>\n\n\n\n<p>The hosting recommendations page exists to reduce barriers for new users looking to get started with WordPress without having to shop around among thousands of hosts. WordPress.org is not transparent about who makes the decisions regarding recommended hosts or what criteria is used. Because it benefits a select few very large companies who have dominated the recommendations for years with few changes, rumors abound. </p>\n\n\n\n<p>Mullenweg’s response confirms that currently there is no “pay-to-play” type of arrangement, but he did not say if this has always been the case. In the beginning, this page was called “<a href=\"https://web.archive.org/web/20050410080902/http://wordpress.org/hosting/\">WordPress Hosting Partners</a>” and included the following text: <em>“Signing up through this page will help us finance WordPress.org’s operations through partner deals.</em>” That wording was changed in April 2005 to remove the reference to partners. However, previous versions of the page from years ago include what appear to be tracking or affiliate links for the hosts listed. For example, <a href=\"https://web.archive.org/web/20070807011316/http://wordpress.org/hosting/\">a version of the page from 2007</a> includes the following links: </p>\n\n\n\n<ul><li><a href=\"https://web.archive.org/web/20070807011316/http://www.bluehost.com/track/wp/one\">http://www.bluehost.com/track/wp/one</a></li><li><a href=\"https://web.archive.org/web/20070807011316/http://www.anhosting.com/wordPress.aff.redirect.trk\">http://www.anhosting.com/wordPress.aff.redirect.trk</a></li><li><a href=\"https://web.archive.org/web/20070807011316/http://secure.hostican.com/cgi-bin/affiliates/clickthru.cgi?id=wordpress&campaign=three\">http://secure.hostican.com/cgi-bin/affiliates/clickthru.cgi?id=wordpress&campaign=three</a></li><li><a href=\"https://web.archive.org/web/20070807011316/http://www.dreamhost.com/r.cgi?automattic\">http://www.dreamhost.com/r.cgi?automattic</a></li></ul>\n\n\n\n<p>According to the Internet Archive, 2009 was the last year that tracking ID’s were appended to the links on the recommended hosts page. A few <a href=\"https://web.archive.org/web/20090701093034/http://wordpress.org/hosting/\">examples from that year</a> include:</p>\n\n\n\n<ul><li><a href=\"https://web.archive.org/web/20090701093034/http://www.dreamhost.com/r.cgi?automattic\">http://www.dreamhost.com/r.cgi?automattic</a></li><li><a href=\"https://web.archive.org/web/20090701093034/http://mediatemple.net/go/ref/?affkey=YWZmaWxpYXRlPTIyUDNkSVFPeXU\">http://mediatemple.net/go/ref/?affkey=YWZmaWxpYXRlPTIyUDNkSVFPeXU</a></li><li><a href=\"https://www.godaddy.com/hosting/wordpress-hosting.aspx?isc=wordpress2\">https://www.godaddy.com/hosting/wordpress-hosting.aspx?isc=wordpress2</a></li></ul>\n\n\n\n<p>The copy on the page hasn’t changed much over recent years. It currently gives the following criteria to be listed but it doesn’t specify why only three companies meet these standards:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We’ll be looking at this list several times a year, so keep an eye out for us re-opening the survey for hosts to submit themselves for inclusion. Listing is completely arbitrary, but includes criteria like: contributions to WordPress.org, size of customer base, ease of WP auto-install and auto-upgrades, avoiding GPL violations, design, tone, historical perception, using the correct logo, capitalizing WordPress correctly, not blaming us if you have a security issue, and up-to-date system software. </p></blockquote>\n\n\n\n<p>With such a diverse hosting ecosystem supporting WordPress users around the world, it’s difficult to understand why there aren’t more companies included among these listings. The era when tracking links were included on this page was a different time before many things were formalized, but the community could stand to receive a transparent history of this page. </p>\n\n\n\n<p>“To my knowledge, no one has ever paid to be on that page, and certainly no one has ever approached me about doing so,” Josepha Haden Chomphosy said when asked about the process for getting listed.</p>\n\n\n\n<p>Thousands of volunteer contributors are continually building and improving this software. It’s only natural that the community is curious about who is benefiting from the project’s hosting recommendations and the nature of those arrangements. Mullenweg estimates the impact of that page as “many millions per year in business,” but the process surrounding the selection of hosts is closed and not clearly outlined.</p>\n\n\n\n<p>Following the incident with Bluehost, Mullenweg briefly elaborated on why Bluehost retains its position on the page despite some people reporting poor service:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Regarding Bluehost or other large hosts, there is an aspect of <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://plato.stanford.edu/entries/utilitarianism-history/\">WordPress Utilitarianism</a>, any business will have some unhappy people, but a small % gets to a high absolute number at scale. I try to look at hosts that are doing the most good for the most number of people. Will definitely keep an eye on if anything with their approach to WP customers post-merger, but they also have a lot of good karma built up over a very long period of time. Bluehost, for example, does the best job I’m aware of in keeping the largest number of WPs on the latest version, and deploying updates incredibly fast. (If another host does more, please let me know! GD I think has more sites, but fewer on latest version.)</p></blockquote>\n\n\n\n<p>Another point of contention that regularly pops up is Automattic’s exclusive commercial license for using the WordPress trademark. Mullenweg clarified why the company is in possession of this exclusive right after <a href=\"https://ma.tt/2010/09/wordpress-trademark/\">Automattic donated it to the foundation</a>. He confirmed that Bluehost was not given permission to run the ad with the trademark:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>A common misunderstanding is that there is no commercial use of the WordPress trademark allowed. As some know, the trademark was originally held by Automattic, which donated it to the Foundation, and in return got an exclusive commercial license back. That commercial use can be sub-licensed by Automattic, and has been in the past. The ad that is bugging everyone was not approved, as far as I’m aware, and that will resolve once everyone has had a chance to talk to each other. Automattic can lose its commercial license to the trademark if it is not a good steward. This license is a bit of an accident of history, but also an entirely fair criticism of Automattic having a special privilege to commercial use of the WordPress trademark (because it’s true, vs most of what the company gets accused of). This <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://ma.tt/2010/09/wordpress-trademark/#comment-485223\">happened in 2010</a>, and the growth of WP and the WP ecosystem has been incredibly strong since then so I think the idea of a for-profit and non-profit complementing each other has proven successful, and I think better than either would have done on their own. </p></blockquote>\n\n\n\n<p>Mullenweg seems to recognize the friction that trademark matters can create in the community and said that he would change the naming of WordPress.com if he could go back in time.</p>\n\n\n\n<p>“If I could wave a magic wand and go back to 2004, though, it would be nice if .com and .org had distinct names ‘before the dot,’ as it can be a source of confusion,” he said.</p>\n\n\n\n<p>These things can certainly be changed in the present but not without a severe blow to the benefits of Automattic’s special privilege of commercial use. It would also impact the company’s millions of users who call WordPress.com their home on the web. </p>\n\n\n\n<p>In the interest of eliminating some of the confusion regarding conflicts of interest and commercial use of the trademark, a continual movement towards transparency will be required. WordPress.org’s recommended hosts page is overdue for an update. Ideally, this page will provide clear guidelines about the process and criteria for inclusion before opening up applications again. </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, 25 Feb 2021 04:06:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:78:\"WPTavern: Build a Full WordPress Site via Block Patterns With the Hansen Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"https://wptavern.com/build-a-full-wordpress-site-via-block-patterns-with-the-hansen-theme?utm_source=rss&utm_medium=rss&utm_campaign=build-a-full-wordpress-site-via-block-patterns-with-the-hansen-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5538:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Earlier today, the WordPress theme directory welcomed its fourth block-based theme. Built by UXL Themes, <a href=\"https://wordpress.org/themes/hansen/\">Hansen</a> is one of the more stylish projects capable of working with the site editor in the Gutenberg plugin. The theme author also stepped it up a notch and included several block patterns.</p>\n\n\n\n<p>I have written about how <a href=\"https://wptavern.com/gutenberg-7-7-ships-refreshed-ui-and-first-iteration-of-block-patterns\">patterns will be a game-changer</a>. I have talked about the need for a <a href=\"https://wptavern.com/proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter\">UI overhaul</a> to better expose them to users. And I have proposed that theme authors use the <a href=\"https://wptavern.com/armando-wordpress-theme-provides-insight-into-the-current-state-of-full-site-editing\">pattern system instead of templates</a>, allowing users to build out full sections of their sites at the click of a button.</p>\n\n\n\n<p>UXL Themes has done just that. Most patterns that we have seen thus far have been built primarily for post or page content. The Hansen theme takes that idea a step further and creates patterns for different site sections.</p>\n\n\n\n<p><em>Want to try a different look for the header?</em> Just remove the old one and swap in another header pattern.</p>\n\n\n\n<img />Inserting the dark header pattern.\n\n\n\n<p><em>How about changing the look of your blog posts page?</em> The theme comes with two and three-column patterns for outputting the latest posts.</p>\n\n\n\n<img />Inserting a two-column blog posts pattern.\n\n\n\n<p>It also packages a Content and Sidebar pattern that is more suitable for single posts and pages.</p>\n\n\n\n<p>I am still undecided on whether the patterns or template parts system is the ideal solution for this. Right now, patterns have a cleaner UI overall and can be categorized. Template parts might be easier to switch, but there is no way to group them (e.g., header templates, footer templates, etc.). Regardless of what becomes the <em>de facto</em> standard in the long term, we need more theme authors like UXL Themes experimenting with these concepts, seeing what works, and gathering user feedback.</p>\n\n\n\n<p>The theme does not add much in the way of content patterns. However, it does include one named “2 Columns of Text and a Full-Width Cover.” While it is a bit of a mouthful, the name does fully describe what it does. This is also the pattern in use for the homepage in the <a href=\"https://uxlthemes.com/demo/hansen/\">theme’s demo</a>. However, the demo has a slight modification, adding a custom latest posts section.</p>\n\n\n\n<img />Hansen content-related pattern.\n\n\n\n<p>Hansen is more than just its patterns. The theme generally looks pretty good too. It has a bit more pizazz than we have seen from some other block-based experiments. Like the <a href=\"https://wptavern.com/phoenix-a-block-based-wordpress-theme-with-a-sidebar\">recently-released Phoenix theme</a>, developers are becoming more comfortable moving beyond the bare-bones block-based designs from previous months.</p>\n\n\n\n<p>These themes are obviously not on par with what one could build on more mature systems. However, Gutenberg’s FSE system is inching forward. The theme authors who are experimenting now are paving the way for the next generation of themes, which I am excited to see.</p>\n\n\n\n<p>The Hansen theme also includes several block styles. Most are geared toward blocks that users would typically use in the site editor. I have not seen such an approach in previous block-based themes.</p>\n\n\n\n<p>Two of the styles are for mobile navigation. The Mobile Friendly style displays a horizontal nav menu on desktop while switching to a hamburger-flydown on mobile devices. The Mobile Style alternative retains the mobile layout on all screen sizes.</p>\n\n\n\n<p>There is a Box Shadow style for the Query Loop block, which adds a shadow to each post. In the future, I hope to see WordPress provide box-shadow options for this instead of themes relying on block styles. Nevertheless, it is a welcome addition for the moment.</p>\n\n\n\n<img />Box Shadow style for the Query Loop block.\n\n\n\n<p>The No Bottom Margin style allows users to remove bottom margin from Columns. I assume the theme author used this to address the common issue of nested blocks and their bottom margins adding on top of each other. I do not like this as a style because it gives the user the responsibility of fixing a design issue that should be taken care of under the hood. Generally, the problem stems from tackling spacing in design using a bottom margin instead of a top margin. It can be corrected in either case, but going with a top-margin approach is easier.</p>\n\n\n\n<p>Outside of that one stylistic issue, the other downside to the theme is that it is not well-suited to long-form content out of the box. The content area stretches too wide for the default font size, making for uncomfortable reading. The theme includes a Narrow Width style for the Group block that corrects this. However, it would ideally be the reverse, with the content defaulting to a narrower width. Whenever a user wants to write a long-form blog post, they would need to wrap it in a Group block and apply the Narrow Width style. The more common use case should be the default.</p>\n\n\n\n<p>Overall, I love the experimentation. Hansen is one of the best themes for playing around with the site editor in Gutenberg right now.</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, 24 Feb 2021 22:21: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:14:\"Justin Tadlock\";s: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:55:\"WordPress.org blog: Did You Know About Reusable Blocks?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9777\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6430:\"<p><strong><em>Created by Joen Asmussen, <a href=\"https://profiles.wordpress.org/joen/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joen</a></em></strong></p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?resize=585%2C329&ssl=1\" alt=\"\" class=\"wp-image-9803\" width=\"585\" height=\"329\" /></div>\n\n\n\n<p>The WordPress block editor (a.k.a. Gutenberg) comes with a feature called “reusable blocks.” They are blocks, saved for later, edited in one place.</p>\n\n\n\n<p>Have you ever wanted to:</p>\n\n\n\n<ul><li>Re-use the same snippet of text across posts and pages?</li><li>Save complex layouts to spare you having to copy/paste from one post to another?</li></ul>\n\n\n\n<p>Reusable blocks can do these things.</p>\n\n\n\n<h2>Like templates, you mean?</h2>\n\n\n\n<p>Not quite. Think of reusable blocks as snippets of globally synchronized content that are personal to you. You can edit all your reusable blocks in one place, and any post or page you inserted that block into, get the updated version as well. </p>\n\n\n\n<p>Where you might use templates to structure your website, you can use reusable blocks to structure your content. For example:</p>\n\n\n\n<ul><li>A testimonial on your homepage and your product page.</li><li>A “this post is part of a series” box that you insert part-way through your article.</li><li>A “Follow me on social media” section you can weave into the prose of your popular article.</li><li>Complex but static blocks, such as a “Subscribe to my newsletter” box, a contact form, a survey, quiz, or polls.</li></ul>\n\n\n\n<p>Key properties are that reusable blocks are unbeatable when you want to reuse a snippet of content, edit it in one place, and have the changes propagate to every instance.</p>\n\n\n\n<h2>Show me how</h2>\n\n\n\n<p>To create a reusable block, open the block editor and create the content you want to reuse:</p>\n\n\n\n\n\n\n\n<p>Now select the content you want to turn into a reusable block, then click the three-dot “More” menu and choose “Add to Reusable blocks.”</p>\n\n\n\n\n\n\n\n<p>Voilà, you’ve now created a reusable block. From now on, you can find this block, and any other you create, in the “Reusable blocks” tab in the block library:</p>\n\n\n\n\n\n\n\n<p>This is also where you can insert the newly created block on any of your posts or pages.</p>\n\n\n\n<h2>Where do I edit my existing reusable blocks?</h2>\n\n\n\n<p>To edit a reusable block, select it and make your edits. When you make an edit, the Publish button will have a little dot indicator:</p>\n\n\n\n\n\n\n\n<p>This dot indicates you’ve made a global change that potentially affects posts beyond just the one you’re editing, the same as when you’re editing templates. This lets you confirm the change was intentional.</p>\n\n\n\n<p><strong>Another way to edit your reusable blocks</strong> is to click the global three-dot “More” menu and selecting “Manage all reusable blocks”:</p>\n\n\n\n\n\n\n\n<p>This takes you to a section letting you edit, rename, export, or delete every reusable block you created. </p>\n\n\n\n<h2>What else can I do?</h2>\n\n\n\n<p>Here are a couple of tips and tricks you can leverage to get the most out of reusable blocks.</p>\n\n\n\n<h3>Give them a good name</h3>\n\n\n\n<p>When you name a reusable block, you are essentially choosing your search terms, as the name is what you search for in the block library (or when you use the “slash command,” typing / in an empty paragraph):</p>\n\n\n\n\n\n\n\n<p>Avoid names such as “Gallery” or “Image,” as that’ll be annoying when you just want to insert one of those. You can avoid that with a unique name, such as “My author biography.”</p>\n\n\n\n<h3>Insert in the best place of your content flow</h3>\n\n\n\n<p>One obvious benefit of reusable blocks is that they are just blocks, just like everything else in the block editor. That means you can insert it anywhere in your content. You might want your rich author biography to sit at the top or bottom of the post, but <em>This post is part of a series</em> box that might sit well two or three paragraphs not to disrupt the reading flow.</p>\n\n\n\n\n\n\n\n<h3>A design shortcut</h3>\n\n\n\n<p>Maybe you created a complex layout you’re happy with, a call to action with the right image and buttons, and it took a while to get it just right. Go on and save it as a reusable block: even if you mean to insert it only to convert it to a regular block, it might still save you a minute. </p>\n\n\n\n<p>To convert a reusable block to regular (blocks, select it and click the “Convert to regular blocks”:</p>\n\n\n\n<p></p>\n\n\n\n\n\n\n\n<p><em>Design by </em><a href=\"https://beatrizfialho.com/\"><em>Beatriz Fialho</em></a><em>.</em></p>\n\n\n\n<p><strong>Tip:</strong> You can also find some nice patterns on <a href=\"https://gutenberghub.com/\">Gutenberg Hub</a> or <a href=\"https://shareablock.com/\">ShareABlock</a>.</p>\n\n\n\n<h3>Take it with you</h3>\n\n\n\n<p>Need to move to another site? You can both export and import reusable blocks. Go to the <em>Manage all reusable blocks</em> section from the global three-dot “More” menu, hover over the block you want to export, and click “Export as JSON”:</p>\n\n\n\n\n\n\n\n<p>The downloaded file can be imported on any WordPress 5.0 or newer website.</p>\n\n\n\n<h2>Try it</h2>\n\n\n\n<p>Create a draft post and play around with Reusable Blocks to see how you might start using them. You can always delete them when you’re done playing.</p>\n\n\n\n<p>You can test importing and using a small reusable block I created as an example. It’s a “Further reading” block that shows the four latest posts from the category “Featured”:</p>\n\n\n\n<img src=\"https://lh6.googleusercontent.com/33_L1WQrTxNiidm8IKcSfn7_nYjcpq5zpSzycmKliDnGzFI_hLu7yLPV1vnqWgCS7H6JtFAGEXz-AVkNBLtQQEM80VA6KUfcmj1JAoVZ5ZNMavVzlGzBPEiqiD3-eUzZSvOTYm_E\" alt=\"\" />\n\n\n\n<p>It might work well as a highlight in an article, giving the reader something new to read or awareness of your other content.</p>\n\n\n\n<p><em><strong>The videos in this post show the reusable blocks flow in the upcoming WordPress 5.7.</strong></em></p>\n\n\n\n<p><a href=\"https://gist.github.com/jasmussen/53cb51dcd9a2bb561893aa7c5e126cdf\"><strong>Download the block from this gist</strong></a>, import it to your WordPress site, then customize to make it yours.</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, 24 Feb 2021 19:17:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s: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:69:\"WPTavern: WordPress 5.7 Lets Administrators Send Password Reset Links\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"https://wptavern.com/wordpress-5-7-lets-administrators-send-password-reset-links?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-7-lets-administrators-send-password-reset-links\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3479:\"<p>It’s that time in the release cycle when all the dev notes are rolling out ahead of the next major update. These notes include technical summaries of all the goodies coming in the next release. If you haven’t been paying close attention, there are always a few happy surprises in there that pop up as conclusions to tickets that contributors have been working on for years. </p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2021/02/22/send-reset-password-links-in-wordpress-5-7/\">new password reset feature</a> coming in WordPress 5.7 allows administrators to manually send a password reset link to users, resolving a five-year old <a href=\"https://core.trac.wordpress.org/ticket/34281\">ticket</a>. Instead of having to instruct a user about where to go to click on the lost password link and follow the steps, this new feature lets administrators push a button in the admin to send the link. If you have ever had to support clients or a community of users who may not be very technically inclined, this new password reset feature will save lots of time in helping users regain access to their accounts.</p>\n\n\n\n<p>The “Send password reset” link is available in several places. Administrators can find the link on the Users screen, as well as in the bulk actions dropdown menu. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>It is also available on the individual user screen with a button and a note clarifying that this action will not change the user’s password or force the user to change it.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The password reset email notification includes the site name, username, a password reset link, and the IP address where the request originated: </p>\n\n\n\n<p><em>This password reset request originated from the IP address [IPADDRESS].</em></p>\n\n\n\n<p>There is an open discussion on the original <a href=\"https://core.trac.wordpress.org/ticket/34281\">ticket</a> regarding whether this email notification should include the administrator’s IP address. </p>\n\n\n\n<p>“The IP address (while fraught with privacy concerns) is the only thing validating that this email came from the website and is not a phishing email,” contributor Gabriel Mariani said. “Unless there is a better way to validate the authenticity of the email I’d say it would be worthwhile to keep it.”</p>\n\n\n\n<p>Others see the IP address as useful only if a user is attempting to verify that it is their own IP address or collecting the information to prevent a phishing attack. Giving out the administrator’s IP address doesn’t seem pertinent to either of those concerns.</p>\n\n\n\n<p>“I could use my phone to send a reset, and I would have no idea what my IP was,” Mika Epstein said. “And that can easily be faked. Omitting the IP actually reduces the data being sent out that could be used by bad-actors.</p>\n\n\n\n<p>“I think it’s more likely we’d have a savvy bad actor than end users who would need to ask for a password reset but also know what a valid IP is and how to ask about it.”</p>\n\n\n\n<p>This part of the email text may be iterated on in subsequent patches or future releases of WordPress. Check out the <a href=\"https://make.wordpress.org/core/2021/02/22/send-reset-password-links-in-wordpress-5-7/\">dev note</a> for more discussion on this feature, along with information about further customizing the notification email.</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, 23 Feb 2021 22:38:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:51:\"WordPress.org blog: WordPress 5.7 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=9773\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/02/wordpress-5-7-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:3768:\"<p>The first release candidate for WordPress 5.7 is now available! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p>Please join us in celebrating this very important milestone in the community’s progress towards the final release!</p>\n\n\n\n<p>“Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.7 is slated for release on <strong>March 9, 2021</strong>, but <em>your</em> help is needed to get there—if you haven’t tried 5.7 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.7 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “Bleeding edge” channel and Beta/RC Only” stream options)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.7-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>What’s in WordPress 5.7?</h2>\n\n\n\n<ul><li>Robots API and Media Search Engine Visibility</li><li>Detect HTTPS support</li><li>Lazy-load iframes</li><li>jQuery migrate-related Deprecation notice clean-up</li><li>Admin color palette standardization</li><li><a href=\"https://make.wordpress.org/core/2021/02/05/whats-new-in-gutenberg-9-9-5-february/\">Version 9.9</a> of the Gutenberg plugin.</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.7 and update the <em>Tested up to</em> version in the readme file to 5.7. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so those can be figured out before the final release.</p>\n\n\n\n<p>The <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide\">WordPress 5.7 Field Guide</a> will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.7 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a> for copy suggestions and <a href=\"https://profiles.wordpress.org/davidbaumwald/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a> for final review.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Test this test that <br />Catch everything that you can<br />Before it’s live…</em><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f92f.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, 23 Feb 2021 21:07:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ebonie Butler\";s: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:90:\"WPTavern: FSE Outreach Round #2: Building a Custom Homepage With Gutenberg’s Site 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:30:\"https://wptavern.com/?p=112446\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"https://wptavern.com/fse-outreach-round-2-building-a-custom-homepage-with-gutenbergs-site-editor?utm_source=rss&utm_medium=rss&utm_campaign=fse-outreach-round-2-building-a-custom-homepage-with-gutenbergs-site-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:7876:\"<p class=\"has-drop-cap\">Anne McCarthy announced the <a href=\"https://make.wordpress.org/test/2021/02/18/fse-program-testing-call-2-build-a-homepage-with-site-editing-blocks/\">second round of testing</a> for the Full Site Editing (FSE) Outreach program. The call for testing asks that users build a homepage from the Gutenberg plugin’s site editor. Feedback is open until March 5.</p>\n\n\n\n<p>The <a href=\"https://wptavern.com/help-steer-the-future-of-wordpress-via-the-fse-outreach-program\">first round of testing</a> began in December 2020 and ended last month. Testers were able to <a href=\"https://wptavern.com/first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems\">identify several pain points</a> with template-editing mode from the block editor. The program created actionable items that Gutenberg developers could work to improve.</p>\n\n\n\n<p>This second round is similar. However, testing covers a much larger and more complex area. Users will be leaving the familiar block editor and moving to the site editor, which is still months away from being a viable product.</p>\n\n\n\n<p>McCarthy listed a 22-step process for building out a homepage. While I followed it for the most part, I got bored before finishing. This is one of the reasons I make for a poor test subject. I like to explore and see what is possible on my own. If I have an idea, I want to attempt its execution. I primarily stuck to the overall script, even if it was a bit out of order.</p>\n\n\n\n<p>Eventually, I created a custom homepage for a restaurant called The Grilled Cheese — <em>I would definitely open this restaurant in the real world if I ever leave the WordPress community.</em></p>\n\n\n\n<img />Custom restaurant homepage with sidebar.\n\n\n\n<p>It is reasonably simple. All told, it took me around two hours of playing around with various concepts before arriving at this stage. To build something I would be happy with would have taken a few more hours.</p>\n\n\n\n<p>Overall, I felt limited in laying out my ideal homepage. Each step was an uphill battle against the tools. I could have built this in less than half the time with HTML and CSS. I could do the same and more with other modern page builder plugins for WordPress.</p>\n\n\n\n<p>Before diving into the results of my test, I have some brutal honesty. TT1 Blocks, which is the theme used for FSE Outreach testing, is not up to snuff. The theme does not reliably handle the multitude of possibilities the site editor sets in the hands of end-users. This entire experience could be made smoother with a better theme. However, the choices are limited, and I am not sure if there is a better block-based theme to work with at this point.</p>\n\n\n\n<p>There were so many inconsistencies between the site editor and the front end that there is little point in listing them all. Spacing was grossly off. I generally see that as a theme issue. I spent much of my time in trial-and-error mode, making an adjustment in the editor and refreshing to see the front-end result. Rinse. Repeat.</p>\n\n\n\n<h2>Identifying Pain Points</h2>\n\n\n\n<p class=\"has-drop-cap\">While this post is critical of the site editor, it does not mean the experience was altogether poor. Seeing the improvement every week gives me hope that WordPress will have a site editor that rivals anything on the market. Eventually. However, my goal here is to provide real feedback that the team can use.</p>\n\n\n\n<p>Outside of the general spacing issues mentioned earlier, I identified several stumbling blocks while building a custom homepage.</p>\n\n\n\n<h3>Maximum Widths</h3>\n\n\n\n<p>When designing a full-site page via the site editor, one problem stood out more than most. WordPress lacks a well-rounded “max-width” system. As a user, I was left with few choices in setting the width of the content area of my homepage. Currently, theme authors can set custom content, wide, and full widths. However, this system is horribly limiting. There is not much theme authors can do with this, and this problem directly limits what users can do in both the block and site editors.</p>\n\n\n\n<p>I have previously written about the <a href=\"https://wptavern.com/themes-of-the-future-a-design-framework-and-a-master-theme\">need for a design framework</a>, one that is customizable by theme authors. Tailwind CSS has a <a href=\"https://tailwindcss.com/docs/max-width\">max-width system</a> that offers a boatload of flexibility. WordPress needs to start borrowing ideas from these modern design frameworks.</p>\n\n\n\n<h3>Add Block Icon</h3>\n\n\n\n<p>Getting the “Add Block” icon to appear when hovering in between elements in the default content area was rough. I had to position my mouse in a perfect position for it to appear. It was an exercise in frustration where even the slightest movement caused the icon to once again disappear.</p>\n\n\n\n<img />Locating the ‘Add Block’ icon.\n\n\n\n<p>Switching to Top Toolbar mode made this far easier. I am assuming the default block toolbar was hiding it to some degree. The problem with switching to this mode is that my toolbar-choice was not saved. Each time I returned to the site editor, I had to enable it once again.</p>\n\n\n\n<h3>Query Block</h3>\n\n\n\n<p>The most frustrating aspect of listing posts on a custom homepage was setting a limit. I wanted to set the number to three. However, the Query block has no option for doing this. Eventually, I created a <em>faux</em> limit using the category filter, choosing one that had just a couple of posts.</p>\n\n\n\n<p><strong>Update:</strong> It is possible to set a limit as noted by <a href=\"https://wptavern.com/fse-outreach-round-2-building-a-custom-homepage-with-gutenbergs-site-editor#comment-366562\">Nick in the comments</a>. There is a “settings” icon in the toolbar for setting the number of posts per page, an offset, and max number of pages. I am unsure why these particular query settings are separate from the others in the sidebar. It makes more sense for them to be grouped together.</p>\n\n\n\n<img />Limiting posts by using the Query block’s category filter.\n\n\n\n<p>Another confusing aspect of the Query block is the keyword filter. As far as I am aware, WordPress has never used the “keyword” terminology. Outside of SEO plugins, there does not seem to be any context for what this filter does. I am guessing it works like a search keyword.</p>\n\n\n\n<h3>Global Styles for All Blocks</h3>\n\n\n\n<p>When switching over to the Global Styles panel, I noticed that some blocks were missing when applying styles on the block level. In particular, I wanted to adjust styles for the Latest Comments block.</p>\n\n\n\n<p>I suppose that only blocks with typography, colors, and other design-related options appear in the list. This will likely confuse end-users when the site editor lands in WordPress. All blocks should have style options that users can customize.</p>\n\n\n\n<h3>No Full-Width Columns</h3>\n\n\n\n<p>For the content of my homepage, I attempted to create a full-width Columns block. However, the two individual columns were limited in size despite taking up 66.67% and 33.33%, respectively.</p>\n\n\n\n<img />Full-width columns not spanning the full area.\n\n\n\n<p>This seems like it is a theme issue. I would also argue that this is one of those times where having more direct control over the max-width would have helped. I really wanted something that was between the theme’s full and wide widths.</p>\n\n\n\n<h3>Featured Images</h3>\n\n\n\n<p>There is no way to set the size of the image output by the Post Featured Image block. The only way to get a uniform size at the moment is to pre-crop the images before uploading them to WordPress.</p>\n\n\n\n<p>There is no reason this should not essentially be a variation of the Image block. The only thing featured images need that is different is the option to link to the post.</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, 23 Feb 2021 20:47:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:66:\"WordPress Foundation: The Basic principles of Open-source Software\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpressfoundation.org/?p=181046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpressfoundation.org/2021/the-basic-principles-of-open-source-software/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4995:\"<p>The WordPress Foundation aims to educate the public about WordPress and related open-source software (OSS). Towards that end, the WordPress Foundation created the <a href=\"https://wordpressfoundation.org/tag/intro-to-open-source/\">Introduction to Open-source workshops</a>, which shed more light on the potential of open-source software, particularly in countries where there is less participation in OSS projects. Due to the COVID-19 pandemic, <a href=\"https://wordpressfoundation.org/2020/open-source-workshops-november-2020-report/\">these workshops have moved online</a>. The WordPress Foundation hopes to see more open-source workshops held online this year to help spread awareness about the importance of open-source software.</p>\n\n\n\n<p><strong>What are open-source software and Free Software?</strong></p>\n\n\n\n<p>Open-source software is software whose source code is available for anyone to view, modify and enhance. Free software refers to software that complies with “four essential freedoms” – to use, study, modify and distribute software for any purpose without legal restraint. Open-source software is characterized by the public accessibility of its code, while free software focuses on the capabilities for using and sharing the software.<br /></p>\n\n\n\n<p><strong>Advantages of Free and Open-source Software over Proprietary software</strong></p>\n\n\n\n<p>Proprietary software is distributed in executable files where the source code is encrypted and not available. Free and Open-source software enables users to read and modify the code, thus allowing a host of advantages such as little (or no) cost, faster distribution, greater customization, and easy availability of bugs and security patches, to name a few. </p>\n\n\n\n<p>The Introduction to Open-source workshops cover the difference between different software types, the history of open-source software, its advantages over proprietary software, and how this applies to WordPress. The workshop also explains the differences between free and Open-source software and highlights the different types of software licenses. </p>\n\n\n\n<h3>Want to learn more about Free and Open-source software? Participate in an Introduction to Open-source workshop!</h3>\n\n\n\n<p>There are four ways you can participate in an Introduction to Open-source workshop! </p>\n\n\n\n<ol><li>You can attend the Introduction to WordPress workshop from the comfort of your home! Learn WordPress now features an <a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\">Introduction to Open-source video workshop</a> that you can watch at your convenience. </li><li>Community members can also now host or participate in <a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\">Introduction to Open-source workshop</a> discussion groups in the <a href=\"https://www.meetup.com/learn-wordpress-discussions/\">Learn WordPress meetup group</a> for a global audience. Sign-ups are now open for the following two discussion groups:</li></ol>\n\n\n\n<ul><li><a href=\"https://www.meetup.com/learn-wordpress-discussions/events/276520738/\">Thursday, February 25, 2021, at 4:00 PM UTC</a></li><li><a href=\"https://www.meetup.com/learn-wordpress-discussions/events/276536997/\">Tuesday, March 2, 2021, at 10:00 AM UTC</a></li></ul>\n\n\n\n<p><em>If you would like to host an Introduction to Open-source discussion group for a global audience, please </em><a href=\"https://learn.wordpress.org/discussion-groups/\"><em>apply to become a discussion group </em></a><em>facilitator.</em> </p>\n\n\n\n<ol start=\"3\"><li>WordPress Meetup groups worldwide are also encouraged to<a href=\"https://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\"> organize an Introduction to WordPress watch party + discussion group</a> (based on the Learn WordPress workshop on <a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\">Introduction to Open-source</a>) as part of their meetup (it does not need any prior approval). </li><li><a href=\"https://learn.wordpress.org/lesson-plan/what-is-open-source/\">Lesson plans</a> for the Introduction to Open-source workshops are available! Meetup group organizers can plan their live open-source workshop based on the lesson plans. </li></ol>\n\n\n\n<p>The WordPress Foundation invites community members across the world to join these open-source workshops and to organize workshops and discussion groups in their communities to help spread <a href=\"https://wordpressfoundation.org/philosophy/\">our mission</a> of serving the public good with the help of Open-source software.</p>\n\n\n\n<p class=\"has-background\">Meetup groups organizing Introduction to Open-source workshops will be featured on this website. All you need to do is to <a href=\"https://make.wordpress.org/community/contact/\">reach out to us</a> with a brief write-up about your workshop along with pictures, and we’ll publish them here! </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, 23 Feb 2021 12:58: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:12:\"Hari Shanker\";s: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:46:\"Matt: Invest Like the Best and Building Worlds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=53759\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://ma.tt/2021/02/invest-like-the-best-and-building-worlds/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1736:\"<a href=\"https://www.joincolossus.com/episodes/6786509/mullenweg-the-past-present-and-future-of-the-internet\"><img /></a>\n\n\n\n<p><a href=\"https://www.joincolossus.com/episodes/6786509/mullenweg-the-past-present-and-future-of-the-internet\">On a Founder’s Field Guide episode with Patrick O’Shaughnessy</a> we had an interesting conversation that covered a lot new ground, including an idea I’ve been playing around with on, as Patrick <a href=\"https://twitter.com/patrick_oshag/status/1360338056809754630\">put it</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The idea from <a href=\"https://twitter.com/photomatt\">@photomatt</a> that the best companies are those that build intricate worlds (in the same way that J. R. R. Tolkien came up with the elvish language) will always stick with me. </p></blockquote>\n\n\n\n<p>We also covered the pendulum of centralization and decentralization, current challenges facing the internet, and being a connoisseur of things overlooked. You can check out the episode on <a href=\"https://podcasts.apple.com/us/podcast/matt-mullenweg-past-present-future-internet-founders/id1154105909?i=1000508583385\">Apple</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9pbnZlc3RsaWtldGhlYmVzdC5saWJzeW4uY29tL3Jzcw/episode/ZGI0MjlkYjgtMDUwYy00NDIwLTkwODUtZjVlZTgwNTFkZDIx?hl=en&ved=2ahUKEwjj_KuQnf_uAhWbWM0KHYJUCW4QieUEegQICBAL&ep=6\">Google</a>, <a href=\"https://open.spotify.com/episode/7xwHc7ZUvwJmSUNUssRi2M?si=XSqGqlhjQcOZkL33b8QzpQ\">Spotify</a>, <a href=\"https://overcast.fm/+Lzu0ZSQ_M\">Overcast</a>, and <a href=\"https://pca.st/o8cpe4i8\">Pocket Casts</a>.</p>\n\n\n\n<p>I’ve been impressed by the audience of this podcast, a lot of people I admire reached out after this episode.</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, 23 Feb 2021 05:10: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: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:73:\"WPTavern: Native Lazy Loading Support for iframes Coming To WordPress 5.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112383\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/native-lazy-loading-support-for-iframes-coming-to-wordpress-5-7?utm_source=rss&utm_medium=rss&utm_campaign=native-lazy-loading-support-for-iframes-coming-to-wordpress-5-7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5031:\"<p class=\"has-drop-cap\">Felix Arntz, a WordPress core committer and developer programs engineer at Google, announced upcoming support for <a href=\"https://make.wordpress.org/core/2021/02/19/lazy-loading-iframes-in-5-7/\">lazy loading iframes</a>. The feature is included in the latest WordPress 5.7 beta and will officially ship next month to the larger community.</p>\n\n\n\n<p>WordPress has supported <a href=\"https://wptavern.com/native-lazy-loading-support-coming-to-wordpress\">lazy loading for images</a> since version 5.5. However, support for iframes was not included in the initial feature set. Browser support for iframes was widespread at the time. However, it had not yet been formalized as part of the HTML Living Standard. Soon thereafter, it was <a href=\"https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-loading\">added to the HTML spec</a>, and discussion began anew for <a href=\"https://core.trac.wordpress.org/ticket/50756\">adding support</a> into WordPress.</p>\n\n\n\n<p>Unlike images, many users are likely unaware that they are using iframes. The primary use case for iframes is with embed blocks or the auto-embed system for users who are on the classic editor. For example, whenever a user adds a YouTube video to their blog post, the underlying code outputs an iframe.</p>\n\n\n\n<img />Source code of YouTube embed shows iframe.\n\n\n\n<p>These iframes add weight to the page size and hamper loading time.</p>\n\n\n\n<p>The opposite of lazy loading is eager loading. This is the default on the web, which loads all resources in bulk. This also often leads to slow-loading webpages when they contain many images or iframes. Lazy loading only loads the image and iframe sources when they appear in a site visitor’s viewport. This speeds up the initial load time of pages.</p>\n\n\n\n<p>WordPress will only add the <code>loading=\"lazy\"</code> attribute if an explicit width and height are set for the iframe. This is to avoid the page-shifting effect that happens when the iframe comes into view. Arntz wrote about this effect extensively when he <a href=\"https://make.wordpress.org/core/2020/07/14/lazy-loading-images-in-5-5/\">announced support for image lazy loading</a>. The same issue applies to iframes.</p>\n\n\n\n<p>“A common user experience problem in modern websites is so-called layout shifting, often caused by slow-loading media resources like images,” he wrote. “By default, only after an image is loaded, the browser can layout the page correctly, which results in the content e.g. below the image to shift. This issue can be easily resolved by providing <code>width</code> and <code>height</code> attributes on <code>img</code> tags, as the browser will use them to determine the aspect ratio of the image so that it can infer the page layout ahead of actually loading the image.”</p>\n\n\n\n<p>There are cases where WordPress will not add the loading attribute, even for oEmbed providers that it supports. The iframe content is not supplied by WordPress. The third-party providers create the HTML and send it back to the individual WordPress site. It is up to those third parties to follow best practices for adding width and height attributes.</p>\n\n\n\n<p>“Since WordPress cannot guess the dimensions of the embedded resource, the <code>loading=\"lazy\"</code> attribute will only be added if the oEmbed <code>iframe</code> tag comes with both dimension attributes present,” wrote Arntz.</p>\n\n\n\n<p>Currently, the filter applies to the post content, excerpt, and text widgets. Perhaps WordPress will extend this to comment text one day.</p>\n\n\n\n<h2>Potential Problems With Ads</h2>\n\n\n\n<p class=\"has-drop-cap\">MaAnna Stephenson, the owner of BlogAid, <a href=\"https://make.wordpress.org/core/2021/02/19/lazy-loading-iframes-in-5-7/#comment-40740\">brought up a concern</a> for users who display ads on their site. There may be scenarios where lazy loading is banned in advertising terms or has a technical conflict.</p>\n\n\n\n<p>“Has this been tested with folks who run ads on their site using an ad agency like Mediavine and AdThrive?” she asked. “They cannot have iframes lazy loaded, as the ads use iframes and they have their own lazy load mechanism for delivery.”</p>\n\n\n\n<p>The problem is that there is no ideal way to exclude every advertising service and to distinguish them from other types of iframes. From a technical standpoint, it needs to be an all-or-nothing feature.</p>\n\n\n\n<p>Handling ads falls squarely into plugin territory. Arntz covered such use cases in the post. Developers can disable lazy loading for iframes wholesale or target specific iframes with basic PHP. It would only take a few lines of code to build a plugin for specific ad services.</p>\n\n\n\n<p>Jeff Starr also has a plugin for disabling lazy loading altogether named <a href=\"https://wordpress.org/plugins/disable-lazy-loading/\">Disable Lazy Load</a>. That could serve as a stopgap solution until something more specific to users’ needs comes along.</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, 22 Feb 2021 22:44:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: WordPress 5.6.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=9764\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/02/wordpress-5-6-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:5042:\"<p>WordPress 5.6.2 is now available!</p>\n\n\n\n<p>This maintenance release includes <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.6.2&group=component&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">5 bug fixes</a>. These bugs affect WordPress version 5.6.1, so you’ll want to upgrade.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.6.2.zip\">download WordPress 5.6.2 directly</a>, or visit the<strong> Dashboard → Updates</strong> screen and click <strong>Update Now</strong>. If your sites support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>WordPress 5.6.2 is a small maintenance release focused on fixing user-facing issues discovered in 5.6.1. The next major release will be <a href=\"https://make.wordpress.org/core/5-7/\">version 5.7</a>, currently scheduled for release on March 9, 2021.</p>\n\n\n\n<p>To see a full list of changes, you can browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.6.2&group=component&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">list on Trac</a>, read the <a href=\"https://make.wordpress.org/core/2021/02/17/wordpress-5-6-2-rc1/\">5.6.2 RC1</a> post, or visit the <a href=\"https://wordpress.org/support/wordpress-version/version-5-6-2/\">5.6.2 documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.6.2 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>desrosj</a>. Special props to <a href=\"https://profiles.wordpress.org/isabel_brison/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>isabel_brison</a> and <a href=\"https://profiles.wordpress.org/talldanwp/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>talldanwp</a> for helping to prepare the block editor related fixes, and <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a> and <a href=\"https://profiles.wordpress.org/sergeybiryukov/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sergeybiryukov</a> for helping with other release related tasks.</p>\n\n\n\n<p>Props to everyone who helped make WordPress 5.6.2 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André Maneiro</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bartosz777/\">bartosz777</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dbtedg/\">dbtedg</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/hmabpera/\">hmabpera</a>, <a href=\"https://profiles.wordpress.org/ibiza69/\">ibiza69</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/viablethought/\">Jason Ryan</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/hwk-fr/\">Konrad Chmielewski</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/magnuswebdesign/\">magnuswebdesign</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/roger995/\">roger995</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/tonysandwich/\">tonysandwich</a>, <a href=\"https://profiles.wordpress.org/worldedu/\">worldedu</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</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, 22 Feb 2021 15:35:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:61:\"WordPress.org blog: Reflecting on Gutenberg’s 100th 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=9750\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2021/02/reflecting-on-gutenbergs-100th-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:3693:\"<div class=\"juxtapose\"><img id=\"9751\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/02/gutenberg_past_3.png?resize=632%2C336&ssl=1\" alt=\"\" width=\"632\" height=\"336\" class=\"image-compare__image-before\" /><img id=\"9752\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/02/gutenberg_today_4.png?resize=632%2C336&ssl=1\" alt=\"\" width=\"632\" height=\"336\" class=\"image-compare__image-after\" /></div>1.0 to 10.0\n\n\n\n<p>Gutenberg 10.0 released this week, February 17, 2021, marking the 100th release of the Gutenberg plugin; the 100th release of a journey that started more than four years ago when Matt announced the project at WordCamp US 2016. </p>\n\n\n\n<h2>Where We Started</h2>\n\n\n\n<p>The past four years have not always been an easy journey. Shipping something this impactful is not easy, and there was precedent for keeping the editor as it was: WordPress had already tried to replace TinyMCE a couple of times already. What would be different this time around? The worry was “not much” and initially, very few people actively joined the project.</p>\n\n\n\n<p>Six months later came WordCamp Europe 2017 and the first release of the plugin. The editor was nowhere close to being usable, but it “clicked” for some. The reactions to <a href=\"https://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/\">the presentation</a> were hopeful, but afterward, there was a lot of pushback.</p>\n\n\n\n<p>Gutenberg was (and is) an audacious project. With a project this big it attracted a lot of attention, and it became difficult to discern constructive debate from mere opposition. We each come with our context, and some people had a fixed idea about what they wanted for the project. Some wanted to reuse an existing page builder, others wanted to revive the Fields API project, some wanted it to be front-end-first, others wanted it just to replace the classic editor’s content area, some wanted it to be in Vue.JS, others wanted no change at all. With a product used by 40% of the web, you hope to find consensus, and when compromises have to be made, it can be difficult for those involved to avoid feeling that their voice is being ignored.</p>\n\n\n\n<p>We have also made quite a few mistakes: stability wasn’t great in some releases, performance suffered in others, and accessibility as well. But we kept pushing forward, using feedback to improve the editor and the project in all aspects until its first inclusion in WordPress 5.0, and we’re still working to improve it today.</p>\n\n\n\n<h2>Where We Are</h2>\n\n\n\n<p>It’s a delight to see some people who strongly disagreed with the initial vision or approach to Gutenberg gradually come to enjoy using the editor and join the project to carry on its vision. Others might still not like it; some won’t ever use it. One thing is certain; we’ll continue doing our best to push forward, improve what’s already shipped, and ship new exciting features. We’ll continue making mistakes and hopefully continue learning from them.</p>\n\n\n\n<p>Wednesday marked the 100th release of Gutenberg, and while that looks remarkable on the outside, the release itself holds what all the other releases did. It holds improvements to the existing features, it fixes bugs that users reported, adds new features, and it highlights experiments with new ideas.</p>\n\n\n\n<p>What is remarkable about the release is the people. The ones who were with us from the start, the ones who were with us but left, the ones who joined in our journey, everyone who helped along the way, everyone who provided feedback, everyone who got their hands dirty, and everyone who tried to use this editor, extend it and provide ideas.</p>\n\n\n\n<p>Thank you all.</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, 19 Feb 2021 18:34:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Riad Benguella\";s: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:113:\"WPTavern: Taking on the Major Players, Plausible Analytics Offers an Alternative, Privacy-Conscious Stats Service\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112168\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:267:\"https://wptavern.com/taking-on-the-major-players-plausible-analytics-offers-an-alternative-privacy-conscious-stats-service?utm_source=rss&utm_medium=rss&utm_campaign=taking-on-the-major-players-plausible-analytics-offers-an-alternative-privacy-conscious-stats-service\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8061:\"<p class=\"has-drop-cap\">Plausible Analytics is not new on the scene. The two-person, EU-based team behind the company has been trying to carve its slice of the analytics pie against players like Google Analytics and WordPress.com Stats for nearly two years.</p>\n\n\n\n<p>The self-funded and bootstrapped company is starting to gain a small foothold. It has been an uphill climb to get to usage on over 10,000 websites. Now, it is reaching out directly to the WordPress community with its <a href=\"https://wordpress.org/plugins/plausible-analytics/\">Plausible Analytics plugin</a>.</p>\n\n\n\n<p>“<a href=\"https://plausible.io/\">Plausible Analytics</a> is a simple, open-source, lightweight (< 1 KB), and privacy-friendly alternative to Google Analytics,” said co-founder Marko Saric. “We don’t use cookies or track any personal data, but we still aim to give you as a site owner interesting and useful insights so you can improve your efforts.”</p>\n\n\n\n<p>The company’s service is built on an open-source philosophy, possibly making it an ideal partner for WordPress. The source code for the analytics service is licensed under the AGPL version 3.0 and is <a href=\"https://github.com/plausible/analytics\">publicly available on GitHub</a>.</p>\n\n\n\n<p>Users have two options for running Plausible Analytics. The first route is to use the company’s cloud-based service, similar to other stats-based services. The other is to self-host the code.</p>\n\n\n\n<p>For the cloud service, there is a monthly, tier-based fee. Up to 10,000 pageviews runs $6 per month. Each level increases based on the number of views a site — you can also hook up multiple sites — receives. Users can knock 33% off the price by paying yearly, which puts the starting tier at $4 per month. Plausible also offers a 30-day free trial.</p>\n\n\n\n<p>“It’s definitely a challenge to go against free products and a product as dominant as Google Analytics, but it does feel like the times are changing,” said Saric. “An increasing number of people are becoming aware that free means that you may be paying with something else such as the data of your visitors in the case of Google Analytics.</p>\n\n\n\n<p>“With Plausible, you own your site data. We don’t share it with any third parties, and we don’t use it for any other purpose. As we don’t make money by selling your data, we need to charge a subscription fee to pay our costs and salaries so we can continue working on the product. We have tried to keep the prices as fair and affordable as possible starting at $4/month. We do have a free as in beer self-hosted version too for those who like to manage their own server infrastructure.”</p>\n\n\n\n<p>For the self-hosted version, which might appeal to the DIY crowd in the WordPress world, Plausible is designed to run via Docker. Saric said you should have a basic understanding of the command-line and networking. The server must have a CPU with x86_64 architecture and support for SSE 4.2 instructions.</p>\n\n\n\n<p>“Everything else really depends on how popular your site is and how much traffic you get,” said Saric. “But you should be able to run Plausible for a site that gets tens of thousands of monthly visitors even on the lowest Digital Ocean droplet.”</p>\n\n\n\n<p>As of the latest plugin release, self-hosted support is built directly into it too.</p>\n\n\n\n<h2>How Plausible Analytics Works</h2>\n\n\n\n<img />Realtime stats from Plausible Analytics.\n\n\n\n<p class=\"has-drop-cap\">The service is much like any other analytics product. You sign up. The site gives you a JavaScript snippet, which you place in your site’s header. Of course, this is automatically taken care of via the plugin.</p>\n\n\n\n<p>The service feels much like a stepping stone between what you might get between WordPress.com Stats and Google Analytics. It is a middle ground that shows promise for a young product. However, the interface feels easier to navigate and make sense of than either service. Plausible has plenty of room for growth, which makes it promising to see what the team has accomplished at this stage.</p>\n\n\n\n<p>End-users can enjoy the typical stats they are accustomed to seeing and break them down by time frame. Referrer, page, country, and device data are all there. Users can also set up goals, get email reports, and hook up to the Google Search Console.</p>\n\n\n\n<p>The downside to the Plausible Analytics WordPress plugin is that it is a bit bare-bones at the moment. It is merely a settings screen and integration layer between the site and service.</p>\n\n\n\n<img />Plugin settings screen.\n\n\n\n<p>It is missing the make-or-break feature of a built-in analytics page. Many users are accustomed to accessing their stats directly from within WordPress.</p>\n\n\n\n<p>“Yes, that’s the main thing we want to fix with the WordPress plugin,” said Saric. “We’ve introduced several features to make the plugin useful for WordPress sites, such as excluding admin users from being counted by default, the option to track 404 error pages, and clicks on external links. We also have an easy way to run our script as a first-party connection from your subdomain, so you get more accurate stats compared to Google Analytics which is blocked by many browsers and extensions.”</p>\n\n\n\n<p>The team is currently working on an API for Plausible and on an embedded mode. Before introducing stats into the WordPress UI, they must complete these features.</p>\n\n\n\n<h2>Privacy-First Solution</h2>\n\n\n\n<p class=\"has-drop-cap\">Website owners and visitors are becoming much more privacy-conscious than in years past. In light of the GDPR and related legislation from around the world, companies like Plausible Analytics must navigate this new landscape while still providing the data that users need.</p>\n\n\n\n<p>“Plausible was built as a response to GDPR, other privacy regulations, and cultural changes over the last few years,” said Saric. “Our mission is to reduce corporate surveillance by providing an alternative web analytics tool which doesn’t come from the ad-tech world.”</p>\n\n\n\n<p>Plausible Analytics does not track individuals, and its data is aggregate-only said Saric. The service also does not rely on cookies or local storage, and there is no cross-site or cross-device tracking.</p>\n\n\n\n<p>“We minimize any data collection in general, and whatever we do track is kept fully secured, encrypted, and hosted on a server in the European Union to ensure it is being covered by the strict laws on data privacy,” he said. “We’re very transparent in all the data we collect. We have an in-built feature that we recommend site owners use to open up their stats to the public and share it on their site to be fully transparent so their visitors and anyone else can view the data that they have access to.”</p>\n\n\n\n<h2>The Future of Plausible Analytics</h2>\n\n\n\n<p class=\"has-drop-cap\">The team recently introduced UTM tag support and custom events, allowing users to track whatever they want. Saric said that it is now possible to follow the full journey from an ad-click all the way to conversion on users’ sites.</p>\n\n\n\n<p>“The next step for the WordPress plugin is to add the default out-of-the-box integration with popular third-party plugins to support event tracking for things such as contact forms and eCommerce,” he said. “This will make it a more convenient experience for WordPress users so they can get started tracking custom events without any manual configuration being required.”</p>\n\n\n\n<p>All other features are done in the open on the project’s GitHub repository and its <a href=\"https://github.com/plausible/analytics/projects/1\">roadmap</a>. The plugin is also open to community involvement on a <a href=\"https://github.com/plausible/wordpress\">separate repo</a>. Saric credits community member and WordPress developer Mehul Gohil with help on the plugin.</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, 19 Feb 2021 17:03:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:65:\"WPTavern: WordPress.org Removes Fake Reviews for AccessiBe Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112241\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:173:\"https://wptavern.com/wordpress-org-removes-fake-reviews-for-acessibe-plugin?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-org-removes-fake-reviews-for-acessibe-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4672:\"<p>After noticing suspicious review activity for the <a href=\"https://wordpress.org/plugins/accessibe/\">AccessiBe</a> plugin, accessibility consultant Joe Dolson <a href=\"https://www.joedolson.com/2021/02/accessibe-the-fake-wordpress-plug-in-reviews/\">reported</a> the fake reviews to WordPress.org’s plugin team. The reviews were removed in under 48 hours, thanks to Dolson’s detailed research.</p>\n\n\n\n<p>At the time of reporting, Dolson found 31 five-star reviews, 2 four-star reviews, and 2 one-star reviews. After putting these into a spreadsheet, he found certain correlations among the first 11 five-star reviews:</p>\n\n\n\n<ol><li>“<em>All eleven user accounts I viewed had a common pattern of registration and use: between zero and 3 support topics raised and 4-7 reviews over the last 18 months.</em></li><li>“<em>Every one of these eleven accounts had at least one point of overlap with another user in that group. That is, for each plug-in or theme interacted with by one of the accounts, at least one of the other accounts also interacted with that plug-in or theme.</em></li><li>“<em>Multiple accounts had submitted one-star reviews on another plug-in, and in a quick assessment of other one-star reviews on that plug-in, I quickly found another account that had also submitted a five-star review on AccessiBe.</em></li></ol>\n\n\n\n<p>Approximately 33 reviews were removed from the AccessiBe plugin’s page after the report. Plugin team member Mika Epstein <a href=\"https://twitter.com/Ipstenu/status/1362218304262180868\">said</a> that the team “passes the reports to a volunteer who is amazing at hunting down VPNs and IPs for that.” She also recognized Dolson’s legwork and reporting as being instrumental in this particular case.</p>\n\n\n\n<p>Dolson allowed me to view his spreadsheet, where he logged URLs for each suspected fake review, along with dates and reviews left on other plugins. These were not saved to the Internet Archive, but Dolson said they were all “pretty generic,” and that each one was a one-sentence review. The user profiles still appear to be there but do not have any activity listed.</p>\n\n\n\n<p>“As a WordPress plugin author myself, I find the investment in falsifying positive reviews irritating,” Dolson said. “What some of us work for, they are simply buying – the appearance of a good product without the labor of winning customer opinion. </p>\n\n\n\n<p>“I found the evidence of a hatchet job conducted systematically against another plugin chilling, however.”</p>\n\n\n\n<p>The AccessiBe plugin is active on approximately 3,000 sites. Accessibility advocates have long held a certain amount of animosity towards the way its creators market the plugin as a quick fix solution, claiming it helps “mitigate the risk of lawsuits.” AccessiBe also has a well-documented history of <a href=\"https://adrianroselli.com/2020/06/accessibe-will-get-you-sued.html#Paid\">paying for positive press</a>. Dolson and others deeply involved in WordPress accessibility keep tabs on the plugin, which is how he came across the suspicious activity. </p>\n\n\n\n<p>Soliciting paid or fake reviews is not a new infraction, and it has been explicitly forbidden in the directory’s <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\">guidelines</a> for years. This falls under guideline #9<em>: Developers and their plugins must not do anything illegal, dishonest, or morally offensive</em>, which includes “<em>Creating accounts to generate fake reviews or support tickets (i.e. sockpuppeting)</em>.”</p>\n\n\n\n<p>Fake and paid reviews are a blight on any marketplace, and pop up now and then on the theme and plugin directories due to the power of WordPress.org as a distributions channel for freemium products. It makes it more difficult for the consumer to get an accurate understanding of the quality of the the product, but it’s not always easy to identify who commissioned the fake reviews.</p>\n\n\n\n<p>Any user can help ensure the plugin directory has fair and honest reviews by flagging those that look suspicious. In the sidebar of individual review posts, logged-in users can flag a post for consideration. WordPress.org doesn’t often announce when it takes action to remove reviews but should confirm having received the report. In a rare case like this, Dolson’s <a href=\"https://www.joedolson.com/2021/02/accessibe-the-fake-wordpress-plug-in-reviews/\">writeup</a> gives the wider community a glimpse into what it takes to track down fake reviews and get them cleaned up.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Feb 2021 23:10:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:89:\"WPTavern: GermanThemes Releases Block-Ready GT Basic WordPress Theme With Custom Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112276\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"https://wptavern.com/germanthemes-releases-block-ready-gt-basic-wordpress-theme-with-custom-patterns?utm_source=rss&utm_medium=rss&utm_campaign=germanthemes-releases-block-ready-gt-basic-wordpress-theme-with-custom-patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5100:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Today, <a href=\"https://wordpress.org/themes/gt-basic/\">GT Basic</a> became the second theme from GermanThemes to go live in the WordPress theme directory. Like the company’s previous theme, <a href=\"https://wordpress.org/themes/gt-ambition/\">GT Ambition</a>, it is built around the block editor. It also introduces several custom block patterns.</p>\n\n\n\n<p>The theme will not knock anyone’s socks off with its artistic merit. GT Basic is very much <em>business in the front and business in the back</em>, so it will not immediately appeal to everyone. However, it has everything you need and none of the things you don’t for setting up a WordPress website.</p>\n\n\n\n<p>Out of the box, it is an architecturally-sound business theme. Its layout, structure, and typography make for a well-rounded design applicable to nearly any site. With a few modifications via the customizer, users can personalize it.</p>\n\n\n\n<p>Its open-canvas feel gives ample room for using the entire content area for building custom page layouts, which is what business site owners should be looking for. The theme’s typography is on-point, creating a comfortable reading atmosphere for long-form content. It could serve well for a general blogging theme.</p>\n\n\n\n<p>The theme is ripe for the possibility of child themes. These types of well-designed themes from a purely structural standpoint leave plenty of room for customization. GT Basic has just the right amount of visual options for users to put their unique spins on it. However, there is a lot of room for design-savvy people to do more.</p>\n\n\n\n<h2>About the Theme</h2>\n\n\n\n<p class=\"has-drop-cap\">GT Basic is, well, a <em>basic</em> theme. It is kind of there in the name. However, it includes enough options to make it more visually palatable. A few color and font changes could spice things up — the theme offers a range of system and Google font-family choices.</p>\n\n\n\n<img />Modifying the theme’s typography and colors.\n\n\n\n<p>The theme also manages to not make a complete and utter mess of the customizer. GT Basic neatly tucks all of its options under a custom panel named Theme Options. Even its “theme links” section is in there. It is refreshing to see a theme not regurgitate pro links and single-use sections across the entire customizer controls frame. You will rarely see me use emoji, but the theme author deserves one on this point alone: 👏.</p>\n\n\n\n<p>Where the theme gets things right is its support of the block editor. It does not try to do too much, relying on the core block styles as a foundation. It then tacks on a mere 46kb of additional CSS, unminifed, which is almost unheard of in today’s theme market.</p>\n\n\n\n<img />Block design in the <a href=\"https://demo.germanthemes.de/?demo=gt-basic-bakery\">cafe demo</a> for the theme.\n\n\n\n<p>GT Basic is one of the few themes I have seen that adds a custom block editor sidebar panel. Instead of going the page template route, it adds a full-width option, a method I have preferred over the years. It also has settings for users to disable the title and remove white space at the end of the content area.</p>\n\n\n\n<p>The biggest downside to the theme is that the blog/posts page and archives display the full post instead of excerpts. It is one of my pet-peeves with theme design. Users should at least have the option to switch to an excerpt view.</p>\n\n\n\n<p>The other cringe-worthy feature is the automatic output of the featured image alongside the full post content. This creates the dreaded double featured-image effect if the user also uses the same image within their post content. Again, a simple option to disable this would suffice.</p>\n\n\n\n<h2>Block Patterns</h2>\n\n\n\n<img />Inserting GT Basic’s portfolio block pattern.\n\n\n\n<p class=\"has-drop-cap\">I am a sucker for block patterns. Throw a few in any theme, and I will install it and see what I can build. The pattern system remains one of my favorite features of WordPress. It is also one of the areas where business themes can make their mark.</p>\n\n\n\n<p>GT Basic includes four patterns for users:</p>\n\n\n\n<ul><li>Hero Section</li><li>Services</li><li>Call to Action</li><li>Portfolio</li></ul>\n\n\n\n<p>It does not take much to create unique layouts by mixing and matching two or more of them.</p>\n\n\n\n<p>Thomas Weichselbaumer, the founder of GermanThemes, <a href=\"https://germanthemes.de/en/2020/08/28/introducing-block-patterns-in-our-themes/\">announced the adoption of block patterns</a> in August 2020. He introduced block patterns across GermanThemes’ product line shortly after WordPress 5.5 introduced the feature.</p>\n\n\n\n<p>GT Basic’s patterns would be more appealing if they included imagery and a spectrum of colors. The pattern layouts are designed well, but they lack the visual <em>umph</em> that inspires users. This is a missed opportunity to showcase how useful the patterns are. However, the theme author has <a href=\"https://germanthemes.de/themes/gt-basic/\">built a few demos</a> that could serve as inspiration.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Feb 2021 22:52:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:87:\"WPTavern: Ask the Bartender: Frustrations and Finding the Right WordPress Block 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:30:\"https://wptavern.com/?p=112071\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:217:\"https://wptavern.com/ask-the-bartender-frustrations-and-finding-the-right-wordpress-block-plugins?utm_source=rss&utm_medium=rss&utm_campaign=ask-the-bartender-frustrations-and-finding-the-right-wordpress-block-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:9141:\"<blockquote class=\"wp-block-quote\"><p>Hello. I always supported the idea of a WordPress block editor as a whole, but lately, I’m a bit frustrated in that there are some blocks I need with urgency to work on a (non-visitor editable) wiki-like site (mostly a Tabs block, a Countdown block, an Accordion/Toggle block, a Table of contents block and a Footnotes block) and have not had luck finding appropriate plugins. I can name a long list of the specific problems I have with the ones available right now…</p><p>Andrés</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">Andrés’ question spanned another 400 words or so. The following summarizes the problems he has run into:</p>\n\n\n\n<ul><li>Block collection plugins cover some but not all use cases.</li><li>Seemingly suitable blocks have too few or too many options.</li><li>Few blocks can be converted to other block types.</li><li>Many block plugins have not been updated in a while, causing fear of abandonment.</li><li>No way to batch convert blocks if a better plugin is found.</li><li>Need a footnotes block.</li></ul>\n\n\n\n<p>I do not necessarily see most of these as block-related problems. It can be tough to find that sweet spot, fine-tuning your WordPress site with <em>just</em> the right tools.</p>\n\n\n\n<p>When I first began using WordPress in 2005, I hit these same sorts of problems. And they were problems throughout my career as a developer. I would find a plugin that would do almost what I wanted. I would find another that would add way too many unnecessary features. Often, nothing seemed to exist that was perfect for my needs. This was the sole reason I jumped into development — <em>if you want something done right, do it yourself</em>. I wanted my WordPress site to work according to my own strict specifications. No one else would do it for me, and I was a starving college student who could not afford to hire a developer. It left me little choice other than putting in the time and effort to make it happen.</p>\n\n\n\n<p>While I am not suggesting that you must go down the path that I once did, it is always an option worth exploring. Many great developers began with this same type of frustration. They had a problem and needed a fix for it.</p>\n\n\n\n<p>Open-source is about giving and taking. When you cannot pay it forward in terms of code, feedback is always welcome. That is one reason I like to highlight these questions. Even when I do not have the answer, maybe someone else will. Perhaps your requests will spark an idea for one of the many developers who read WP Tavern.</p>\n\n\n\n<p>I definitely do not have all the answers to this laundry-list of questions. It is a broad subject that will take a community to solve.</p>\n\n\n\n<p>Many of your issues might be handled by nothing more than having a conversation with the developers behind the block collection plugins you are using. Step one is to start a dialogue with them. I bet most are willing to listen to your ideas on how they can improve their products as long as you address them constructively.</p>\n\n\n\n<h2>Try One-Off Block plugins</h2>\n\n\n\n<img />Installing a single-use block from the editor.\n\n\n\n<p class=\"has-drop-cap\">The future of using blocks is going to be far more about finding and installing individual blocks rather than collections. WordPress has done its users a disservice by not actively promoting these one-off block plugins. We are over two years into the block editor and still do not have a <a href=\"https://wptavern.com/version-1-prototype-of-the-wordpress-admin-block-directory-announced\">block directory and management screen</a> built directly into the software. Sure, users can search via the block inserter directly from the editor, but it does not replace a full management experience.</p>\n\n\n\n<p>This missing feature has helped spur massive library plugins, which have become the <em>de facto</em> method that most users find new blocks. Far too many plugin developers are following the Jetpack model of packaging them all together. Without full block management baked into core, this trend will only continue. At this point, it may be hard to break from the mold.</p>\n\n\n\n<p>However, you can still find a listing of available single-use blocks from the <a href=\"https://wordpress.org/plugins/browse/block/\">block directory on WordPress.org</a>, at least the ones that plugin authors have appropriately tagged.</p>\n\n\n\n<img />WordPress block directory.\n\n\n\n<p>I recommend testing these blocks before diving into a library-type plugin. There is always the risk of developer abandonment — there is nothing you can really do about that when it comes to any type of plugin other than supporting the authors.</p>\n\n\n\n<p>The block directory’s problem is that it has only a little over 120 blocks — <em>like I said, WordPress has not done enough to promote it</em>. This means there is not enough competition to drive innovation and bring clear winners to the forefront. Some of the blocks are hit-or-miss projects. I know this does not breed confidence, but I can say from experience that I always loved user feedback as a developer. It is the lifeblood of any project. Give the plugins a test. Even if you do not like or use them, send your feedback over to the developers.</p>\n\n\n\n<p>The following is a short, not comprehensive, list of some single-use blocks that may be appropriate for you:</p>\n\n\n\n<ul><li><strong>Table of Contents:</strong><br />– <a href=\"https://wordpress.org/plugins/table-of-contents-block/\">Table of Contents Block</a> by WPDeveloper<br />– <a href=\"https://wordpress.org/plugins/table-of-contents/\">Table of Contents</a> by Achal Jain</li><li><strong>Countdown:</strong><br />– <a href=\"https://wordpress.org/plugins/wp-countdown-block/\">WP Countdown Block</a> by Achal Jain<br />– <a href=\"https://wordpress.org/plugins/countdown-block/\">Countdown Block</a> by WPDeveloper</li><li><strong>Accordion/Toggle:</strong><br />– <a href=\"https://wordpress.org/plugins/accordion-blocks/\">Accordion Blocks</a> by Phil Buchanan<br />– <a href=\"https://wordpress.org/plugins/accordion-toggle/\">Accordion Toggle</a> by WPDeveloper<br />– <a href=\"https://wordpress.org/plugins/details-summary-block\">Details Summary Block</a> by Denis Žoljom<br />– <a href=\"https://wordpress.org/plugins/hot-accordion/\">Hot Accordion</a> by HotThemes</li></ul>\n\n\n\n<h2>Footnotes Block Plugin</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">I feel your frustration about footnotes. WordPress lacks this feature that any decent desktop-level writing software has. From past experience earning my B.A. in English, footnotes were a core part of the experience. It baffles me that the most-used CMS in the world has yet to add even a basic version of footnotes to its toolset.</p>\n\n\n\n<p>Fortunately, other like-minded people want to see footnotes in WordPress. Ella van Durpe has a <a href=\"https://github.com/WordPress/gutenberg/pull/28261\">draft of a footnotes feature</a> on the Gutenberg repository. This is an ongoing, <a href=\"https://github.com/WordPress/gutenberg/issues/1890\">three-year discussion</a>. There is no reason to believe it will be baked into core soon, but it is reason enough to be hopeful.</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/academic-bloggers-toolkit/\">Academic Blogger’s Toolkit</a> plugin supports footnotes. It has not been updated in a year and could be overkill for what you need. However, it would not hurt to give it a test run.</p>\n\n\n\n<p>Several <a href=\"https://wordpress.org/plugins/search/footnotes/\">footnote plugins in the directory</a> should work fine with the block editor. The standard method employed by many of them uses a <code>((double-parentheses))</code> to add footnotes from within the editor. Those notes are then parsed before being displayed on the front end.</p>\n\n\n\n<p>That is not my style. I prefer the visual separation of the references and the footnotes in both the editor and the front end. The great thing about the block editor is that you can manually build footnotes without a plugin. Or, at least you can create <em>almost-footnotes</em>.</p>\n\n\n\n<p>Cathy Meder-Dempsey, a genealogist and blogger for Opening Doors in Brick Walls, has an <a href=\"https://openingdoorsinbrickwalls.wordpress.com/2020/10/23/adding-footnotes-to-your-wordpress-posts-using-block-editor/\">exhaustive tutorial</a> on manually adding references and a footnotes section with the block editor. It is not a perfect solution and works best when you have only a few footnotes. This is because the reference links jump to the overall footnotes section rather than the individual notes. It is a quick solution in a pinch.</p>\n\n\n\n<p class=\"is-style-highlight has-white-color has-blue-700-background-color has-text-color has-background text-white bg-blue-700\">This post is a part of the <a href=\"https://wptavern.com/tag/ask-the-bartender\">Ask the Bartender</a> series. If you have a question about WordPress, feel free to <a href=\"https://wptavern.com/contact-me/ask-the-bartender\">shoot it over.</a> Your question could be featured next.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Feb 2021 22:34:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:56:\"WPTavern: Gutenberg Plugin Marks 100th Release with 10.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:30:\"https://wptavern.com/?p=112179\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:157:\"https://wptavern.com/gutenberg-plugin-marks-100th-release-with-10-0?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-plugin-marks-100th-release-with-10-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:5374:\"<p><a href=\"https://make.wordpress.org/core/2021/02/17/whats-new-in-gutenberg-10-0-february/\">Gutenberg 10.0</a> was released today as the 100th iteration of the block editor since the project began four years ago. Although 10.0 may seem like a big number, it’s just another incremental step forward in terms of new features, improvements, and bug fixes. </p>\n\n\n\n<p>Version 10.0 introduces a new dynamic <a href=\"https://github.com/WordPress/gutenberg/pull/28265\">pages block</a> for building navigation menus. It can be added inside a Navigation block or used on its own.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Sometimes when you’re clicking around inside block editor content, it’s hard to select the parent block with nested blocks. This release makes the <a href=\"https://github.com/WordPress/gutenberg/pull/28598\">parent block selector visible</a> and offset in the block toolbar. An easier way to select the parent block will become even more important as the quote block is on track to <a href=\"https://github.com/WordPress/gutenberg/pull/25892\">get nesting support</a> with paragraph, heading, list, and code blocks allowed as children.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Version 10.0 adds a darker social links state for dark themes, brings block patterns to the inserter for template parts and other non-root level positions, and improves keyboard navigation in the block patterns inserter. The plugin also introduced dozens of improvements and new features to the experiments in progress for the site editor, full-site editing architecture and blocks, as well as the navigation and block-based widgets screens. </p>\n\n\n\n<p>Riad Benguella marked the 100th release milestone with a few reflections from his unique vantage point as a technical lead on the project. He commented on the friction and pushback that contributors had to navigate in Gutenberg’s earlier days:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>With all the attention that the project received, it became difficult to discern constructive debate from mere opposition. We each come with our own context, and some people had a fixed idea about what they wanted for the project. Some wanted to just reuse an existing page builder, others wanted to revive the Fields API project, some wanted it to be front-end-first, others wanted it to just replace the content area of the classic editor, some wanted it to be in Vue.JS, others wanted no change at all. With a product used by 40% of the web, we need to find consensus, and when we make compromises it can be so difficult for those involved to avoid the feeling that their voice is being ignored.</p></blockquote>\n\n\n\n<p>He admits that the project made a few mistakes along the way with sub-par stability on some releases, and performance and accessibility issues. In spite of all the difficulties contributors encountered, they have been able to win over many users who were initially not excited about the block editor.</p>\n\n\n\n<p>“It’s a delight to see some people who had very strongly disagreed with the initial vision or approach to Gutenberg gradually come to enjoy using the editor and join the project to carry on its vision,” Benguella said. “Others might still not like it, some won’t ever use it. One thing is certain though, we’ll continue doing our best to push forward, improve what’s already shipped and ship new exciting features; we’ll continue making mistakes and hopefully continue learning from them.”</p>\n\n\n\n<p>The block editor has opened up a whole new category of tools for people building WordPress sites, even before full-site editing makes its debut. In the comments of the release post, Gutenberg users mentioned the themes and plugins that have helped them ramp up into delivering sites built 100% with the block editor.</p>\n\n\n\n<p>“When I first looked at Gutenberg I hated it,” web developer John Brown said. “Now, two years on, do a mix of Gutenberg and Kadence Theme and blocks and you can build virtually anything.</p>\n\n\n\n<p>“The sites we have converted from other page builders to Gutenberg work just fine and we get great statistics on GTMetrix, Pingdom and Google Page Speeds.</p>\n\n\n\n<p>“I will say, you need to learn how to use it, but when you get your head around it, you can make anything that a client needs.”</p>\n\n\n\n<p>Another user who adopted the editor in the early stages said he has reached the point where he can build sites without having to use a lot of extra tools.</p>\n\n\n\n<p>“I started using Gutenberg at 2.0 and never looked back since then,” software engineer Orlando Alonzo said. “Now I’m starting to produce full sites with nothing more than GeneratePress Premium and Gutenberg.” </p>\n\n\n\n<p>Version 10.0 marches forward with the same pioneering experimentation in the full-site editing (FSE) project that has brought the editor to the stable state it’s in today. Contributors are aiming for an MVP for FSE in April, with version 1 in core in WordPress 5.8, expected June 2021. Check out the <a href=\"https://make.wordpress.org/core/2021/02/17/whats-new-in-gutenberg-10-0-february/\">10.0 release post</a> for the full details on FSE progress and other improvements to the editor.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Feb 2021 21:43:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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 7.2.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=317263\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/02/buddypress-7-2-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:921:\"<p>Immediately available is <a href=\"https://downloads.wordpress.org/plugin/buddypress.7.2.0.zip\">BuddyPress 7.2.0</a>. This maintenance release fixes six bugs mainly related to issues when the BP Nouveau Template Pack is used with the Twenty Twenty-One WordPress theme. For details on the changes, please read the <a href=\"https://codex.buddypress.org/releases/version-7-2-0/\">7.2.0 release notes</a>.</p>\n\n\n\n<p>Update to BuddyPress 7.2.0 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the WordPress.org plugin repository</a>.</p>\n\n\n\n<h2>Many thanks to 7.2.0 contributors <span class=\"dashicons dashicons-heart\"></span></h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/iamthewebb\">iamthewebb</a>, <a href=\"https://profiles.wordpress.org/vapvarun/\">vapvarun</a> & <a href=\"https://profiles.wordpress.org/imath/\">imath</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Feb 2021 20:01:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s: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:63:\"WPTavern: Phoenix, a Block-Based WordPress Theme With a Sidebar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112133\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/phoenix-a-block-based-wordpress-theme-with-a-sidebar?utm_source=rss&utm_medium=rss&utm_campaign=phoenix-a-block-based-wordpress-theme-with-a-sidebar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5013:\"<p class=\"has-drop-cap\">Earlier today, the <a href=\"https://github.com/WordPress/theme-experiments/pull/155\">Phoenix theme was merged</a> into the WordPress Theme Experiments repository on GitHub. Like all themes in the repo, it is not meant for use on a live site. It is a project to test new ideas for the upcoming Full Site Editing (FSE) system.</p>\n\n\n\n<p>Imran Sayed of Codeytek Academy created the theme and is hosting a <a href=\"https://phoenix.codeytek.com/\">live demo</a>. Those who want to give it a test drive can grab the <a href=\"https://github.com/WordPress/theme-experiments/tree/master/phoenix\">code from GitHub</a>.</p>\n\n\n\n<p>Until now, every block-based theme I have seen has been missing a left or right sidebar. I am a fan of the open-canvas format that focuses on content, hiding the often-frivolous widgets that only detract from the important bits. However, sidebars are sometimes useful and even necessary.</p>\n\n\n\n<p>When I refer to a “sidebar,” I am not talking about the dynamic sidebar system of widgets that we have all come to love or hate since WordPress 2.2. That system <a href=\"https://wptavern.com/gutenberg-9-3-provides-indicator-of-where-full-site-editing-is-going-a-future-without-widgets-and-customizer-screens\">no longer exists in the world of FSE</a>. The site editor merely has a concept of templates and template parts, which are containers for blocks. It is up to the theme author to give some default structure, even building template parts that work like sidebars.</p>\n\n\n\n<p>A sidebar in the Phoenix theme literally means a block area on the side of the page.</p>\n\n\n\n<p>It is such a simple idea, one that is nearly as old as blogs. It hardly seems something worth getting excited about, but I have been waiting a while to see a block-based theme with a sidebar. The feature further legitimatizes the path that WordPress is heading down. The greater theme development community needs to see these simple architectural ideas put into action. They need to see someone saying, “Hey, here’s how you do this simple thing you’ve been doing for a decade in this new system.”</p>\n\n\n\n<p>Phoenix only adds a sidebar on the front page, but this is a start.</p>\n\n\n\n<p>The theme is also more ambitious than some previous attempts by mixing static and dynamic features on the front page. Phoenix includes a header area with the standard site title and a nav menu. Below that, it adds a static hero section that users can customize.</p>\n\n\n\n<img />Front page hero section.\n\n\n\n<p>It then uses the Columns block to split the content and sidebar. On the left, the theme uses the Query block to list the latest posts. On the right, it adds a sidebar template part.</p>\n\n\n\n<img />Latest blog posts section next to sidebar.\n\n\n\n<p>The footer design is also bold in comparison to some other block-based themes so far. It has a full-width Cover block, which is followed by a group of columns, which is basically what a footer <em>sidebar</em> is.</p>\n\n\n\n<img />Large footer area with columns.\n\n\n\n<p>Again, these are basic concepts that theme authors have been doing for ages. The idea behind many of these experimental themes is to start testing how to make them a reality using blocks. By the time the site editor lands in WordPress, theme authors can build upon these initial techniques and create more complex layouts.</p>\n\n\n\n<p>This is especially the case with front-page design. If there is one area that has created roadblock upon roadblock when developing traditional themes, it has been the front page. Whether through custom options pages, the theme customizer, widgets, or a host of other solutions, nothing has stuck for well over a decade now. While the single post template is arguably the most important view on a WordPress website, it is the front page design that draws in the average user. It is also one of the biggest points of failure after users install a theme. That carefully-crafted front page in the demo looks nothing like what the users see on their own sites.</p>\n\n\n\n<p>Phoenix is a step in the right direction because it shows how to mix these basic elements. Because it is a block-based theme, end-users have instant visual feedback in the site editor if they want to customize it.</p>\n\n\n\n<p>The next step is for more themers to get involved in the Theme Experiments project. Start exploring more complex ideas and layouts. Use this moment to share knowledge and build upon the work that so few others are doing right now.</p>\n\n\n\n<p>Phoenix is by no means a perfect theme. The front end and the site editor are not a one-to-one match at this point. Everything that looks wrong with it in the editor highlights just how far we have left to go.</p>\n\n\n\n<p>I am carefully maintaining hope while being a realist about where FSE will be in 2021. This is a year for exploration. Perhaps we will have a few breakout themes that push the envelope toward the end of the year, but it all starts with experimental projects like Phoenix.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Feb 2021 23:07:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:55:\"WPTavern: Easy Digital Downloads 3.0 Now in Public Beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112130\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:155:\"https://wptavern.com/easy-digital-downloads-3-0-now-in-public-beta?utm_source=rss&utm_medium=rss&utm_campaign=easy-digital-downloads-3-0-now-in-public-beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2646:\"<p><a href=\"https://easydigitaldownloads.com/\">Easy Digital Downloads</a> (EDD) is coming up on a major milestone with version 3.0 in active development, a huge undertaking spanning nearly three years. The <a href=\"https://easydigitaldownloads.com/development/2021/02/16/edd-3-0-beta1/\">first beta</a> was released today with one of the most extensive and technically detailed beta testing guides I’ve seen for a major plugin update. </p>\n\n\n\n<p>Version 3.0 will migrate the bulk of EDD data out of WordPress core tables to custom database tables. During the lifespan of this nearly 10-year old plugin, practices have changed regarding the use of custom tables and the coming update will bring improvements to performance and data structures. Testers can <a href=\"https://github.com/easydigitaldownloads/easy-digital-downloads/releases/download/3.0-beta1/easy-digital-downloads.zip\">download it from GitHub</a> and go through the data migration process. The beta testing guide specifies a list of seven tables to check after migration to ensure there are no issues with data transfer or backwards compatibility.</p>\n\n\n\n<p>The release post noted that the order refund functionality is still in development and will not yet be ready for testing until the beta 2 release.</p>\n\n\n\n<p>EDD first came on the scene in 2012. Inspired by Jigoshop and WooCommerce’s successes with the “extensions marketplace” business model, EDD creator Pippin Williamson has <a href=\"https://wptavern.com/pippin-williamson-on-building-a-community-around-your-open-source-project\">prioritized extensibility</a> from the beginning. There are now more than 102 official extensions and themes, and hundreds more <a href=\"https://easydigitaldownloads.com/3rd-party-extensions/\">third-party extensions</a>. Anytime EDD core moves forward with major changes, the wide community of extensions is a critical consideration.</p>\n\n\n\n<p>For this reason, EDD is pursuing a strategy of releasing a series of updates to as many extensions as possible that contain compatibility with 3.0. The announcement lists eight extensions, including Stripe Gateway, Software Licensing, PDF Invoices, Commissions, and others which have been updated and can be used in testing.</p>\n\n\n\n<p>EDD is also encouraging third-party developers to check out the 3.0 code base and ensure compatibility ahead of the official release. WordPress freelancers and agencies who have clients using EDD will want to test out the 3.0 beta 1 ahead of time to find any concerns with data migration that would prevent their clients from having a smooth transition when the official release drops.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Feb 2021 23: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: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:40:\"WordPress.org blog: WordPress 5.7 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9727\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/02/wordpress-5-7-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4753:\"<p>WordPress 5.7 Beta 3 is now available for testing! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f5e3.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p><strong>This software is still in development,</strong> so it’s not recommended to run this version on a production site. Consider setting up a test site to play with it.</p>\n\n\n\n<p>You can test the WordPress 5.7 Beta 3 in two ways:</p>\n\n\n\n<ul><li>Install/activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the <code>Bleeding edge</code> channel and the <code>Beta/RC Only</code> stream)</li><li>Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.7-beta3.zip\">zip</a>).</li></ul>\n\n\n\n<p>The current target for final release is March 9, 2021. That’s just <strong>three weeks away</strong>, so your help is vital to making sure that the final release is as good as it can be.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-2/\">Beta 2</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F10%2F2021..02%2F17%2F2021&milestone=5.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">27</a> bugs have been fixed. Here is a summary of some of the included changes:</p>\n\n\n\n<ul><li>Adjusted color contrast on various admin buttons to improve accessibility and readability (<a href=\"https://core.trac.wordpress.org/ticket/52402\">#52402</a>)</li><li>Several fixes for the Twenty Twenty-One theme (<a href=\"https://core.trac.wordpress.org/ticket/52287\">#52287</a>, <a href=\"https://core.trac.wordpress.org/ticket/52377\">#52377</a>, <a href=\"https://core.trac.wordpress.org/ticket/52431\">#52431</a>, <a href=\"https://core.trac.wordpress.org/ticket/52500\">#52500</a>, <a href=\"https://wordpress.org/news/feed/#52502\">#5</a><a href=\"https://core.trac.wordpress.org/ticket/52502\">2</a><a href=\"https://wordpress.org/news/feed/#52502\">502</a>, <a href=\"https://core.trac.wordpress.org/ticket/52412\">#52412</a>)</li><li>Replaced editor typeface with system fonts to improve privacy and performance (<a href=\"https://wordpress.org/news/feed/#46169\">#46169</a>)</li><li>Added i18n support to <code>register_block_type_from_metadata</code> function (<a href=\"https://core.trac.wordpress.org/ticket/52301\">#52301</a>)</li><li>Media upload errors are now more accessible (<a href=\"https://core.trac.wordpress.org/ticket/47120\">#47120</a>)</li><li>New filter to modify how pagination links are rendered when using <code>paginate_links</code> function (<a href=\"https://core.trac.wordpress.org/ticket/44018\">#44018</a>)</li></ul>\n\n\n\n<h2><strong>How You Can Help</strong></h2>\n\n\n\n<p>Watch the Make WordPress Core blog for 5.7-related developer notes in the coming weeks, which will break down these and other changes in greater detail.</p>\n\n\n\n<p>So far, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=..02%2F16%2F2021&milestone=5.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">171 tickets in WordPress 5.7</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&status=reopened&changetime=..02%2F16%2F2021&type=enhancement&type=feature+request&milestone=5.7&group=component&col=id&col=summary&col=type&col=status&col=milestone&col=changetime&col=owner&col=priority&col=keywords&order=changetime\">64 new features and enhancements</a>, and more bug fixes are on the way.</p>\n\n\n\n<p><strong>Do some testing!</strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testing for bugs</a> is a vital part of polishing the release during the beta stage and a great way to contribute. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" /></p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> area in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report, file one on <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a> and <a href=\"https://profiles.wordpress.org/lukecarbis/\">@lukecarbis</a> for your peer revisions.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Finish line ahead<br />Defects in focus<br />We are almost there…</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Feb 2021 21:25: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:\"Ebonie Butler\";s: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:97:\"WPTavern: Video: Matt Mullenweg and Josepha Haden Chomphosy Join WordCamp India for Fireside 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112036\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:237:\"https://wptavern.com/video-matt-mullenweg-and-josepha-haden-chomphosy-join-wordcamp-india-for-fireside-chat?utm_source=rss&utm_medium=rss&utm_campaign=video-matt-mullenweg-and-josepha-haden-chomphosy-join-wordcamp-india-for-fireside-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4002:\"<p>If you are living in part of the world where the polar vortex has plunged the weather into record-cold temperatures, you might enjoy this fireside chat from <a href=\"https://india.wordcamp.org/2021/\">WordCamp India 2021</a>. The event was held online over the span of three weekends from Jan 30 to Feb 14. Matt Mullenweg and Josepha Haden Chomphosy joined organizers over the weekend for an invigorating conversation about India and the global WordPress community. </p>\n\n\n\n<p>One of the opening questions from the audience was about the growth of newsletter services like <a href=\"https://substack.com/\">Substack</a>, which seem no different from a WordPress-powered blog with emailing features. The audience asked how WordPress can help people who want to start their own newsletter service. </p>\n\n\n\n<p>Mullenweg said that although “pretty much everything is possible in WordPress,” some things require putting together many different plugins and might have a higher barrier to entry:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I think there’s two ways we can address that. One is by education. People can actually get through a lot steps if there is a good guide. A great guide around how to build something just like Substack on your WordPress blog where you own everything would be really valuable and popular. Second, when we make that guide we will probably see some steps that we could eliminate or smooth, friction points which we could make easier for people to get through. Whenever we see something like a Substack pop up on the market, I think it’s a great moment for reflection to see where can that educate us to where we can improve our own product, plugins, and educational material.</p></blockquote>\n\n\n\n<p>Mullenweg also shared that Automattic has just made “a pretty large investment” in <a href=\"https://titan.email/\">Titan</a>, a company based in India, which he said will be a big part of how WordPress.com offers email going forward.</p>\n\n\n\n<p>Josepha Haden Chomphosy gave an update on what’s next for in-person events, which may resume later in 2021 if things go well: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In the short term, the future of WordCamps is very careful. There’s an ongoing conversation about how we can bring everybody back together in a way that keeps us connected and provides all of that normal WordPress feeling but also is incredibly safe. It’s hard. There’s a lot of unknown stuff, but the success with the vaccinations we have seen so far is really heartening. Fingers crossed we can start allowing quite small in-person events starting in Q3 of 2021. </p></blockquote>\n\n\n\n<p>Haden Chomphosy also indicated that hybrid events may be here to stay, streaming to an online audience with captioning and translation available when possible, to make in-person events more accessible:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We can, with a little bit of pre-planning and with a little bit of intention, make sure that our events, even if they are in person, have an online component that helps to make sure the education that we’re trying to provide there gets to as many people as possible without having that barrier to entry of having to physically go to a place and pay your time to get there and pay your money to get there. I’m hoping that we see a little more consistent planning about that in our in person events so we can keep offering a more global mindset to our events overall.</p></blockquote>\n\n\n\n<p>She touched on the topic of training and education, noting that WordPress’ 0-101 level content is somewhat lacking. This critical “make or break” onboarding stage could be improved for many users.</p>\n\n\n\n<p>They also discussed the need for attracting a younger generation of contributors that WordPress veterans can mentor to infuse new life into the project. Check out the recording below.</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:\"Tue, 16 Feb 2021 03:11:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: Newspack Newsletters Now Live in the WordPress Plugin Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112065\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/newspack-newsletters-now-live-in-the-wordpress-plugin-directory?utm_source=rss&utm_medium=rss&utm_campaign=newspack-newsletters-now-live-in-the-wordpress-plugin-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6576:\"<p class=\"has-drop-cap\">Automattic released its <a href=\"https://wordpress.org/plugins/newspack-newsletters/\">Newspack Newsletters</a> project to the WordPress plugin directory earlier today. It is the first Newspack-related plugin the company has made available outside of GitHub or its custom platform.</p>\n\n\n\n<p><a href=\"https://newspack.pub/\">Newspack</a> is primarily a service geared toward small and medium-sized publications. Its goal is to work with news industry leaders to create a platform for bringing WordPress to more newsrooms worldwide. El Soberano, a Chilean news publication, became the <a href=\"https://wptavern.com/chilean-news-publication-el-soberano-first-to-launch-on-newspack\">first site to launch</a> on the service in October 2019. Earlier this month, Newspack <a href=\"https://wptavern.com/newspack-publishes-showcase-with-60-newsrooms-launched\">showcased 60 sites</a> running on the platform.</p>\n\n\n\n<p>The platform is more than one theme, plugin, or service. The code is open-source, <a href=\"https://github.com/Automattic?q=newspack\">available on GitHub</a>, and free for anyone to use via self-hosted WordPress. Each plugin is built based on feedback between publishers and the Newspack development team to solve real-world problems for publications.</p>\n\n\n\n<p><em>The downside?</em> Until now, the various Newspack plugins have all been hosted on GitHub, which is a developer-centric platform.</p>\n\n\n\n<p>Small newsrooms may not have an onboard developer or IT team. The discoverability of necessary plugins will often happen through WordPress.org. With Newspack Newsletters landing in the plugin directory, it could be an indication of things to come.</p>\n\n\n\n<p>The Newspack team should not stop with their first plugin. The entire suite of tools should be available through the plugin directory. The <a href=\"https://github.com/Automattic/newspack-blocks\">Newspack Blocks</a> plugin could have uses outside of news sites. Many users might find value in its Post Carousel block or various patterns. The <a href=\"https://github.com/Automattic/newspack-content-converter\">Newspack Content Converter</a> bulk-converts classic WordPress posts to the block system. Even the <a href=\"https://github.com/Automattic/newspack-theme\">Newspack theme</a> and its child themes should have a home on the official WordPress theme directory.</p>\n\n\n\n<p>“We are planning to release the Newspack Content Converter on WordPress.org next, which is expected to happen in the next two months,” said Newspack lead Jeff Rabb. “Newspack has used this plugin on nearly every site we’ve launched to convert massive archives to Gutenberg, and we suspect this functionality will be very useful to the community. Several of Newspack’s blocks are already available on WordPress.org through the WordPress.com Editing Toolkit. The toolkit plugin includes the Blog Posts and Post Carousel blocks, both of which originate from the Newspack Blocks plugin. We’ll continue to examine whether other products our team is developing may be of wider use to the community, and release on WordPress.org as appropriate.”</p>\n\n\n\n<h2>How the Plugin Works</h2>\n\n\n\n<p class=\"has-drop-cap\">Newspack Newsletters <a href=\"https://newspack.pub/2020/07/14/newspack-offers-free-plugin-that-builds-a-mailchimp-newsletter-without-leaving-wordpress/\">launched in July 2020</a>. The plugin initially integrated with Mailchimp. However, the team has since added Constant Contact support. It also requires integration with <a href=\"https://mjml.io/\">Mailjet Markup Language (MJML)</a> for transforming the HTML from WordPress into responsive markup for email clients.</p>\n\n\n\n<p>After installing the plugin, users must set up the API keys from the third-party services they are using. Steve Beatty has a complete walkthrough of the process in the following YouTube video:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>The plugin adds a new post type for managing newsletters. It works much the same way as any other post or page. When adding a newsletter, users are initially presented with four layout options:</p>\n\n\n\n<ul><li><strong>Breaking News:</strong> Displays the latest blog post and a message afterward.</li><li><strong>Daily/Weekly:</strong> Lists the latest posts from the blog and a section for sharing curated links from around the web.</li><li><strong>Daily/Weekly (No Images):</strong> An alternate version of the Daily/Weekly layout without post featured images.</li><li><strong>Support:</strong> A template for asking readers to support the publication.</li></ul>\n\n\n\n<p>Of course, these are only starting points. Users can begin from any of these four templates or wholly from scratch. The plugin also provides an option for saving newsletters as custom layouts.</p>\n\n\n\n<img />Selecting a layout from the newsletter screen.\n\n\n\n<p>While the plugin works similarly to posts and pages, it does limit the available blocks to those more suitable for emails. This subset includes text-based blocks like Paragraph, Heading, Quote, and List. It also supports few design-type blocks, images, and the plugin’s Post Inserter block.</p>\n\n\n\n<p>The user experience is straightforward. Newsletter-specific settings are in the sidebar panel. One of the simple-but-useful features is a “Styling” tab that allows users to make wholesale font and color changes for a single newsletter.</p>\n\n\n\n<img />Creating and sending a test newsletter.\n\n\n\n<p>Users can even send a test email before publishing to make sure everything is in order. This feature also makes it easy to test on a local machine before deciding if the plugin is worth using in production.</p>\n\n\n\n<img />Newsletter viewed via Gmail.\n\n\n\n<p>Usage of the ads system was not immediately apparent. It was not until I ran a test email from the Edit Newsletter screen that I realized that the ad I had created was attached to the end of the email. Even after figuring this out, I still felt a disconnect between how ads worked for newsletters. There is a sidebar setting for disabling ads on the Edit Newsletter screen. Perhaps I am missing something, but ad placements should be a block the user can insert into the content canvas.</p>\n\n\n\n<p>Despite feeling at odds with the ads system in the plugin, the overall experience was mostly smooth. The plugin is not overly complex, which can sometimes be the case when a developer attempts to add too many features. Newspack Newsletters has managed to hit that Goldilocks zone that should go over well with the average end-user.</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, 15 Feb 2021 23:17: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:14:\"Justin Tadlock\";s: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:115:\"WPTavern: WordPress Contributors Discuss Scaling Back Releases: “4 Major Releases Is Not a Viable Plan in 2021”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111915\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:261:\"https://wptavern.com/wordpress-contributors-discuss-scaling-back-releases-4-major-releases-is-not-a-viable-plan-in-2021?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-contributors-discuss-scaling-back-releases-4-major-releases-is-not-a-viable-plan-in-2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4763:\"<p>WordPress contributors are considering scaling back the planned number of releases in 2021. In a post titled “<a href=\"https://make.wordpress.org/core/2021/02/11/making-wordpress-releases-easier/\">Making WordPress Releases Easier</a>,” WordPress’ Executive Director, Josepha Haden Chomphosy summarized three years of research on reducing the effort required to have a successful WordPress release:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>From my research, the work to automate what we can (and potentially get the project ready for more releases per year) would take 3-4 dedicated developers who are proficient in our backend tools/infrastructure, at least a project manager, 1-2 internal communications people, and probably a year or more of work (if we had all the resources, and they were working at full capacity). <strong>This means that 4 major releases is not a viable plan in 2021.</strong></p></blockquote>\n\n\n\n<p>Haden Chomphosy cited a number of challenges, including update fatigue, risk of contributor burnout, a lengthy onboarding process for contributors skilled at doing the administrative work required during a release, and a lack of seasoned core developers to keep the process moving efficiently. She identified a few improvements that could be made in the short-term to improve the experience (mentorship, triage, feature proposals, and better product/processes) but other necessary updates to automation and scaling contributors could take a year or more of work. </p>\n\n\n\n<p>The post is open for feedback but the decision to scale back the releases seems to have already been made. Ryan McCue, Director of Product at Human Made, <a href=\"https://make.wordpress.org/core/2021/02/11/making-wordpress-releases-easier/#comment-40660\">commented</a> with concerns about altering the predictability of WordPress releases and introducing what seems like a last minute change:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The predictability of the release calendar was a major step forward for the project, and for companies and teams (including mine) building on top of core. We have intentionally planned and structured our year ahead with this calendar in mind. Obviously, due to the tentative nature, we weren’t expecting dates to be final, but the overall picture seemed to be fairly clear with smaller shifts expected.</p><p>Whether WordPress does one release or twelve a year doesn’t matter hugely to me, but ensuring it’s predictable matters hugely for our planning, communication with clients, and for our day-to-day processes. Seeing this change pretty last moment is not encouraging, and is going to have real repercussions for us.</p><p>I sympathise with and understand the limitations of capacity and overhead of releasing more often, but changing this plan needs to be clearly communicated upfront, and with a clear plan that isn’t going to change again.</p></blockquote>\n\n\n\n<p>Haden Chomphosy responded with clarification on the conclusion communicated in her post. Without in-person events, contributors have struggled to keep the project moving at the same pace as before. She said the previous schedule had been made without much input from the contributors who are the most impacted. </p>\n\n\n\n<p>“Perhaps the more appropriate way to have stated my conclusion would have been: ‘Barring any major changes to the available contributors and global circumstances, I don’t see how we can ship four releases this year without creating undue strain on the team who currently runs those processes,\'” Haden Chomphosy said.</p>\n\n\n\n<p>Component maintainers and theme/plugin developers participating in the conversation also confirmed that WordPress’ frequent updates have posed a challenge and that the risk of burnout is real. Entering into year two of a global pandemic has undeniably impacted contributors’ availability and momentum, and Haden Chomphosy’s post seeks feedback on a way forward that will avoid putting WordPress’ dedicated contributors under additional strain.</p>\n\n\n\n<p>After this post was published, the <a href=\"https://make.wordpress.org/core/2019/11/21/tentative-release-calendar-2020-2021/\">release schedule for 2020/2021</a> was updated to show that release dates for WordPress 5.8 and beyond are yet to be confirmed.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Some stakeholders will undoubtedly be disappointed with the current lack of certainty on release dates for the upcoming year, but the <a href=\"https://make.wordpress.org/core/2021/02/11/making-wordpress-releases-easier/\">conversation</a> is still open and changes will be communicated as soon as contributors find an acceptable way forward.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Feb 2021 23:09:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Design Lab Releases Artpop, a Block-Ready WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111904\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/design-lab-releases-artpop-a-block-ready-wordpress-theme?utm_source=rss&utm_medium=rss&utm_campaign=design-lab-releases-artpop-a-block-ready-wordpress-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4950:\"<p class=\"has-drop-cap\">Perhaps the fates have stepped in to prove a point. After I wrote a 2,000-word piece on the <a href=\"https://wptavern.com/upsells-barriers-and-the-end-beginning-of-the-quality-free-themes-era\">lack of quality themes</a> in the theme directory, they decided to send a message. Not once, but twice this week, a new WordPress theme has managed to catch my eye. My rational mind knows that it was just a weird twist of timing, but I am not discounting the supernatural.</p>\n\n\n\n<p>Design Lab’s sixth theme, <a href=\"https://wordpress.org/themes/artpop/\">Artpop</a>, went live in the theme directory this week. It is marketed as a block-ready WordPress theme for blogs, portfolios, businesses, and WooCommerce shops. For the most part, it has a clean and open design that provides users a lot of wiggle room to build out pages with the block editor.</p>\n\n\n\n<p>Simplicity is the name of the game, and Artpop has it in spades. It adds just enough small touches to make some elements pop. Of course, I am a fan of the blockquote style, which is one area that theme authors can leave their signature:</p>\n\n\n\n<img />Blockquote design.\n\n\n\n<p>The theme is not without a few design issues. The typography does not lend itself well to long-form content, despite being pushed as a blogging theme. With a 760px-wide content area and 16px font-size, comfortable reading is thrown out the window. Sure, it looks good in <a href=\"https://www.designlabthemes.com/preview/artpop/\">the demo</a>, but it is not practical in the real world.</p>\n\n\n\n<p>Where the theme gets things right is its coverage of block styles. End-users can put together custom layouts that do not look broken. After two years of the block editor being in core, this should be the <em>standard</em> experience with all themes, but I cannot stress how much it isn’t.</p>\n\n\n\n<p>I even recreated the <a href=\"https://demo.designlabthemes.com/artpop-pro/homepage-creative/\">“creative” homepage design</a> that ships with the pro version of the theme to see how easy it was. If you would rather work with premade layouts, the <a href=\"https://www.designlabthemes.com/artpop-pro-wordpress-theme/\">upgrade</a> is a mere $30. However, if you know your way around the block editor, you can definitely build the layouts yourself.</p>\n\n\n\n<img />Editing creative-style Artpop Pro homepage design.\n\n\n\n<p>This is the direction that theme design should be going. Provide all the capabilities in the free product. Upsell the added value of having all these extra layouts/patterns premade and available at the click of the button.</p>\n\n\n\n<p>By default, the homepage displays a five-post grid. A large featured post sits in the middle while the others are aligned on either side of it. This unique layout was what immediately drew me into the theme.</p>\n\n\n\n<img />Grid-style featured posts.\n\n\n\n<p>Users can also choose a carousel of featured posts instead of the grid via the customizer. I am typically not a fan of slider-like sections. However, carousels, where it is clear there are extra posts to view, are sometimes an exception to the rule.</p>\n\n\n\n<img />Carousel-style featured posts.\n\n\n\n<p>After working with block-based themes and the site editor so much over the past few months, these customizer settings feel ancient — both from a developer and end-user viewpoint. It reminds me to applaud theme authors for the years of work they have put into non-optimal systems. There will be a day when adding these types of layouts do not require nearly as much effort.</p>\n\n\n\n<p>The one annoyance with the homepage options is that the theme author created a separate “Homepage” panel, which can easily be confused with the existing core “Homepage Settings” section. There is no good reason to not combine these two and free up some room in the customizer.</p>\n\n\n\n<p>I would also like to see just a general cleanup of the theme’s customizer integration. The theme does not have many options, but it has nearly a dozen top-level sections, consuming precious real estate in the customizer.</p>\n\n\n\n<p>The biggest downside to the theme is that it adds a customizer control that prints “Try Artpop Pro / Need more options?” to every section it adds. This is in addition to its two top-level upsell sections. The thing that makes it worse, however, is that it is broken. The “Try Artpop Pro” text is meant to be linked, but the theme has a bug that outputs the text followed by a broken link tag, which is only visible in the source code.</p>\n\n\n\n<p>There really is no need for 10 upsell links in the customizer, even if eight of them are broken. The theme is nice enough on its own. The links just degrade it.</p>\n\n\n\n<p>Aside from a few annoyances, the theme is worth exploring for those in the market for something new. While it is a freemium product, users can get a lot of mileage out of it without upgrading.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Feb 2021 18:49:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:74:\"WPTavern: Elementor to Roll Out Significant Pricing Hike for New Customers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111909\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/elementor-to-roll-out-significant-pricing-hike-for-new-customers?utm_source=rss&utm_medium=rss&utm_campaign=elementor-to-roll-out-significant-pricing-hike-for-new-customers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5799:\"<p>Earlier this week, Elementor <a href=\"https://elementor.com/blog/announcing-new-pro-plans/\">announced</a> a significant pricing hike coming in March 2021 for new customers: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>On March 9th, 2021, Elementor will be adding new Studio and Agency Pro subscription plans and adapting the Expert plan, to best accommodate users’ growing needs. These changes will only apply to new purchases. <strong>If you’re on an existing active subscription plan, nothing changes for you.</strong></p></blockquote>\n\n\n\n<p>The most radical change is coming to the Expert plan, which previously offered 1,000 sites for $199/year. The plan has been pared back to support 25 sites. Users who need support for 1,000 websites will need to purchase the Agency plan at $999/year, a 400% increase on the price for what was previously offered under the Expert plan.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Elementor emphasized that customers with an existing active subscription will not be affected by the pricing changes. The company is also giving customers a chance to purchase the current Expert plan ($199/year for 1,000 sites) before it is discontinued before March 9, 2021. Existing customers on the Expert plan have the option to upgrade to the Agency plan at a 50% discount (valid from March 9, 2021 until June 9, 2021).</p>\n\n\n\n<p>Over the past 48 hours, Elementor’s announcement has received 270 comments primarily from disgruntled customers. Some of them are opposed to the pricing hikes and others are unclear about what it means for their subscriptions long term. Elementor representatives’ responses to questions on renewal have been studiously unclear.</p>\n\n\n\n<p>One customer points out that the announcement does not explicitly say that existing subscriptions will retain the legacy pricing past the end of the billing period for this year. It does not state that existing active subscriptions will remain at the same price indefinitely, nor does it specify a term after which the pricing will go up. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Elementor Evangelist Ben Pines, head of the company’s web creator program, has left the question regarding renewals open, saying he “cannot see into the future.” Customers were left wondering whether the lack of clarity on the future of renewals is a foreshadowing of prices going up after the current billing year. </p>\n\n\n\n<p>“No one can predict the future, and offering a lifetime price guarantee is irresponsible for any future-facing company,” Pines told the Tavern. “What we can guarantee for sure is the extent to which we value user loyalty. This is why they have never experienced any price change in 4.5 years. We value our users’ trust, and have taken every step to ensure that our loyal users’ active subscriptions are not affected.”</p>\n\n\n\n<p>The company has not confirmed whether existing active subscriptions will be guaranteed the lower pricing forever and reserves the right to eliminate legacy pricing at any point in the future. </p>\n\n\n\n<p>In the announcement, Pines said the pricing model for Elementor Pro has hardly changed since it was introduced in 2016 and that it is time to update it to best accommodate customers’ evolving needs. Elementor is now installed on more than 7 million websites and caters to a wide community of users with varying levels of expertise. The new plans have access to 24/7 live chat support and a handful of other benefits, but many customers participating in the comments said they do not require chat support.</p>\n\n\n\n<p>The upcoming pricing hike has heightened tensions for customers who feel the dramatic increase is unjustified for the software in its current state. They cited usability issues, persistent bugs, and performance problems that remain unfixed. Additional support features do not make the higher prices more compelling for this segment of the company’s customers.</p>\n\n\n\n<p>Some who were disturbed by the radical price increase called for the company to consider creating a middle ground offering for the updated Expert tier.</p>\n\n\n\n<p>“I agree that 1,000 websites for $199 is low,” one customer commented. “Many small people will never create 1,000 websites. What bothers me is $199 for 25. Would it be more reasonable if it was $199 for 50, to have some middle ground? Or maybe you do not want the little people around any more.”</p>\n\n\n\n<p>A handful of customers commenting were unfazed, noting that anyone who builds 1,000 websites using Elementor and cannot afford $1 per work order should reconsider their business model.</p>\n\n\n\n<p>Pricing changes can be a major source of friction for existing customers, as GitLab recently discovered when <a href=\"https://wptavern.com/gitlab-drops-bronze-starter-tier-in-pricing-update\">dropping its Bronze/Starter Tier</a> and imposing a 5x price increase on those features in a higher tier. Although the immediate impact of pricing increases will primarily hit new customers, it’s the existing customers who have been paying for subscriptions for years who have the strongest opinions on the changes. </p>\n\n\n\n<p>Raising prices to introduce more value for customers or to account for the increased support burden is a natural evolution for companies that experience rapid growth over a short period of time. Getting existing customers to lock in their auto-renewals by offering legacy pricing is also a strategy for ensuring a more predictable financial future for the company. But Elementor’s lack of clarity regarding term length for the discounted renewal pricing is the primary reason for all the agitation in the comments on the announcement.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Feb 2021 04:58: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: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:68:\"WPTavern: WP Feedback Rebrands To Atarim, Moves To a Full SaaS Model\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110579\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"https://wptavern.com/wp-feedback-rebrands-to-atarim-moves-to-a-full-saas-model?utm_source=rss&utm_medium=rss&utm_campaign=wp-feedback-rebrands-to-atarim-moves-to-a-full-saas-model\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5872:\"<p class=\"has-drop-cap\">Earlier this week, WP Feedback founder Vito Peleg announced the company was <a href=\"https://atarim.io/blog/introducing-atarim/\">changing its brand to Atarim</a>. After 18 months since its launch, it would also be moving toward a complete Saas (Software as a Service) model.</p>\n\n\n\n<p>WP Feedback was created as a standalone plugin. The goal was to provide a visual feedback tool that agencies and developers could use to communicate with clients rather than spending time deciphering unclear emails, chat messages, and phone calls.</p>\n\n\n\n<p>“Starting as a freelancer and then an agency owner myself, it was always a huge pain to get clients to provide me with the content and design feedback I needed,” said Peleg. “And this led to us building a tool for us that worked extremely well with our workflow, which led to the decision to take this to the market.”</p>\n\n\n\n<p>However, over time, the product evolved into something bigger.</p>\n\n\n\n<p>“As we started gaining traction, I always kept a pulse on our users (now with over 5,000 freelancers and agencies), and it became clear that a standalone plugin, while it did do the trick, was simply not enough — especially for those that manage multiple websites and clients at the same time,” said Peleg. “It solved a huge part of the problem, but not the workflow in its entirety. There was a clear demand for us to build a centralized area to gather all feedback so we then created our Agency Dashboard — a cloud-based application that allowed our users to gather all the requests from different clients and websites to manage them in a single place.”</p>\n\n\n\n<p>Peleg said the Agency Dashboard revealed a more complex problem in the industry. Agencies were patching together several different tools to provide various aspects of their services. These tools were leading to unnecessary friction and slowing down jobs, often adding weeks of additional time.</p>\n\n\n\n<p>The team tackled more than they had initially bargained for. In 18 months, they added over 150 features to the WP Feedback platform. Peleg said the project has helped agencies and developers reduce between 50% and 80% of the previous time delivering projects and supporting clients.</p>\n\n\n\n<p>In 2020, the WP Feedback’s users marked over 100,000 tasks as complete. Peleg calculates this has saved the industry over five years of unnecessary back and forth.</p>\n\n\n\n<p>“The name WP FeedBack continued to position us as what version 1.0 was — a basic visual feedback plugin,” he said. “So along with version 2.0 that is releasing this week, I decided it’s a great opportunity to revamp the whole experience with a rebrand, repositioning, and a whole bunch of new ways that users can use our software to improve their lives.”</p>\n\n\n\n<p>Peleg said that nothing is really changing for existing customers other than having access to more tools. It should be a smooth transition for them. The goal now is to attract new customers.</p>\n\n\n\n<p>“I also hope that this transition will allow our industry to see the new reality we’re creating for delivering website projects and why it’s insane that a 5-6 days project still takes 6-8 weeks to complete,” he said.</p>\n\n\n\n<h2>How the Service Works</h2>\n\n\n\n<img />Atarim Agency Dashboard.\n\n\n\n<p class=\"has-drop-cap\">There are two sides to Atarim. One is a client-interface plugin installed on each project website; the other is the Agency Dashboard.</p>\n\n\n\n<p>“The plugin’s role is to provide a simple experience for clients to provide the content you need, approve the designs and request ongoing support,” said Peleg. “Allowing to visually click any part of the website (including in the wp-admin screens) and just leave a comment. The agency will get an automated screenshot, the screen size, browser version, and a button that will take them directly to the request, logged in, with one click.”</p>\n\n\n\n<p>Freelancers or agencies work from within the Agency Dashboard. This serves as a central location for all of the work that happens around client websites.</p>\n\n\n\n<p>Technically, WP Feedback has already been a SaaS product with an accompanying plugin since launching its central dashboard early in the product’s history. Version 2.0 completes the transition from a plugin to a full-on SaaS. Feedback and other data are no longer saved to the client websites. Instead, they are hosted via Atarim.</p>\n\n\n\n<p>“Over time, we noticed that it created unwanted bloat to the websites that were using our tools extensively, so off-loading all the data and loading it from our side, was the natural route,” said Peleg. “But since this is how the platform was initially built, this was a massive undertaking that I’m very happy that we finally completed.”</p>\n\n\n\n<p>The client-interface plugin is built for WordPress. However, the technology stack behind the new Atarim Agency Dashboard is on Laravel and React. The team thought it would be the best framework for speed and to work with as the company continues to scale.</p>\n\n\n\n<p>“I’ve been using WordPress myself for more than a decade — so it really comes naturally to me by now,” said Peleg. “The SaaS world is a different animal.”</p>\n\n\n\n<p>“One of the biggest challenges was transitioning everything we have built, to be pulled from the cloud as opposed to being stored locally on the client’s site. The ‘cloud migration’ project, as we called it internally, has been a year-long endeavor that, whilst it was developed constantly, was pushed back by our need to support our existing users, our growth, COVID-19, and all the other fires that happen when you’re running a startup.”</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, 11 Feb 2021 21:54: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:14:\"Justin Tadlock\";s: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:55:\"WordPress.org blog: People of WordPress: Pooja Derashri\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=9652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/02/people-of-wordpress-pooja-derashri/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9544:\"<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories that are lesser-known.</em></p>\n\n\n\n<img width=\"632\" height=\"331\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/02/pic1.jpg?resize=632%2C331&ssl=1\" alt=\"Pooja standing in a banner \" />\n\n\n\n<p>Pooja Derashri shares the story of how she went from being an introvert from a small village in India to becoming a developer and working on international projects, thanks to the WordPress community. </p>\n\n\n\n<p>As her interest grew, Pooja started following some WordPress-based groups on Facebook, where she first heard about conference-style WordPress events known as WordCamps. She later joined her first WordCamp in Ahmedabad, India. This three day event in 2017 opened up a new world—the WordPress community—and what would become a life changing moment. “WordCamp Ahmedabad has one of the best WordPress communities in India,” she said, “and everyone, including organizers and attendees were so humble and welcoming.”</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2021/02/pooja600x600.jpg?w=500&ssl=1\" alt=\"\" class=\"wp-image-9654\" />\n\n\n\n<h2><strong>The thirst for learning</strong></h2>\n\n\n\n<p>A fascination with how things worked and a desire never stop learning were traits that shone through in Pooja from a young age. She moved from Banera, a rural village in India, to a nearby city, where she lived with her uncle while completing her higher education. With her enthusiasm for learning, she decided to become an engineer. When thinking back on that time she says, “Being from a rural background, people in my village tended not to be keen on the idea of sending their girl child to another city for further studies. Fortunately, that was not the case for me because my parents were immensely supportive of me and my interests. They’ve always encouraged me to believe in myself and fulfill my dreams. With their support, I pursued my engineering in electronics and communication.”</p>\n\n\n\n<h2><strong>Discovering the opportunities in web development </strong></h2>\n\n\n\n<p>On completing her engineering training, Pooja was not sure what to do next. One of her friends suggested that she should explore web development. The idea intrigued her, and she sought out learning resources to study. She also secured an internship as a PHP Developer to give herself the chance to learn alongside professionals in the field.</p>\n\n\n\n<h2><strong>Getting started with WordPress</strong></h2>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>“I found WordPress surpassed other platforms. The vast knowledge base made it easy for me to learn.” – Pooja</strong></p></blockquote>\n\n\n\n<p>This internship led Pooja to her first job where she discovered a range of content management systems. Her view of the opportunities offered by these systems changed when the manager assigned her a small project using the WordPress platform. </p>\n\n\n\n<p>She recalls: “I found WordPress surpassed other platforms I had worked on earlier. The vast knowledge base made it easy for me to learn.” She soon became comfortable managing WordPress, working with plugins and themes, and wanted to learn it more in-depth.</p>\n\n\n\n<p>Pooja soon joined WPVibes as its first team member. Being part of a new startup gave her a lot of experience and a chance to be involved in new processes. As the company expanded they started providing custom plugin development services per the client’s requirement and created some free and paid plugins. Pooja said, “We found it very exciting and productive. Today, we are a team of 10.”</p>\n\n\n\n<h2><strong>Encouragement from the WordPress community</strong></h2>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Contributing to WordPress increases your knowledge</strong></p></blockquote>\n\n\n\n<p>At the event, she was able to listen to speakers from India and abroad, many of whom shared their journey with WordPress and how it had changed their lives. “One of the most inspiring sessions was by Rahul Bansal,” she said. “He talked about contributing to WordPress and giving back to the community. He also explained how contributing to WordPress can help you to enhance your knowledge. It inspired me to contribute to WordPress.”</p>\n\n\n\n<p>The WordPress community of Ahmedabad continued to inspire Pooja and her husband Anand Upadhyay, and they later started a Meetup group in their home city of Ajmer as part of their contribution to the community. They continue to be involved in supporting local users through the <a href=\"https://www.meetup.com/ajmer-wordpress-meetup/\">Ajmer Meetup</a>.</p>\n\n\n\n<img src=\"https://lh5.googleusercontent.com/KmA8iDgGrRar_cgD2jp2ThrzPxuzGTSI7SWkxDdHKyN4p2iNoj0e-VdOxO0xa1TtH56Uci9wEfYYfnW8DYji8c1HuaI7L-xhNqXyXt_kdchWtVxe_PnSea2knlWhP_O7qqG0Quju\" alt=\"Pooja with a WordCamp Ahmedabad badge\" width=\"500\" />\n\n\n\n<p>At the next WordCamp Pooja attended, she joined its contributor day, which brings users together to give back to the open source platform and global community. Most of the contributors she met were interested in giving time to the WordPress CMS. She decided to venture into a different path and took her first steps by joining the WordPress TV group, where you can explore videos from WordPress events across the world. She also discovered the joy of translating into her local language, and is a <a href=\"https://make.wordpress.org/polyglots/\">Polyglot</a> contributor for the Hindi language.</p>\n\n\n\n<p>In 2019, she was selected as a volunteer for WordCamp Asia in Bangkok, Thailand, and it became an impetus to become even more involved with the community. She was very excited about this role, and to be part of her first WordCamp outside India. Sadly, due to the global COVID pandemic, the event had to be cancelled. Her enthusiasm has not diminished and she is eagerly waiting to support in-person WordCamps in the future and meet even more members of the global community.</p>\n\n\n\n<p>Her determination to be part of making WordPress and sharing skills has only increased, which has led to contribute to the WordPress Training team. This team manages lesson plans and prepares content to support people who are training others to use WordPress. The team recently joined a few other teams to <a href=\"https://wordpress.org/news/2020/12/introducing-learn-wordpress/\">launch Learn WordPress</a>, which brings learning materials together for users of all levels, and Pooja contributed to two different teams during the project.</p>\n\n\n\n<h2><strong>Message to the WordPress Community</strong></h2>\n\n\n\n<p>Pooja is eager to share her belief in the power for good in the WordPress community. “There is a huge community to help you with your learning, so start learning and try to give back to the community. It doesn’t matter if you are not comfortable with programming, there are many different ways in which you can contribute.” </p>\n\n\n\n<p>“What I have learned in my life is that it doesn’t matter from where you came and what background you have. All that matters is your hard work and positive attitude towards life.”</p>\n\n\n\n<p>Read more stories in the <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress series</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p><em>Thanks to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) and Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nalininonstopnewsuk</a>) for writing this story, and to Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\">@sthakor</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Olga Glekler (<a href=\"https://profiles.wordpress.org/oglekler/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>oglekler</a>), Christopher Churchill (<a href=\"https://profiles.wordpress.org/vimes1984/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>vimes1984</a>), Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>lmurillom</a>), and Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a>) for work on the series this month. Thank you also to Pooja Derashri (<a href=\"https://profiles.wordpress.org/webtechpooja/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webtechpooja</a>) for sharing her #ContributorStory.</em></p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://lh4.googleusercontent.com/E9y8t1dTqeOylNc4mkC0KeQfmCisFLy4790Idt2DYwWdKSEwCh7RlsAmTcnRYuTb7jqXzwtYVjPRsXDVTh_HREDUWAbB-sOOXuC7HEZR-uEeV046dl8X3eU9kG6fpIXkRn0SbDcT\" alt=\"HeroPress logo\" /><div class=\"wp-block-media-text__content\">\n<p><em>This post is based on an article originally published on HeroPress.com, an initiative focused around people in the WordPress community created by </em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>.</em></p>\n</div></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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Feb 2021 21:30: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:28:\"webcommsat AbhaNonStopNewsUK\";s: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:76:\"WPTavern: WordPress Passes 40% Market Share of Alexa Top 10 Million 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111831\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/wordpress-passes-40-market-share-of-alexa-top-10-million-websites?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-passes-40-market-share-of-alexa-top-10-million-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3647:\"<p>WordPress has passed 40% market share of all websites, up from 35.4% in January 2020, as measured by <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">W3Techs</a>. These numbers are derived from the <a href=\"https://www.alexa.com/\">Alexa</a> top 10 million websites, along with the <a href=\"https://tranco-list.eu/\">Tranco</a> top 1 million list. By W3Techs’ estimates, every two minutes, another top 10m site starts using WordPress. </p>\n\n\n\n<p>Among the <a href=\"https://w3techs.com/technologies/breakdown/cm-wordpress/ranking\">top 1,000 sites</a>, WordPress’ market share is even higher at 51.8%, and captures a staggering 66.2% for new sites. In tracking the growth rate over the past 10 years, W3Techs shows WordPress sloping steadily upwards.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p> Matthias Gelbmann, CEO of W3Techs parent company Q-Success, <a href=\"https://w3techs.com/blog/entry/40_percent_of_the_web_uses_wordpress\">explained</a> the reasons behind this methodology:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The reason why we don’t count all the websites, is because there are so many domains that are unused or used for dubious purposes. We want to exclude the many millions of parked domains, spam sites and sites that simply have no real content. We are convinced that including all trash domains would make our statistics a lot less useful, as millions of them just run some software stack that auto-generates useless content.</p></blockquote>\n\n\n\n<p>In order to measure the “meaningful web,” W3Techs’ methodology excludes sites with default content pages displayed by Apache, Plesk, and cPanel, expired domains, and account suspended pages. It also excludes sites with the default WordPress message (<em>“Hello world! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!”</em>).</p>\n\n\n\n<p>In January, <a href=\"https://w3techs.com/technologies/comparison/cm-drupal,cm-squarespace,cm-wix\">Squarespace overtook Drupal and Wix</a> to become the 4th most popular CMS with 2.5% market share, trailing Joomla (3.4%), Shopify (5.3%), and WordPress (64.3%). Although most open source CMS’s are now in a gradual decline with proprietary competitors rising, WordPress remains a beacon of free software that continues to sustain its incredible growth. </p>\n\n\n\n<p>In a time when some projects are abandoning open source principles when convenient for their business models, WordPress’ success has proven that an unwavering commitment to user freedoms does not have to be at odds with a thriving commercial ecosystem. These user freedoms are fiercely protected by the project’s leadership and passionate community of contributors. As a result, WordPress’ GPL licensing now underpins a multi-billion dollar economy of services, hosting companies, and entrepreneurs who have built their livelihoods using WordPress. </p>\n\n\n\n<p>Every year I wonder when the project’s growth might slow down, but end up refreshing W3Techs’ site obsessively for a week in anticipation of another major milestone, as WordPress hovered at 39.9%. Naysayers love to claim that hordes of people will stop using WordPress when major, ambitious changes are proposed. But if W3Techs’ growth tracking is any indication, new website creators and those climbing the ranks to the Alexa top 10 million have not yet gotten tired of being greeted by the message: <em>“Hello world! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!”</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Feb 2021 04:38: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: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:111:\"WPTavern: GoDaddy Launches the Hub, a New Site, Project, and Client Management Experience for Web Professionals\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111717\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:261:\"https://wptavern.com/godaddy-launches-the-hub-a-new-site-project-and-client-management-experience-for-web-professionals?utm_source=rss&utm_medium=rss&utm_campaign=godaddy-launches-the-hub-a-new-site-project-and-client-management-experience-for-web-professionals\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5308:\"<img />\n\n\n\n<p class=\"has-drop-cap\">On Monday, GoDaddy officially <a href=\"https://www.godaddy.com/garage/what-is-new-godaddy-pro/\">launched the Hub by GoDaddy Pro</a>, a dashboard that brings together all of its products, pro-specific tools, and solutions. The experience is geared toward website developers and designers, creating a central location to manage their client work.</p>\n\n\n\n<p>GoDaddy Pro is not a new service by GoDaddy. The hosting company launched its <a href=\"https://www.godaddy.com/garage/introducing-the-godaddy-pro-beta/\">initial beta in 2015</a>. However, GoDaddy Pro is now offering a fresh experience powered by the Hub. According to Adam Warner, the Global Field Marketing Sr. Manager at GoDaddy, the Hub is being built in collaboration with real-world web designers and developers from their Customer Advisory Board.</p>\n\n\n\n<p>The Hub is at <a href=\"https://hub.godaddy.com\">hub.godaddy.com</a>. Existing GoDaddy Pro users can opt-in to the new Hub experience. However, they may continue using the legacy experience at <a href=\"https://pro.godaddy.com\">pro.godaddy.com</a>. They can also jump between both as needed. Eventually, the Hub will completely replace the legacy experience.</p>\n\n\n\n<img />The Hub home screen.\n\n\n\n<p>“You can manage all your client projects, sites, and GoDaddy products from within the Hub,” said Warner. “Your clients’ WordPress sites don’t have to be hosted at GoDaddy. The Hub works with all web hosts. You can run one-click WordPress updates, security checks, backups, and other bulk site maintenance work within the Hub. We’ve seen users save an average of three hours per month, per site.”</p>\n\n\n\n<p>The Hub allows web developers to access their clients’ GoDaddy products without needing to pass around credentials. Developers can also send a pre-loaded shopping cart or purchase products on their clients’ behalf.</p>\n\n\n\n<p>“This makes it easier, and faster, to get a new project up and running,” said Warner. “You don’t have to worry about your client buying the wrong hosting plan or domain. Project management is integrated into the Hub, so you can keep track of client communications and ensure you’re delivering projects on time.”</p>\n\n\n\n<p>Part of this journey began when GoDaddy acquired ManageWP and brought its team over in 2016. The <a href=\"https://wptavern.com/godaddy-acquires-wordpress-site-management-service-managewp\">acquisition was anything but popular</a> at the time.</p>\n\n\n\n<p>“We built the first version of our GoDaddy Pro site management tools on top of ManageWP Orion,” said Warner. “We added new GoDaddy-specific features, like allowing clients to grant delegated access to manage their GoDaddy products. We also included some premium addons for free on GoDaddy-hosted websites. Just like with ManageWP, sites managed in the Hub can be hosted anywhere, not just at GoDaddy.”</p>\n\n\n\n<p>The Hub has an interface that feels more Average Joe than tech savant. I half expected to see call-to-action buttons littering the screen, funneling users to every conceivable GoDaddy product, but none were found. Expectations from the GoDaddy of 10 years ago still linger and die hard. However, the company continues to move beyond its old reputation with its free tools and more recent willingness to give back to the open-source community, including its contribution to <a href=\"https://wordpress.org/five-for-the-future/pledge/godaddy/\">Five for the Future</a>.</p>\n\n\n\n<img />Running a site security check.\n\n\n\n<p>“My goal in joining GoDaddy in 2018 was, and still is, to continue my participation in the WordPress and wider web designer and developer (WD&D) communities in order to listen and return feedback internally on how we can best support freelancers in starting, growing, and streamlining their businesses,” said Warner. “GoDaddy Pro (the legacy tool) already existed when I joined GoDaddy, and my mission was to spread the word and offer suggested enhancements based on real-world conversations with freelancers and their specific needs.”</p>\n\n\n\n<p>Creating clients, projects, and sites from within the interface is simple. Performance and security checks went well for the one site I have connected. The tests seemed to be spot on in comparison to other tools I have used.</p>\n\n\n\n<img />Site performance check.\n\n\n\n<p>GoDaddy Pro membership is free. However, the Hub will have premium site <a href=\"https://www.godaddy.com/help/premium-site-maintenance-tools-in-the-hub-40384\">maintenance tools in the future</a>. Automated security checks, performance checks, backups, and uptime monitoring are currently free. There is no timetable on when they will be behind a paywall. Some of the premium features will have a downgraded free option when the switch is flipped.</p>\n\n\n\n<p>“While some adjacent programs (e.g. GoDaddy Reseller program, Pro subscription) may have associated costs or fees, GoDaddy Pro’s integrated project management, site management, and client management tools are free,” said Warner.</p>\n\n\n\n<p>The commitment to offering the management tools for free is undoubtedly a good thing. Thus far, I like what I am seeing with the new Hub experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Feb 2021 22:31:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:96:\"WPTavern: Gatsby Launches New WordPress Integration, Expanding Support for Headless Architecture\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111778\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"https://wptavern.com/gatsby-launches-new-wordpress-integration-expanding-support-for-headless-architecture?utm_source=rss&utm_medium=rss&utm_campaign=gatsby-launches-new-wordpress-integration-expanding-support-for-headless-architecture\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4035:\"<p>The <a href=\"https://www.gatsbyjs.com/plugins/gatsby-source-wordpress/\">Gatsby source WordPress plugin</a>, Gatsby Cloud’s official WordPress integration, has been marked stable as of v4 and has been released to the public. The plugin sources data from WordPress for headless setups that use Gatsby on the frontend. It is a complete rewrite of Gatsby’s previous source plugin and works in combination with the <a href=\"https://wordpress.org/plugins/wp-gatsby/\">WPGatsby</a> plugin to integrate content preview and incremental builds from Gatsby Cloud. </p>\n\n\n\n<p>After going into public beta last year, the new source plugin was updated to enable the following: </p>\n\n\n\n<ul><li>Users add a WPGraphQL-enabled endpoint to gain access to WordPress content in Gatsby’s data layer for use in React templates</li><li>Optimizes links and images within the content HTML with gatsby-image and gatsby-link</li><li>Restricts image processing and optimization to images referenced in published content, so large media libraries don’t slow down build times</li><li>Automatically enables access to data from <a href=\"https://www.wpgraphql.com/extensions\">any WPGraphQL extension</a>, integrating the site with other WordPress plugins</li></ul>\n\n\n\n<p>WPGraphQL is required as part of the setup. It turns any site into a GraphQL server, making the content easier to fetch. For the past 18 months, Gatsby has supported the development and maintenance of WPGraphQL to a stable 1.0 release. WP Engine recently hired its maintainer, Jason Bahl, to continue funding the project and <a href=\"https://wptavern.com/wp-engine-invests-in-headless-wordpress-hires-wpgraphql-maintainer\">expand on its own headless WordPress initiatives</a>. This ensures that WPGraphQL will continue to have a strong future for use in decoupled projects. </p>\n\n\n\n<p>“During the beta period, we were excited to see developer teams we admire adopt the Gatsby WordPress integration for their projects,” Gatsby marketing manager Hashim Warren said. “Teams from Facebook, Bluehost, and Apollo used Gatsby’s WordPress integration to create accessible, scalable, and easy-to-update web experiences.” All of these sites and more were using Gatsby + WPGraphQL in production before the new Gatsby Source WordPress plugin was officially stable, so it has been tested extensively during the beta period.</p>\n\n\n\n<p>The rewritten plugin is better at bridging the gap to make Gatsby frontends less of a trade-off for developers who are working with editorial teams. It <a href=\"https://twitter.com/tylbar/status/1359228717533302790\">improves build times</a> to be <a href=\"https://willit.build/details/type/blog/source/wordpress/page-count/4096\">under 10 seconds</a> for medium-sized sites. </p>\n\n\n\n<p>The complexity of editing and rebuilding Gatsby sites has been one of the chief deterrents for content creators adopting headless architecture. It imposes a more complicated workflow that the Gatsby Cloud product is designed to fix. This is how Gatsby monetizes its WordPress integration – by making the workflow more like what traditional WordPress provides out of the box.</p>\n\n\n\n<p>In recruiting potential headless customers, Gatsby emphasized the lower hosting costs of its stack. <a href=\"https://gatsbyjs.com/pricing/\">Gatsby Cloud</a> is free for small, personal sites but limits users to 100 Real-Time Edits/month. In fact, all of the commercial plans have upper limits on the number of editors and how many times users can perform real-time edits. </p>\n\n\n\n<p>Decoupled architecture still falls squarely within the realm of developers. Gatsby’s Cloud product is one way that developers who choose Gatsby for the frontend can make their sites more user-friendly for editorial teams. Developers who are interested in exploring the new integration can get a quick start by checking out <a href=\"https://github.com/gatsbyjs/gatsby-starter-wordpress-blog\">Gatsby’s official WordPress starter</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, 09 Feb 2021 23:52:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Embed Any URL Into WordPress With the Bookmark Card Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111798\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"https://wptavern.com/embed-any-url-into-wordpress-with-the-bookmark-card-block?utm_source=rss&utm_medium=rss&utm_campaign=embed-any-url-into-wordpress-with-the-bookmark-card-block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4117:\"<p class=\"has-drop-cap\">George Mamadashvili’s <a href=\"https://wordpress.org/plugins/bookmark-card/\">Bookmark Card</a> block is the sort of simple plugin that is easy to overlook. It is one of those plugins that suffers from the lack of block discoverability in WordPress at the moment. Like many other one-off blocks, you don’t know you need it until you need it.</p>\n\n\n\n<p>The plugin is essentially an embed block, but it is not specific to one website or service like Twitter and YouTube. Instead, it allows users to add a “card” for any URL in their content.</p>\n\n\n\n<p>Mamadashvili has previously worked as a developer on several blocks for the Sorta Brilliant brand, which sported some of my <a href=\"https://wptavern.com/the-wacky-world-of-sorta-brilliants-sorta-fun-block-plugins\">favorite block-related plugins</a>, such as <a href=\"https://wptavern.com/emoji-conbini-and-the-case-for-a-block-enhancements-directory\">Emoji Conbini</a>. Unfortunately, those plugins are no longer in the WordPress directory at the request of the owner, Nick Hamze.</p>\n\n\n\n<p>However, Mamadashvili has continued building separately. Yesterday, he launched <a href=\"https://wordpress.org/plugins/toggles/\">Toggles</a>, a block for creating FAQs, hiding spoilers, and adding simple accordion elements..</p>\n\n\n\n<p>I have had his Bookmark Card block literally <em>bookmarked</em> for a few months, just now finally giving it the overdue trial run that it deserves.</p>\n\n\n\n<p>The name of the plugin brings me back a few years. There was once a time when bookmarks were a common feature of the web. Entire sites were dedicated to managing them, and some people created their own bookmark pages on their WordPress sites. Some were mere blogrolls. Others were more advanced galleries with images. Even the “link” post format archive in WordPress has served as a bookmark system.</p>\n\n\n\n<p>The idea of bookmarks is about preserving pieces of the web that interests us. So, I opened my dusty old recipe folder in Chrome and started putting together a recipes page for fun, hoping for some inspiration in my culinary pursuits.</p>\n\n\n\n<img />Horizontal-style Bookmark Card blocks.\n\n\n\n<p>I enjoy this recipe page a lot more than the plain links hidden away in my Google bookmarks. I suppose I could get even more creative and break everything down by category on different pages.</p>\n\n\n\n<p>The Bookmark Card block currently ships with two styles. The horizontal style, shown above, places the image to the right of the card content. The default style, shown below, adds the image at the top. Users can also try combinations with other blocks for unique looks, such as adding cards to the Columns block.</p>\n\n\n\n<img />Columns of Bookmark Card blocks.\n\n\n\n<p>The plugin can be useful in many contexts. Users can add URLs that are not supported via the regular embed blocks. They may also enjoy the shared card style for all of their embedded links.</p>\n\n\n\n<h2>Future Ideas for the Plugin</h2>\n\n\n\n<p class=\"has-drop-cap\">The simplicity of Bookmark Card is part of its allure. However, it is also overly simple in some respects. The only option it provides is the choice between a vertical and horizontal card style. This limits its potential, especially if the default design does not match the user’s theme.</p>\n\n\n\n<p>The plugin does not need a plethora of options. However, it could use some basics. Text and background colors are a must. Base typography options, such as selecting the font size, would be nice-to-have features. Integration with the Gutenberg plugin’s newer border-radius component would work well with this type of block. Like all blocks I test or use, I also ask that plugin developers add support for wide and full-width alignments.</p>\n\n\n\n<p>A few additional styles or layout options would help. For example, a horizontal style that moves the image to the left of the card content would be a good option.</p>\n\n\n\n<p>The plugin, which is currently at version 1.0, is a good starting point. However, it could be much better with just a handful of extras in future updates.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Feb 2021 22:50:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:40:\"WordPress.org blog: WordPress 5.7 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9688\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/02/wordpress-5-7-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5026:\"<p>WordPress 5.7 Beta 2 is now available for testing! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f5e3.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p><strong>This software is still in development,</strong> so it’s not recommended to run this version on a production site. Consider setting up a test site to play with it.</p>\n\n\n\n<p>You can test the WordPress 5.7 Beta 2 in two ways:</p>\n\n\n\n<ul><li>Install/activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the <code>Bleeding edge</code> channel and the <code>Beta/RC Only</code> stream)</li><li>Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.7-beta2.zip\">zip</a>).</li></ul>\n\n\n\n<p>The current target for final release is March 9, 2021. That’s just <strong>four weeks away</strong>, so your help is vital to making sure that the final release is as good as it can be.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\">Beta 1</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F03%2F2021..02%2F10%2F2021&milestone=5.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">38</a> bugs have been fixed. Here is a summary of some of the included changes:</p>\n\n\n\n<ul><li>Italicized text has been removed to improve accessibility and readability (<a href=\"https://core.trac.wordpress.org/ticket/47327\">#47326</a>)</li><li>Pause any playing media when closing the the media modal (<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/48562\">#48562</a>)</li><li>Add Content-Security-Policy script loaders (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/39941\" target=\"_blank\">#39941</a>)</li><li>Several fixes for the Twenty Twenty-One theme (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/50454\" target=\"_blank\">#50454</a>, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/52432\">#52432</a>, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/52433\">#52433</a>, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/52473\">#52473</a>, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/52477\">#52477</a>, <a href=\"https://core.trac.wordpress.org/ticket/52374\">#52374</a>)</li><li>Gutenberg editor support for custom spacing (<a href=\"https://core.trac.wordpress.org/ticket/51760\">#51760</a>)</li><li>Resolved Menu UI issues on medium-large screen sizes (<a href=\"https://core.trac.wordpress.org/ticket/49576\">#49576</a>)</li><li>Admin UI color palette: ensure that all interactive elements have an appropriate contrast ratio (<a href=\"https://core.trac.wordpress.org/ticket/52402\">#52402</a>)</li></ul>\n\n\n\n<h2><strong>How You Can Help</strong></h2>\n\n\n\n<p>Watch the Make WordPress Core blog for 5.7-related developer notes in the coming weeks, which will break down these and other changes in greater detail.</p>\n\n\n\n<p>So far, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=..02%2F09%2F2021&milestone=5.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">157 tickets in WordPress 5.7</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&status=reopened&changetime=..02%2F03%2F2021&type=enhancement&type=feature+request&milestone=5.7&group=component&col=id&col=summary&col=type&col=status&col=milestone&col=changetime&col=owner&col=priority&col=keywords&order=changetime\">68 new features and enhancements</a>, and more bug fixes are on the way.</p>\n\n\n\n<p><strong>Do some testing!</strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testing for bugs</a> is a vital part of polishing the release during the beta stage and a great way to contribute. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" /></p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> area in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report, file one on <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>, <a href=\"https://profiles.wordpress.org/francina/\">@francina</a> and <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a> for your peer revisions!</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Feb 2021 20:42:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ebonie Butler\";s: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:77:\"WPTavern: WP Engine Invests in Headless WordPress, Hires WPGraphQL Maintainer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111362\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"https://wptavern.com/wp-engine-invests-in-headless-wordpress-hires-wpgraphql-maintainer?utm_source=rss&utm_medium=rss&utm_campaign=wp-engine-invests-in-headless-wordpress-hires-wpgraphql-maintainer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4404:\"<p>WP Engine is deepening its investment in headless WordPress with the creation of a new team dedicated to furthering the technology developers rely on when opting for this architecture. The company has <a href=\"https://www.wpgraphql.com/2021/02/07/whats-next-for-wpgraphql/\">hired WPGraphQL creator and maintainer Jason Bahl</a> as part of this new team and will be investing in more engineers and other roles to support decoupled setups.</p>\n\n\n\n<p>For the past 18 months, Gatsby has funded Bahl’s time on WPGraphQL’s maintenance and development. During that time, the project had <a href=\"https://github.com/wp-graphql/wp-graphql/releases\">53 releases</a>, went from ~15,000 installs reported on Packagist.org to <a href=\"https://packagist.org/packages/wp-graphql/wp-graphql\">more than 85,000</a>, and launched the <a href=\"https://wordpress.org/plugins/wp-graphql/\">plugin</a> on WordPress.org with more than 8,000 installs active today and a 5-star average rating. The community around the project is also growing and has contributed more than 30 plugins to the library of <a href=\"https://wpgraphql.com/extensions/\">WPGraphQL extensions</a>.</p>\n\n\n\n<p>“Gatsby’s investment in WPGraphQL signaled that it wasn’t just a hobby project, but was solving real problems for real users, and users should have confidence using it in their projects,” Bahl said.</p>\n\n\n\n<p>After Gatsby started transitioning Bahl to work more on other Gatsby integrations, such as Contentful and Shopify, it translated into less time to work on WordPress and WPGraphQL. This prompted him to seek out another employer where he could prioritize working on headless WordPress.</p>\n\n\n\n<p>“I feel right now is a unique time in history where more investment in WordPress as a headless CMS can change the future of WordPress,” Bahl said. “I believe WordPress is now more respected as a viable option for a headless CMS and that with the momentum of WPGraphQL, technologies like Gatsby, NextJS, and others, I need to spend <em>more</em> time focusing on WPGraphQL and headless WordPress, and not less time.”</p>\n\n\n\n<p>Bahl found WP Engine at the right time and will be focusing on maintaining WPGraphQL and working on wider headless WordPress initiatives.</p>\n\n\n\n<p>“We’re going to be investing in headless WordPress, both in expanding our existing business as well as giving back to the community, as we have done for the past eleven years,” WP Engine founder and CTO Jason Cohen said.</p>\n\n\n\n<p>“We’re already seeing some customers moving to headless. While we don’t see the majority of WordPress sites doing that anytime soon, we do want to invest in those who are.”</p>\n\n\n\n<p>In the meantime, WP Engine is creating a <a href=\"https://github.com/wpengine/headless-framework\">Headless WordPress Framework</a> that is in the early stages of development. The framework uses WPGraphQL and provides a plugin, a set of npm packages, and guides for creating headless WordPress sites using <a href=\"https://nextjs.org/\">Next.js</a>.</p>\n\n\n\n<p>“GraphQL as a protocol offers a lot of advantages over REST, which is why it is being used so much, even by players outside of WordPress, like Gatsby,” Cohen said. “GraphQL includes type-safe schemas, is more discoverable, is easier to federate, and because it allows the clients so much flexibility in what data it wants (and does not want), it often results in fewer back-and-forth calls between client and server, while reducing the data being transferred to only that which the client actually needs. Because of the advantages of GraphQL, we believe a mature GraphQL API for WordPress will empower developers and site owners to move faster and with more confidence when they choose to go headless with WordPress.”</p>\n\n\n\n<p>Bahl said WP Engine’s investment in headless WordPress isn’t limited to him continuing work on WPGraphQL. The company plans to hire more engineers for projects aimed at reducing the friction that developers and businesses experience when using WordPress as a headless CMS.</p>\n\n\n\n<p>“I believe that WP Engine’s investment in this space will allow WPGraphQL to grow and mature faster than ever before, as I will be part of a larger team working to make WordPress the best it can be,” Bahl said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Feb 2021 23:22:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"WPTavern: Rough Pixels Releases Empt Lite, a Block-Supported Freemium WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111721\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/rough-pixels-releases-empt-lite-a-block-supported-freemium-wordpress-theme?utm_source=rss&utm_medium=rss&utm_campaign=rough-pixels-releases-empt-lite-a-block-supported-freemium-wordpress-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6419:\"<img />Single post view.\n\n\n\n<p class=\"has-drop-cap\">Empt Lite, the latest theme by Rough Pixels, <a href=\"https://wordpress.org/themes/empt-lite/\">landed in the WordPress theme directory</a> today. Like most of the company’s prior work, the design is on par with the best free themes currently available.</p>\n\n\n\n<p>I have come to disregard that <em>icky</em> feeling whenever I see “Lite” attached to a theme name, at least when it falls under the Rough Pixels brand. The company does not deal in the <a href=\"https://wptavern.com/upsells-barriers-and-the-end-beginning-of-the-quality-free-themes-era\">stripped-down lite themes</a> I wrote about a couple of weeks ago. Empt Lite is one of those rare themes that does not downgrade the experience with the free version. Most additional features in the <a href=\"https://www.roughpixels.com/wordpress-themes/empt/\">pro version</a> seem to be value-adds for users who need something extra. There is almost an honesty to it. Users can get a feel for the theme quality before deciding to hand over money for the commercial version.</p>\n\n\n\n<p>Some pro features probably do not make sense as an upsell in the long run. WordPress’s upcoming Full Site Editing (FSE) could make them obsolete. For example, an option for customizing archive titles will be easy to accomplish in the site editor. An “about me” widget will not be a great upsell a year from now. However, custom patterns for an “about me” section might make more sense.</p>\n\n\n\n<p>This is assuming the theme developer goes down the block-based theme path in the months to come. Looking at theme releases in 2021 needs to be done with an eye toward how they might function in an FSE world. This includes what freemium-based theme companies are upselling. Some will likely need to change tactics in time.</p>\n\n\n\n<p>The one missing feature that I would like to see Rough Pixels include in this theme and others is custom block patterns. They are already covering all of their bases with block editor styles. Now that patterns have been in WordPress since version 5.5, it is time to keep building on the work already in place. This is also an opportunity to transition toward <a href=\"https://wptavern.com/block-system-will-create-more-commercial-opportunities-for-wordpress-theme-authors\">selling design-based upgrades</a>. Put together some custom pattern packages and see what type of feedback customers provide.</p>\n\n\n\n<h2>Theme Features</h2>\n\n\n\n<p class=\"has-drop-cap\">In essence, Empt Lite is mostly a standard blogging theme. Where it shines is its support of the block editor.</p>\n\n\n\n<img />Wide-aligned Cover block.\n\n\n\n<p>One of the surest signs of a theme author doing their due diligence with block styles is to test a full-aligned Cover block with text afterward. If the text butts against the Cover, the theme probably has numerous other issues. If there is spacing between the two, the theme author likely took the time to test almost all WordPress blocks in various scenarios. <em>I promise you this test works 90% of the time.</em> Empt Lite passed this test and my entire block-testing suite with ease.</p>\n\n\n\n<p>The feature that immediately caught my eye was the gallery-style blog layout. Rather than the typical top-aligned or masonry-type grids, the theme employs an offset style reminiscent of the Twenty Twenty-One theme’s image and gallery patterns. The effect is achieved by using varying featured image orientations, which the theme aligns to the middle. It is a break from the monotony of typical layouts.</p>\n\n\n\n<img />Offset, gallery-style layout.\n\n\n\n<p>This gallery style does require that every post have a featured image. Posts without them simply disappear from the blog and archive pages, but not completely. These posts leave empty gaps, throwing off the layout. Their titles appear when hovering over seemingly-random spots on the page. There is also an empty <code><figure></code> tag in the source code. These are obviously bugs. If the theme author wants to support posts without featured images, the easiest solution would be to add a fallback.</p>\n\n\n\n<p>Users who love to customize their theme and make it their own will find enough theme options to whet their appetites. Whether it is colors and typography or post meta and the nine sidebars, the theme has settings to cover it. Outside of the gallery blog layout, none of the customizer options seemed groundbreaking.</p>\n\n\n\n<p>If anything, I look forward to the day when theme authors do not have to build all of these options and relegate them to the site editor. Rough Pixels and others put so much custom code behind the customizer that it feels like a waste of development hours in the long term. FSE cannot get here soon enough.</p>\n\n\n\n<p>The theme has a few noticeable issues, but they are relatively trivial.</p>\n\n\n\n<p>The mouse cursor is set to “pointer” when hovering a post featured image, even when that image is not linked. <em>Yes, I unsuccessfully attempted to click a featured image multiple times, wondering why it was doing nothing.</em></p>\n\n\n\n<p>The wide-layout for single posts provides plenty of breathing room for custom layouts. However, the default font-size, set to 17px, is too small for comfortable long-form reading. There is an option to customize the size, but it applies to the text across the entire site and not just the post content on single views. Making it larger creates the opposite problem on non-single pages. When a project is billed as a blog theme, words-per-line matter. Nailing the typography is a must, even when it is on an alternative layout option. Outside of this one case, the theme gets the defaults right.</p>\n\n\n\n<p>The default quote style can make the text tough to read. The quote icon in the background bleeds too much into the foreground. I love the style; the color just needs to be dialed back while letting the text take center stage. The theme provides an option for changing the blockquote icon’s color. I suggest tinkering with it.</p>\n\n\n\n<img />Blockquote style.\n\n\n\n<p>Overall, this is one of the better themes to land in the WordPress theme directory in the past few months. Recreating the <a href=\"https://demos.roughpixels.com/empt-lite/\">theme’s demo</a> requires almost no fuss. The typography is on-point for a blogging theme, and it works well with the block editor.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Feb 2021 22:47: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:14:\"Justin Tadlock\";s: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:31:\"Matt: Parse.ly & Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=53692\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2021/02/parse-ly-automattic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2030:\"<p>Excited to <a href=\"https://blog.parse.ly/post/9995/wpvip-acquisition/\">welcome Parse.ly</a> to the <a href=\"https://automattic.com/\">Automattic</a> family, in an acquisition that’s closing today. They’ll be <a href=\"https://wpvip.com/2021/02/08/parsely-acquisition/\">joining our enterprise group, WPVIP</a>. The deal has been nicely covered in <a href=\"https://www.wsj.com/articles/wordpress-vip-buying-content-analytics-firm-parse-ly-11612788609\">the Wall Street Journal</a> and <a href=\"https://www.axios.com/wordpress-vip-acquiring-content-analytics-company-parsely-f4b9cc5f-55a9-49db-a8c5-dd3759b7e8e9.html\">Axios</a>. As a bonus, here’s Parse.ly co-founder Andrew Montalenti’s <a href=\"https://ma.tt/2012/09/future-of-work/#comment-568316\">first comment on this blog</a>, in 2012.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Great article, Matt. I wrote about this on my blog — Fully Distributed Teams: Are They Viable?</p><p><a href=\"http://www.pixelmonkey.org/2012/05/14/distributed-teams\">http://www.pixelmonkey.org/2012/05/14/distributed-teams</a></p><p>In it, I drew the distinction between “horizontally scaled” teams, in which physical offices are connected to remote workers via satellite (home or commercial) offices, and “fully distributed” teams where, as you said, “the creative center and soul of the organization on the internet, and not in an office.”</p><p>At Parse.ly, we’re only a couple years old but have been operating on the distributed team model, with ~13 fully distributed employees, and it’s working well. Always glad to hear stories about how Automattic has scaled it to 10X our size.</p><p>And, likewise, we blow some of our office space savings on camaraderie-building retreats; our most recent one was in New York, see [<a href=\"http://www.flickr.com/photos/amontalenti/sets/72157629938809778/\">here</a>] and [<a href=\"http://www.flickr.com/photos/amontalenti/sets/72157630060466656/\">here</a>.]</p></blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Feb 2021 17:58:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:131:\"WPTavern: Gutenberg 9.9 Adds Color Options for Social Icons, Includes Rounded Borders for Images, and Changes the Theme JSON Format\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111628\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:303:\"https://wptavern.com/gutenberg-9-9-adds-color-options-for-social-icons-includes-rounded-borders-for-images-and-changes-the-theme-json-format?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-9-9-adds-color-options-for-social-icons-includes-rounded-borders-for-images-and-changes-the-theme-json-format\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7460:\"<p class=\"has-drop-cap\">Version 9.9 of the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a> landed earlier today. While it includes several minor UI improvements, the biggest user-facing change is the inclusion of icon and background color options for the Social Links block. Theme authors can now add support for rounded image borders. They are also faced with a breaking change to their theme JSON files.</p>\n\n\n\n<p><a href=\"https://wptavern.com/wordpress-5-7-beta-1-is-ready-for-testing\">WordPress 5.7 Beta 1 </a>was released earlier this week. The final 5.7 release will include features from Gutenberg 9.9 back down to 9.3. Only bug fixes from upcoming plugin updates should be ported into WordPress during the rest of the development cycle.</p>\n\n\n\n<p>The development team squashed over 30 bugs in the latest plugin update. It also includes several enhancements and API updates. Plugin developers can now <a href=\"https://github.com/WordPress/gutenberg/pull/28482\">override the block category</a> when registering variations, which should help with discoverability.</p>\n\n\n\n<p>Full Site Editing and other experimental work continued as usual. One item that theme authors should keep an eye on is the initial groundwork for additional <a href=\"https://github.com/WordPress/gutenberg/pull/28049\">border options</a>. The experimental feature for adding border colors, styles, and widths for blocks has long been on the wish list of many. I expect that the team will start slowly rolling out block support and a UI in coming versions.</p>\n\n\n\n<h2>Color Options for Social Links</h2>\n\n\n\n<img />Icon and background colors for Social Links.\n\n\n\n<p class=\"has-drop-cap\">Users can now <a href=\"https://github.com/WordPress/gutenberg/issues/21605\">change the icon color and background</a> in the Social Links block. This change allows the user to customize the colors for all icons in the links list. The “logos only” block style does not support a background color.</p>\n\n\n\n<p>The missing piece is the ability to set individual icon colors and their hover colors. One of the use cases in theme design is to provide a solid-colored group of icons that change to the brand colors on hover or focus. The only way to do this from the user’s end is via individual icon color options. Even the ability to set the icon hover color for the entire block is still unavailable.</p>\n\n\n\n<p>Branding guidelines were <a href=\"https://github.com/WordPress/gutenberg/issues/21605#issuecomment-629318653\">mentioned as a concern</a> with the current color options, but that concern is outside the scope of WordPress’s responsibility (see <a href=\"https://github.com/WordPress/gutenberg/pull/21900#issuecomment-624307120\">longer analysis regarding logos</a>). Many brands also have alternate colors they allow, which are not possible to use without icon-specific colors.</p>\n\n\n\n<p>Setting the background and text color for all icons at once is a step in the right direction, but the block editor is still not matching what theme authors are doing in traditional theme design. These missing features are blockers for the eventual adoption of Full Site Editing.</p>\n\n\n\n<h2>Rounded Border Support for Themes</h2>\n\n\n\n<img />Border radius setting for the Image block.\n\n\n\n<p class=\"has-drop-cap\">Theme authors can now <a href=\"https://github.com/WordPress/gutenberg/pull/27667\">opt into border-radius support</a> for images. Support comes in two forms. One is a setting to allow end-users to customize the border-radius via the block options sidebar. The second is setting a default border-radius value for all images.</p>\n\n\n\n<p>The Gutenberg team first added border-radius support to the Group block in <a href=\"https://wptavern.com/gutenberg-9-8-brings-rounded-borders-to-the-group-block-and-moves-the-site-editor-canvas-into-an-inline-frame\">version 9.8</a>. Currently, only the Group and Image blocks support the feature.</p>\n\n\n\n<p>The following theme JSON code will add settings and styles support. Note the new format change, which is covered in the next section.</p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n \"settings\": {\n \"core/image\": {\n \"border\": {\n \"customRadius\": true\n }\n }\n },\n \"styles\": {\n \"core/image\": {\n \"border\" : {\n \"radius\": \"10px\"\n }\n }\n }\n}</code></pre>\n\n\n\n<h2>New Theme JSON File Format</h2>\n\n\n\n<p class=\"has-drop-cap\">Gutenberg 9.9 introduces two breaking changes to the <code>experimental-theme.json</code> file, which will eventually be renamed to <code>theme.json</code> once it is out of the experimental stage. This file allows theme authors to configure custom styles and settings for the block system. Any themes currently using the pre-9.9 format will need to be updated.</p>\n\n\n\n<p>The first change makes <code>settings</code> and <code>styles</code> <a href=\"https://github.com/WordPress/gutenberg/pull/28110\">top-level keys in the file</a>. The second change <a href=\"https://github.com/WordPress/gutenberg/pull/28533\">renames and splits</a> the <code>global</code> key to <code>defaults</code> and <code>root</code>. <code>defaults</code> deal with default values and styles while <code>root</code> handles the site root block.</p>\n\n\n\n<p>Ari Stathopoulos wrote a <a href=\"https://make.wordpress.org/themes/2021/02/04/gutenberg-9-9-new-json-structure-for-theme-json-files/\">tutorial for theme authors</a> to update their themes on the Make Themes blog.</p>\n\n\n\n<p>“The rationale for this change is that the use cases for theme.json have grown beyond initially considered, and the vision is now being able to absorb a lot of things that themes declare at the moment via other means,” wrote Andrés Maneiro, the creator of both tickets. “Some examples are registering (and translate?) custom templates, declare theme metadata that is currently stored in the stylesheet, declare stylesheet paths, etc.”</p>\n\n\n\n<p>He also shared a vision of what the format might look like:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n \"name\": \"TwentyTwentyOne\",\n \"description\": \"...\",\n \"customTemplates\": ...,\n \"textDomain\": ...,\n \"version\": 1,\n \"settings\": {\n \"global\": { ... },\n \"core/paragraph\": { ... }\n },\n \"styles\": {\n \"global\": { ... },\n \"core/paragraph\": { ... }\n }\n}</code></pre>\n\n\n\n<p>For users, this data might not make much sense. However, any theme author should be able to recognize the significance of potentially moving metadata that is currently stored in their theme’s <code>style.css</code> through a non-standard system that WordPress has used for ages. Eventually moving that data to a standard format, JSON, would give WordPress flexibility to shed some of its legacy baggage.</p>\n\n\n\n<p>WordPress themes currently have a hard requirement of including a <code>style.css</code> file. We could well be on our way to building WordPress themes that have no need for a stylesheet at all. The future of FSE is likely one in which CSS is all handled through the Global Styles system with the theme’s default values set via the <code>theme.json</code> file. If a theme has no styles, it does not make sense to hold onto the <code>style.css</code> file.</p>\n\n\n\n<p>However, this change is not merely limited to that possibility. The new format is cleaner and better prepared for future additions.</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, 05 Feb 2021 21:53: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:14:\"Justin Tadlock\";s: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:64:\"WPTavern: Newspack Publishes Showcase with 60 Newsrooms Launched\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111568\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:173:\"https://wptavern.com/newspack-publishes-showcase-with-60-newsrooms-launched?utm_source=rss&utm_medium=rss&utm_campaign=newspack-publishes-showcase-with-60-newsrooms-launched\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4464:\"<p><a href=\"https://newspack.pub/\">Newspack</a>, a project funded by the Google News initiative and WordPress.com, has published a <a href=\"https://raindrop.io/collection/11158847\">showcase</a> of 60 news sites running on the platform. WordPress.com <a href=\"https://wptavern.com/wordpress-com-secures-2-4-million-in-funding-from-google-and-partners-to-build-a-publishing-platform-for-news-organizations\">announced</a> its plans to build the Newspack CMS two years ago and successfully signed on more than 50 sites in the first year. The cloud-based platform is open source and highly customized to generate revenue for small to medium-sized publications.</p>\n\n\n\n<p>Early adopters include the <a href=\"https://austinweeklynews.com/\">Austin Weekly News</a>, <a href=\"https://mississippitoday.org/\">Mississippi Today</a>, <a href=\"https://hongkongfp.com/\">Hong Kong Free Press</a>, <a href=\"https://oklahomawatch.org/\">Oklahoma Watch</a>, <a rel=\"noreferrer noopener\" href=\"https://bangordailynews.com/\" target=\"_blank\">Bangor Daily News</a>, <a rel=\"noreferrer noopener\" href=\"https://oaklandside.org/\" target=\"_blank\">The Oaklandside</a>, and many other watchdog publications serving their communities with vital local news coverage. </p>\n\n\n\n<p>The <a href=\"https://raindrop.io/collection/11158847\">showcase</a> was created using the Raindrop bookmark manager, which allows viewers to search for a specific site and see all the various homepages at a glance. The diversity of the publications is striking, but clicking through to their websites it’s clear that most of them share an intimate connection with their communities that might otherwise have evaporated in the <a href=\"https://wptavern.com/finding-wordpress-in-the-post-print-news-era\">post-print news era</a>. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Newspack stands out as an affordable, open source alternative to proprietary systems. Publishers generally pay <a href=\"https://newspack.pub/pricing/\">$500-$2,000/month</a> using a sliding scale based on their annual revenue. The <a href=\"https://newspack.pub/2019/08/12/see-the-revenue-generation-features-of-newspack-in-action/\">tools</a> they are given are open and designed to help create economically sustainable journalism. It’s not surprising that a community has sprung up around the product, as small publishers share many of the same issues. A dedicated Slack workspace. facilitates conversation and collaboration for more than 150 editors, designers, product and business people who are all using the same building blocks to run their publications.</p>\n\n\n\n<p>In 2020, thirteen Newspack publications were awarded <a href=\"https://newspack.pub/2020/05/07/newspack-publishers-earn-share-of-covid-19-relief-package/\">a total of more than $1 million in grants</a> from the Facebook Journalism Program’s relief effort for local news due to Covid-19. Publishing online at a low cost on WordPress has helped many of these publications weather the pandemic, instead of being forced to consolidate or shutter. </p>\n\n\n\n<p>In May, 2020, analysts from <a href=\"https://fundjournalism.org/\">News Revenue Hub</a> published a <a href=\"https://fundjournalism.org/2020/05/26/hub-report-several-sites-are-now-on-newspack-hows-that-going/?utm_source=dlvr.it&utm_medium=twitter\">study</a> examining how Newspack-powered newsrooms are interacting with WordPress. A few key findings showed that Newspack users may require more assistance in managing their sites, which leverage the block editor and come with more than 50 pre-configured plugins:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The role of Newspack in reducing or replacing the need for website management-related technical resources is unclear, and depends greatly on an individual newsroom’s technical knowledge and resources.</p><p>Potential improvements going forward should focus on providing deeper, more standardized education and documentation to broad groups of users.</p></blockquote>\n\n\n\n<p>The report concluded that “Newspack has established itself as a valuable tool for newsrooms, as well as a valuable method for building sites collaboratively,” but warns that the project may face challenges in scaling the hands-on support that pilot newsrooms received in the early stages. More revenue-generating features are still being developed but overall participating newsrooms had a high rate of satisfaction with the platform.</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, 05 Feb 2021 06:38:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:99:\"WPTavern: Call for Feedback on Theme Review Action, a New Automated WordPress Theme Testing Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:241:\"https://wptavern.com/call-for-feedback-on-theme-review-action-a-new-automated-wordpress-theme-testing-project?utm_source=rss&utm_medium=rss&utm_campaign=call-for-feedback-on-theme-review-action-a-new-automated-wordpress-theme-testing-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5176:\"<img />GitHub output of Theme Review Action.\n\n\n\n<p class=\"has-drop-cap\">Automation. It is one of those dreams in the minds of many reviewers from the Themes Team. If there was a tool to take care of 90% of the issues, the team could focus on the 10% not easily found by automated scripts.</p>\n\n\n\n<p>Enter the <a href=\"https://github.com/WordPress/theme-review-action\">Theme Review Action</a> project. Steve Dufresne, a WordPress Meta team contributor, put out a <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">call for testing and feedback </a>of the new project on Monday.</p>\n\n\n\n<p>“If we could combine some of the existing code analysis tools, automate away some of the manual testing and open them up to more development workflows, could we improve theme quality, alleviate pressure on manual testing, and speed up the theme review process?” asked Dufresne.</p>\n\n\n\n<p>The project currently runs several test suites, including the current <a href=\"https://wordpress.org/plugins/theme-check/\">Theme Check</a> plugin. Theme authors can run the texts by running the NPX command in their theme folder, adding it as an action on GitHub, or cloning and running it locally. Running via NPX is not currently supported on Windows.</p>\n\n\n\n<p>Right now, theme authors are needed. Regardless of whether you are building themes for the directory, clients, third-party marketplaces, or a theme shop, this is an opportunity to give back to WordPress. It is also an opportunity to improve the tools that you could benefit from as a theme developer in the long term. Automated theme tests help the entire theme ecosystem.</p>\n\n\n\n<p>“Theme authors need to be open to this and understand that it is not all about requirements,” said Carolina Nymark, a Themes Team representative. “It is about improving theme quality.”</p>\n\n\n\n<p>The project was, in part, informed by a Themes Team <a href=\"https://make.wordpress.org/themes/2020/04/03/proposal-github-theme-review/\">proposal in early 2020</a>. Denis Žoljom identified three problems the team was fighting against:</p>\n\n\n\n<ul><li>People don’t like to read requirements or handbooks.</li><li>Some of the issues that are popping up are repetitive and could be caught automatically.</li><li>Reviewing themes in Trac is really cumbersome.</li></ul>\n\n\n\n<p>The proposal’s focus was on moving reviews to GitHub, focusing on the third point. However, the Theme Review Action project could be the start of handling one or more issues.</p>\n\n\n\n<p>The obvious solution is that the project can be automated. However, because the Theme Review Action project can be set as a GitHub Action, it leaves room for the team’s GitHub review proposal.</p>\n\n\n\n<p>“Two things I mentioned to Steve — and these are my opinions –, is that we need checks that run on theme upload and on live themes, and we need a long-term solution,” said Nymark. “There have been attempts to automate testing before that have not been followed through, and without a plan for how the tool will be used, I am worried about spending time on it.”</p>\n\n\n\n<p>The team had hoped that the <a href=\"https://make.wordpress.org/themes/handbook/theme-sniffer/\">Theme Sniffer</a> project would lead to more automation at one point. It is hard to get hopes up after previous goals never came to fruition.</p>\n\n\n\n<p>“I too have a similar concern where the project might not get enough adoption to make it to .ORG checking, and that is one of the reasons (other than just being super busy) that I haven’t been able to prioritize looking at [Theme Review Action],” said Themes Team rep William Patton.</p>\n\n\n\n<p>While the team and some theme authors still use the Theme Sniffer, the UI leaves a lot to be desired. Nymark pointed out that it was hard for theme authors to distinguish between the baseline requirements and recommendations.</p>\n\n\n\n<p>“To display messages from automated tools that are not strictly requirements is very difficult to get right,” she said. “For example, if a tool started reporting CSS linting errors for the WordPress CSS coding standards, many people would find that too opinionated and limiting.”</p>\n\n\n\n<p>Theme authors, the group that reaps the most financial and reputational benefits from the theme directory, have often been reluctant to chip in. Few companies spare an employee to perform reviews or work on tools that developers and the team need. Calls for testing, feedback, and discussion often go unanswered, leaving a select few to do the lion’s share of the work. For this project to be successful and not feel like something foisted upon them down the road, theme developers need to be in the mix.</p>\n\n\n\n<p>In the <a href=\"https://wptavern.com/wordpress-launches-wp-briefing-podcast-episodes-expected-every-2-weeks\">first episode</a> of the WP Briefing podcast, WordPress Executive Director Josepha Haden Chomphosy talked about focusing on automation as one of this year’s goals. If there is one team that could use such tools, it would be the Themes Team.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Feb 2021 22:51: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:14:\"Justin Tadlock\";s: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:109:\"WPTavern: New Report Estimates WordPress’ Market Share of US Higher Education Institution Websites at 40.8%\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:255:\"https://wptavern.com/new-report-estimates-wordpress-market-share-of-us-higher-education-institution-websites-at-40-8?utm_source=rss&utm_medium=rss&utm_campaign=new-report-estimates-wordpress-market-share-of-us-higher-education-institution-websites-at-40-8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2613:\"<p>A new <a href=\"https://www.eqafy.com/component/content/article/49-higher-education-research/315-us-university-and-college-content-management-systems-2021.html\">report</a> from eQAfy, a company that collects and analyzes data about higher education websites, has benchmarked which content management systems US institutions are using. The report is a snapshot of data from December 2020, sourced from the <a href=\"https://nces.ed.gov/\">National Center for Education Statistics</a> <a href=\"https://nces.ed.gov/ipeds/\">IPEDS database</a>. After scanning a list of 4,000 active institutions, EQAfy’s headless browser was able to detect the CMS for 3,359 homepages (83.8%).</p>\n\n\n\n<p>A market leading group of 12 content management systems made up 90% of the homepages eQAfy detected, including four open source solutions and eight proprietary solutions. WordPress captures 40.8% of the market, followed by Drupal at 19.1%, as measured across all institution types (public, private for profit, and private non-profit), levels (2-year and 4-year), and sizes.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>WordPress’ estimated market share for public institutions came in at 27%, and is much higher in the private for-profit institutions category at 55%. </p>\n\n\n\n<p>Looking at 2-year public higher education institutions by student population, WordPress falls to #3 at just 18.3%. Drupal leads the pack in that category with 29.2%, and proprietary CMS’s take up the rest of the market. WordPress does much better in the category of 4-year private for-profit higher education institutions, capturing a staggering 75% of the market.</p>\n\n\n\n<p>When examining CMS suppliers for institutions by size, WordPress is the overall market leader but does far better in the smallest institutional size categories, with waning dominance in the large to very large categories.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The <a href=\"https://www.eqafy.com/component/content/article/49-higher-education-research/315-us-university-and-college-content-management-systems-2021.html#table-10-2-year-private-non-profit-institutions\">report</a> has more interesting data comparisons across different categories if you want to dig deeper. It’s important to note that eQAfy only collected the main websites for these institutions, which may not be representative of the CMS that powers the schools’ ancillary websites. They are often created using a combination of platforms. This report covers only which CMS the schools preferred to use for the face of their institutions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Feb 2021 04:48:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 05 Mar 2021 11:18:43 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 05 Mar 2021 11:00:15 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20210118040344\";}','no'),(148,'theme_mods_twentytwentyone','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1610798352;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(149,'current_theme','Shutter Up','yes'),(150,'theme_mods_shutter-up','a:12:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:4;}s:18:\"custom_css_post_id\";i:65;s:30:\"shutter_up_header_media_option\";s:21:\"entire-site-page-post\";s:12:\"header_video\";i:56;s:25:\"shutter_up_excerpt_length\";i:15;s:16:\"header_textcolor\";s:6:\"81d742\";s:29:\"shutter_up_header_media_title\";s:56:\"Gardening adds years to your life and life to your years\";s:28:\"shutter_up_header_media_text\";s:0:\"\";s:11:\"custom_logo\";s:0:\"\";s:16:\"background_color\";s:6:\"ffffff\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1614943145;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}}}}','yes'),(151,'theme_switched','','yes'),(152,'widget_ct-social','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(162,'wppb_options','a:3:{i:0;b:0;s:19:\"supported_post_type\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:11:\"css_save_as\";s:7:\"wp_head\";}','yes'),(157,'recently_activated','a:0:{}','yes'),(222,'category_children','a:0:{}','yes'),(309,'_site_transient_timeout_browser_0dfb3ef9c1b48f7db77c2e3064864c91','1615547917','no'),(310,'_site_transient_browser_0dfb3ef9c1b48f7db77c2e3064864c91','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"88.0.4324.190\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(311,'_site_transient_timeout_php_check_8706d9e16ec2aa6542c624d1e3c9facd','1615547917','no'),(313,'_site_transient_timeout_community-events-b973d176064bfc515dd026aa209425dc','1614986321','no'),(314,'_site_transient_community-events-b973d176064bfc515dd026aa209425dc','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"183.83.253.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:41:\"(español) Seguridad básica en WordPress\";s:3:\"url\";s:68:\"https://www.meetup.com/learn-wordpress-discussions/events/276606607/\";s:6:\"meetup\";s:27:\"Learn WordPress Discussions\";s:10:\"meetup_url\";s:51:\"https://www.meetup.com/learn-wordpress-discussions/\";s:4:\"date\";s:19:\"2021-03-10 03:00:00\";s:8:\"end_date\";s:19:\"2021-03-10 04:00:00\";s:20:\"start_unix_timestamp\";i:1615374000;s:18:\"end_unix_timestamp\";i:1615377600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.779998779297003;s:9:\"longitude\";d:-122.41999816895;}}}}','no'),(315,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1614986322','no'),(316,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News – – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Mar 2021 20:10: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:40:\"https://wordpress.org/?v=5.8-alpha-50496\";s:7:\"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:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: February 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/03/the-month-in-wordpress-february-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Mar 2021 16:00: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: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=9842\";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:293:\"You don’t have to be rich to have an online presence. You don’t have to find loopholes in proprietary platforms and hope that they never change their terms of service. You own all of the content that you create on a WordPress site and have the liberty to move it to a new host if […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Hari Shanker R\";s: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:15761:\"\n<blockquote class=\"wp-block-quote\"><p>You don’t have to be rich to have an online presence. You don’t have to find loopholes in proprietary platforms and hope that they never change their terms of service. You own all of the content that you create on a WordPress site and have the liberty to move it to a new host if you need to, or switch your theme if it fits your mood.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was Josepha Haden Chomphosy on <a href=\"https://wordpress.org/news/2021/02/wordpress-is-freedom/\">WordPress is Free(dom) episode</a> of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the four freedoms of open-source software. Those four freedoms are core to how WordPress is developed. A lot of the updates we bring you this month will resonate with those freedoms.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress now powers 40% of the web</h2>\n\n\n\n<p>W3Techs reported that <a href=\"https://w3techs.com/blog/entry/40_percent_of_the_web_uses_wordpress\">WordPress now powers 40% of the top 10 million websites in the world</a>! Every two minutes, a new website using WordPress says, <em>“Hello world”</em>! For the top 1000 sites, the market share is even higher at 51.8%. Over the past 10 years, the growth rate has increased, which is reflected by the fact that 66.2% of all new websites use WordPress!</p>\n\n\n\n<h2>WordPress release updates</h2>\n\n\n\n<p>February was an eventful month for WordPress releases!</p>\n\n\n\n<ul><li>WordPress maintenance releases — <a href=\"https://wordpress.org/news/2021/02/wordpress-5-6-1-maintenance-release/\">version 5.6.1</a> and <a href=\"https://wordpress.org/news/2021/02/wordpress-5-6-2-maintenance-release/\">version 5.6.2</a> — came out this in February. Update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org.</li><li>Members of the Core team are working hard on WordPress 5.7, due in March. <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-3/\">Beta 3</a> versions of WordPress 5.7 launched in February. The <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-release-candidate/\">first</a> and <a href=\"https://wordpress.org/news/2021/03/wordpress-5-7-release-candidate-2/\">second</a> release candidates of WordPress 5.7 are also out! You can test the Beta versions and the release candidate by <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin. To know more about WordPress 5.7, <a href=\"https://make.wordpress.org/polyglots/2021/02/22/wordpress-5-7-ready-to-be-translated/\">check out its field guide</a>. </li></ul>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>. The Core team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&min=00&sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&min=00&sec=0\">8 PM</a>. UTC. You can also contribute to WordPress 5.7 <a href=\"https://make.wordpress.org/polyglots/2021/02/22/wordpress-5-7-ready-to-be-translated/\">by translating it into your local language</a>. Learn more on the <a href=\"https://make.wordpress.org/polyglots/2021/03/02/wordpress-5-7-translation-status-march-2-2020/\">translation status post</a>.</p>\n\n\n\n<h2>Gutenberg celebrates its 100th release with version 10</h2>\n\n\n\n<p>The 100th release of the Gutenberg plugin — <a href=\"https://make.wordpress.org/core/2021/02/17/whats-new-in-gutenberg-10-0-february/\">Version 10</a>, launched on February 17th, more than four years after the project was first announced at WordCamp US 2016. <a href=\"https://wordpress.org/news/2021/02/reflecting-on-gutenbergs-100th-release/\">Matias Ventura’s post</a> offers a bird’s eye view of the project over the last four years. Version 10 adds the basic pages block and makes the parent block selector visible in the block toolbar. <a href=\"https://make.wordpress.org/core/2021/02/05/whats-new-in-gutenberg-9-9-5-february/\">Version 9.9</a> of Gutenberg — coincidentally, the 99th release of the plugin, which is also the latest Gutenberg release that will be featured in WordPress 5.7, also came out in February. Key highlights of the release include custom icons and background colors in social icons, a redesigned options modal for blocks (which is now called block preferences), and text labels in the block toolbar. </p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/handbook/focuses/full-site-editing/\">Full Site Editing (FSE)</a> is an exciting new WordPress feature that allows you to use blocks outside the post or page content. The <a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">main focus</a> of the Core team for 2021 is to merge FSE into WordPress core. Here’s the latest on the Full Site Editing project: </p>\n\n\n\n<ul><li>The <a href=\"https://make.wordpress.org/test/2021/02/18/fse-program-testing-call-2-build-a-homepage-with-site-editing-blocks/\">second call for testing</a> as part of the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing outreach program</a> is out! To participate, <a href=\"https://make.wordpress.org/test/2021/02/18/fse-program-testing-call-2-build-a-homepage-with-site-editing-blocks/\">check out the second testing call</a> on the <a href=\"https://make.wordpress.org/test/\">Make/Test blog</a> and join the <a href=\"https://make.wordpress.org/core/tag/fse-outreach-experiment/\">#fse-outreach-experiment</a> Slack channel. Deadline: March 5, 2021.</li><li>In case you missed participating in the FSE outreach program, <a href=\"https://make.wordpress.org/test/2021/02/04/fse-program-test-fse-anytime/\">you can now test FSE anytime</a> —check out <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/how-to-test-fse/\">this handbook page on testing FSE</a> to learn more.</li><li>Contributor teams are asking for help from local WordPress Communities to support the FSE Project.<a href=\"https://make.wordpress.org/test/2021/02/05/fse-program-connecting-with-local-communities/\"> Learn more on how you can contribute</a>.</li><li><a href=\"https://make.wordpress.org/test/tag/fse-answers/\">Check out these answers</a> for the most common FSE questions on the Make/Test blog.</li><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> has provided an update on the <a href=\"https://make.wordpress.org/core/2021/02/01/full-site-editing-and-themes-where-things-are/\">current status of the FSE and themes</a>.</li></ul>\n\n\n\n<h2>Decision-making checklist for in-person meetups</h2>\n\n\n\n<p>The Community Team <a href=\"https://make.wordpress.org/community/2021/02/16/announcement-decision-making-checklist-for-in-person-meetups-now-available/\">has published handbook pages and a decision-making checklist for organizers</a> to restart in-person meetups at areas where it is safe to do so (e.g., countries such as New Zealand, Australia, and Taiwan, where there are lower COVID-19 risks). However, WordPress meetups and WordCamps in most parts of the world will remain online due to COVID-19.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>The Polyglots team has <a href=\"https://make.wordpress.org/polyglots/2021/02/09/proposal-call-for-volunteers-polyglots-training-working-group/\">kicked-off a proposal to create a working group of contributors </a>to develop training resources for translation contributors.</li><li>The Meta team is actively <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">working on a tool</a> to help the Themes team automate the theme testing process. The team has already shipped a <a href=\"https://github.com/WordPress/theme-review-action\">proof-of-concept of the Theme Review Action tool</a> to test the process and is <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">looking for feedback</a>. The Meta team is also working on <a href=\"https://make.wordpress.org/meta/2021/02/19/reducing-the-plugin-review-teams-workload-through-automation/\">reducing the Plugin team’s workload by improving the code scanner tool</a> used for scanning plugins.</li><li>The <a href=\"https://make.wordpress.org/themes/2021/02/24/meeting-notes-matt-josepha-and-theme-review-team/\">Themes team met with the WordPress project leadership team (Matt Mullenweg and Josepha Haden)</a> about improving the Theme directory. They decided to reframe the theme review process by adding “review guard rails” with automated tooling.</li><li>The Plugin Review Team reiterated that <a href=\"https://make.wordpress.org/plugins/2021/02/16/reminder-forked-premium-plugins-are-not-permitted/\">forked premium plugins are not allowed in the Plugin directory.</a> </li><li>After three weekends of celebrating WordPress, <a href=\"https://india.wordcamp.org/2021/\">WordCamp India 2021</a> concluded on February 15. <a href=\"https://prague.wordcamp.org/2021/\">WordCamp Prague 2021</a> took place on February 27. WordCamp India <a href=\"https://india.wordcamp.org/2021/watch-now/\">videos are already available</a>, and videos of both camps will soon be uploaded to WordPress.tv. </li><li>Several online WordCamps were scheduled this month. <a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica</a>, <a href=\"https://greece.wordcamp.org/2021/\">WordCamp Greece</a>, and <a href=\"https://neo.wordcamp.org/2021/\">WordCamp North East Ohio</a> are scheduled for April 2021. <a href=\"https://japan.wordcamp.org/2021/\">WordCamp Japan</a> takes place in June and has opened-up their <a href=\"https://japan.wordcamp.org/2021/call-for-speakers-is-now-open/\">call for speakers in English and Japanese</a>. Meanwhile, the inaugural <a href=\"https://cochabamba.wordcamp.org/2021/\">WordCamp Cochabamba (Bolivia)</a> runs in July!.</li><li>The Community Team wants <a href=\"https://make.wordpress.org/community/2021/02/25/proposal-to-improve-the-organizing-experience-for-online-wordcamps/\">feedback on how to improve online WordCamps</a>. The team has also announced a <a href=\"https://make.wordpress.org/community/2021/02/18/proposal-2021-global-community-sponsorship-program/\">revamped 2021 Global Community sponsorship program</a> to support online events.</li><li>The Design Team is <a href=\"https://make.wordpress.org/design/2021/02/03/review-feedback-request-ux-for-learn-wordpress-org/\">reviewing the user experience</a> for <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>. Please share any <a href=\"https://make.wordpress.org/design/2021/02/03/review-feedback-request-ux-for-learn-wordpress-org/\">design-feedback that you have as comments on the post</a>.</li><li>The Accessibility Team is working on <a href=\"https://make.wordpress.org/accessibility/2021/02/28/accessibility-team-meeting-notes-february-26-2021/\">publishing the updated accessibility standards document </a>(with regard to WCAG 2.1 changes) alongside the WordPress version 5.7 release. The team has also <a href=\"https://make.wordpress.org/accessibility/2021/02/28/accessibility-teams-goals-for-wordpress-5-8-and-beyond/\">started brainstorming goals for WordPress 5.8</a> and beyond. </li><li>The Support Team is <a href=\"https://make.wordpress.org/support/2021/02/rethinking-the-master-list/\">rethinking the use of the master list</a> used for troubleshooting recurring issues. The team is also <a href=\"https://make.wordpress.org/support/2021/02/removing-plugin-and-theme-names-used-as-topic-tags-on-the-forums/\">removing plugin/theme names used as topic tags</a> in forums.</li><li>The Training Team has <a href=\"https://make.wordpress.org/training/2021/03/02/march-2021-sprint-planning/\">kicked off their March 2021 sprint planning</a> to work on their goals.</li><li>The <a href=\"https://make.wordpress.org/core/tag/feature-notifications/\">WP Notify project</a> working group (which is working toward a better notification system for WordPress) has completed the <a href=\"https://github.com/WordPress/wp-notify/wiki/Requirements-(v1)\">first version of the requirements document</a>, and officially kicked off <a href=\"https://make.wordpress.org/core/2021/02/09/wp-notify-meeting-notes-february-8-2021/\">active development of the feature plugin</a>. Contact the team in the <a href=\"https://wordpress.slack.com/archives/C2K1C71FE\">#feature-notifications</a> Slack channel if you would like to contribute. You can start by reviewing the <a href=\"https://github.com/WordPress/wp-notify/issues\">list of the current issues</a>.</li><li><a href=\"https://wordpress.org/news/2021/02/people-of-wordpress-pooja-derashri/\">Pooja Derashri of India</a> was featured in February’s <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a> series. A cross-team initiative led by the Marketing Team with support from <a href=\"https://heropress.com/\">HeroPress</a>, the series aims to highlight lesser-known stories of WordPress contributors. The Contributor Story series is collecting new features. If you are an active contributor to a WordPress.org team or a local WordCamp, contact the <a href=\"https://make.wordpress.org/marketing/\">Marketing Team</a> in the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> Slack channel for more information.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\n\n\n\n<p><em>The Month in WordPress post series is a collective effort, and it would not be possible without contributions from different members of the WordPress Community. Starting this month, we would like to credit and thank all individuals that support this effort with their contributions. I would like to thank the following folks for their contributions to February’s Month in WordPress: <a href=\'https://profiles.wordpress.org/adityakane/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adityakane</a> <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a> <a href=\'https://profiles.wordpress.org/courtneypk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courtneypk</a> <a href=\'https://profiles.wordpress.org/kristastevens/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kristastevens</a></em> <em>and <a href=\'https://profiles.wordpress.org/psykro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psykro</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9842\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.7 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/03/wordpress-5-7-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Mar 2021 20:49: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:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9829\";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:394:\"The second release candidate for WordPress 5.7 is now available! ? You can test the WordPress 5.7 release candidate in two ways: Try the WordPress Beta Tester plugin (choose the “Bleeding edge” channel and Beta/RC Only” stream options) Or download the release candidate here (zip). Thank you to all of the contributors who tested the Beta/RC releases and gave […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Ebonie Butler\";s: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:2713:\"\n<p>The second release candidate for WordPress 5.7 is now available! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>You can test the WordPress 5.7 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “Bleeding edge” channel and Beta/RC Only” stream options)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.7-RC2.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta/RC releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</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.7 and update the <em>Tested up to</em> version in the readme file to 5.7. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so those can be figured out before the final release.</p>\n\n\n\n<p>The <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide\">WordPress 5.7 Field Guide</a> will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<p><em>Props to <a href=\'https://profiles.wordpress.org/lukecarbis/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lukecarbis</a> for the haiku and <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> and <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a> for peer reviewing!</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Five-seven next week<br>So test your plugins and themes<br>Update your readme</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:\"9829\";s: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:75:\"\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:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Did You Know About Reusable Blocks?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Feb 2021 19:17:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{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:13:\"Uncategorized\";s: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:\"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:3;a:5:{s:4:\"data\";s:9:\"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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9777\";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:55:\"Learn about reusable blocks in this 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:9:\"enclosure\";a:9:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:61:\"https://wordpress.org/news/files/2021/02/1_create_content.mov\";s:6:\"length\";s:7:\"1586076\";s:4:\"type\";s:15:\"video/quicktime\";}}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:66:\"https://wordpress.org/news/files/2021/02/2_convert_to_reusable.mov\";s:6:\"length\";s:7:\"2637657\";s:4:\"type\";s:15:\"video/quicktime\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:66:\"https://wordpress.org/news/files/2021/02/3_reusable_blocks_tab.mov\";s:6:\"length\";s:7:\"1482152\";s:4:\"type\";s:15:\"video/quicktime\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:68:\"https://wordpress.org/news/files/2021/02/4_saving_global_changes.mov\";s:6:\"length\";s:7:\"2110818\";s:4:\"type\";s:15:\"video/quicktime\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:73:\"https://wordpress.org/news/files/2021/02/5_manage_all_reusable_blocks.mov\";s:6:\"length\";s:7:\"2310871\";s:4:\"type\";s:15:\"video/quicktime\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/02/6_tip_name_them.mov\";s:6:\"length\";s:7:\"1498729\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:64:\"https://wordpress.org/news/files/2021/02/7_tip_place_in_flow.mov\";s:6:\"length\";s:7:\"8545345\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:66:\"https://wordpress.org/news/files/2021/02/8_tip_import_export-1.mov\";s:6:\"length\";s:7:\"5534991\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:65:\"https://wordpress.org/news/files/2021/02/10_complex_layouts-2.mov\";s:6:\"length\";s:8:\"22852109\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Chloe Bringmann\";s: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:8397:\"\n<p><strong><em>Created by Joen Asmussen, <a href=\'https://profiles.wordpress.org/joen/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joen</a></em></strong></p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?resize=585%2C329&ssl=1\" alt=\"\" class=\"wp-image-9803\" width=\"585\" height=\"329\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?resize=1024%2C577&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?resize=300%2C169&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?resize=768%2C433&ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?w=1440&ssl=1 1440w, https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?w=1264&ssl=1 1264w\" sizes=\"(max-width: 585px) 100vw, 585px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>The WordPress block editor (a.k.a. Gutenberg) comes with a feature called “reusable blocks.” They are blocks, saved for later, edited in one place.</p>\n\n\n\n<p>Have you ever wanted to:</p>\n\n\n\n<ul><li>Re-use the same snippet of text across posts and pages?</li><li>Save complex layouts to spare you having to copy/paste from one post to another?</li></ul>\n\n\n\n<p>Reusable blocks can do these things.</p>\n\n\n\n<h2>Like templates, you mean?</h2>\n\n\n\n<p>Not quite. Think of reusable blocks as snippets of globally synchronized content that are personal to you. You can edit all your reusable blocks in one place, and any post or page you inserted that block into, get the updated version as well. </p>\n\n\n\n<p>Where you might use templates to structure your website, you can use reusable blocks to structure your content. For example:</p>\n\n\n\n<ul><li>A testimonial on your homepage and your product page.</li><li>A “this post is part of a series” box that you insert part-way through your article.</li><li>A “Follow me on social media” section you can weave into the prose of your popular article.</li><li>Complex but static blocks, such as a “Subscribe to my newsletter” box, a contact form, a survey, quiz, or polls.</li></ul>\n\n\n\n<p>Key properties are that reusable blocks are unbeatable when you want to reuse a snippet of content, edit it in one place, and have the changes propagate to every instance.</p>\n\n\n\n<h2>Show me how</h2>\n\n\n\n<p>To create a reusable block, open the block editor and create the content you want to reuse:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/1_create_content.mov\"></video></figure>\n\n\n\n<p>Now select the content you want to turn into a reusable block, then click the three-dot “More” menu and choose “Add to Reusable blocks.”</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/2_convert_to_reusable.mov\"></video></figure>\n\n\n\n<p>Voilà, you’ve now created a reusable block. From now on, you can find this block, and any other you create, in the “Reusable blocks” tab in the block library:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/3_reusable_blocks_tab.mov\"></video></figure>\n\n\n\n<p>This is also where you can insert the newly created block on any of your posts or pages.</p>\n\n\n\n<h2>Where do I edit my existing reusable blocks?</h2>\n\n\n\n<p>To edit a reusable block, select it and make your edits. When you make an edit, the Publish button will have a little dot indicator:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/4_saving_global_changes.mov\"></video></figure>\n\n\n\n<p>This dot indicates you’ve made a global change that potentially affects posts beyond just the one you’re editing, the same as when you’re editing templates. This lets you confirm the change was intentional.</p>\n\n\n\n<p><strong>Another way to edit your reusable blocks</strong> is to click the global three-dot “More” menu and selecting “Manage all reusable blocks”:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/5_manage_all_reusable_blocks.mov\"></video></figure>\n\n\n\n<p>This takes you to a section letting you edit, rename, export, or delete every reusable block you created. </p>\n\n\n\n<h2>What else can I do?</h2>\n\n\n\n<p>Here are a couple of tips and tricks you can leverage to get the most out of reusable blocks.</p>\n\n\n\n<h3>Give them a good name</h3>\n\n\n\n<p>When you name a reusable block, you are essentially choosing your search terms, as the name is what you search for in the block library (or when you use the “slash command,” typing / in an empty paragraph):</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/6_tip_name_them.mov\"></video></figure>\n\n\n\n<p>Avoid names such as “Gallery” or “Image,” as that’ll be annoying when you just want to insert one of those. You can avoid that with a unique name, such as “My author biography.”</p>\n\n\n\n<h3>Insert in the best place of your content flow</h3>\n\n\n\n<p>One obvious benefit of reusable blocks is that they are just blocks, just like everything else in the block editor. That means you can insert it anywhere in your content. You might want your rich author biography to sit at the top or bottom of the post, but <em>This post is part of a series</em> box that might sit well two or three paragraphs not to disrupt the reading flow.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/7_tip_place_in_flow.mov\"></video></figure>\n\n\n\n<h3>A design shortcut</h3>\n\n\n\n<p>Maybe you created a complex layout you’re happy with, a call to action with the right image and buttons, and it took a while to get it just right. Go on and save it as a reusable block: even if you mean to insert it only to convert it to a regular block, it might still save you a minute. </p>\n\n\n\n<p>To convert a reusable block to regular (blocks, select it and click the “Convert to regular blocks”:</p>\n\n\n\n<p></p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/10_complex_layouts-2.mov\"></video></figure>\n\n\n\n<p><em>Design by </em><a href=\"https://beatrizfialho.com/\"><em>Beatriz Fialho</em></a><em>.</em></p>\n\n\n\n<p><strong>Tip:</strong> You can also find some nice patterns on <a href=\"https://gutenberghub.com/\">Gutenberg Hub</a> or <a href=\"https://shareablock.com/\">ShareABlock</a>.</p>\n\n\n\n<h3>Take it with you</h3>\n\n\n\n<p>Need to move to another site? You can both export and import reusable blocks. Go to the <em>Manage all reusable blocks</em> section from the global three-dot “More” menu, hover over the block you want to export, and click “Export as JSON”:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/8_tip_import_export-1.mov\"></video></figure>\n\n\n\n<p>The downloaded file can be imported on any WordPress 5.0 or newer website.</p>\n\n\n\n<h2>Try it</h2>\n\n\n\n<p>Create a draft post and play around with Reusable Blocks to see how you might start using them. You can always delete them when you’re done playing.</p>\n\n\n\n<p>You can test importing and using a small reusable block I created as an example. It’s a “Further reading” block that shows the four latest posts from the category “Featured”:</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh6.googleusercontent.com/33_L1WQrTxNiidm8IKcSfn7_nYjcpq5zpSzycmKliDnGzFI_hLu7yLPV1vnqWgCS7H6JtFAGEXz-AVkNBLtQQEM80VA6KUfcmj1JAoVZ5ZNMavVzlGzBPEiqiD3-eUzZSvOTYm_E\" alt=\"\" /></figure>\n\n\n\n<p>It might work well as a highlight in an article, giving the reader something new to read or awareness of your other content.</p>\n\n\n\n<p><em><strong>The videos in this post show the reusable blocks flow in the upcoming WordPress 5.7.</strong></em></p>\n\n\n\n<p><a href=\"https://gist.github.com/jasmussen/53cb51dcd9a2bb561893aa7c5e126cdf\"><strong>Download the block from this gist</strong></a>, import it to your WordPress site, then customize to make it yours.</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:\"9777\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.7 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/2021/02/wordpress-5-7-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:\"Tue, 23 Feb 2021 21:07: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:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9773\";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:\"The first release candidate for WordPress 5.7 is now available! ? Please join us in celebrating this very important milestone in the community’s progress towards the final release! “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Ebonie Butler\";s: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:3842:\"\n<p>The first release candidate for WordPress 5.7 is now available! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Please join us in celebrating this very important milestone in the community’s progress towards the final release!</p>\n\n\n\n<p>“Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.7 is slated for release on <strong>March 9, 2021</strong>, but <em>your</em> help is needed to get there—if you haven’t tried 5.7 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.7 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “Bleeding edge” channel and Beta/RC Only” stream options)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.7-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>What’s in WordPress 5.7?</h2>\n\n\n\n<ul><li>Robots API and Media Search Engine Visibility</li><li>Detect HTTPS support</li><li>Lazy-load iframes</li><li>jQuery migrate-related Deprecation notice clean-up</li><li>Admin color palette standardization</li><li><a href=\"https://make.wordpress.org/core/2021/02/05/whats-new-in-gutenberg-9-9-5-february/\">Version 9.9</a> of the Gutenberg plugin.</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.7 and update the <em>Tested up to</em> version in the readme file to 5.7. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so those can be figured out before the final release.</p>\n\n\n\n<p>The <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide\">WordPress 5.7 Field Guide</a> will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.7 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<p><em>Props to <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> for copy suggestions and <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a> for final review.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Test this test that <br>Catch everything that you can<br>Before it’s live…</em><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f92f.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:\"9773\";s: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:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.6.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/2021/02/wordpress-5-6-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:\"Mon, 22 Feb 2021 15:35:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=9764\";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:452:\"WordPress 5.6.2 is now available! This maintenance release includes 5 bug fixes. These bugs affect WordPress version 5.6.1, so you’ll want to upgrade. You can download WordPress 5.6.2 directly, or visit the Dashboard → Updates screen and click Update Now. If your sites support automatic background updates, they’ve already started the update process. WordPress 5.6.2 is a small maintenance release focused […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5124:\"\n<p>WordPress 5.6.2 is now available!</p>\n\n\n\n<p>This maintenance release includes <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.6.2&group=component&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">5 bug fixes</a>. These bugs affect WordPress version 5.6.1, so you’ll want to upgrade.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.6.2.zip\">download WordPress 5.6.2 directly</a>, or visit the<strong> Dashboard → Updates</strong> screen and click <strong>Update Now</strong>. If your sites support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>WordPress 5.6.2 is a small maintenance release focused on fixing user-facing issues discovered in 5.6.1. The next major release will be <a href=\"https://make.wordpress.org/core/5-7/\">version 5.7</a>, currently scheduled for release on March 9, 2021.</p>\n\n\n\n<p>To see a full list of changes, you can browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.6.2&group=component&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">list on Trac</a>, read the <a href=\"https://make.wordpress.org/core/2021/02/17/wordpress-5-6-2-rc1/\">5.6.2 RC1</a> post, or visit the <a href=\"https://wordpress.org/support/wordpress-version/version-5-6-2/\">5.6.2 documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.6.2 release was led by <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>. Special props to <a href=\'https://profiles.wordpress.org/isabel_brison/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>isabel_brison</a> and <a href=\'https://profiles.wordpress.org/talldanwp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>talldanwp</a> for helping to prepare the block editor related fixes, and <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> and <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> for helping with other release related tasks.</p>\n\n\n\n<p>Props to everyone who helped make WordPress 5.6.2 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André Maneiro</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bartosz777/\">bartosz777</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dbtedg/\">dbtedg</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/hmabpera/\">hmabpera</a>, <a href=\"https://profiles.wordpress.org/ibiza69/\">ibiza69</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/viablethought/\">Jason Ryan</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/hwk-fr/\">Konrad Chmielewski</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/magnuswebdesign/\">magnuswebdesign</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/roger995/\">roger995</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/tonysandwich/\">tonysandwich</a>, <a href=\"https://profiles.wordpress.org/worldedu/\">worldedu</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9764\";s: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:66:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Reflecting on Gutenberg’s 100th 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:74:\"https://wordpress.org/news/2021/02/reflecting-on-gutenbergs-100th-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:\"Fri, 19 Feb 2021 18:34:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}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:13:\"Uncategorized\";s: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:\"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:34:\"https://wordpress.org/news/?p=9750\";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:227:\"Gutenberg 10.0 released this week, February 17, 2021, marking the 100th release of the Gutenberg plugin; the 100th release of a journey that started more than four years ago when Matt announced the project at WordCamp US 2016. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Riad Benguella\";s: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:3881:\"\n<figure class=\"wp-block-jetpack-image-compare\"><div class=\"juxtapose\" data-mode=\"horizontal\"><img loading=\"lazy\" id=\"9751\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/02/gutenberg_past_3.png?resize=632%2C336&ssl=1\" alt=\"\" width=\"632\" height=\"336\" class=\"image-compare__image-before\" data-recalc-dims=\"1\" /><img loading=\"lazy\" id=\"9752\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/02/gutenberg_today_4.png?resize=632%2C336&ssl=1\" alt=\"\" width=\"632\" height=\"336\" class=\"image-compare__image-after\" data-recalc-dims=\"1\" /></div><figcaption>1.0 to 10.0</figcaption></figure>\n\n\n\n<p>Gutenberg 10.0 released this week, February 17, 2021, marking the 100th release of the Gutenberg plugin; the 100th release of a journey that started more than four years ago when Matt announced the project at WordCamp US 2016. </p>\n\n\n\n<h2>Where We Started</h2>\n\n\n\n<p>The past four years have not always been an easy journey. Shipping something this impactful is not easy, and there was precedent for keeping the editor as it was: WordPress had already tried to replace TinyMCE a couple of times already. What would be different this time around? The worry was “not much” and initially, very few people actively joined the project.</p>\n\n\n\n<p>Six months later came WordCamp Europe 2017 and the first release of the plugin. The editor was nowhere close to being usable, but it “clicked” for some. The reactions to <a href=\"https://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/\">the presentation</a> were hopeful, but afterward, there was a lot of pushback.</p>\n\n\n\n<p>Gutenberg was (and is) an audacious project. With a project this big it attracted a lot of attention, and it became difficult to discern constructive debate from mere opposition. We each come with our context, and some people had a fixed idea about what they wanted for the project. Some wanted to reuse an existing page builder, others wanted to revive the Fields API project, some wanted it to be front-end-first, others wanted it just to replace the classic editor’s content area, some wanted it to be in Vue.JS, others wanted no change at all. With a product used by 40% of the web, you hope to find consensus, and when compromises have to be made, it can be difficult for those involved to avoid feeling that their voice is being ignored.</p>\n\n\n\n<p>We have also made quite a few mistakes: stability wasn’t great in some releases, performance suffered in others, and accessibility as well. But we kept pushing forward, using feedback to improve the editor and the project in all aspects until its first inclusion in WordPress 5.0, and we’re still working to improve it today.</p>\n\n\n\n<h2>Where We Are</h2>\n\n\n\n<p>It’s a delight to see some people who strongly disagreed with the initial vision or approach to Gutenberg gradually come to enjoy using the editor and join the project to carry on its vision. Others might still not like it; some won’t ever use it. One thing is certain; we’ll continue doing our best to push forward, improve what’s already shipped, and ship new exciting features. We’ll continue making mistakes and hopefully continue learning from them.</p>\n\n\n\n<p>Wednesday marked the 100th release of Gutenberg, and while that looks remarkable on the outside, the release itself holds what all the other releases did. It holds improvements to the existing features, it fixes bugs that users reported, adds new features, and it highlights experiments with new ideas.</p>\n\n\n\n<p>What is remarkable about the release is the people. The ones who were with us from the start, the ones who were with us but left, the ones who joined in our journey, everyone who helped along the way, everyone who provided feedback, everyone who got their hands dirty, and everyone who tried to use this editor, extend it and provide ideas.</p>\n\n\n\n<p>Thank you all.</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:\"9750\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.7 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Feb 2021 21:25:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9727\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"WordPress 5.7 Beta 3 is now available for testing! ? This software is still in development, so it’s not recommended to run this version on a production site. Consider setting up a test site to play with it. You can test the WordPress 5.7 Beta 3 in two ways: Install/activate the WordPress Beta Tester plugin (select […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Ebonie Butler\";s: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:4891:\"\n<p>WordPress 5.7 Beta 3 is now available for testing! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f5e3.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p><strong>This software is still in development,</strong> so it’s not recommended to run this version on a production site. Consider setting up a test site to play with it.</p>\n\n\n\n<p>You can test the WordPress 5.7 Beta 3 in two ways:</p>\n\n\n\n<ul><li>Install/activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the <code>Bleeding edge</code> channel and the <code>Beta/RC Only</code> stream)</li><li>Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.7-beta3.zip\">zip</a>).</li></ul>\n\n\n\n<p>The current target for final release is March 9, 2021. That’s just <strong>three weeks away</strong>, so your help is vital to making sure that the final release is as good as it can be.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-2/\">Beta 2</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F10%2F2021..02%2F17%2F2021&milestone=5.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">27</a> bugs have been fixed. Here is a summary of some of the included changes:</p>\n\n\n\n<ul><li>Adjusted color contrast on various admin buttons to improve accessibility and readability (<a href=\"https://core.trac.wordpress.org/ticket/52402\">#52402</a>)</li><li>Several fixes for the Twenty Twenty-One theme (<a href=\"https://core.trac.wordpress.org/ticket/52287\">#52287</a>, <a href=\"https://core.trac.wordpress.org/ticket/52377\">#52377</a>, <a href=\"https://core.trac.wordpress.org/ticket/52431\">#52431</a>, <a href=\"https://core.trac.wordpress.org/ticket/52500\">#52500</a>, <a href=\"#52502\">#5</a><a href=\"https://core.trac.wordpress.org/ticket/52502\">2</a><a href=\"#52502\">502</a>, <a href=\"https://core.trac.wordpress.org/ticket/52412\">#52412</a>)</li><li>Replaced editor typeface with system fonts to improve privacy and performance (<a href=\"#46169\">#46169</a>)</li><li>Added i18n support to <code>register_block_type_from_metadata</code> function (<a href=\"https://core.trac.wordpress.org/ticket/52301\">#52301</a>)</li><li>Media upload errors are now more accessible (<a href=\"https://core.trac.wordpress.org/ticket/47120\">#47120</a>)</li><li>New filter to modify how pagination links are rendered when using <code>paginate_links</code> function (<a href=\"https://core.trac.wordpress.org/ticket/44018\">#44018</a>)</li></ul>\n\n\n\n<h2><strong>How You Can Help</strong></h2>\n\n\n\n<p>Watch the Make WordPress Core blog for 5.7-related developer notes in the coming weeks, which will break down these and other changes in greater detail.</p>\n\n\n\n<p>So far, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=..02%2F16%2F2021&milestone=5.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">171 tickets in WordPress 5.7</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&status=reopened&changetime=..02%2F16%2F2021&type=enhancement&type=feature+request&milestone=5.7&group=component&col=id&col=summary&col=type&col=status&col=milestone&col=changetime&col=owner&col=priority&col=keywords&order=changetime\">64 new features and enhancements</a>, and more bug fixes are on the way.</p>\n\n\n\n<p><strong>Do some testing!</strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testing for bugs</a> is a vital part of polishing the release during the beta stage and a great way to contribute. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> area in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report, file one on <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a> and <a href=\"https://profiles.wordpress.org/lukecarbis/\">@lukecarbis</a> for your peer revisions.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Finish line ahead<br>Defects in focus<br>We are almost there…</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:\"9727\";s: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:72:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"People of WordPress: Pooja Derashri\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/02/people-of-wordpress-pooja-derashri/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 11 Feb 2021 23:10: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:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s: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:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:16:\"ContributorStory\";s: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:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People 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:34:\"https://wordpress.org/news/?p=9652\";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:169:\"Pooja Derashri shares the story of how she went from being an introverted girl from a small village in India to becoming a developer, thanks to the WordPress community. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s: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:10697:\"\n<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories that are lesser-known.</em></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"331\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/02/pic1.jpg?resize=632%2C331&ssl=1\" alt=\"Pooja standing in a banner "I\'m a WordPress fan"\" class=\"wp-image-9719\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/02/pic1.jpg?resize=1024%2C536&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/02/pic1.jpg?resize=300%2C157&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/02/pic1.jpg?resize=768%2C402&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/02/pic1.jpg?w=1200&ssl=1 1200w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Pooja Derashri shares the story of how she went from being an introvert from a small village in India to becoming a developer and working on international projects, thanks to the WordPress community. </p>\n\n\n\n<p>As her interest grew, Pooja started following some WordPress-based groups on Facebook, where she first heard about conference-style WordPress events known as WordCamps. She later joined her first WordCamp in Ahmedabad, India. This three day event in 2017 opened up a new world—the WordPress community—and what would become a life changing moment. “WordCamp Ahmedabad has one of the best WordPress communities in India,” she said, “and everyone, including organizers and attendees were so humble and welcoming.”</p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2021/02/pooja600x600.jpg?w=500&ssl=1\" alt=\"\" class=\"wp-image-9654\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/02/pooja600x600.jpg?w=600&ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2021/02/pooja600x600.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/02/pooja600x600.jpg?resize=150%2C150&ssl=1 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2><strong>The thirst for learning</strong></h2>\n\n\n\n<p>A fascination with how things worked and a desire never stop learning were traits that shone through in Pooja from a young age. She moved from Banera, a rural village in India, to a nearby city, where she lived with her uncle while completing her higher education. With her enthusiasm for learning, she decided to become an engineer. When thinking back on that time she says, “Being from a rural background, people in my village tended not to be keen on the idea of sending their girl child to another city for further studies. Fortunately, that was not the case for me because my parents were immensely supportive of me and my interests. They’ve always encouraged me to believe in myself and fulfill my dreams. With their support, I pursued my engineering in electronics and communication.”</p>\n\n\n\n<h2><strong>Discovering the opportunities in web development </strong></h2>\n\n\n\n<p>On completing her engineering training, Pooja was not sure what to do next. One of her friends suggested that she should explore web development. The idea intrigued her, and she sought out learning resources to study. She also secured an internship as a PHP Developer to give herself the chance to learn alongside professionals in the field.</p>\n\n\n\n<h2><strong>Getting started with WordPress</strong></h2>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>“I found WordPress surpassed other platforms. The vast knowledge base made it easy for me to learn.” – Pooja</strong></p></blockquote>\n\n\n\n<p>This internship led Pooja to her first job where she discovered a range of content management systems. Her view of the opportunities offered by these systems changed when the manager assigned her a small project using the WordPress platform. </p>\n\n\n\n<p>She recalls: “I found WordPress surpassed other platforms I had worked on earlier. The vast knowledge base made it easy for me to learn.” She soon became comfortable managing WordPress, working with plugins and themes, and wanted to learn it more in-depth.</p>\n\n\n\n<p>Pooja soon joined WPVibes as its first team member. Being part of a new startup gave her a lot of experience and a chance to be involved in new processes. As the company expanded they started providing custom plugin development services per the client’s requirement and created some free and paid plugins. Pooja said, “We found it very exciting and productive. Today, we are a team of 10.”</p>\n\n\n\n<h2><strong>Encouragement from the WordPress community</strong></h2>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Contributing to WordPress increases your knowledge</strong></p></blockquote>\n\n\n\n<p>At the event, she was able to listen to speakers from India and abroad, many of whom shared their journey with WordPress and how it had changed their lives. “One of the most inspiring sessions was by Rahul Bansal,” she said. “He talked about contributing to WordPress and giving back to the community. He also explained how contributing to WordPress can help you to enhance your knowledge. It inspired me to contribute to WordPress.”</p>\n\n\n\n<p>The WordPress community of Ahmedabad continued to inspire Pooja and her husband Anand Upadhyay, and they later started a Meetup group in their home city of Ajmer as part of their contribution to the community. They continue to be involved in supporting local users through the <a href=\"https://www.meetup.com/ajmer-wordpress-meetup/\">Ajmer Meetup</a>.</p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><img src=\"https://lh5.googleusercontent.com/KmA8iDgGrRar_cgD2jp2ThrzPxuzGTSI7SWkxDdHKyN4p2iNoj0e-VdOxO0xa1TtH56Uci9wEfYYfnW8DYji8c1HuaI7L-xhNqXyXt_kdchWtVxe_PnSea2knlWhP_O7qqG0Quju\" alt=\"Pooja with a WordCamp Ahmedabad badge\" width=\"500\" /></figure>\n\n\n\n<p>At the next WordCamp Pooja attended, she joined its contributor day, which brings users together to give back to the open source platform and global community. Most of the contributors she met were interested in giving time to the WordPress CMS. She decided to venture into a different path and took her first steps by joining the WordPress TV group, where you can explore videos from WordPress events across the world. She also discovered the joy of translating into her local language, and is a <a href=\"https://make.wordpress.org/polyglots/\">Polyglot</a> contributor for the Hindi language.</p>\n\n\n\n<p>In 2019, she was selected as a volunteer for WordCamp Asia in Bangkok, Thailand, and it became an impetus to become even more involved with the community. She was very excited about this role, and to be part of her first WordCamp outside India. Sadly, due to the global COVID pandemic, the event had to be cancelled. Her enthusiasm has not diminished and she is eagerly waiting to support in-person WordCamps in the future and meet even more members of the global community.</p>\n\n\n\n<p>Her determination to be part of making WordPress and sharing skills has only increased, which has led to contribute to the WordPress Training team. This team manages lesson plans and prepares content to support people who are training others to use WordPress. The team recently joined a few other teams to <a href=\"https://wordpress.org/news/2020/12/introducing-learn-wordpress/\">launch Learn WordPress</a>, which brings learning materials together for users of all levels, and Pooja contributed to two different teams during the project.</p>\n\n\n\n<h2><strong>Message to the WordPress Community</strong></h2>\n\n\n\n<p>Pooja is eager to share her belief in the power for good in the WordPress community. “There is a huge community to help you with your learning, so start learning and try to give back to the community. It doesn’t matter if you are not comfortable with programming, there are many different ways in which you can contribute.” </p>\n\n\n\n<p>“What I have learned in my life is that it doesn’t matter from where you came and what background you have. All that matters is your hard work and positive attitude towards life.”</p>\n\n\n\n<p>Read more stories in the <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress series</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p><em>Thanks to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) and Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>) for writing this story, and to Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\">@sthakor</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Olga Glekler (<a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>), Christopher Churchill (<a href=\'https://profiles.wordpress.org/vimes1984/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>vimes1984</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), and Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a>) for work on the series this month. Thank you also to Pooja Derashri (<a href=\'https://profiles.wordpress.org/webtechpooja/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webtechpooja</a>) for sharing her #ContributorStory.</em></p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:100%\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\" style=\"grid-template-columns:27% auto\"><figure class=\"wp-block-media-text__media\"><img src=\"https://lh4.googleusercontent.com/E9y8t1dTqeOylNc4mkC0KeQfmCisFLy4790Idt2DYwWdKSEwCh7RlsAmTcnRYuTb7jqXzwtYVjPRsXDVTh_HREDUWAbB-sOOXuC7HEZR-uEeV046dl8X3eU9kG6fpIXkRn0SbDcT\" alt=\"HeroPress logo\" /></figure><div class=\"wp-block-media-text__content\">\n<p><em>This post is based on an article originally published on HeroPress.com, an initiative focused around people in the WordPress community created by </em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>.</em></p>\n</div></div>\n</div>\n</div>\n\";s: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:\"9652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.7 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Feb 2021 20:42:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9688\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"WordPress 5.7 Beta 2 is now available for testing! ? This software is still in development, so it’s not recommended to run this version on a production site. Consider setting up a test site to play with it. You can test the WordPress 5.7 Beta 2 in two ways: Install/activate the WordPress Beta Tester plugin (select […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Ebonie Butler\";s: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:5291:\"\n<p>WordPress 5.7 Beta 2 is now available for testing! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f5e3.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p><strong>This software is still in development,</strong> so it’s not recommended to run this version on a production site. Consider setting up a test site to play with it.</p>\n\n\n\n<p>You can test the WordPress 5.7 Beta 2 in two ways:</p>\n\n\n\n<ul><li>Install/activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the <code>Bleeding edge</code> channel and the <code>Beta/RC Only</code> stream)</li><li>Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.7-beta2.zip\">zip</a>).</li></ul>\n\n\n\n<p>The current target for final release is March 9, 2021. That’s just <strong>four weeks away</strong>, so your help is vital to making sure that the final release is as good as it can be.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\">Beta 1</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F03%2F2021..02%2F10%2F2021&milestone=5.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">38</a> bugs have been fixed. Here is a summary of some of the included changes:</p>\n\n\n\n<ul><li>Italicized text has been removed to improve accessibility and readability (<a href=\"https://core.trac.wordpress.org/ticket/47327\">#47326</a>)</li><li>Pause any playing media when closing the the media modal (<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/48562\">#48562</a>)</li><li>Add Content-Security-Policy script loaders (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/39941\" target=\"_blank\">#39941</a>)</li><li>Several fixes for the Twenty Twenty-One theme (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/50454\" target=\"_blank\">#50454</a>, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/52432\">#52432</a>, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/52433\">#52433</a>, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/52473\">#52473</a>, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/52477\">#52477</a>, <a href=\"https://core.trac.wordpress.org/ticket/52374\">#52374</a>)</li><li>Gutenberg editor support for custom spacing (<a href=\"https://core.trac.wordpress.org/ticket/51760\">#51760</a>)</li><li>Resolved Menu UI issues on medium-large screen sizes (<a href=\"https://core.trac.wordpress.org/ticket/49576\">#49576</a>)</li><li>Admin UI color palette: ensure that all interactive elements have an appropriate contrast ratio (<a href=\"https://core.trac.wordpress.org/ticket/52402\">#52402</a>)</li></ul>\n\n\n\n<h2><strong>How You Can Help</strong></h2>\n\n\n\n<p>Watch the Make WordPress Core blog for 5.7-related developer notes in the coming weeks, which will break down these and other changes in greater detail.</p>\n\n\n\n<p>So far, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=..02%2F09%2F2021&milestone=5.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">157 tickets in WordPress 5.7</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&status=reopened&changetime=..02%2F03%2F2021&type=enhancement&type=feature+request&milestone=5.7&group=component&col=id&col=summary&col=type&col=status&col=milestone&col=changetime&col=owner&col=priority&col=keywords&order=changetime\">68 new features and enhancements</a>, and more bug fixes are on the way.</p>\n\n\n\n<p><strong>Do some testing!</strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testing for bugs</a> is a vital part of polishing the release during the beta stage and a great way to contribute. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> area in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report, file one on <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>, <a href=\"https://profiles.wordpress.org/francina/\">@francina</a> and <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a> for your peer revisions!</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:\"9688\";s: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 \";s:7:\"attribs\";a: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.6.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2021/02/wordpress-5-6-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 21:30:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"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=9574\";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:468:\"WordPress 5.6.1 is now available! This maintenance release features 20 bug fixes as well as 7 issues fixed for the block editor. These bugs affect WordPress version 5.6, so you’ll want to upgrade. You can download WordPress 5.6.1 directly, or visit the Dashboard → Updates screen and click Update Now. If your sites support automatic background updates, they’ve already started the update process. WordPress […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s: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:8347:\"\n<p>WordPress 5.6.1 is now available!</p>\n\n\n\n<p>This maintenance release features <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.6.1&group=status&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">20 bug fixes</a> as well as 7 issues fixed for the block editor. These bugs affect WordPress version 5.6, so you’ll want to upgrade.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.6.1.zip\">download WordPress 5.6.1 directly</a>, or visit the<strong> Dashboard → Updates</strong> screen and click <strong>Update Now</strong>. If your sites support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>WordPress 5.6.1 is a short-cycle maintenance release. The next major release will be <a href=\"https://make.wordpress.org/core/5-7/\">version 5.7</a>.</p>\n\n\n\n<p>To see a full list of changes, you can browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.6.1&group=status&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">list on Trac</a>, read the <a href=\"https://make.wordpress.org/core/2021/01/28/wordpress-5-6-1-rc1/\">5.6.1 RC1</a> post, or visit the <a href=\"https://wordpress.org/support/wordpress-version/version-5-6-1/\">5.6.1 documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.6.1 release was led by <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> and <a href=\'https://profiles.wordpress.org/whyisjake/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>whyisjake</a>. Thanks to <a href=\'https://profiles.wordpress.org/metalandcoffee/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>metalandcoffee</a> and <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a> for running bug scrubs, <a href=\'https://profiles.wordpress.org/planningwrite/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>planningwrite</a> and <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a> for their help on the release post.</p>\n\n\n\n<p>Props to everyone who helped make WordPress 5.6.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aaribaud/\">aaribaud</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/basscan/\">basscan</a>, <a href=\"https://profiles.wordpress.org/carloscastilloadhoc/\">carloscastilloadhoc</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/celendesign/\">celendesign</a>, <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">david.binda</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/gkibria69/\">gKibria</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ifnoob/\">ifnoob</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</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/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/litemotiv/\">litemotiv</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/akramipro/\">Mahdi Akrami</a>, <a href=\"https://profiles.wordpress.org/majhajob/\">majhajob</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/iamfriendly/\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/t-p/\">t-p</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>, <a href=\"https://profiles.wordpress.org/thorlentz/\">thorlentz</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a>, <a href=\"https://profiles.wordpress.org/arcangelini/\">Tony A</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/transl8or/\">transl8or</a>, and <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</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:\"9574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 05 Mar 2021 11:18:42 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 03 Mar 2021 20:10:02 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20210118040344\";}','no'),(178,'duplicate_page_options','a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}','yes'),(295,'duplicator_settings','a:17:{s:7:\"version\";s:8:\"1.3.40.1\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:1;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:19:\"installer_name_mode\";s:6:\"simple\";s:16:\"storage_position\";s:6:\"wpcont\";s:20:\"storage_htaccess_off\";b:0;s:18:\"archive_build_mode\";i:2;s:17:\"skip_archive_scan\";b:0;s:21:\"unhook_third_party_js\";b:0;s:22:\"unhook_third_party_css\";b:0;s:17:\"active_package_id\";i:1;}','yes'),(296,'duplicator_lite_inst_hash_notice','1','yes'),(297,'duplicator_version_plugin','1.3.40.1','yes'),(298,'duplicator_package_active','O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2021-01-18 03:59:19\";s:7:\"Version\";s:8:\"1.3.40.1\";s:9:\"VersionWP\";s:3:\"5.6\";s:9:\"VersionDB\";s:6:\"8.0.18\";s:10:\"VersionPHP\";s:6:\"7.3.12\";s:9:\"VersionOS\";s:5:\"WINNT\";s:2:\"ID\";N;s:4:\"Name\";s:20:\"20210118_gardenguide\";s:4:\"Hash\";s:35:\"1b94ca0168de38d16900_20210118035919\";s:8:\"NameHash\";s:56:\"20210118_gardenguide_1b94ca0168de38d16900_20210118035919\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:8:\"ScanFile\";s:66:\"20210118_gardenguide_1b94ca0168de38d16900_20210118035919_scan.json\";s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":21:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:29:\"/home/gardenguide/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":5:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":6:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":3:{s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"file_count\";i:-1;s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2021-01-18 03:59:19\";s:7:\"Version\";s:8:\"1.3.40.1\";s:9:\"VersionWP\";s:3:\"5.6\";s:9:\"VersionDB\";s:6:\"8.0.18\";s:10:\"VersionPHP\";s:6:\"7.3.12\";s:9:\"VersionOS\";s:5:\"WINNT\";s:2:\"ID\";N;s:4:\"Name\";s:20:\"20210118_gardenguide\";s:4:\"Hash\";s:35:\"1b94ca0168de38d16900_20210118035919\";s:8:\"NameHash\";s:56:\"20210118_gardenguide_1b94ca0168de38d16900_20210118035919\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:8:\"ScanFile\";N;s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";r:21;s:9:\"Installer\";O:13:\"DUP_Installer\":13:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:13:\"OptsDBCharset\";s:0:\"\";s:15:\"OptsDBCollation\";s:0:\"\";s:12:\"OptsSecureOn\";i:0;s:14:\"OptsSecurePass\";s:0:\"\";s:13:\"numFilesAdded\";i:0;s:12:\"numDirsAdded\";i:0;s:10:\"\0*\0Package\";r:61;}s:8:\"Database\";O:12:\"DUP_Database\":14:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server - GPL\";s:4:\"info\";O:16:\"DUP_DatabaseInfo\":15:{s:9:\"buildMode\";N;s:13:\"collationList\";a:0:{}s:17:\"isTablesUpperCase\";N;s:15:\"isNameUpperCase\";N;s:4:\"name\";N;s:15:\"tablesBaseCount\";N;s:16:\"tablesFinalCount\";N;s:14:\"tablesRowCount\";N;s:16:\"tablesSizeOnDisk\";N;s:18:\"varLowerCaseTables\";i:1;s:7:\"version\";N;s:14:\"versionComment\";N;s:18:\"tableWiseRowCounts\";a:0:{}s:33:\"\0DUP_DatabaseInfo\0intFieldsStruct\";a:0:{}s:42:\"\0DUP_DatabaseInfo\0indexProcessedSchemaSize\";a:0:{}}s:10:\"\0*\0Package\";r:61;s:24:\"\0DUP_Database\0tempDbPath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}s:13:\"BuildProgress\";O:18:\"DUP_Build_Progress\":12:{s:17:\"thread_start_time\";N;s:11:\"initialized\";b:0;s:15:\"installer_built\";b:0;s:15:\"archive_started\";b:0;s:20:\"archive_has_database\";b:0;s:13:\"archive_built\";b:0;s:21:\"database_script_built\";b:0;s:6:\"failed\";b:0;s:7:\"retries\";i:0;s:14:\"build_failures\";a:0:{}s:19:\"validation_failures\";a:0:{}s:27:\"\0DUP_Build_Progress\0package\";r:61;}}s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:5:{i:0;s:38:\"/home/gardenguide/public_html/wp-admin\";i:1;s:48:\"/home/gardenguide/public_html/wp-content/uploads\";i:2;s:50:\"/home/gardenguide/public_html/wp-content/languages\";i:3;s:47:\"/home/gardenguide/public_html/wp-content/themes\";i:4;s:41:\"/home/gardenguide/public_html/wp-includes\";}s:29:\"\0DUP_Archive\0wpCoreExactPaths\";a:2:{i:0;s:29:\"/home/gardenguide/public_html\";i:1;s:40:\"/home/gardenguide/public_html/wp-content\";}}s:9:\"Installer\";r:82;s:8:\"Database\";r:96;s:13:\"BuildProgress\";r:126;}','yes'),(216,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:4;}}','yes'),(312,'_site_transient_php_check_8706d9e16ec2aa6542c624d1e3c9facd','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(307,'_site_transient_timeout_theme_roots','1614944941','no'),(308,'_site_transient_theme_roots','a:5:{s:13:\"generatepress\";s:7:\"/themes\";s:10:\"shutter-up\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(299,'duplicator_exe_safe_mode','','yes'),(300,'_transient_doing_cron','1702838469.5982310771942138671875','yes'),(301,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.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.6.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.2-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.6.2-partial-0.zip\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.6.2\";s:7:\"version\";s:5:\"5.6.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:3:\"5.6\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.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.6.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.2-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.6.2-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.2-rollback-0.zip\";}s:7:\"current\";s:5:\"5.6.2\";s:7:\"version\";s:5:\"5.6.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:3:\"5.6\";s:9:\"new_files\";s:0:\"\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.1-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.6.1-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.1-rollback-0.zip\";}s:7:\"current\";s:5:\"5.6.1\";s:7:\"version\";s:5:\"5.6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:3:\"5.6\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1614943116;s:15:\"version_checked\";s:3:\"5.6\";s:12:\"translations\";a:0:{}}','no'),(329,'generate_dynamic_css_output','body{background-color:#f7f8f9;color:#222222;}a{color:#1e73be;}a:hover, a:focus, a:active{color:#000000;}.wp-block-group__inner-container{max-width:1200px;margin-left:auto;margin-right:auto;}body, button, input, select, textarea{font-family:-apple-system, system-ui, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";}body{line-height:1.5;}.entry-content > [class*=\"wp-block-\"]:not(:last-child){margin-bottom:1.5em;}.main-navigation .main-nav ul ul li a{font-size:14px;}.sidebar .widget, .footer-widgets .widget{font-size:17px;}@media (max-width:768px){h1{font-size:31px;}h2{font-size:27px;}h3{font-size:24px;}h4{font-size:22px;}h5{font-size:19px;}}.top-bar{background-color:#636363;color:#ffffff;}.top-bar a{color:#ffffff;}.top-bar a:hover{color:#303030;}.site-header{background-color:#ffffff;}.main-title a,.main-title a:hover{color:#222222;}.site-description{color:#757575;}.mobile-menu-control-wrapper .menu-toggle,.mobile-menu-control-wrapper .menu-toggle:hover,.mobile-menu-control-wrapper .menu-toggle:focus,.has-inline-mobile-toggle #site-navigation.toggled{background-color:rgba(0, 0, 0, 0.02);}.main-navigation,.main-navigation ul ul{background-color:#ffffff;}.main-navigation .main-nav ul li a,.menu-toggle, .main-navigation .menu-bar-items{color:#515151;}.main-navigation .main-nav ul li:hover > a,.main-navigation .main-nav ul li:focus > a, .main-navigation .main-nav ul li.sfHover > a, .main-navigation .menu-bar-item:hover > a, .main-navigation .menu-bar-item.sfHover > a{color:#7a8896;background-color:#ffffff;}button.menu-toggle:hover,button.menu-toggle:focus{color:#515151;}.main-navigation .main-nav ul li[class*=\"current-menu-\"] > a{color:#7a8896;background-color:#ffffff;}.main-navigation .main-nav ul li[class*=\"current-menu-\"] > a:hover,.main-navigation .main-nav ul li[class*=\"current-menu-\"].sfHover > a{color:#7a8896;background-color:#ffffff;}.navigation-search input[type=\"search\"],.navigation-search input[type=\"search\"]:active, .navigation-search input[type=\"search\"]:focus, .main-navigation .main-nav ul li.search-item.active > a, .main-navigation .menu-bar-items .search-item.active > a{color:#7a8896;background-color:#ffffff;}.main-navigation ul ul{background-color:#eaeaea;}.main-navigation .main-nav ul ul li a{color:#515151;}.main-navigation .main-nav ul ul li:hover > a,.main-navigation .main-nav ul ul li:focus > a,.main-navigation .main-nav ul ul li.sfHover > a{color:#7a8896;background-color:#eaeaea;}.main-navigation .main-nav ul ul li[class*=\"current-menu-\"] > a{color:#7a8896;background-color:#eaeaea;}.main-navigation .main-nav ul ul li[class*=\"current-menu-\"] > a:hover,.main-navigation .main-nav ul ul li[class*=\"current-menu-\"].sfHover > a{color:#7a8896;background-color:#eaeaea;}.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .one-container .container, .separate-containers .paging-navigation, .inside-page-header{background-color:#ffffff;}.entry-title a{color:#222222;}.entry-title a:hover{color:#55555e;}.entry-meta{color:#595959;}.sidebar .widget{background-color:#ffffff;}.footer-widgets{background-color:#ffffff;}.footer-widgets .widget-title{color:#000000;}.site-info{color:#ffffff;background-color:#55555e;}.site-info a{color:#ffffff;}.site-info a:hover{color:#d3d3d3;}.footer-bar .widget_nav_menu .current-menu-item a{color:#d3d3d3;}input[type=\"text\"],input[type=\"email\"],input[type=\"url\"],input[type=\"password\"],input[type=\"search\"],input[type=\"tel\"],input[type=\"number\"],textarea,select{color:#666666;background-color:#fafafa;border-color:#cccccc;}input[type=\"text\"]:focus,input[type=\"email\"]:focus,input[type=\"url\"]:focus,input[type=\"password\"]:focus,input[type=\"search\"]:focus,input[type=\"tel\"]:focus,input[type=\"number\"]:focus,textarea:focus,select:focus{color:#666666;background-color:#ffffff;border-color:#bfbfbf;}button,html input[type=\"button\"],input[type=\"reset\"],input[type=\"submit\"],a.button,a.wp-block-button__link:not(.has-background){color:#ffffff;background-color:#55555e;}button:hover,html input[type=\"button\"]:hover,input[type=\"reset\"]:hover,input[type=\"submit\"]:hover,a.button:hover,button:focus,html input[type=\"button\"]:focus,input[type=\"reset\"]:focus,input[type=\"submit\"]:focus,a.button:focus,a.wp-block-button__link:not(.has-background):active,a.wp-block-button__link:not(.has-background):focus,a.wp-block-button__link:not(.has-background):hover{color:#ffffff;background-color:#3f4047;}a.generate-back-to-top{background-color:rgba( 0,0,0,0.4 );color:#ffffff;}a.generate-back-to-top:hover,a.generate-back-to-top:focus{background-color:rgba( 0,0,0,0.6 );color:#ffffff;}@media (max-width:768px){.main-navigation .menu-bar-item:hover > a, .main-navigation .menu-bar-item.sfHover > a{background:none;color:#515151;}}.nav-below-header .main-navigation .inside-navigation.grid-container, .nav-above-header .main-navigation .inside-navigation.grid-container{padding:0px 20px 0px 20px;}.separate-containers .paging-navigation{padding-top:20px;padding-bottom:20px;}.entry-content .alignwide, body:not(.no-sidebar) .entry-content .alignfull{margin-left:-40px;width:calc(100% + 80px);max-width:calc(100% + 80px);}.rtl .menu-item-has-children .dropdown-menu-toggle{padding-left:20px;}.rtl .main-navigation .main-nav ul li.menu-item-has-children > a{padding-right:20px;}@media (max-width:768px){.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .separate-containers .paging-navigation, .one-container .site-content, .inside-page-header, .wp-block-group__inner-container{padding:30px;}.inside-top-bar{padding-right:30px;padding-left:30px;}.inside-header{padding-right:30px;padding-left:30px;}.widget-area .widget{padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;}.footer-widgets-container{padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;}.inside-site-info{padding-right:30px;padding-left:30px;}.entry-content .alignwide, body:not(.no-sidebar) .entry-content .alignfull{margin-left:-30px;width:calc(100% + 60px);max-width:calc(100% + 60px);}.one-container .site-main .paging-navigation{margin-bottom:20px;}}','yes'),(334,'_transient_is_multi_author','0','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=526 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,3,'_wp_trash_meta_status','draft'),(4,3,'_wp_trash_meta_time','1610798483'),(5,3,'_wp_desired_post_slug','privacy-policy'),(18,7,'_is_wppb_editor','1'),(19,7,'_wppb_current_post_editor','wppb_builder_activated'),(9,7,'_edit_lock','1610805494:1'),(10,7,'_edit_last','1'),(241,7,'shutter-up-header-image','default'),(12,7,'_wp_page_template','wppb_theme_template'),(14,9,'_wp_trash_meta_status','publish'),(15,9,'_wp_trash_meta_time','1610798558'),(140,56,'_wp_attached_file','2021/01/gardening.mp4'),(141,56,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:7050822;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:17;s:16:\"length_formatted\";s:4:\"0:17\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1590515855;}'),(22,12,'_wp_trash_meta_status','publish'),(23,12,'_wp_trash_meta_time','1610798746'),(125,16,'_thumbnail_id','45'),(122,16,'_is_wppb_editor','1'),(123,32,'_thumbnail_id','44'),(28,7,'_wppb_content','[{\"id\":1610805514022,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_padding\":{\"md\":{\"top\":\"25px\",\"bottom\":\"25px\",\"left\":\"0px\",\"right\":\"0px\"}},\"row_screen\":\"container-stretch-no-gutter\",\"row_opacity\":0.4,\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"row_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"layout\":\"100\",\"columns\":[{\"id\":1610805514021,\"class_name\":100,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"100\",\"sm\":100,\"xs\":100}},\"addons\":[{\"id\":1610805552843,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"What\'s popular in Gardening ?\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"id\":1610805552843,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610805552843\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"}]}]},{\"id\":1610798835914,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":[],\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":[],\"videoType\":\"local\",\"bgVideo\":[],\"bgExternalVideo\":\"\",\"bgVideoFallback\":[],\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":[],\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":[]},\"row_screen\":\"row-container-stretch\",\"row_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}},\"row_padding\":{\"md\":{\"top\":\"90px\",\"right\":\"\",\"bottom\":\"1px\",\"left\":\"\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"row_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"layout\":\"49.51564,50.48329\",\"columns\":[{\"id\":1610798835915,\"class_name\":50,\"visibility\":true,\"settings\":{\"width\":100,\"col_custom_width\":{\"md\":\"49.51564\",\"sm\":50,\"xs\":100},\"col_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":[],\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":[],\"videoType\":\"local\",\"bgVideo\":[],\"bgExternalVideo\":\"\",\"bgVideoFallback\":[],\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":[],\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":[]},\"col_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"col_padding\":{\"xs\":{\"top\":\"20px\",\"right\":\"20px\",\"bottom\":\"20px\",\"left\":\"20px\"}}},\"addons\":[{\"id\":1610799453339,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"Edible Gardening\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"id\":1610799453339,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_margin\":{\"md\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"10px\",\"left\":\"\"}}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610799453339\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"},{\"id\":1610799351016,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"1\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"thumbnail\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":1,\"posts_excerpt_length\":\"10\",\"posts_metadata\":[\"author\",\"date\"],\"posts_separator\":\"/\",\"posts_read_more\":0,\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"2\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":{\"md\":\"\"},\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"initialize_empty\":\"0\",\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_class\":\"page-posts\",\"addon_custom_css\":\".page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\\n\\n flex: 1 1 100%;\\n flex-direction: row;\\n display: flex;\\n}\\n\\n.page-posts .wppb-post-grid-content{\\n padding-left:15px\\n}\\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\\n padding-bottom:0px\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"},{\"id\":1610807026682,\"name\":\"wppb_button\",\"visibility\":true,\"settings\":{\"button_text\":\"Read More\",\"button_link\":{\"link\":\"/edible-gardening\",\"window\":false,\"nofolow\":false},\"icon_list\":\"\",\"icon_position\":\"left\",\"btn_size\":\"standard\",\"button_padding\":\"\",\"shape\":\"rounded\",\"buttom_radius\":\"\",\"button_border_radius_hover\":\"\",\"fullwidth_button\":\"full-no\",\"button_align\":{\"md\":\"center\",\"sm\":\"center\",\"xs\":\"center\"},\"button_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"14px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"style\":\"success\",\"button_color\":\"\",\"button_hcolor\":\"\",\"button_bg\":\"\",\"button_hover_bg\":\"\",\"button_border\":{\"itemOpenBorder\":0,\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"button_border_hover\":{\"itemOpenBorder\":0,\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"button_boxshadow\":{\"shadowValue\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"5px\",\"left\":\"0px\"},\"shadowColor\":\"rgba(0,0,0,.3)\"},\"button_boxshadow_hover\":{\"shadowValue\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"5px\",\"left\":\"0px\"},\"shadowColor\":\"rgba(0,0,0,.3)\"},\"id\":1610807026682,\"addon_background\":{\"bgType\":\"color\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610807026682\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"}]},{\"id\":1610798835917,\"class_name\":50,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"50.48329\",\"sm\":50,\"xs\":100},\"col_background\":{\"bgType\":\"image\",\"bgColor\":\"\",\"bgImage\":{\"id\":40,\"url\":\"http://gardenguide.org/wp-content/uploads/2021/01/home-gardening.jpg\",\"size\":\"full\"},\"bgimgPosition\":\"center\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"no-repeat\",\"bgimgSize\":\"cover\",\"bgDefaultColor\":\"\",\"bgGradient\":[],\"videoType\":\"local\",\"bgVideo\":[],\"bgExternalVideo\":\"\",\"bgVideoFallback\":[],\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":[],\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":[]},\"col_padding\":{\"md\":{\"top\":\"200px\",\"right\":\"0px\",\"bottom\":\"200px\",\"left\":\"0px\"}},\"col_custom_width_check\":1,\"col_height\":{\"xs\":\"600px\"},\"col_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"addons\":[]}]},{\"id\":1610804553770,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_padding\":{\"md\":{\"top\":\"25px\",\"bottom\":\"1px\",\"left\":\"0px\",\"right\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"row_screen\":\"container-stretch-no-gutter\",\"row_opacity\":0.4,\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"row_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"layout\":\"100\",\"columns\":[{\"id\":1610804553769,\"class_name\":100,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"100\",\"sm\":100,\"xs\":100},\"col_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"col_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"col_addons_space\":{\"md\":\"\"}},\"addons\":[{\"id\":1610804750232,\"name\":\"wppb_divider\",\"visibility\":true,\"settings\":{\"div_position\":\"style1\",\"title\":\"\",\"title_selector\":\"h3\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"div_media_type\":\"none\",\"media_icon\":\"wppb-font-heart\",\"media_image\":{\"url\":\"http://gardenguide.org/wp-content/plugins/wp-pagebuilder/assets/img/placeholder/wppb-small.jpg\"},\"border_width\":{\"md\":\"100%\",\"sm\":\"\",\"xs\":\"\"},\"border_width_left\":{\"md\":\"60px\",\"sm\":\"\",\"xs\":\"\"},\"border_width_style4\":{\"md\":\"100%\",\"sm\":\"\",\"xs\":\"\"},\"div_media_type2\":\"border2\",\"media_icon2\":\"wppb-font-heart\",\"media_image2\":{\"url\":\"http://gardenguide.org/wp-content/plugins/wp-pagebuilder/assets/img/placeholder/wppb-small.jpg\"},\"border_width_style3\":{\"md\":\"60px\",\"sm\":\"\",\"xs\":\"\"},\"border_width_style6\":{\"md\":\"60px\",\"sm\":\"\",\"xs\":\"\"},\"align\":{\"md\":\"center\"},\"title_color\":\"\",\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"title_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"10px\",\"bottom\":\"10px\",\"left\":\"10px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"line_border\":{\"md\":\"1px\",\"sm\":\"\",\"xs\":\"\"},\"border_color1\":\"#3452ff\",\"border_type1\":\"solid\",\"line_border_vertical\":\"\",\"line_border_horizontal\":\"\",\"line_border2\":{\"md\":\"1px\",\"sm\":\"\",\"xs\":\"\"},\"border_color2\":\"#3452ff\",\"border_type2\":\"solid\",\"line_border_vertical2\":\"\",\"line_border_horizontal2\":\"\",\"icon_size\":{\"md\":\"25px\",\"sm\":\"\",\"xs\":\"\"},\"icon_line_height\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"icon_vertical\":\"\",\"icon_horizontal\":\"\",\"icon_color\":\"\",\"icon_hcolor\":\"\",\"icon_bg\":\"\",\"icon_hover_bg\":\"\",\"icon_border\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_border_hcolor\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_radius\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"icon_size2\":{\"md\":\"25px\",\"sm\":\"\",\"xs\":\"\"},\"icon_line_height2\":\"\",\"icon_width2\":\"\",\"icon_height2\":\"\",\"icon_vertical2\":\"\",\"icon_horizontal2\":\"\",\"icon_color2\":\"\",\"icon_hcolor2\":\"\",\"icon_bg2\":\"\",\"icon_hover_bg2\":\"\",\"icon_border2\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_border_hcolor2\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_radius2\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"image_width\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_height\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_vertical\":\"\",\"image_horizontal\":\"\",\"image_border\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"image_radius\":\"\",\"image_width2\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_height2\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_vertical2\":\"\",\"image_horizontal2\":\"\",\"image_border2\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"image_radius2\":\"\",\"id\":1610804750232,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"itemOpenBorder\":1,\"borderStyle\":\"solid\",\"borderColor\":\"#81d742\"}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610804750232\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"}]}]},{\"id\":1610803287219,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":[],\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":[],\"videoType\":\"local\",\"bgVideo\":[],\"bgExternalVideo\":\"\",\"bgVideoFallback\":[],\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":[],\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":[]},\"row_screen\":\"row-container-stretch\",\"row_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}},\"row_padding\":{\"md\":{\"top\":\"2px\",\"right\":\"\",\"bottom\":\"2px\",\"left\":\"\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}},\"layout\":\"50.48329,49.51564\",\"columns\":[{\"id\":1610803287223,\"class_name\":50,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"50.48329\",\"sm\":50,\"xs\":100},\"col_background\":{\"bgType\":\"image\",\"bgColor\":\"\",\"bgImage\":{\"id\":45,\"url\":\"http://gardenguide.org/wp-content/uploads/2021/01/landscape-gardening.jpg\",\"size\":\"full\"},\"bgimgPosition\":\"center\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"no-repeat\",\"bgimgSize\":\"cover\",\"bgDefaultColor\":\"\",\"bgGradient\":[],\"videoType\":\"local\",\"bgVideo\":[],\"bgExternalVideo\":\"\",\"bgVideoFallback\":[],\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":[],\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":[]},\"col_padding\":{\"md\":{\"top\":\"200px\",\"right\":\"0px\",\"bottom\":\"200px\",\"left\":\"0px\"}},\"col_custom_width_check\":1,\"col_height\":{\"xs\":\"600px\"},\"col_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"addons\":[]},{\"id\":1610803287220,\"class_name\":50,\"visibility\":true,\"settings\":{\"width\":100,\"col_custom_width\":{\"md\":\"49.51564\",\"sm\":50,\"xs\":100},\"col_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":[],\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":[],\"videoType\":\"local\",\"bgVideo\":[],\"bgExternalVideo\":\"\",\"bgVideoFallback\":[],\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":[],\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":[]},\"col_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"col_padding\":{\"xs\":{\"top\":\"20px\",\"right\":\"20px\",\"bottom\":\"20px\",\"left\":\"20px\"}}},\"addons\":[{\"id\":1610803287221,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"Home Gardening\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"id\":1610803287221,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_margin\":{\"md\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"10px\",\"left\":\"\"}}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610799453339\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"},{\"id\":1610803287222,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"1\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"thumbnail\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":1,\"posts_excerpt_length\":\"10\",\"posts_metadata\":[\"author\",\"date\"],\"posts_separator\":\"/\",\"posts_read_more\":0,\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"3\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":{\"md\":\"\"},\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"initialize_empty\":\"0\",\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_class\":\"page-posts\",\"addon_custom_css\":\".page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\\n\\n flex: 1 1 100%;\\n flex-direction: row;\\n display: flex;\\n}\\n\\n.page-posts .wppb-post-grid-content{\\n padding-left:15px\\n}\\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\\n padding-bottom:0px\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"},{\"id\":1610807284202,\"name\":\"wppb_button\",\"visibility\":true,\"settings\":{\"button_text\":\"Read More\",\"button_link\":{\"link\":\"/home-gardening\",\"window\":false,\"nofolow\":false},\"icon_list\":\"\",\"icon_position\":\"left\",\"btn_size\":\"standard\",\"button_padding\":\"\",\"shape\":\"rounded\",\"buttom_radius\":\"\",\"button_border_radius_hover\":\"\",\"fullwidth_button\":\"no\",\"button_align\":{\"md\":\"center\",\"sm\":\"center\",\"xs\":\"center\"},\"button_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"14px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"style\":\"success\",\"button_color\":\"\",\"button_hcolor\":\"\",\"button_bg\":\"\",\"button_hover_bg\":\"\",\"button_border\":{\"itemOpenBorder\":0,\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"button_border_hover\":{\"itemOpenBorder\":0,\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"button_boxshadow\":{\"shadowValue\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"5px\",\"left\":\"0px\"},\"shadowColor\":\"rgba(0,0,0,.3)\"},\"button_boxshadow_hover\":{\"shadowValue\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"5px\",\"left\":\"0px\"},\"shadowColor\":\"rgba(0,0,0,.3)\"},\"initialize_empty\":\"0\",\"id\":1610807284202},\"htmlContent\":\"<div id=\\\"wppb-addon-1610807284202\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"}]}]},{\"id\":1610804553943,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_padding\":{\"md\":{\"top\":\"25px\",\"bottom\":\"0px\",\"left\":\"0px\",\"right\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"row_screen\":\"container-stretch-no-gutter\",\"row_opacity\":0.4,\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"row_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"layout\":\"100\",\"columns\":[{\"id\":1610804553944,\"class_name\":100,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"100\",\"sm\":100,\"xs\":100},\"col_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"col_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"col_addons_space\":{\"md\":\"\"}},\"addons\":[{\"id\":1610804553945,\"name\":\"wppb_divider\",\"visibility\":true,\"settings\":{\"div_position\":\"style1\",\"title\":\"\",\"title_selector\":\"h3\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"div_media_type\":\"none\",\"media_icon\":\"wppb-font-heart\",\"media_image\":{\"url\":\"http://gardenguide.org/wp-content/plugins/wp-pagebuilder/assets/img/placeholder/wppb-small.jpg\"},\"border_width\":{\"md\":\"100%\",\"sm\":\"\",\"xs\":\"\"},\"border_width_left\":{\"md\":\"60px\",\"sm\":\"\",\"xs\":\"\"},\"border_width_style4\":{\"md\":\"100%\",\"sm\":\"\",\"xs\":\"\"},\"div_media_type2\":\"border2\",\"media_icon2\":\"wppb-font-heart\",\"media_image2\":{\"url\":\"http://gardenguide.org/wp-content/plugins/wp-pagebuilder/assets/img/placeholder/wppb-small.jpg\"},\"border_width_style3\":{\"md\":\"60px\",\"sm\":\"\",\"xs\":\"\"},\"border_width_style6\":{\"md\":\"60px\",\"sm\":\"\",\"xs\":\"\"},\"align\":{\"md\":\"center\"},\"title_color\":\"\",\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"title_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"10px\",\"bottom\":\"10px\",\"left\":\"10px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"line_border\":{\"md\":\"1px\",\"sm\":\"\",\"xs\":\"\"},\"border_color1\":\"#3452ff\",\"border_type1\":\"solid\",\"line_border_vertical\":\"\",\"line_border_horizontal\":\"\",\"line_border2\":{\"md\":\"1px\",\"sm\":\"\",\"xs\":\"\"},\"border_color2\":\"#3452ff\",\"border_type2\":\"solid\",\"line_border_vertical2\":\"\",\"line_border_horizontal2\":\"\",\"icon_size\":{\"md\":\"25px\",\"sm\":\"\",\"xs\":\"\"},\"icon_line_height\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"icon_vertical\":\"\",\"icon_horizontal\":\"\",\"icon_color\":\"\",\"icon_hcolor\":\"\",\"icon_bg\":\"\",\"icon_hover_bg\":\"\",\"icon_border\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_border_hcolor\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_radius\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"icon_size2\":{\"md\":\"25px\",\"sm\":\"\",\"xs\":\"\"},\"icon_line_height2\":\"\",\"icon_width2\":\"\",\"icon_height2\":\"\",\"icon_vertical2\":\"\",\"icon_horizontal2\":\"\",\"icon_color2\":\"\",\"icon_hcolor2\":\"\",\"icon_bg2\":\"\",\"icon_hover_bg2\":\"\",\"icon_border2\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_border_hcolor2\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_radius2\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"image_width\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_height\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_vertical\":\"\",\"image_horizontal\":\"\",\"image_border\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"image_radius\":\"\",\"image_width2\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_height2\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_vertical2\":\"\",\"image_horizontal2\":\"\",\"image_border2\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"image_radius2\":\"\",\"id\":1610804553945,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"itemOpenBorder\":1,\"borderStyle\":\"solid\",\"borderColor\":\"#81d742\"}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610804750232\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"}]}]},{\"id\":1610803287224,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":[],\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":[],\"videoType\":\"local\",\"bgVideo\":[],\"bgExternalVideo\":\"\",\"bgVideoFallback\":[],\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":[],\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":[]},\"row_screen\":\"row-container-stretch\",\"row_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}},\"row_padding\":{\"md\":{\"top\":\"0px\",\"right\":\"\",\"bottom\":\"0px\",\"left\":\"\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}},\"layout\":\"49.51564,50.48329\",\"columns\":[{\"id\":1610803287226,\"class_name\":50,\"visibility\":true,\"settings\":{\"width\":100,\"col_custom_width\":{\"md\":\"49.51564\",\"sm\":50,\"xs\":100},\"col_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":[],\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":[],\"videoType\":\"local\",\"bgVideo\":[],\"bgExternalVideo\":\"\",\"bgVideoFallback\":[],\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":[],\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":[]},\"col_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"col_padding\":{\"xs\":{\"top\":\"20px\",\"right\":\"20px\",\"bottom\":\"20px\",\"left\":\"20px\"}}},\"addons\":[{\"id\":1610803287227,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"Landscape Gardening\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"id\":1610803287227,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_margin\":{\"md\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"10px\",\"left\":\"\"}}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610799453339\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"},{\"id\":1610803287228,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"1\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"thumbnail\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":1,\"posts_excerpt_length\":\"10\",\"posts_metadata\":[\"author\",\"date\"],\"posts_separator\":\"/\",\"posts_read_more\":0,\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"2\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":{\"md\":\"\"},\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"initialize_empty\":\"0\",\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_class\":\"page-posts\",\"addon_custom_css\":\".page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\\n\\n flex: 1 1 100%;\\n flex-direction: row;\\n display: flex;\\n}\\n\\n.page-posts .wppb-post-grid-content{\\n padding-left:15px\\n}\\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\\n padding-bottom:0px\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"},{\"id\":1610807447406,\"name\":\"wppb_button\",\"visibility\":true,\"settings\":{\"button_text\":\"Read More\",\"button_link\":{\"link\":\"/landscaping\",\"window\":false,\"nofolow\":false},\"icon_list\":\"\",\"icon_position\":\"left\",\"btn_size\":\"standard\",\"button_padding\":\"\",\"shape\":\"rounded\",\"buttom_radius\":\"\",\"button_border_radius_hover\":\"\",\"fullwidth_button\":\"no\",\"button_align\":{\"md\":\"center\",\"sm\":\"center\",\"xs\":\"center\"},\"button_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"14px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"style\":\"success\",\"button_color\":\"\",\"button_hcolor\":\"\",\"button_bg\":\"\",\"button_hover_bg\":\"\",\"button_border\":{\"itemOpenBorder\":0,\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"button_border_hover\":{\"itemOpenBorder\":0,\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"button_boxshadow\":{\"shadowValue\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"5px\",\"left\":\"0px\"},\"shadowColor\":\"rgba(0,0,0,.3)\"},\"button_boxshadow_hover\":{\"shadowValue\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"5px\",\"left\":\"0px\"},\"shadowColor\":\"rgba(0,0,0,.3)\"},\"initialize_empty\":\"0\",\"id\":1610807447406},\"htmlContent\":\"<div id=\\\"wppb-addon-1610807447406\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"}]},{\"id\":1610803287225,\"class_name\":50,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"50.48329\",\"sm\":50,\"xs\":100},\"col_background\":{\"bgType\":\"image\",\"bgColor\":\"\",\"bgImage\":{\"id\":43,\"url\":\"http://gardenguide.org/wp-content/uploads/2021/01/edible-gardening.jpg\",\"size\":\"full\"},\"bgimgPosition\":\"center\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"no-repeat\",\"bgimgSize\":\"cover\",\"bgDefaultColor\":\"\",\"bgGradient\":[],\"videoType\":\"local\",\"bgVideo\":[],\"bgExternalVideo\":\"\",\"bgVideoFallback\":[],\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":[],\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":[]},\"col_padding\":{\"md\":{\"top\":\"200px\",\"right\":\"0px\",\"bottom\":\"200px\",\"left\":\"0px\"}},\"col_custom_width_check\":1,\"col_height\":{\"xs\":\"600px\"},\"col_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"addons\":[]}]},{\"id\":1610804553955,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_padding\":{\"md\":{\"top\":\"25px\",\"bottom\":\"1px\",\"left\":\"0px\",\"right\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"row_screen\":\"container-stretch-no-gutter\",\"row_opacity\":0.4,\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"row_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"layout\":\"100\",\"columns\":[{\"id\":1610804553956,\"class_name\":100,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"100\",\"sm\":100,\"xs\":100},\"col_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"col_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"col_addons_space\":{\"md\":\"\"}},\"addons\":[{\"id\":1610804553957,\"name\":\"wppb_divider\",\"visibility\":true,\"settings\":{\"div_position\":\"style1\",\"title\":\"\",\"title_selector\":\"h3\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"div_media_type\":\"none\",\"media_icon\":\"wppb-font-heart\",\"media_image\":{\"url\":\"http://gardenguide.org/wp-content/plugins/wp-pagebuilder/assets/img/placeholder/wppb-small.jpg\"},\"border_width\":{\"md\":\"100%\",\"sm\":\"\",\"xs\":\"\"},\"border_width_left\":{\"md\":\"60px\",\"sm\":\"\",\"xs\":\"\"},\"border_width_style4\":{\"md\":\"100%\",\"sm\":\"\",\"xs\":\"\"},\"div_media_type2\":\"border2\",\"media_icon2\":\"wppb-font-heart\",\"media_image2\":{\"url\":\"http://gardenguide.org/wp-content/plugins/wp-pagebuilder/assets/img/placeholder/wppb-small.jpg\"},\"border_width_style3\":{\"md\":\"60px\",\"sm\":\"\",\"xs\":\"\"},\"border_width_style6\":{\"md\":\"60px\",\"sm\":\"\",\"xs\":\"\"},\"align\":{\"md\":\"center\"},\"title_color\":\"\",\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"title_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"10px\",\"bottom\":\"10px\",\"left\":\"10px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"line_border\":{\"md\":\"1px\",\"sm\":\"\",\"xs\":\"\"},\"border_color1\":\"#3452ff\",\"border_type1\":\"solid\",\"line_border_vertical\":\"\",\"line_border_horizontal\":\"\",\"line_border2\":{\"md\":\"1px\",\"sm\":\"\",\"xs\":\"\"},\"border_color2\":\"#3452ff\",\"border_type2\":\"solid\",\"line_border_vertical2\":\"\",\"line_border_horizontal2\":\"\",\"icon_size\":{\"md\":\"25px\",\"sm\":\"\",\"xs\":\"\"},\"icon_line_height\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"icon_vertical\":\"\",\"icon_horizontal\":\"\",\"icon_color\":\"\",\"icon_hcolor\":\"\",\"icon_bg\":\"\",\"icon_hover_bg\":\"\",\"icon_border\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_border_hcolor\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_radius\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"icon_size2\":{\"md\":\"25px\",\"sm\":\"\",\"xs\":\"\"},\"icon_line_height2\":\"\",\"icon_width2\":\"\",\"icon_height2\":\"\",\"icon_vertical2\":\"\",\"icon_horizontal2\":\"\",\"icon_color2\":\"\",\"icon_hcolor2\":\"\",\"icon_bg2\":\"\",\"icon_hover_bg2\":\"\",\"icon_border2\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_border_hcolor2\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"icon_radius2\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"image_width\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_height\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_vertical\":\"\",\"image_horizontal\":\"\",\"image_border\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"image_radius\":\"\",\"image_width2\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_height2\":{\"md\":\"20px\",\"sm\":\"\",\"xs\":\"\"},\"image_vertical2\":\"\",\"image_horizontal2\":\"\",\"image_border2\":{\"borderWidth\":{\"top\":\"2px\",\"right\":\"2px\",\"bottom\":\"2px\",\"left\":\"2px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"image_radius2\":\"\",\"id\":1610804553957,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"itemOpenBorder\":1,\"borderStyle\":\"solid\",\"borderColor\":\"#81d742\"}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610804750232\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"}]}]},{\"id\":1610804287344,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_padding\":{\"md\":{\"top\":\"1px\",\"bottom\":\"25px\",\"left\":\"0px\",\"right\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"row_screen\":\"container-stretch-no-gutter\",\"row_opacity\":0.4,\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"row_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"layout\":\"100\",\"columns\":[{\"id\":1610804287343,\"class_name\":100,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"100\",\"sm\":100,\"xs\":100}},\"addons\":[{\"id\":1610804298503,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"5\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"5\",\"posts_image_size\":\"wppb-medium\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":\"1\",\"posts_excerpt_length\":\"30\",\"posts_metadata\":[\"author\",\"date\"],\"posts_separator\":\"/\",\"posts_read_more\":\"1\",\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"2\",\"3\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":1,\"post_pagination_type\":\"load_more\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#81d742\",\"colorGradient\":{},\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"colorGradient\":{},\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"htmlContent\":\"\",\"type\":\"addon\"}]}]}]'),(29,7,'_wppb_page_css','.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610805514022,.wppb-builder-container > .wppb-row-parent.wppb-row-1610805514022, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610805514022, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610805514022, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610805514022 { padding: 25px 0px 25px 0px;; }.wppb-row-1610805514022:after{content: \" \"; display: block; position: absolute; height: 100%; top: 0; left: 0; right: 0; z-index: -1; opacity: 0.4; }.wppb-column-parent.wppb-col-1610805514021 { width: 100%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610805514021 { width: 100%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610805514021 { width: 100%; }}.wppb-row-1610798835914{ margin: 0px 0px 0px 0px;; }.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610798835914,.wppb-builder-container > .wppb-row-parent.wppb-row-1610798835914, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610798835914, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610798835914, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610798835914 { padding: 90px 0px 1px 0px;; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-column-parent.wppb-col-1610798835915 { width: 49.51564%; }.wppb-builder-container .wppb-row > .wppb-column-parent.wppb-col-1610798835915 .wppb-column { margin: 0px 0px 0px 0px;; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610798835915 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610798835915 { width: 100%; }.wppb-builder-container .wppb-row > .wppb-column-parent.wppb-col-1610798835915 .wppb-column { padding: 20px 20px 20px 20px;; }}.wppb-column-parent.wppb-col-1610798835917 { width: 50.48329%; }.wppb-builder-container .wppb-row > .wppb-column-parent.wppb-col-1610798835917 .wppb-column { padding: 200px 0px 200px 0px;; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610798835917 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610798835917 { width: 100%; }.wppb-row > .wppb-col-1610798835917.wppb-column-parent { min-height: 600px; }}.wppb-col-1610798835917 .wppb-column{background-image:url(http://gardenguide.org/wp-content/uploads/2021/01/home-gardening.jpg);background-position:center;background-repeat:no-repeat;background-size:cover;}.wppb-addon-1610799453339 .wppb-addon-title{font-size:28px}.wppb-addon-1610799453339{ margin: 0px 0px 10px 0px;; }.wppb-addon-1610799453339 .wppb-addon-title{font-weight:700;}.wppb-addon-1610799351016 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610799351016 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610799351016 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610799351016 .wppb-post-grid-intro{font-size:16px}.wppb-addon-1610799351016 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610799351016 .wppb-posts-addon-loadmore-btn { border-radius: 4px 4px 4px 4px;; }.wppb-addon-1610799351016 .wppb-posts-addon-loadmore-btn { padding: 10px 25px 10px 25px;; }.wppb-addon-1610799351016 .wppb-posts-addon-pagination{ text-align: center; }.wppb-addon-1610799351016 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610799351016 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610799351016 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\n\n flex: 1 1 100%;\n flex-direction: row;\n display: flex;\n}\n\n.page-posts .wppb-post-grid-content{\n padding-left:15px\n}\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\n padding-bottom:0px\n}.wppb-addon-1610799351016 .wppb-post-grid-intro{font-weight:400;}.wppb-addon-1610799351016 .wppb-posts-addon-loadmore-btn { color: #fff; }.wppb-addon-1610799351016 .wppb-posts-addon-loadmore-btn:hover { color: #fff; }.wppb-addon-1610799351016 .wppb-posts-addon-loadmore-btn{ background:#3666E4}.wppb-addon-1610799351016 .wppb-posts-addon-loadmore-btn:hover{ background:#2a55c5}.wppb-addon-1610799351016 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610799351016 .wppb-posts-paginate-link:hover,.wppb-addon-1610799351016 .paginate-active { color: #fff; }.wppb-addon-1610799351016 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610799351016 .wppb-posts-paginate-link:hover, .wppb-addon-1610799351016 .paginate-active{ background:#3666E4}.wppb-addon-1610799351016 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610799351016 .wppb-posts-paginate-link:hover,.wppb-addon-1610799351016 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-addon-1610807026682 .wppb-button-addon-content{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {.wppb-addon-1610807026682 .wppb-button-addon-content{ text-align: center; }}@media (max-width: 767px) {.wppb-addon-1610807026682 .wppb-button-addon-content{ text-align: center; }}.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610804553770,.wppb-builder-container > .wppb-row-parent.wppb-row-1610804553770, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610804553770, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610804553770, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610804553770 { padding: 25px 0px 1px 0px;; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-row-1610804553770:after{content: \" \"; display: block; position: absolute; height: 100%; top: 0; left: 0; right: 0; z-index: -1; opacity: 0.4; }.wppb-column-parent.wppb-col-1610804553769 { width: 100%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610804553769 { width: 100%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610804553769 { width: 100%; }}.wppb-addon-1610804750232 .wppb-divider-position-style1 .wppb-divider-border { width: 100%; }.wppb-addon-1610804750232 .wppb-divider-position-style1 .wppb-divider-border { right: -100%; left: auto; }.wppb-addon-1610804750232 .wppb-divider-position-style2 .wppb-divider-border,.wppb-addon-1610804750232 .wppb-divider-position-style3 .wppb-divider-border { width: 60px; }.wppb-addon-1610804750232 .wppb-divider-position-style2 .wppb-divider-border ,.wppb-addon-1610804750232 .wppb-divider-position-style3 .wppb-divider-border { left: -60px; right: auto; }.wppb-addon-1610804750232 .wppb-divider-position-style4 .wppb-divider-border,.wppb-addon-1610804750232 .wppb-divider-position-style5 .wppb-divider-border,.wppb-addon-1610804750232 .wppb-divider-position-style6 .wppb-divider-border { width: 100%; }.wppb-addon-1610804750232 .wppb-divider-position-style4 .wppb-divider-border,.wppb-addon-1610804750232 .wppb-divider-position-style5 .wppb-divider-border,.wppb-addon-1610804750232 .wppb-divider-position-style6 .wppb-divider-border { margin-left: calc( 50% - (100%) / 2); }.wppb-addon-1610804750232 .wppb-divider-border2 { width: 60px; }.wppb-addon-1610804750232 .wppb-divider-border2 { right: -60px; }.wppb-addon-1610804750232 .wppb-divider-position-style6 .wppb-divider-border2 { width: 60px; }.wppb-addon-1610804750232 .wppb-divider-position-style6 .wppb-divider-border2 { margin-left: calc( 50% - (60px) / 2); }.wppb-addon-1610804750232 .wppb-divider-position { text-align: center; }.wppb-addon-1610804750232 .wppb-addon-divider-title { margin: 0px 0px 0px 0px;; }.wppb-addon-1610804750232 .wppb-addon-divider-title { padding: 10px 10px 10px 10px;; }.wppb-addon-1610804750232 .wppb-divider-border { border-width: 1px 0 0; }.wppb-addon-1610804750232 .wppb-divider-border2 { border-width: 1px 0 0; }.wppb-addon-1610804750232 .wppb-divider-icon i { font-size: 25px; }.wppb-addon-1610804750232 .wppb-divider-icon { border-radius: 0px 0px 0px 0px;; }.wppb-addon-1610804750232 .wppb-divider-icon2 i { font-size: 25px; }.wppb-divider-icon2 { border-radius: 0px 0px 0px 0px;; }.wppb-addon-1610804750232 .wppb-divider-img img { width: 20px; }.wppb-addon-1610804750232 .wppb-divider-img img { height: 20px; }.wppb-addon-1610804750232 .wppb-divider-img2 img { width: 20px; }.wppb-addon-1610804750232 .wppb-divider-img2 img { height: 20px; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-addon-1610804750232 .wppb-divider-border { border-color: #3452ff; }.wppb-addon-1610804750232 .wppb-divider-border { border-style: solid; }.wppb-addon-1610804750232 .wppb-divider-border2 { border-color: #3452ff; }.wppb-addon-1610804750232 .wppb-divider-border2 { border-style: solid; }.wppb-addon-1610804750232{border-width:1px 0px 0px 0px;border-style:solid;border-color:#81d742;}.wppb-row-1610803287219{ margin: 0px 0px 0px 0px;; }.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610803287219,.wppb-builder-container > .wppb-row-parent.wppb-row-1610803287219, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610803287219, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610803287219, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610803287219 { padding: 2px 0px 2px 0px;; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-column-parent.wppb-col-1610803287223 { width: 50.48329%; }.wppb-builder-container .wppb-row > .wppb-column-parent.wppb-col-1610803287223 .wppb-column { padding: 200px 0px 200px 0px;; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610803287223 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610803287223 { width: 100%; }.wppb-row > .wppb-col-1610803287223.wppb-column-parent { min-height: 600px; }}.wppb-col-1610803287223 .wppb-column{background-image:url(http://gardenguide.org/wp-content/uploads/2021/01/landscape-gardening.jpg);background-position:center;background-repeat:no-repeat;background-size:cover;}.wppb-column-parent.wppb-col-1610803287220 { width: 49.51564%; }.wppb-builder-container .wppb-row > .wppb-column-parent.wppb-col-1610803287220 .wppb-column { margin: 0px 0px 0px 0px;; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610803287220 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610803287220 { width: 100%; }.wppb-builder-container .wppb-row > .wppb-column-parent.wppb-col-1610803287220 .wppb-column { padding: 20px 20px 20px 20px;; }}.wppb-addon-1610803287221 .wppb-addon-title{font-size:28px}.wppb-addon-1610803287221{ margin: 0px 0px 10px 0px;; }.wppb-addon-1610803287221 .wppb-addon-title{font-weight:700;}.wppb-addon-1610803287222 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610803287222 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610803287222 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610803287222 .wppb-post-grid-intro{font-size:16px}.wppb-addon-1610803287222 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610803287222 .wppb-posts-addon-loadmore-btn { border-radius: 4px 4px 4px 4px;; }.wppb-addon-1610803287222 .wppb-posts-addon-loadmore-btn { padding: 10px 25px 10px 25px;; }.wppb-addon-1610803287222 .wppb-posts-addon-pagination{ text-align: center; }.wppb-addon-1610803287222 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610803287222 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610803287222 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\n\n flex: 1 1 100%;\n flex-direction: row;\n display: flex;\n}\n\n.page-posts .wppb-post-grid-content{\n padding-left:15px\n}\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\n padding-bottom:0px\n}.wppb-addon-1610803287222 .wppb-post-grid-intro{font-weight:400;}.wppb-addon-1610803287222 .wppb-posts-addon-loadmore-btn { color: #fff; }.wppb-addon-1610803287222 .wppb-posts-addon-loadmore-btn:hover { color: #fff; }.wppb-addon-1610803287222 .wppb-posts-addon-loadmore-btn{ background:#3666E4}.wppb-addon-1610803287222 .wppb-posts-addon-loadmore-btn:hover{ background:#2a55c5}.wppb-addon-1610803287222 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610803287222 .wppb-posts-paginate-link:hover,.wppb-addon-1610803287222 .paginate-active { color: #fff; }.wppb-addon-1610803287222 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610803287222 .wppb-posts-paginate-link:hover, .wppb-addon-1610803287222 .paginate-active{ background:#3666E4}.wppb-addon-1610803287222 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610803287222 .wppb-posts-paginate-link:hover,.wppb-addon-1610803287222 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-addon-1610807284202 .wppb-button-addon-content{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {.wppb-addon-1610807284202 .wppb-button-addon-content{ text-align: center; }}@media (max-width: 767px) {.wppb-addon-1610807284202 .wppb-button-addon-content{ text-align: center; }}.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610804553943,.wppb-builder-container > .wppb-row-parent.wppb-row-1610804553943, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610804553943, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610804553943, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610804553943 { padding: 25px 0px 0px 0px;; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-row-1610804553943:after{content: \" \"; display: block; position: absolute; height: 100%; top: 0; left: 0; right: 0; z-index: -1; opacity: 0.4; }.wppb-column-parent.wppb-col-1610804553944 { width: 100%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610804553944 { width: 100%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610804553944 { width: 100%; }}.wppb-addon-1610804553945 .wppb-divider-position-style1 .wppb-divider-border { width: 100%; }.wppb-addon-1610804553945 .wppb-divider-position-style1 .wppb-divider-border { right: -100%; left: auto; }.wppb-addon-1610804553945 .wppb-divider-position-style2 .wppb-divider-border,.wppb-addon-1610804553945 .wppb-divider-position-style3 .wppb-divider-border { width: 60px; }.wppb-addon-1610804553945 .wppb-divider-position-style2 .wppb-divider-border ,.wppb-addon-1610804553945 .wppb-divider-position-style3 .wppb-divider-border { left: -60px; right: auto; }.wppb-addon-1610804553945 .wppb-divider-position-style4 .wppb-divider-border,.wppb-addon-1610804553945 .wppb-divider-position-style5 .wppb-divider-border,.wppb-addon-1610804553945 .wppb-divider-position-style6 .wppb-divider-border { width: 100%; }.wppb-addon-1610804553945 .wppb-divider-position-style4 .wppb-divider-border,.wppb-addon-1610804553945 .wppb-divider-position-style5 .wppb-divider-border,.wppb-addon-1610804553945 .wppb-divider-position-style6 .wppb-divider-border { margin-left: calc( 50% - (100%) / 2); }.wppb-addon-1610804553945 .wppb-divider-border2 { width: 60px; }.wppb-addon-1610804553945 .wppb-divider-border2 { right: -60px; }.wppb-addon-1610804553945 .wppb-divider-position-style6 .wppb-divider-border2 { width: 60px; }.wppb-addon-1610804553945 .wppb-divider-position-style6 .wppb-divider-border2 { margin-left: calc( 50% - (60px) / 2); }.wppb-addon-1610804553945 .wppb-divider-position { text-align: center; }.wppb-addon-1610804553945 .wppb-addon-divider-title { margin: 0px 0px 0px 0px;; }.wppb-addon-1610804553945 .wppb-addon-divider-title { padding: 10px 10px 10px 10px;; }.wppb-addon-1610804553945 .wppb-divider-border { border-width: 1px 0 0; }.wppb-addon-1610804553945 .wppb-divider-border2 { border-width: 1px 0 0; }.wppb-addon-1610804553945 .wppb-divider-icon i { font-size: 25px; }.wppb-addon-1610804553945 .wppb-divider-icon { border-radius: 0px 0px 0px 0px;; }.wppb-addon-1610804553945 .wppb-divider-icon2 i { font-size: 25px; }.wppb-divider-icon2 { border-radius: 0px 0px 0px 0px;; }.wppb-addon-1610804553945 .wppb-divider-img img { width: 20px; }.wppb-addon-1610804553945 .wppb-divider-img img { height: 20px; }.wppb-addon-1610804553945 .wppb-divider-img2 img { width: 20px; }.wppb-addon-1610804553945 .wppb-divider-img2 img { height: 20px; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-addon-1610804553945 .wppb-divider-border { border-color: #3452ff; }.wppb-addon-1610804553945 .wppb-divider-border { border-style: solid; }.wppb-addon-1610804553945 .wppb-divider-border2 { border-color: #3452ff; }.wppb-addon-1610804553945 .wppb-divider-border2 { border-style: solid; }.wppb-addon-1610804553945{border-width:1px 0px 0px 0px;border-style:solid;border-color:#81d742;}.wppb-row-1610803287224{ margin: 0px 0px 0px 0px;; }.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610803287224,.wppb-builder-container > .wppb-row-parent.wppb-row-1610803287224, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610803287224, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610803287224, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610803287224 { padding: 0px 0px 0px 0px;; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-column-parent.wppb-col-1610803287226 { width: 49.51564%; }.wppb-builder-container .wppb-row > .wppb-column-parent.wppb-col-1610803287226 .wppb-column { margin: 0px 0px 0px 0px;; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610803287226 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610803287226 { width: 100%; }.wppb-builder-container .wppb-row > .wppb-column-parent.wppb-col-1610803287226 .wppb-column { padding: 20px 20px 20px 20px;; }}.wppb-column-parent.wppb-col-1610803287225 { width: 50.48329%; }.wppb-builder-container .wppb-row > .wppb-column-parent.wppb-col-1610803287225 .wppb-column { padding: 200px 0px 200px 0px;; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610803287225 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610803287225 { width: 100%; }.wppb-row > .wppb-col-1610803287225.wppb-column-parent { min-height: 600px; }}.wppb-col-1610803287225 .wppb-column{background-image:url(http://gardenguide.org/wp-content/uploads/2021/01/edible-gardening.jpg);background-position:center;background-repeat:no-repeat;background-size:cover;}.wppb-addon-1610803287227 .wppb-addon-title{font-size:28px}.wppb-addon-1610803287227{ margin: 0px 0px 10px 0px;; }.wppb-addon-1610803287227 .wppb-addon-title{font-weight:700;}.wppb-addon-1610803287228 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610803287228 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610803287228 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610803287228 .wppb-post-grid-intro{font-size:16px}.wppb-addon-1610803287228 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610803287228 .wppb-posts-addon-loadmore-btn { border-radius: 4px 4px 4px 4px;; }.wppb-addon-1610803287228 .wppb-posts-addon-loadmore-btn { padding: 10px 25px 10px 25px;; }.wppb-addon-1610803287228 .wppb-posts-addon-pagination{ text-align: center; }.wppb-addon-1610803287228 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610803287228 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610803287228 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\n\n flex: 1 1 100%;\n flex-direction: row;\n display: flex;\n}\n\n.page-posts .wppb-post-grid-content{\n padding-left:15px\n}\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\n padding-bottom:0px\n}.wppb-addon-1610803287228 .wppb-post-grid-intro{font-weight:400;}.wppb-addon-1610803287228 .wppb-posts-addon-loadmore-btn { color: #fff; }.wppb-addon-1610803287228 .wppb-posts-addon-loadmore-btn:hover { color: #fff; }.wppb-addon-1610803287228 .wppb-posts-addon-loadmore-btn{ background:#3666E4}.wppb-addon-1610803287228 .wppb-posts-addon-loadmore-btn:hover{ background:#2a55c5}.wppb-addon-1610803287228 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610803287228 .wppb-posts-paginate-link:hover,.wppb-addon-1610803287228 .paginate-active { color: #fff; }.wppb-addon-1610803287228 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610803287228 .wppb-posts-paginate-link:hover, .wppb-addon-1610803287228 .paginate-active{ background:#3666E4}.wppb-addon-1610803287228 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610803287228 .wppb-posts-paginate-link:hover,.wppb-addon-1610803287228 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-addon-1610807447406 .wppb-button-addon-content{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {.wppb-addon-1610807447406 .wppb-button-addon-content{ text-align: center; }}@media (max-width: 767px) {.wppb-addon-1610807447406 .wppb-button-addon-content{ text-align: center; }}.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610804553955,.wppb-builder-container > .wppb-row-parent.wppb-row-1610804553955, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610804553955, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610804553955, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610804553955 { padding: 25px 0px 1px 0px;; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-row-1610804553955:after{content: \" \"; display: block; position: absolute; height: 100%; top: 0; left: 0; right: 0; z-index: -1; opacity: 0.4; }.wppb-column-parent.wppb-col-1610804553956 { width: 100%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610804553956 { width: 100%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610804553956 { width: 100%; }}.wppb-addon-1610804553957 .wppb-divider-position-style1 .wppb-divider-border { width: 100%; }.wppb-addon-1610804553957 .wppb-divider-position-style1 .wppb-divider-border { right: -100%; left: auto; }.wppb-addon-1610804553957 .wppb-divider-position-style2 .wppb-divider-border,.wppb-addon-1610804553957 .wppb-divider-position-style3 .wppb-divider-border { width: 60px; }.wppb-addon-1610804553957 .wppb-divider-position-style2 .wppb-divider-border ,.wppb-addon-1610804553957 .wppb-divider-position-style3 .wppb-divider-border { left: -60px; right: auto; }.wppb-addon-1610804553957 .wppb-divider-position-style4 .wppb-divider-border,.wppb-addon-1610804553957 .wppb-divider-position-style5 .wppb-divider-border,.wppb-addon-1610804553957 .wppb-divider-position-style6 .wppb-divider-border { width: 100%; }.wppb-addon-1610804553957 .wppb-divider-position-style4 .wppb-divider-border,.wppb-addon-1610804553957 .wppb-divider-position-style5 .wppb-divider-border,.wppb-addon-1610804553957 .wppb-divider-position-style6 .wppb-divider-border { margin-left: calc( 50% - (100%) / 2); }.wppb-addon-1610804553957 .wppb-divider-border2 { width: 60px; }.wppb-addon-1610804553957 .wppb-divider-border2 { right: -60px; }.wppb-addon-1610804553957 .wppb-divider-position-style6 .wppb-divider-border2 { width: 60px; }.wppb-addon-1610804553957 .wppb-divider-position-style6 .wppb-divider-border2 { margin-left: calc( 50% - (60px) / 2); }.wppb-addon-1610804553957 .wppb-divider-position { text-align: center; }.wppb-addon-1610804553957 .wppb-addon-divider-title { margin: 0px 0px 0px 0px;; }.wppb-addon-1610804553957 .wppb-addon-divider-title { padding: 10px 10px 10px 10px;; }.wppb-addon-1610804553957 .wppb-divider-border { border-width: 1px 0 0; }.wppb-addon-1610804553957 .wppb-divider-border2 { border-width: 1px 0 0; }.wppb-addon-1610804553957 .wppb-divider-icon i { font-size: 25px; }.wppb-addon-1610804553957 .wppb-divider-icon { border-radius: 0px 0px 0px 0px;; }.wppb-addon-1610804553957 .wppb-divider-icon2 i { font-size: 25px; }.wppb-divider-icon2 { border-radius: 0px 0px 0px 0px;; }.wppb-addon-1610804553957 .wppb-divider-img img { width: 20px; }.wppb-addon-1610804553957 .wppb-divider-img img { height: 20px; }.wppb-addon-1610804553957 .wppb-divider-img2 img { width: 20px; }.wppb-addon-1610804553957 .wppb-divider-img2 img { height: 20px; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-addon-1610804553957 .wppb-divider-border { border-color: #3452ff; }.wppb-addon-1610804553957 .wppb-divider-border { border-style: solid; }.wppb-addon-1610804553957 .wppb-divider-border2 { border-color: #3452ff; }.wppb-addon-1610804553957 .wppb-divider-border2 { border-style: solid; }.wppb-addon-1610804553957{border-width:1px 0px 0px 0px;border-style:solid;border-color:#81d742;}.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610804287344,.wppb-builder-container > .wppb-row-parent.wppb-row-1610804287344, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610804287344, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610804287344, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610804287344 { padding: 1px 0px 25px 0px;; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-row-1610804287344:after{content: \" \"; display: block; position: absolute; height: 100%; top: 0; left: 0; right: 0; z-index: -1; opacity: 0.4; }.wppb-column-parent.wppb-col-1610804287343 { width: 100%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610804287343 { width: 100%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610804287343 { width: 100%; }}.wppb-addon-1610804298503 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610804298503 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610804298503 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610804298503 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610804298503 .wppb-posts-addon-loadmore-btn { border-radius: 4px 4px 4px 4px;; }.wppb-addon-1610804298503 .wppb-posts-addon-loadmore-btn { padding: 10px 25px 10px 25px;; }.wppb-addon-1610804298503 .wppb-posts-addon-pagination{ text-align: center; }.wppb-addon-1610804298503 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610804298503 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610804298503 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-addon-1610804298503 .wppb-posts-addon-loadmore-btn { color: #fff; }.wppb-addon-1610804298503 .wppb-posts-addon-loadmore-btn:hover { color: #fff; }.wppb-addon-1610804298503 .wppb-posts-addon-loadmore-btn{ background:#81d742}.wppb-addon-1610804298503 .wppb-posts-addon-loadmore-btn:hover{ background:#2a55c5}.wppb-addon-1610804298503 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610804298503 .wppb-posts-paginate-link:hover,.wppb-addon-1610804298503 .paginate-active { color: #fff; }.wppb-addon-1610804298503 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610804298503 .wppb-posts-paginate-link:hover, .wppb-addon-1610804298503 .paginate-active{ background:#3666E4}.wppb-addon-1610804298503 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610804298503 .wppb-posts-paginate-link:hover,.wppb-addon-1610804298503 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-builder-container#wppb-builder-container .wppb-row-parent > .wppb-container, .wppb-carousel-content-wrap .wppb-container{ max-width: 1140px }.wppb-builder-container#wppb-builder-container > .wppb-row-parent > .wppb-container,.wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container,.wppb-carousel-content-wrap .wppb-container, .wppb-builder-container .wppb-column-parent-view { padding-left: 15px; }.wppb-builder-container#wppb-builder-container > .wppb-row-parent > .wppb-container, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container,.wppb-carousel-content-wrap .wppb-container, .wppb-builder-container .wppb-column-parent-view{ padding-right: 15px; } .wppb-container > .wppb-row { margin-left: -15px; }.wppb-container > .wppb-row { margin-right: -15px; } .wppb-builder-container .wppb-column-parent-editor .wppb-column { margin-left: 15px; } .wppb-builder-container .wppb-column-parent-editor .wppb-column { margin-right: 15px; }'),(30,1,'_wp_trash_meta_status','publish'),(31,1,'_wp_trash_meta_time','1610798911'),(32,1,'_wp_desired_post_slug','hello-world'),(33,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(34,16,'_edit_lock','1610806179:1'),(35,16,'_wppb_current_post_editor','wppb_builder_activated'),(36,16,'_pingme','1'),(37,16,'_encloseme','1'),(38,16,'_edit_last','1'),(130,16,'shutter-up-header-image','default'),(109,43,'_wp_attached_file','2021/01/edible-gardening.jpg'),(110,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1133;s:4:\"file\";s:28:\"2021/01/edible-gardening.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"edible-gardening-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"edible-gardening-1024x604.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:604;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"edible-gardening-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"edible-gardening-768x453.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"edible-gardening-1536x906.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:906;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"edible-gardening-254x150.jpg\";s:5:\"width\";i:254;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"shutter-up-header-inner\";a:4:{s:4:\"file\";s:29:\"edible-gardening-1920x540.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"shutter-up-testimonial\";a:4:{s:4:\"file\";s:28:\"edible-gardening-640x853.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shutter-up-stats\";a:4:{s:4:\"file\";s:26:\"edible-gardening-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"shutter-up-logo-slider\";a:4:{s:4:\"file\";s:27:\"edible-gardening-180x77.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shutter-up-slider\";a:4:{s:4:\"file\";s:29:\"edible-gardening-1920x700.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"wppb-medium\";a:4:{s:4:\"file\";s:28:\"edible-gardening-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(111,44,'_wp_attached_file','2021/01/home-gardening.jpg'),(112,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:26:\"2021/01/home-gardening.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-gardening-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"home-gardening-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-gardening-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-gardening-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"home-gardening-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"home-gardening-225x150.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"shutter-up-header-inner\";a:4:{s:4:\"file\";s:27:\"home-gardening-1920x540.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"shutter-up-testimonial\";a:4:{s:4:\"file\";s:26:\"home-gardening-640x853.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shutter-up-stats\";a:4:{s:4:\"file\";s:24:\"home-gardening-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"shutter-up-logo-slider\";a:4:{s:4:\"file\";s:25:\"home-gardening-180x77.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shutter-up-slider\";a:4:{s:4:\"file\";s:27:\"home-gardening-1920x700.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"wppb-medium\";a:4:{s:4:\"file\";s:26:\"home-gardening-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(113,45,'_wp_attached_file','2021/01/landscape-gardening.jpg'),(114,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2021/01/landscape-gardening.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"landscape-gardening-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"landscape-gardening-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"landscape-gardening-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"landscape-gardening-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"landscape-gardening-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"landscape-gardening-225x150.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"shutter-up-header-inner\";a:4:{s:4:\"file\";s:32:\"landscape-gardening-1920x540.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"shutter-up-testimonial\";a:4:{s:4:\"file\";s:31:\"landscape-gardening-640x853.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shutter-up-stats\";a:4:{s:4:\"file\";s:29:\"landscape-gardening-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"shutter-up-logo-slider\";a:4:{s:4:\"file\";s:30:\"landscape-gardening-180x77.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shutter-up-slider\";a:4:{s:4:\"file\";s:32:\"landscape-gardening-1920x700.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"wppb-medium\";a:4:{s:4:\"file\";s:31:\"landscape-gardening-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(115,34,'_thumbnail_id','43'),(120,47,'_wp_attached_file','2021/01/edible-gardening-150x150-1.jpg'),(121,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:38:\"2021/01/edible-gardening-150x150-1.jpg\";s:5:\"sizes\";a:2:{s:16:\"shutter-up-stats\";a:4:{s:4:\"file\";s:36:\"edible-gardening-150x150-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"shutter-up-logo-slider\";a:4:{s:4:\"file\";s:37:\"edible-gardening-150x150-1-150x77.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(66,31,'_wp_trash_meta_status','publish'),(67,31,'_wp_trash_meta_time','1610799140'),(68,32,'_edit_lock','1610801697:1'),(69,32,'_wppb_current_post_editor','wppb_builder_activated'),(70,32,'_pingme','1'),(71,32,'_encloseme','1'),(72,32,'_edit_last','1'),(124,32,'shutter-up-header-image','default'),(75,32,'_wp_page_template','default'),(76,16,'_wp_page_template','default'),(77,34,'_edit_lock','1610803577:1'),(78,34,'_wppb_current_post_editor','wppb_builder_activated'),(79,34,'_pingme','1'),(80,34,'_encloseme','1'),(81,34,'_edit_last','1'),(139,34,'shutter-up-header-image','default'),(84,34,'_wp_page_template','wppb_theme_template'),(128,49,'_wp_trash_meta_status','publish'),(129,49,'_wp_trash_meta_time','1610802283'),(131,51,'_wp_trash_meta_status','publish'),(132,51,'_wp_trash_meta_time','1610803190'),(133,52,'_wp_trash_meta_status','publish'),(134,52,'_wp_trash_meta_time','1610803206'),(135,53,'_wp_trash_meta_status','publish'),(136,53,'_wp_trash_meta_time','1610803226'),(137,54,'_wp_trash_meta_status','publish'),(138,54,'_wp_trash_meta_time','1610803241'),(142,57,'_wp_trash_meta_status','publish'),(143,57,'_wp_trash_meta_time','1610803835'),(144,58,'_wp_trash_meta_status','publish'),(145,58,'_wp_trash_meta_time','1610803854'),(146,59,'_wp_trash_meta_status','publish'),(147,59,'_wp_trash_meta_time','1610803891'),(148,60,'_wp_trash_meta_status','publish'),(149,60,'_wp_trash_meta_time','1610803918'),(150,61,'_wp_trash_meta_status','publish'),(151,61,'_wp_trash_meta_time','1610803928'),(152,62,'_wp_trash_meta_status','publish'),(153,62,'_wp_trash_meta_time','1610804080'),(154,63,'_wp_trash_meta_status','publish'),(155,63,'_wp_trash_meta_time','1610804090'),(156,64,'_edit_lock','1610804108:1'),(157,64,'_wp_trash_meta_status','publish'),(158,64,'_wp_trash_meta_time','1610804121'),(159,67,'_edit_lock','1610804224:1'),(160,67,'_wp_trash_meta_status','publish'),(161,67,'_wp_trash_meta_time','1610804277'),(162,68,'_thumbnail_id','43'),(163,68,'_edit_lock','1610804400:1'),(164,68,'_wppb_current_post_editor','gutenberg'),(165,68,'_pingme','1'),(166,68,'_encloseme','1'),(167,68,'_edit_last','1'),(168,68,'shutter-up-header-image','default'),(169,68,'_wp_page_template','wppb_theme_template'),(170,70,'_thumbnail_id','43'),(171,70,'_edit_lock','1610804426:1'),(172,70,'_wppb_current_post_editor','gutenberg'),(173,70,'_pingme','1'),(174,70,'_encloseme','1'),(175,70,'_edit_last','1'),(176,70,'shutter-up-header-image','default'),(177,70,'_wp_page_template','wppb_theme_template'),(178,72,'_thumbnail_id','43'),(179,72,'_edit_lock','1610804459:1'),(180,72,'_wppb_current_post_editor','gutenberg'),(181,72,'_pingme','1'),(182,72,'_encloseme','1'),(183,72,'_edit_last','1'),(184,72,'shutter-up-header-image','default'),(185,72,'_wp_page_template','wppb_theme_template'),(186,74,'_thumbnail_id','43'),(187,74,'_edit_lock','1610804472:1'),(188,74,'_wppb_current_post_editor','gutenberg'),(189,74,'_pingme','1'),(190,74,'_encloseme','1'),(191,74,'_edit_last','1'),(192,74,'shutter-up-header-image','default'),(193,74,'_wp_page_template','wppb_theme_template'),(194,76,'_thumbnail_id','43'),(195,76,'_edit_lock','1610804494:1'),(196,76,'_wppb_current_post_editor','gutenberg'),(197,76,'_pingme','1'),(198,76,'_encloseme','1'),(199,76,'_edit_last','1'),(200,76,'shutter-up-header-image','default'),(201,76,'_wp_page_template','wppb_theme_template'),(202,78,'_edit_lock','1610806024:1'),(203,78,'_wp_page_template','wppb_theme_template'),(204,78,'_edit_last','1'),(243,78,'shutter-up-header-image','default'),(206,80,'_edit_lock','1610807328:1'),(207,80,'_edit_last','1'),(208,80,'shutter-up-header-image','default'),(209,82,'_edit_lock','1610807471:1'),(210,82,'_edit_last','1'),(211,82,'shutter-up-header-image','default'),(491,152,'_edit_lock','1610941175:1'),(490,152,'_is_wppb_editor','1'),(489,152,'_thumbnail_id','45'),(488,150,'_thumbnail_id','45'),(487,150,'_is_wppb_editor','1'),(486,150,'_edit_lock','1610941159:1'),(485,150,'_wppb_current_post_editor','wppb_builder_activated'),(484,150,'_pingme','1'),(483,150,'_encloseme','1'),(482,150,'_edit_last','1'),(481,150,'shutter-up-header-image','default'),(480,150,'_wp_page_template','default'),(230,87,'_menu_item_type','post_type'),(231,87,'_menu_item_menu_item_parent','0'),(232,87,'_menu_item_object_id','78'),(233,87,'_menu_item_object','page'),(234,87,'_menu_item_target',''),(235,87,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(236,87,'_menu_item_xfn',''),(237,87,'_menu_item_url',''),(268,94,'_wp_trash_meta_status','publish'),(269,94,'_wp_trash_meta_time','1610806854'),(242,78,'_thumbnail_id','43'),(244,78,'_is_wppb_editor','1'),(245,78,'_wppb_current_post_editor','wppb_builder_activated'),(246,78,'_wppb_content','[{\"id\":1610805679786,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_padding\":{\"md\":{\"top\":\"25px\",\"bottom\":\"25px\",\"left\":\"0px\",\"right\":\"0px\"}},\"row_screen\":\"container-stretch-no-gutter\",\"row_opacity\":0.4,\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"row_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"layout\":\"67.50000,32.50000\",\"columns\":[{\"id\":1610805679784,\"class_name\":50,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"67.50000\",\"sm\":50,\"xs\":100}},\"addons\":[{\"id\":1610805706732,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"2\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"wppb-medium\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":\"1\",\"posts_excerpt_length\":\"30\",\"posts_metadata\":[\"author\",\"date\",\"comments\"],\"posts_separator\":\"/\",\"posts_read_more\":\"1\",\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":\"\",\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"htmlContent\":\"\",\"type\":\"addon\"}]},{\"id\":1610805679785,\"class_name\":50,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"32.50000\",\"sm\":50,\"xs\":100}},\"addons\":[{\"id\":1610806133994,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"Landscaping\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"initialize_empty\":\"0\",\"id\":1610806133994,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610806133994\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"},{\"id\":1610805825484,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"1\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"thumbnail\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":1,\"posts_excerpt_length\":\"15\",\"posts_metadata\":[],\"posts_separator\":\"/\",\"posts_read_more\":0,\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"3\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":0},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"14px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"initialize_empty\":\"0\",\"addon_class\":\"page-posts\",\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_custom_css\":\".page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\\n\\n flex: 1 1 100%;\\n flex-direction: row;\\n display: flex;\\n}\\n\\n.page-posts .wppb-post-grid-content{\\n padding-left:15px\\n}\\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\\n padding-bottom:0px\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"},{\"id\":1610806935269,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"House Plants\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"id\":1610806935269,\"addon_background\":{\"bgType\":\"color\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610806935269\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"},{\"id\":1610806871682,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"1\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"thumbnail\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":1,\"posts_excerpt_length\":\"15\",\"posts_metadata\":[],\"posts_separator\":\"/\",\"posts_read_more\":0,\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"5\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":0},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"14px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"initialize_empty\":\"0\",\"addon_class\":\"page-posts\",\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_custom_css\":\".page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\\n\\n flex: 1 1 100%;\\n flex-direction: row;\\n display: flex;\\n}\\n\\n.page-posts .wppb-post-grid-content{\\n padding-left:15px\\n}\\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\\n padding-bottom:0px\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"}]}]}]'),(247,78,'_wppb_page_css','.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610805679786,.wppb-builder-container > .wppb-row-parent.wppb-row-1610805679786, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610805679786, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610805679786, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610805679786 { padding: 25px 0px 25px 0px;; }.wppb-row-1610805679786:after{content: \" \"; display: block; position: absolute; height: 100%; top: 0; left: 0; right: 0; z-index: -1; opacity: 0.4; }.wppb-column-parent.wppb-col-1610805679784 { width: 67.50000%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610805679784 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610805679784 { width: 100%; }}.wppb-column-parent.wppb-col-1610805679785 { width: 32.50000%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610805679785 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610805679785 { width: 100%; }}.wppb-addon-1610805706732 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610805706732 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610805706732 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610805706732 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610805706732 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610805706732 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610805706732 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-addon-1610805706732 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610805706732 .wppb-posts-paginate-link:hover,.wppb-addon-1610805706732 .paginate-active { color: #fff; }.wppb-addon-1610805706732 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610805706732 .wppb-posts-paginate-link:hover, .wppb-addon-1610805706732 .paginate-active{ background:#3666E4}.wppb-addon-1610805706732 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610805706732 .wppb-posts-paginate-link:hover,.wppb-addon-1610805706732 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-addon-1610806133994 .wppb-addon-title{font-size:28px}.wppb-addon-1610806133994 .wppb-addon-title{font-weight:700;}.wppb-addon-1610805825484 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610805825484 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610805825484 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610805825484 .wppb-post-grid-intro{font-size:14px}.wppb-addon-1610805825484 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610805825484 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610805825484 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610805825484 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\n\n flex: 1 1 100%;\n flex-direction: row;\n display: flex;\n}\n\n.page-posts .wppb-post-grid-content{\n padding-left:15px\n}\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\n padding-bottom:0px\n}.wppb-addon-1610805825484 .wppb-post-grid-intro{font-weight:400;}.wppb-addon-1610805825484 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610805825484 .wppb-posts-paginate-link:hover,.wppb-addon-1610805825484 .paginate-active { color: #fff; }.wppb-addon-1610805825484 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610805825484 .wppb-posts-paginate-link:hover, .wppb-addon-1610805825484 .paginate-active{ background:#3666E4}.wppb-addon-1610805825484 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610805825484 .wppb-posts-paginate-link:hover,.wppb-addon-1610805825484 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-addon-1610806935269 .wppb-addon-title{font-size:28px}.wppb-addon-1610806935269 .wppb-addon-title{font-weight:700;}.wppb-addon-1610806871682 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610806871682 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610806871682 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610806871682 .wppb-post-grid-intro{font-size:14px}.wppb-addon-1610806871682 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610806871682 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610806871682 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610806871682 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\n\n flex: 1 1 100%;\n flex-direction: row;\n display: flex;\n}\n\n.page-posts .wppb-post-grid-content{\n padding-left:15px\n}\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\n padding-bottom:0px\n}.wppb-addon-1610806871682 .wppb-post-grid-intro{font-weight:400;}.wppb-addon-1610806871682 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610806871682 .wppb-posts-paginate-link:hover,.wppb-addon-1610806871682 .paginate-active { color: #fff; }.wppb-addon-1610806871682 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610806871682 .wppb-posts-paginate-link:hover, .wppb-addon-1610806871682 .paginate-active{ background:#3666E4}.wppb-addon-1610806871682 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610806871682 .wppb-posts-paginate-link:hover,.wppb-addon-1610806871682 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-builder-container#wppb-builder-container .wppb-row-parent > .wppb-container, .wppb-carousel-content-wrap .wppb-container{ max-width: 1140px }.wppb-builder-container#wppb-builder-container > .wppb-row-parent > .wppb-container,.wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container,.wppb-carousel-content-wrap .wppb-container, .wppb-builder-container .wppb-column-parent-view { padding-left: 15px; }.wppb-builder-container#wppb-builder-container > .wppb-row-parent > .wppb-container, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container,.wppb-carousel-content-wrap .wppb-container, .wppb-builder-container .wppb-column-parent-view{ padding-right: 15px; } .wppb-container > .wppb-row { margin-left: -15px; }.wppb-container > .wppb-row { margin-right: -15px; } .wppb-builder-container .wppb-column-parent-editor .wppb-column { margin-left: 15px; } .wppb-builder-container .wppb-column-parent-editor .wppb-column { margin-right: 15px; }'),(248,89,'_thumbnail_id','45'),(249,89,'_is_wppb_editor','1'),(250,89,'_edit_lock','1610806331:1'),(251,89,'_wppb_current_post_editor','wppb_builder_activated'),(252,89,'_pingme','1'),(253,89,'_encloseme','1'),(254,89,'_edit_last','1'),(255,89,'shutter-up-header-image','default'),(256,89,'_wp_page_template','default'),(257,91,'_thumbnail_id','45'),(258,91,'_is_wppb_editor','1'),(259,91,'_edit_lock','1610933610:1'),(260,91,'_wppb_current_post_editor','wppb_builder_activated'),(261,91,'_pingme','1'),(262,91,'_encloseme','1'),(263,91,'_edit_last','1'),(343,91,'shutter-up-header-image','default'),(265,91,'_wp_page_template','default'),(266,93,'_wp_trash_meta_status','publish'),(267,93,'_wp_trash_meta_time','1610806745'),(270,80,'_wp_page_template','default'),(271,95,'_edit_lock','1610888180:1'),(272,95,'_wp_page_template','wppb_theme_template'),(273,95,'_edit_last','1'),(274,95,'shutter-up-header-image','default'),(275,95,'_thumbnail_id','43'),(276,95,'_is_wppb_editor','1'),(277,95,'_wppb_current_post_editor','wppb_builder_activated'),(278,95,'_wppb_content','[{\"id\":1610805679786,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_padding\":{\"md\":{\"top\":\"25px\",\"bottom\":\"25px\",\"left\":\"0px\",\"right\":\"0px\"}},\"row_screen\":\"container-stretch-no-gutter\",\"row_opacity\":0.4,\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"row_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"layout\":\"67.50000,32.50000\",\"columns\":[{\"id\":1610805679784,\"class_name\":50,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"67.50000\",\"sm\":50,\"xs\":100}},\"addons\":[{\"id\":1610805706732,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"2\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"wppb-medium\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":\"1\",\"posts_excerpt_length\":\"30\",\"posts_metadata\":[\"author\",\"date\",\"comments\"],\"posts_separator\":\"/\",\"posts_read_more\":\"1\",\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"3\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_custom_css\":\".wppb-post-grid-title{\\n font-size: 16px;\\n padding: 0;\\n margin:5px 0px 5px 0px;\\n}\\n.wppb-post-grid-intro {\\n font-size: 14px;\\n line-height: 18px;\\n}\\n.widget li {\\n margin-bottom: 15px;\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"}]},{\"id\":1610805679785,\"class_name\":50,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"32.50000\",\"sm\":50,\"xs\":100}},\"addons\":[{\"id\":1610806133994,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"Home Plants\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"initialize_empty\":\"0\",\"id\":1610806133994,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610806133994\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"},{\"id\":1610805825484,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"1\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"thumbnail\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":1,\"posts_excerpt_length\":\"15\",\"posts_metadata\":[],\"posts_separator\":\"/\",\"posts_read_more\":0,\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"5\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":0},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"14px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"initialize_empty\":\"0\",\"addon_class\":\"page-posts\",\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_custom_css\":\".page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\\n\\n flex: 1 1 100%;\\n flex-direction: row;\\n display: flex;\\n}\\n\\n.page-posts .wppb-post-grid-content{\\n padding-left:15px\\n}\\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\\n padding-bottom:0px\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"},{\"id\":1610806935269,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"Edible Gardening\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"id\":1610806935269,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610806935269\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"},{\"id\":1610806871682,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"1\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"thumbnail\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":1,\"posts_excerpt_length\":\"15\",\"posts_metadata\":[],\"posts_separator\":\"/\",\"posts_read_more\":0,\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"2\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":0},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"14px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"initialize_empty\":\"0\",\"addon_class\":\"page-posts\",\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_custom_css\":\".page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\\n\\n flex: 1 1 100%;\\n flex-direction: row;\\n display: flex;\\n}\\n\\n.page-posts .wppb-post-grid-content{\\n padding-left:15px\\n}\\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\\n padding-bottom:0px\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"}]}]}]'),(279,95,'_wppb_page_css','.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610805679786,.wppb-builder-container > .wppb-row-parent.wppb-row-1610805679786, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610805679786, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610805679786, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610805679786 { padding: 25px 0px 25px 0px;; }.wppb-row-1610805679786:after{content: \" \"; display: block; position: absolute; height: 100%; top: 0; left: 0; right: 0; z-index: -1; opacity: 0.4; }.wppb-column-parent.wppb-col-1610805679784 { width: 67.50000%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610805679784 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610805679784 { width: 100%; }}.wppb-column-parent.wppb-col-1610805679785 { width: 32.50000%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610805679785 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610805679785 { width: 100%; }}.wppb-addon-1610805706732 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610805706732 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610805706732 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610805706732 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610805706732 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610805706732 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610805706732 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-post-grid-title{\n font-size: 16px;\n padding: 0;\n margin:5px 0px 5px 0px;\n}\n.wppb-post-grid-intro {\n font-size: 14px;\n line-height: 18px;\n}\n.widget li {\n margin-bottom: 15px;\n}.wppb-addon-1610805706732 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610805706732 .wppb-posts-paginate-link:hover,.wppb-addon-1610805706732 .paginate-active { color: #fff; }.wppb-addon-1610805706732 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610805706732 .wppb-posts-paginate-link:hover, .wppb-addon-1610805706732 .paginate-active{ background:#3666E4}.wppb-addon-1610805706732 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610805706732 .wppb-posts-paginate-link:hover,.wppb-addon-1610805706732 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-addon-1610806133994 .wppb-addon-title{font-size:28px}.wppb-addon-1610806133994 .wppb-addon-title{font-weight:700;}.wppb-addon-1610805825484 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610805825484 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610805825484 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610805825484 .wppb-post-grid-intro{font-size:14px}.wppb-addon-1610805825484 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610805825484 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610805825484 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610805825484 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\n\n flex: 1 1 100%;\n flex-direction: row;\n display: flex;\n}\n\n.page-posts .wppb-post-grid-content{\n padding-left:15px\n}\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\n padding-bottom:0px\n}.wppb-addon-1610805825484 .wppb-post-grid-intro{font-weight:400;}.wppb-addon-1610805825484 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610805825484 .wppb-posts-paginate-link:hover,.wppb-addon-1610805825484 .paginate-active { color: #fff; }.wppb-addon-1610805825484 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610805825484 .wppb-posts-paginate-link:hover, .wppb-addon-1610805825484 .paginate-active{ background:#3666E4}.wppb-addon-1610805825484 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610805825484 .wppb-posts-paginate-link:hover,.wppb-addon-1610805825484 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-addon-1610806935269 .wppb-addon-title{font-size:28px}.wppb-addon-1610806935269 .wppb-addon-title{font-weight:700;}.wppb-addon-1610806871682 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610806871682 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610806871682 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610806871682 .wppb-post-grid-intro{font-size:14px}.wppb-addon-1610806871682 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610806871682 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610806871682 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610806871682 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\n\n flex: 1 1 100%;\n flex-direction: row;\n display: flex;\n}\n\n.page-posts .wppb-post-grid-content{\n padding-left:15px\n}\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\n padding-bottom:0px\n}.wppb-addon-1610806871682 .wppb-post-grid-intro{font-weight:400;}.wppb-addon-1610806871682 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610806871682 .wppb-posts-paginate-link:hover,.wppb-addon-1610806871682 .paginate-active { color: #fff; }.wppb-addon-1610806871682 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610806871682 .wppb-posts-paginate-link:hover, .wppb-addon-1610806871682 .paginate-active{ background:#3666E4}.wppb-addon-1610806871682 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610806871682 .wppb-posts-paginate-link:hover,.wppb-addon-1610806871682 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-builder-container#wppb-builder-container .wppb-row-parent > .wppb-container, .wppb-carousel-content-wrap .wppb-container{ max-width: 1140px }.wppb-builder-container#wppb-builder-container > .wppb-row-parent > .wppb-container,.wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container,.wppb-carousel-content-wrap .wppb-container, .wppb-builder-container .wppb-column-parent-view { padding-left: 15px; }.wppb-builder-container#wppb-builder-container > .wppb-row-parent > .wppb-container, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container,.wppb-carousel-content-wrap .wppb-container, .wppb-builder-container .wppb-column-parent-view{ padding-right: 15px; } .wppb-container > .wppb-row { margin-left: -15px; }.wppb-container > .wppb-row { margin-right: -15px; } .wppb-builder-container .wppb-column-parent-editor .wppb-column { margin-left: 15px; } .wppb-builder-container .wppb-column-parent-editor .wppb-column { margin-right: 15px; }'),(280,34,'_is_wppb_editor','1'),(281,82,'_wp_page_template','default'),(282,97,'_edit_lock','1610888172:1'),(283,97,'_wp_page_template','wppb_theme_template'),(284,97,'_edit_last','1'),(285,97,'shutter-up-header-image','default'),(286,97,'_thumbnail_id','43'),(287,97,'_is_wppb_editor','1'),(288,97,'_wppb_current_post_editor','wppb_builder_activated'),(289,97,'_wppb_content','[{\"id\":1610805679786,\"visibility\":true,\"collapse\":false,\"settings\":{\"row_padding\":{\"md\":{\"top\":\"25px\",\"bottom\":\"25px\",\"left\":\"0px\",\"right\":\"0px\"}},\"row_screen\":\"container-stretch-no-gutter\",\"row_opacity\":0.4,\"row_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"row_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"layout\":\"67.50000,32.50000\",\"columns\":[{\"id\":1610805679784,\"class_name\":50,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"67.50000\",\"sm\":50,\"xs\":100}},\"addons\":[{\"id\":1610805706732,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"2\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":\"1\",\"posts_excerpt_length\":\"30\",\"posts_metadata\":[\"author\",\"date\",\"comments\"],\"posts_separator\":\"/\",\"posts_read_more\":\"1\",\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":\"\",\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"htmlContent\":\"\",\"type\":\"addon\"}]},{\"id\":1610805679785,\"class_name\":50,\"visibility\":true,\"settings\":{\"col_custom_width\":{\"md\":\"32.50000\",\"sm\":50,\"xs\":100}},\"addons\":[{\"id\":1610806133994,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"Landscaping\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"initialize_empty\":\"0\",\"id\":1610806133994,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610806133994\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"},{\"id\":1610805825484,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"1\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"thumbnail\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":1,\"posts_excerpt_length\":\"15\",\"posts_metadata\":[],\"posts_separator\":\"/\",\"posts_read_more\":0,\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"3\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":0},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"14px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"initialize_empty\":\"0\",\"addon_class\":\"page-posts\",\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_custom_css\":\".page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\\n\\n flex: 1 1 100%;\\n flex-direction: row;\\n display: flex;\\n}\\n\\n.page-posts .wppb-post-grid-content{\\n padding-left:15px\\n}\\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\\n padding-bottom:0px\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"},{\"id\":1610806935269,\"name\":\"wppb_heading\",\"visibility\":true,\"settings\":{\"title\":\"Edible Gardening\",\"title_selector\":\"h2\",\"title_link\":{\"link\":\"\",\"window\":false,\"nofolow\":false},\"align\":\"\",\"title_color\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":true},\"title_link_hcolor\":\"\",\"title_fontstyle\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"28px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"700\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"id\":1610806935269,\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false}},\"htmlContent\":\"<div id=\\\"wppb-addon-1610806935269\\\" class=\\\"clearfix\\\" ></div>\",\"type\":\"addon\"},{\"id\":1610806871682,\"name\":\"wppb_posts_grid\",\"visibility\":true,\"settings\":{\"posts_column\":{\"md\":\"1\",\"sm\":\"2\",\"xs\":\"1\"},\"posts_per_page\":\"3\",\"posts_image_size\":\"thumbnail\",\"posts_title_position\":\"above_meta\",\"posts_title\":\"1\",\"posts_title_tag\":\"h3\",\"posts_excerpt\":1,\"posts_excerpt_length\":\"15\",\"posts_metadata\":[],\"posts_separator\":\"/\",\"posts_read_more\":0,\"posts_read_more_text\":\"Read More »\",\"post_type\":\"post\",\"posts_categories\":[\"2\"],\"posts_tags\":\"\",\"post_order_by\":\"date\",\"post_order\":\"desc\",\"posts_ids\":\"\",\"posts_exclude_ids\":\"\",\"posts_enable_pagination\":\"0\",\"post_pagination_type\":\"numbers_next_previous\",\"post_title_color\":\"\",\"post_title_hcolor\":\"\",\"post_title_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"16px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"title_item_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"10px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_meta_item_color\":\"\",\"post_meta_item_hcolor\":\"\",\"post_meta_item\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":0},\"post_meta_item_margin\":\"\",\"post_meta_size\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_height\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"post_meta_separator\":\"\",\"post_meta_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"8px\",\"bottom\":\"0px\",\"left\":\"8px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_img_width\":\"\",\"post_img_height\":\"\",\"post_border_radius\":\"\",\"post_img_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_content_color\":\"\",\"post_content_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"14px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"itemOpenFontStyle2\":1},\"post_content_margin\":{\"md\":{\"top\":\"10px\",\"right\":\"0px\",\"bottom\":\"15px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_button_color\":\"\",\"post_button_hcolor\":\"\",\"post_btton_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_btton_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"post_button_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_button_border\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_border_hcolor\":{\"borderWidth\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_buttom_radius\":\"\",\"post_buttom_hradius\":\"\",\"post_button_margin\":\"\",\"post_button_padding\":\"\",\"post_button_align\":\"\",\"post_load_more_color\":\"#fff\",\"post_load_more_hcolor\":\"#fff\",\"post_load_more_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"clip\":false},\"post_load_more_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#2a55c5\",\"clip\":false},\"post_load_more_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_load_more_border\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_loadmore_border_hcolor\":{\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#cccccc\"},\"post_load_more_radius\":{\"md\":{\"top\":\"4px\",\"right\":\"4px\",\"bottom\":\"4px\",\"left\":\"4px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_hradius\":\"\",\"post_load_more_margin\":\"\",\"post_load_more_padding\":{\"md\":{\"top\":\"10px\",\"right\":\"25px\",\"bottom\":\"10px\",\"left\":\"25px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_load_more_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"post_nav_color\":\"#000\",\"post_nav_hcolor\":\"#fff\",\"post_nav_bg\":{\"colorType\":\"color\",\"colorColor\":\"#fff\",\"colorGradient\":{},\"clip\":false},\"post_nav_hover_bg\":{\"colorType\":\"color\",\"colorColor\":\"#3666E4\",\"colorGradient\":{},\"clip\":false},\"post_nav_size\":{\"fontFamily\":\"\",\"fontSize\":{\"md\":\"12px\",\"sm\":\"\",\"xs\":\"\"},\"lineHeight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"fontWeight\":\"400\",\"textTransform\":\"\",\"fontStyle\":\"\",\"letterSpacing\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"}},\"post_navborder\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#f5f5f5\"},\"post_nav_border_hcolor\":{\"itemOpenBorder\":1,\"borderWidth\":{\"top\":\"1px\",\"right\":\"1px\",\"bottom\":\"1px\",\"left\":\"1px\"},\"borderStyle\":\"solid\",\"borderColor\":\"#3666E4\"},\"post_nav_radius\":\"\",\"post_nav_margin\":{\"md\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_padding\":{\"md\":{\"top\":\"5px\",\"right\":\"15px\",\"bottom\":\"5px\",\"left\":\"15px\"},\"sm\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"xs\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"post_nav_align\":{\"md\":\"center\",\"sm\":\"\",\"xs\":\"\"},\"initialize_empty\":\"0\",\"addon_class\":\"page-posts\",\"addon_background\":{\"bgType\":\"color\",\"bgColor\":\"\",\"bgImage\":{},\"bgimgPosition\":\"\",\"bgimgAttachment\":\"\",\"bgimgRepeat\":\"\",\"bgimgSize\":\"\",\"bgDefaultColor\":\"\",\"bgGradient\":{},\"videoType\":\"local\",\"bgVideo\":{},\"bgExternalVideo\":\"\",\"bgVideoFallback\":{},\"bgHoverType\":\"color\",\"bgHoverColor\":\"\",\"bgHoverImage\":{},\"bgHoverimgPosition\":\"\",\"bgHoverimgAttachment\":\"\",\"bgimgHoverRepeat\":\"\",\"bgimgHoverSize\":\"\",\"bgHoverDefaultColor\":\"\",\"bgHoverGradient\":{}},\"addon_color_opacity\":{\"colorType\":\"color\",\"colorColor\":\"\",\"colorGradient\":{},\"clip\":false},\"addon_custom_css\":\".page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\\n\\n flex: 1 1 100%;\\n flex-direction: row;\\n display: flex;\\n}\\n\\n.page-posts .wppb-post-grid-content{\\n padding-left:15px\\n}\\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\\n padding-bottom:0px\\n}\"},\"htmlContent\":\"\",\"type\":\"addon\"}]}]}]'),(290,97,'_wppb_page_css','.wppb-builder-container > div > div > .wppb-row-parent.wppb-row-1610805679786,.wppb-builder-container > .wppb-row-parent.wppb-row-1610805679786, .wppb-builder-container#wppb-builder-container > .wppb-row-parent .wppb-container.wppb-row-1610805679786, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container.wppb-row-1610805679786, .wppb-builder-container .wppb-inner-row-parent.wppb-row-1610805679786 { padding: 25px 0px 25px 0px;; }.wppb-row-1610805679786:after{content: \" \"; display: block; position: absolute; height: 100%; top: 0; left: 0; right: 0; z-index: -1; opacity: 0.4; }.wppb-column-parent.wppb-col-1610805679784 { width: 67.50000%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610805679784 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610805679784 { width: 100%; }}.wppb-column-parent.wppb-col-1610805679785 { width: 32.50000%; }@media (min-width: 768px) and (max-width: 991px) {.wppb-column-parent.wppb-col-1610805679785 { width: 50%; }}@media (max-width: 767px) {.wppb-column-parent.wppb-col-1610805679785 { width: 100%; }}.wppb-addon-1610805706732 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610805706732 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610805706732 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610805706732 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610805706732 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610805706732 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610805706732 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.wppb-addon-1610805706732 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610805706732 .wppb-posts-paginate-link:hover,.wppb-addon-1610805706732 .paginate-active { color: #fff; }.wppb-addon-1610805706732 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610805706732 .wppb-posts-paginate-link:hover, .wppb-addon-1610805706732 .paginate-active{ background:#3666E4}.wppb-addon-1610805706732 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610805706732 .wppb-posts-paginate-link:hover,.wppb-addon-1610805706732 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-addon-1610806133994 .wppb-addon-title{font-size:28px}.wppb-addon-1610806133994 .wppb-addon-title{font-weight:700;}.wppb-addon-1610805825484 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610805825484 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610805825484 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610805825484 .wppb-post-grid-intro{font-size:14px}.wppb-addon-1610805825484 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610805825484 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610805825484 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610805825484 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\n\n flex: 1 1 100%;\n flex-direction: row;\n display: flex;\n}\n\n.page-posts .wppb-post-grid-content{\n padding-left:15px\n}\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\n padding-bottom:0px\n}.wppb-addon-1610805825484 .wppb-post-grid-intro{font-weight:400;}.wppb-addon-1610805825484 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610805825484 .wppb-posts-paginate-link:hover,.wppb-addon-1610805825484 .paginate-active { color: #fff; }.wppb-addon-1610805825484 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610805825484 .wppb-posts-paginate-link:hover, .wppb-addon-1610805825484 .paginate-active{ background:#3666E4}.wppb-addon-1610805825484 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610805825484 .wppb-posts-paginate-link:hover,.wppb-addon-1610805825484 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-addon-1610806935269 .wppb-addon-title{font-size:28px}.wppb-addon-1610806935269 .wppb-addon-title{font-weight:700;}.wppb-addon-1610806871682 .wppb-post-grid-title { margin: 0px 0px 10px 0px;; }.wppb-addon-1610806871682 .wppb-postmeta-sept { margin: 0px 8px 0px 8px;; }.wppb-addon-1610806871682 .wppb-post-grid-img img { margin: 0px 0px 15px 0px;; }.wppb-addon-1610806871682 .wppb-post-grid-intro{font-size:14px}.wppb-addon-1610806871682 .wppb-post-grid-intro { margin: 10px 0px 15px 0px;; }.wppb-addon-1610806871682 .wppb-posts-paginate-link { margin: 0px 5px 0px 0px;; }.wppb-addon-1610806871682 .wppb-posts-paginate-link { padding: 5px 15px 5px 15px;; }.wppb-addon-1610806871682 .wppb-posts-addon-pagination{ text-align: center; }@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}.page-posts .wppb-post-grid-wrap.wppb-post-grid-one{\n\n flex: 1 1 100%;\n flex-direction: row;\n display: flex;\n}\n\n.page-posts .wppb-post-grid-content{\n padding-left:15px\n}\n.page-posts .wppb-addons-col-md1.wppb-addons-col-sm2.wppb-addons-col-xs1{\n padding-bottom:0px\n}.wppb-addon-1610806871682 .wppb-post-grid-intro{font-weight:400;}.wppb-addon-1610806871682 .wppb-posts-paginate-link { color: #000; }.wppb-addon-1610806871682 .wppb-posts-paginate-link:hover,.wppb-addon-1610806871682 .paginate-active { color: #fff; }.wppb-addon-1610806871682 .wppb-posts-paginate-link{ background:#fff}.wppb-addon-1610806871682 .wppb-posts-paginate-link:hover, .wppb-addon-1610806871682 .paginate-active{ background:#3666E4}.wppb-addon-1610806871682 .wppb-posts-paginate-link{border-width:1px 1px 1px 1px;border-style:solid;border-color:#f5f5f5;}.wppb-addon-1610806871682 .wppb-posts-paginate-link:hover,.wppb-addon-1610806871682 .paginate-active{border-width:1px 1px 1px 1px;border-style:solid;border-color:#3666E4;}.wppb-builder-container#wppb-builder-container .wppb-row-parent > .wppb-container, .wppb-carousel-content-wrap .wppb-container{ max-width: 1140px }.wppb-builder-container#wppb-builder-container > .wppb-row-parent > .wppb-container,.wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container,.wppb-carousel-content-wrap .wppb-container, .wppb-builder-container .wppb-column-parent-view { padding-left: 15px; }.wppb-builder-container#wppb-builder-container > .wppb-row-parent > .wppb-container, .wppb-builder-container#wppb-builder-container .wppb-row-placeholder > .wppb-row-parent > .wppb-container,.wppb-carousel-content-wrap .wppb-container, .wppb-builder-container .wppb-column-parent-view{ padding-right: 15px; } .wppb-container > .wppb-row { margin-left: -15px; }.wppb-container > .wppb-row { margin-right: -15px; } .wppb-builder-container .wppb-column-parent-editor .wppb-column { margin-left: 15px; } .wppb-builder-container .wppb-column-parent-editor .wppb-column { margin-right: 15px; }'),(304,105,'_wp_attached_file','2021/01/Logo-Maker-2021_01_16_08_22_20.png'),(305,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:42:\"2021/01/Logo-Maker-2021_01_16_08_22_20.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Logo-Maker-2021_01_16_08_22_20-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Logo-Maker-2021_01_16_08_22_20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"Logo-Maker-2021_01_16_08_22_20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"shutter-up-stats\";a:4:{s:4:\"file\";s:40:\"Logo-Maker-2021_01_16_08_22_20-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"shutter-up-logo-slider\";a:4:{s:4:\"file\";s:41:\"Logo-Maker-2021_01_16_08_22_20-180x77.png\";s:5:\"width\";i:180;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"wppb-medium\";a:4:{s:4:\"file\";s:42:\"Logo-Maker-2021_01_16_08_22_20-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;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:{}}}'),(295,101,'_wp_attached_file','2021/01/cropped-gardenguide-logo.png'),(296,101,'_wp_attachment_context','custom-logo'),(297,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:371;s:6:\"height\";i:103;s:4:\"file\";s:36:\"2021/01/cropped-gardenguide-logo.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"cropped-gardenguide-logo-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cropped-gardenguide-logo-150x103.png\";s:5:\"width\";i:150;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"shutter-up-stats\";a:4:{s:4:\"file\";s:34:\"cropped-gardenguide-logo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"shutter-up-logo-slider\";a:4:{s:4:\"file\";s:35:\"cropped-gardenguide-logo-180x77.png\";s:5:\"width\";i:180;s:6:\"height\";i:77;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:{}}}'),(298,102,'_edit_lock','1610808939:1'),(301,104,'_wp_attached_file','2021/01/cropped-garden-guide.png'),(302,104,'_wp_attachment_context','custom-logo'),(303,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:233;s:6:\"height\";i:50;s:4:\"file\";s:32:\"2021/01/cropped-garden-guide.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-garden-guide-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"shutter-up-stats\";a:4:{s:4:\"file\";s:30:\"cropped-garden-guide-70x50.png\";s:5:\"width\";i:70;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"shutter-up-logo-slider\";a:4:{s:4:\"file\";s:31:\"cropped-garden-guide-180x50.png\";s:5:\"width\";i:180;s:6:\"height\";i:50;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:{}}}'),(306,106,'_wp_attached_file','2021/01/cropped-Logo-Maker-2021_01_16_08_22_20.png'),(307,106,'_wp_attachment_context','custom-logo'),(308,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:62;s:4:\"file\";s:50:\"2021/01/cropped-Logo-Maker-2021_01_16_08_22_20.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"cropped-Logo-Maker-2021_01_16_08_22_20-150x62.png\";s:5:\"width\";i:150;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"shutter-up-stats\";a:4:{s:4:\"file\";s:48:\"cropped-Logo-Maker-2021_01_16_08_22_20-70x62.png\";s:5:\"width\";i:70;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"shutter-up-logo-slider\";a:4:{s:4:\"file\";s:49:\"cropped-Logo-Maker-2021_01_16_08_22_20-180x62.png\";s:5:\"width\";i:180;s:6:\"height\";i:62;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:{}}}'),(309,102,'_wp_trash_meta_status','publish'),(310,102,'_wp_trash_meta_time','1610808943'),(311,107,'_edit_lock','1610809895:1'),(312,107,'_wp_trash_meta_status','publish'),(313,107,'_wp_trash_meta_time','1610809910'),(314,109,'_wp_trash_meta_status','publish'),(315,109,'_wp_trash_meta_time','1610809917'),(316,111,'_wp_trash_meta_status','publish'),(317,111,'_wp_trash_meta_time','1610809931'),(318,113,'_wp_trash_meta_status','publish'),(319,113,'_wp_trash_meta_time','1610809966'),(320,115,'_menu_item_type','post_type'),(321,115,'_menu_item_menu_item_parent','0'),(322,115,'_menu_item_object_id','97'),(323,115,'_menu_item_object','page'),(324,115,'_menu_item_target',''),(325,115,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(326,115,'_menu_item_xfn',''),(327,115,'_menu_item_url',''),(479,148,'_wp_page_template','default'),(478,148,'shutter-up-header-image','default'),(477,148,'_edit_last','1'),(476,148,'_encloseme','1'),(475,148,'_pingme','1'),(474,148,'_wppb_current_post_editor','wppb_builder_activated'),(336,80,'_wp_trash_meta_status','publish'),(337,80,'_wp_trash_meta_time','1610888243'),(338,80,'_wp_desired_post_slug','home-gardening-1'),(339,82,'_wp_trash_meta_status','publish'),(340,82,'_wp_trash_meta_time','1610888243'),(341,82,'_wp_desired_post_slug','landscaping-1'),(342,32,'_is_wppb_editor','1'),(344,119,'_edit_lock','1610932225:1'),(473,148,'_edit_lock','1610941139:1'),(472,148,'_is_wppb_editor','1'),(471,148,'_thumbnail_id','45'),(470,68,'_wp_desired_post_slug','decks-and-patios'),(469,68,'_wp_trash_meta_time','1610941111'),(468,68,'_wp_trash_meta_status','publish'),(353,119,'_edit_last','1'),(354,119,'shutter-up-header-image','default'),(355,122,'_edit_lock','1610932188:1'),(467,70,'_wp_desired_post_slug','garden-structures'),(466,70,'_wp_trash_meta_time','1610941078'),(465,70,'_wp_trash_meta_status','publish'),(364,122,'_edit_last','1'),(365,122,'shutter-up-header-image','default'),(366,125,'_edit_lock','1610932199:1'),(464,72,'_wp_desired_post_slug','landscape-basics'),(463,72,'_wp_trash_meta_time','1610941064'),(462,72,'_wp_trash_meta_status','publish'),(461,74,'_wp_desired_post_slug','landscape-plans'),(375,125,'_edit_last','1'),(376,125,'shutter-up-header-image','default'),(377,128,'_edit_lock','1610932211:1'),(460,74,'_wp_trash_meta_time','1610941045'),(459,74,'_wp_trash_meta_status','publish'),(458,145,'_wp_desired_post_slug','water-gardens'),(457,145,'_wp_trash_meta_time','1610941012'),(456,145,'_wp_trash_meta_status','publish'),(386,128,'_edit_last','1'),(387,128,'shutter-up-header-image','default'),(388,131,'_edit_lock','1610932213:1'),(389,119,'_wp_page_template','default'),(391,134,'_menu_item_type','post_type'),(392,134,'_menu_item_menu_item_parent','0'),(393,134,'_menu_item_object_id','128'),(394,134,'_menu_item_object','page'),(395,134,'_menu_item_target',''),(396,134,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(397,134,'_menu_item_xfn',''),(398,134,'_menu_item_url',''),(427,133,'_customize_restore_dismissed','1'),(400,135,'_menu_item_type','post_type'),(401,135,'_menu_item_menu_item_parent','0'),(402,135,'_menu_item_object_id','125'),(403,135,'_menu_item_object','page'),(404,135,'_menu_item_target',''),(405,135,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(406,135,'_menu_item_xfn',''),(407,135,'_menu_item_url',''),(429,138,'_wp_trash_meta_time','1610933601'),(409,136,'_menu_item_type','post_type'),(410,136,'_menu_item_menu_item_parent','0'),(411,136,'_menu_item_object_id','122'),(412,136,'_menu_item_object','page'),(413,136,'_menu_item_target',''),(414,136,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(415,136,'_menu_item_xfn',''),(416,136,'_menu_item_url',''),(428,138,'_wp_trash_meta_status','publish'),(418,137,'_menu_item_type','post_type'),(419,137,'_menu_item_menu_item_parent','0'),(420,137,'_menu_item_object_id','119'),(421,137,'_menu_item_object','page'),(422,137,'_menu_item_target',''),(423,137,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(424,137,'_menu_item_xfn',''),(425,137,'_menu_item_url',''),(430,140,'_wp_trash_meta_status','publish'),(431,140,'_wp_trash_meta_time','1610933658'),(432,142,'_wp_trash_meta_status','publish'),(433,142,'_wp_trash_meta_time','1610933686'),(434,144,'_wp_trash_meta_status','publish'),(435,144,'_wp_trash_meta_time','1610933709'),(436,76,'_wp_trash_meta_status','publish'),(437,76,'_wp_trash_meta_time','1610940897'),(438,76,'_wp_desired_post_slug','water-gardens'),(439,145,'_thumbnail_id','43'),(440,145,'_edit_lock','1610940921:1'),(441,145,'_wppb_current_post_editor','gutenberg'),(442,145,'_pingme','1'),(443,145,'_encloseme','1'),(444,145,'_edit_last','1'),(445,145,'shutter-up-header-image','default'),(446,145,'_wp_page_template','wppb_theme_template'),(447,147,'_menu_item_type','post_type'),(448,147,'_menu_item_menu_item_parent','0'),(449,147,'_menu_item_object_id','95'),(450,147,'_menu_item_object','page'),(451,147,'_menu_item_target',''),(452,147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(453,147,'_menu_item_xfn',''),(454,147,'_menu_item_url',''),(492,152,'_wppb_current_post_editor','wppb_builder_activated'),(493,152,'_pingme','1'),(494,152,'_encloseme','1'),(495,152,'_edit_last','1'),(496,152,'shutter-up-header-image','default'),(497,152,'_wp_page_template','default'),(498,154,'_edit_lock','1610941387:1'),(499,154,'_wp_trash_meta_status','publish'),(500,154,'_wp_trash_meta_time','1610941399'),(501,156,'_wp_trash_meta_status','publish'),(502,156,'_wp_trash_meta_time','1610941426'),(503,158,'_wp_trash_meta_status','publish'),(504,158,'_wp_trash_meta_time','1610941451'),(505,160,'_edit_lock','1610941478:1'),(506,160,'_wp_trash_meta_status','publish'),(507,160,'_wp_trash_meta_time','1610941493'),(508,162,'_wp_trash_meta_status','publish'),(509,162,'_wp_trash_meta_time','1610941540'),(510,164,'_wp_trash_meta_status','publish'),(511,164,'_wp_trash_meta_time','1610941569'),(512,166,'_wp_trash_meta_status','publish'),(513,166,'_wp_trash_meta_time','1610941604'),(514,168,'_wp_trash_meta_status','publish'),(515,168,'_wp_trash_meta_time','1610941623'),(516,170,'_wp_trash_meta_status','publish'),(517,170,'_wp_trash_meta_time','1610941631'),(518,172,'_wp_trash_meta_status','publish'),(519,172,'_wp_trash_meta_time','1610941695'),(520,174,'_wp_trash_meta_status','publish'),(521,174,'_wp_trash_meta_time','1610941738'),(522,176,'_wp_trash_meta_status','publish'),(523,176,'_wp_trash_meta_time','1610941749'),(524,178,'_edit_lock','1614943214:1'),(525,178,'_edit_last','1');
/*!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 NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(255) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text 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 NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) 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=180 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2021-01-16 11:58:31','2021-01-16 11:58:31','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','trash','open','open','','hello-world__trashed','','','2021-01-16 12:08:31','2021-01-16 12:08:31','',0,'http://gardenguide.org/?p=1',0,'post','',1),(2,1,'2021-01-16 11:58:31','2021-01-16 11:58:31','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://gardenguide.org/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','draft','closed','open','','sample-page','','','2021-01-16 12:02:53','2021-01-16 12:02:53','',0,'http://gardenguide.org/?page_id=2',0,'page','',0),(3,1,'2021-01-16 11:58:31','2021-01-16 11:58:31','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://gardenguide.org.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','trash','closed','open','','privacy-policy__trashed','','','2021-01-16 12:01:23','2021-01-16 12:01:23','',0,'http://gardenguide.org/?page_id=3',0,'page','',0),(4,1,'2021-01-16 11:58:43','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2021-01-16 11:58:43','0000-00-00 00:00:00','',0,'http://gardenguide.org/?p=4',0,'post','',0),(5,1,'2021-01-16 12:01:23','2021-01-16 12:01:23','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://gardenguide.org.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2021-01-16 12:01:23','2021-01-16 12:01:23','',3,'http://gardenguide.org/?p=5',0,'revision','',0),(6,1,'2021-01-16 12:01:23','2021-01-16 12:01:23','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://gardenguide.org/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-01-16 12:01:23','2021-01-16 12:01:23','',2,'http://gardenguide.org/?p=6',0,'revision','',0),(7,1,'2021-01-16 12:01:32','2021-01-16 12:01:32','<!-- wp:heading -->\n<h2>Gardening</h2>\n<!-- /wp:heading -->','Home','','publish','closed','closed','','home','','','2021-01-16 13:57:41','2021-01-16 13:57:41','',0,'http://gardenguide.org/?page_id=7',0,'page','',0),(8,1,'2021-01-16 12:01:32','2021-01-16 12:01:32','','Home','','inherit','closed','closed','','7-revision-v1','','','2021-01-16 12:01:32','2021-01-16 12:01:32','',7,'http://gardenguide.org/?p=8',0,'revision','',0),(9,1,'2021-01-16 12:02:38','2021-01-16 12:02:38','{\n \"shutter-up::shutter_up_header_media_option\": {\n \"value\": \"entire-site\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 12:02:38\"\n }\n}','','','trash','closed','closed','','dccc5528-ee89-4aca-aebc-a12aa2eb6530','','','2021-01-16 12:02:38','2021-01-16 12:02:38','',0,'http://gardenguide.org/?p=9',0,'customize_changeset','',0),(56,1,'2021-01-16 13:30:31','2021-01-16 13:30:31','','gardening','','inherit','open','closed','','gardening','','','2021-01-16 13:30:31','2021-01-16 13:30:31','',0,'http://gardenguide.org/wp-content/uploads/2021/01/gardening.mp4',0,'attachment','video/mp4',0),(12,1,'2021-01-16 12:05:46','2021-01-16 12:05:46','{\n \"shutter-up::header_video\": {\n \"value\": 11,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 12:05:46\"\n }\n}','','','trash','closed','closed','','23182904-740f-4492-8911-df3c5b86817e','','','2021-01-16 12:05:46','2021-01-16 12:05:46','',0,'http://gardenguide.org/?p=12',0,'customize_changeset','',0),(15,1,'2021-01-16 12:08:31','2021-01-16 12:08:31','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2021-01-16 12:08:31','2021-01-16 12:08:31','',1,'http://gardenguide.org/?p=15',0,'revision','',0),(16,1,'2021-01-16 12:11:15','2021-01-16 12:11:15','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Growing Fruits','','publish','closed','closed','','growing-fruits','','','2021-01-18 01:07:50','2021-01-18 01:07:50','',0,'http://gardenguide.org/?p=16',0,'post','',0),(17,1,'2021-01-16 12:11:15','2021-01-16 12:11:15','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Growing Fruits','','inherit','closed','closed','','16-revision-v1','','','2021-01-16 12:11:15','2021-01-16 12:11:15','',16,'http://gardenguide.org/?p=17',0,'revision','',0),(88,1,'2021-01-16 13:57:25','2021-01-16 13:57:25','<!-- wp:heading -->\n<h2>Gardening</h2>\n<!-- /wp:heading -->','Home','','inherit','closed','closed','','7-revision-v1','','','2021-01-16 13:57:25','2021-01-16 13:57:25','',7,'http://gardenguide.org/?p=88',0,'revision','',0),(50,1,'2021-01-16 13:05:07','2021-01-16 13:05:07','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Growing Fruits','','inherit','closed','closed','','16-revision-v1','','','2021-01-16 13:05:07','2021-01-16 13:05:07','',16,'http://gardenguide.org/?p=50',0,'revision','',0),(48,1,'2021-01-16 13:03:41','2021-01-16 13:03:41','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Growing Fruits','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum','inherit','closed','closed','','16-revision-v1','','','2021-01-16 13:03:41','2021-01-16 13:03:41','',16,'http://gardenguide.org/?p=48',0,'revision','',0),(43,1,'2021-01-16 12:32:48','2021-01-16 12:32:48','','edible-gardening','','inherit','open','closed','','edible-gardening','','','2021-01-16 12:32:48','2021-01-16 12:32:48','',34,'http://gardenguide.org/wp-content/uploads/2021/01/edible-gardening.jpg',0,'attachment','image/jpeg',0),(44,1,'2021-01-16 12:32:48','2021-01-16 12:32:48','','home-gardening','','inherit','open','closed','','home-gardening','','','2021-01-16 12:32:48','2021-01-16 12:32:48','',34,'http://gardenguide.org/wp-content/uploads/2021/01/home-gardening.jpg',0,'attachment','image/jpeg',0),(45,1,'2021-01-16 12:32:48','2021-01-16 12:32:48','','landscape-gardening','','inherit','open','closed','','landscape-gardening','','','2021-01-16 12:32:48','2021-01-16 12:32:48','',34,'http://gardenguide.org/wp-content/uploads/2021/01/landscape-gardening.jpg',0,'attachment','image/jpeg',0),(47,1,'2021-01-16 12:40:43','2021-01-16 12:40:43','','edible-gardening-150x150','','inherit','open','closed','','edible-gardening-150x150','','','2021-01-16 12:40:43','2021-01-16 12:40:43','',34,'http://gardenguide.org/wp-content/uploads/2021/01/edible-gardening-150x150-1.jpg',0,'attachment','image/jpeg',0),(31,1,'2021-01-16 12:12:20','2021-01-16 12:12:20','{\n \"shutter-up::shutter_up_header_media_option\": {\n \"value\": \"entire-site-page-post\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 12:12:20\"\n }\n}','','','trash','closed','closed','','f756cb29-8f38-46ca-9242-54a456acb98f','','','2021-01-16 12:12:20','2021-01-16 12:12:20','',0,'http://gardenguide.org/?p=31',0,'customize_changeset','',0),(32,1,'2021-01-16 12:13:43','2021-01-16 12:13:43','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Herbs','','publish','closed','closed','','herbs','','','2021-01-18 01:07:50','2021-01-18 01:07:50','',0,'http://gardenguide.org/?p=32',0,'post','',0),(33,1,'2021-01-16 12:13:58','2021-01-16 12:13:58','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Herbs','','inherit','closed','closed','','32-revision-v1','','','2021-01-16 12:13:58','2021-01-16 12:13:58','',32,'http://gardenguide.org/?p=33',0,'revision','',0),(34,1,'2021-01-16 12:14:06','2021-01-16 12:14:06','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Vegitables The standard Lorem Ipsum passag','','publish','closed','closed','','vegitables','','','2021-01-18 01:07:50','2021-01-18 01:07:50','',0,'http://gardenguide.org/?p=34',0,'post','',0),(35,1,'2021-01-16 12:14:17','2021-01-16 12:14:17','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Vegitables','','inherit','closed','closed','','34-revision-v1','','','2021-01-16 12:14:17','2021-01-16 12:14:17','',34,'http://gardenguide.org/?p=35',0,'revision','',0),(49,1,'2021-01-16 13:04:43','2021-01-16 13:04:43','{\n \"shutter-up::shutter_up_excerpt_length\": {\n \"value\": \"5\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:04:43\"\n }\n}','','','trash','closed','closed','','87bd9e6a-43da-4ff2-aac4-c71ea9cac1d8','','','2021-01-16 13:04:43','2021-01-16 13:04:43','',0,'http://gardenguide.org/?p=49',0,'customize_changeset','',0),(51,1,'2021-01-16 13:19:50','2021-01-16 13:19:50','{\n \"shutter-up::shutter_up_excerpt_length\": {\n \"value\": \"20\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:19:50\"\n }\n}','','','trash','closed','closed','','cfc19c06-3f93-41a4-aa18-75c28c3e3f02','','','2021-01-16 13:19:50','2021-01-16 13:19:50','',0,'http://gardenguide.org/?p=51',0,'customize_changeset','',0),(52,1,'2021-01-16 13:20:06','2021-01-16 13:20:06','{\n \"shutter-up::shutter_up_excerpt_length\": {\n \"value\": \"10\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:20:06\"\n }\n}','','','trash','closed','closed','','4b642d20-110e-4e7b-ab1e-ef5905027b1f','','','2021-01-16 13:20:06','2021-01-16 13:20:06','',0,'http://gardenguide.org/?p=52',0,'customize_changeset','',0),(53,1,'2021-01-16 13:20:26','2021-01-16 13:20:26','{\n \"shutter-up::shutter_up_excerpt_length\": {\n \"value\": \"20\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:20:26\"\n }\n}','','','trash','closed','closed','','47eb95e1-d4ad-4bbe-bf90-0bbf413f8e45','','','2021-01-16 13:20:26','2021-01-16 13:20:26','',0,'http://gardenguide.org/?p=53',0,'customize_changeset','',0),(54,1,'2021-01-16 13:20:41','2021-01-16 13:20:41','{\n \"shutter-up::shutter_up_excerpt_length\": {\n \"value\": \"15\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:20:41\"\n }\n}','','','trash','closed','closed','','7850281f-b0b0-4d7c-9ccb-f9babc988f26','','','2021-01-16 13:20:41','2021-01-16 13:20:41','',0,'http://gardenguide.org/?p=54',0,'customize_changeset','',0),(55,1,'2021-01-16 13:21:23','2021-01-16 13:21:23','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Vegitables The standard Lorem Ipsum passag','','inherit','closed','closed','','34-revision-v1','','','2021-01-16 13:21:23','2021-01-16 13:21:23','',34,'http://gardenguide.org/?p=55',0,'revision','',0),(57,1,'2021-01-16 13:30:35','2021-01-16 13:30:35','{\n \"shutter-up::header_video\": {\n \"value\": 56,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:30:35\"\n }\n}','','','trash','closed','closed','','f44c5479-4394-4c47-be3f-1dcfe17adfae','','','2021-01-16 13:30:35','2021-01-16 13:30:35','',0,'http://gardenguide.org/?p=57',0,'customize_changeset','',0),(58,1,'2021-01-16 13:30:54','2021-01-16 13:30:54','{\n \"blogdescription\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:30:54\"\n }\n}','','','trash','closed','closed','','b295a628-6461-48b3-bcd8-4a4d38880be4','','','2021-01-16 13:30:54','2021-01-16 13:30:54','',0,'http://gardenguide.org/?p=58',0,'customize_changeset','',0),(59,1,'2021-01-16 13:31:31','2021-01-16 13:31:31','{\n \"shutter-up::header_textcolor\": {\n \"value\": \"#81d742\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:31:31\"\n }\n}','','','trash','closed','closed','','386101ee-81a1-4984-949d-e7593c6bc7e2','','','2021-01-16 13:31:31','2021-01-16 13:31:31','',0,'http://gardenguide.org/?p=59',0,'customize_changeset','',0),(60,1,'2021-01-16 13:31:58','2021-01-16 13:31:58','{\n \"blogname\": {\n \"value\": \"GardenGuide\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:31:58\"\n }\n}','','','trash','closed','closed','','b1f5afc9-6a90-42e3-a9fb-0a1a52c604e6','','','2021-01-16 13:31:58','2021-01-16 13:31:58','',0,'http://gardenguide.org/?p=60',0,'customize_changeset','',0),(61,1,'2021-01-16 13:32:08','2021-01-16 13:32:08','{\n \"blogname\": {\n \"value\": \"GardenGuide\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:32:08\"\n }\n}','','','trash','closed','closed','','a9eabe96-d930-41fd-8558-503e9f1d584b','','','2021-01-16 13:32:08','2021-01-16 13:32:08','',0,'http://gardenguide.org/?p=61',0,'customize_changeset','',0),(62,1,'2021-01-16 13:34:40','2021-01-16 13:34:40','{\n \"shutter-up::shutter_up_header_media_title\": {\n \"value\": \"Gardening adds years to your life and life to your years\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:34:40\"\n }\n}','','','trash','closed','closed','','80c93ab2-6a21-46c1-9a61-b5795a537e88','','','2021-01-16 13:34:40','2021-01-16 13:34:40','',0,'http://gardenguide.org/?p=62',0,'customize_changeset','',0),(63,1,'2021-01-16 13:34:50','2021-01-16 13:34:50','{\n \"shutter-up::shutter_up_header_media_text\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:34:50\"\n }\n}','','','trash','closed','closed','','a19f5f20-ea09-4401-90d0-0c349cc20f9e','','','2021-01-16 13:34:50','2021-01-16 13:34:50','',0,'http://gardenguide.org/?p=63',0,'customize_changeset','',0),(64,1,'2021-01-16 13:35:21','2021-01-16 13:35:21','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:35:21\"\n }\n}','','','trash','closed','closed','','7b75f6ad-d252-4626-8600-dd092918b8bf','','','2021-01-16 13:35:21','2021-01-16 13:35:21','',0,'http://gardenguide.org/?p=64',0,'customize_changeset','',0),(65,1,'2021-01-16 13:35:21','2021-01-16 13:35:21','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:5px 0px 5px 0px !important;\n}\n\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n font-size:14px;\n}','shutter-up','','publish','closed','closed','','shutter-up','','','2021-01-18 03:49:09','2021-01-18 03:49:09','',0,'http://gardenguide.org/?p=65',0,'custom_css','',0),(66,1,'2021-01-16 13:35:21','2021-01-16 13:35:21','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-16 13:35:21','2021-01-16 13:35:21','',65,'http://gardenguide.org/?p=66',0,'revision','',0),(67,1,'2021-01-16 13:37:57','2021-01-16 13:37:57','{\n \"sidebars_widgets[sidebar-2]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 13:36:00\"\n }\n}','','','trash','closed','closed','','4792b0a3-dae1-473f-92eb-df3fb398a1a4','','','2021-01-16 13:37:57','2021-01-16 13:37:57','',0,'http://gardenguide.org/?p=67',0,'customize_changeset','',0),(68,1,'2021-01-16 13:39:21','2021-01-16 13:39:21','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Decks and Patios','','trash','closed','closed','','decks-and-patios__trashed','','','2021-01-18 03:38:31','2021-01-18 03:38:31','',0,'http://gardenguide.org/?p=68',0,'post','',0),(69,1,'2021-01-16 13:39:43','2021-01-16 13:39:43','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Decks and Patios','','inherit','closed','closed','','68-revision-v1','','','2021-01-16 13:39:43','2021-01-16 13:39:43','',68,'http://gardenguide.org/?p=69',0,'revision','',0),(70,1,'2021-01-16 13:40:10','2021-01-16 13:40:10','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Garden Structures','','trash','closed','closed','','garden-structures__trashed','','','2021-01-18 03:37:58','2021-01-18 03:37:58','',0,'http://gardenguide.org/?p=70',0,'post','',0),(71,1,'2021-01-16 13:40:26','2021-01-16 13:40:26','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Garden Structures','','inherit','closed','closed','','70-revision-v1','','','2021-01-16 13:40:26','2021-01-16 13:40:26','',70,'http://gardenguide.org/?p=71',0,'revision','',0),(72,1,'2021-01-16 13:40:31','2021-01-16 13:40:31','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Landscape Basics','','trash','closed','closed','','landscape-basics__trashed','','','2021-01-18 03:37:44','2021-01-18 03:37:44','',0,'http://gardenguide.org/?p=72',0,'post','',0),(73,1,'2021-01-16 13:40:50','2021-01-16 13:40:50','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Landscape Basics','','inherit','closed','closed','','72-revision-v1','','','2021-01-16 13:40:50','2021-01-16 13:40:50','',72,'http://gardenguide.org/?p=73',0,'revision','',0),(74,1,'2021-01-16 13:41:01','2021-01-16 13:41:01','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Landscape Plans','','trash','closed','closed','','landscape-plans__trashed','','','2021-01-18 03:37:25','2021-01-18 03:37:25','',0,'http://gardenguide.org/?p=74',0,'post','',0),(75,1,'2021-01-16 13:41:12','2021-01-16 13:41:12','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Landscape Plans','','inherit','closed','closed','','74-revision-v1','','','2021-01-16 13:41:12','2021-01-16 13:41:12','',74,'http://gardenguide.org/?p=75',0,'revision','',0),(76,1,'2021-01-16 13:41:22','2021-01-16 13:41:22','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Water Gardens','','trash','closed','closed','','water-gardens__trashed','','','2021-01-18 03:34:57','2021-01-18 03:34:57','',0,'http://gardenguide.org/?p=76',0,'post','',0),(77,1,'2021-01-16 13:41:34','2021-01-16 13:41:34','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Water Gardens','','inherit','closed','closed','','76-revision-v1','','','2021-01-16 13:41:34','2021-01-16 13:41:34','',76,'http://gardenguide.org/?p=77',0,'revision','',0),(78,1,'2021-01-16 13:54:29','2021-01-16 13:54:29','','Edible Gardening','','publish','closed','closed','','edible-gardening','','','2021-01-16 14:01:01','2021-01-16 14:01:01','',0,'http://gardenguide.org/?page_id=78',0,'page','',0),(79,1,'2021-01-16 13:54:29','2021-01-16 13:54:29','','Edible Garden','','inherit','closed','closed','','78-revision-v1','','','2021-01-16 13:54:29','2021-01-16 13:54:29','',78,'http://gardenguide.org/?p=79',0,'revision','',0),(80,1,'2021-01-16 13:54:43','2021-01-16 13:54:43','','Home Gardening','','trash','closed','closed','','home-gardening-1__trashed','','','2021-01-17 12:57:23','2021-01-17 12:57:23','',0,'http://gardenguide.org/?page_id=80',0,'page','',0),(81,1,'2021-01-16 13:54:43','2021-01-16 13:54:43','','Home Gardening','','inherit','closed','closed','','80-revision-v1','','','2021-01-16 13:54:43','2021-01-16 13:54:43','',80,'http://gardenguide.org/?p=81',0,'revision','',0),(82,1,'2021-01-16 13:54:52','2021-01-16 13:54:52','','Landscaping','','trash','closed','closed','','landscaping-1__trashed','','','2021-01-17 12:57:23','2021-01-17 12:57:23','',0,'http://gardenguide.org/?page_id=82',0,'page','',0),(83,1,'2021-01-16 13:54:52','2021-01-16 13:54:52','','Landscaping','','inherit','closed','closed','','82-revision-v1','','','2021-01-16 13:54:52','2021-01-16 13:54:52','',82,'http://gardenguide.org/?p=83',0,'revision','',0),(84,1,'2021-01-16 13:55:00','2021-01-16 13:55:00','','Edible Gardening','','inherit','closed','closed','','78-revision-v1','','','2021-01-16 13:55:00','2021-01-16 13:55:00','',78,'http://gardenguide.org/?p=84',0,'revision','',0),(87,1,'2021-01-16 13:55:19','2021-01-16 13:55:19',' ','','','publish','closed','closed','','87','','','2021-01-18 03:36:24','2021-01-18 03:36:24','',0,'http://gardenguide.org/?p=87',1,'nav_menu_item','',0),(89,1,'2021-01-16 14:09:55','2021-01-16 14:09:55','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Caring for House Plants','','publish','closed','open','','caring-for-house-plants','','','2021-01-18 00:53:34','2021-01-18 00:53:34','',0,'http://gardenguide.org/?p=89',0,'post','',0),(90,1,'2021-01-16 14:10:20','2021-01-16 14:10:20','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Caring for House Plants','','inherit','closed','closed','','89-revision-v1','','','2021-01-16 14:10:20','2021-01-16 14:10:20','',89,'http://gardenguide.org/?p=90',0,'revision','',0),(91,1,'2021-01-16 14:10:23','2021-01-16 14:10:23','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Choosing House Plants','','publish','closed','closed','','choosing-house-plants','','','2021-01-18 01:07:50','2021-01-18 01:07:50','',0,'http://gardenguide.org/?p=91',0,'post','',0),(92,1,'2021-01-16 14:10:35','2021-01-16 14:10:35','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Choosing House Plants','','inherit','closed','closed','','91-revision-v1','','','2021-01-16 14:10:35','2021-01-16 14:10:35','',91,'http://gardenguide.org/?p=92',0,'revision','',0),(93,1,'2021-01-16 14:19:05','2021-01-16 14:19:05','{\n \"shutter-up::shutter_up_excerpt_length\": {\n \"value\": \"10\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 14:19:05\"\n }\n}','','','trash','closed','closed','','df320961-2acb-498a-9942-0f3cafb2af8a','','','2021-01-16 14:19:05','2021-01-16 14:19:05','',0,'http://gardenguide.org/?p=93',0,'customize_changeset','',0),(94,1,'2021-01-16 14:20:54','2021-01-16 14:20:54','{\n \"shutter-up::shutter_up_excerpt_length\": {\n \"value\": \"15\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 14:20:54\"\n }\n}','','','trash','closed','closed','','0598fd59-fc20-40ff-985a-fe60def71969','','','2021-01-16 14:20:54','2021-01-16 14:20:54','',0,'http://gardenguide.org/?p=94',0,'customize_changeset','',0),(95,1,'2021-01-16 14:28:51','2021-01-16 14:28:51','','Landscaping','','publish','closed','closed','','landscaping','','','2021-01-17 12:56:20','2021-01-17 12:56:20','',0,'http://gardenguide.org/?page_id=95',0,'page','',0),(96,1,'2021-01-16 14:29:04','2021-01-16 14:29:04','','Home Gardening','','inherit','closed','closed','','95-revision-v1','','','2021-01-16 14:29:04','2021-01-16 14:29:04','',95,'http://gardenguide.org/95-revision-v1/',0,'revision','',0),(97,1,'2021-01-16 14:31:15','2021-01-16 14:31:15','','Home Gardening','','publish','closed','closed','','home-gardening','','','2021-01-17 12:56:12','2021-01-17 12:56:12','',0,'http://gardenguide.org/?page_id=97',0,'page','',0),(98,1,'2021-01-16 14:31:31','2021-01-16 14:31:31','','Landscaping','','inherit','closed','closed','','95-revision-v1','','','2021-01-16 14:31:31','2021-01-16 14:31:31','',95,'http://gardenguide.org/95-revision-v1/',0,'revision','',0),(105,1,'2021-01-16 14:52:50','2021-01-16 14:52:50','','Logo Maker 2021_01_16_08_22_20','','inherit','open','closed','','logo-maker-2021_01_16_08_22_20','','','2021-01-16 14:52:50','2021-01-16 14:52:50','',0,'http://gardenguide.org/wp-content/uploads/2021/01/Logo-Maker-2021_01_16_08_22_20.png',0,'attachment','image/png',0),(101,1,'2021-01-16 14:42:51','2021-01-16 14:42:51','http://gardenguide.org/wp-content/uploads/2021/01/cropped-gardenguide-logo.png','cropped-gardenguide-logo.png','','inherit','open','closed','','cropped-gardenguide-logo-png','','','2021-01-16 14:42:51','2021-01-16 14:42:51','',0,'http://gardenguide.org/wp-content/uploads/2021/01/cropped-gardenguide-logo.png',0,'attachment','image/png',0),(102,1,'2021-01-16 14:55:43','2021-01-16 14:55:43','{\n \"shutter-up::custom_logo\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 14:55:43\"\n },\n \"shutter-up::background_color\": {\n \"value\": \"#ffffff\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 14:54:12\"\n }\n}','','','trash','closed','closed','','76d94c5a-fdd3-4192-8c9f-e564e5e773d8','','','2021-01-16 14:55:43','2021-01-16 14:55:43','',0,'http://gardenguide.org/?p=102',0,'customize_changeset','',0),(104,1,'2021-01-16 14:51:06','2021-01-16 14:51:06','http://gardenguide.org/wp-content/uploads/2021/01/cropped-garden-guide.png','cropped-garden-guide.png','','inherit','open','closed','','cropped-garden-guide-png','','','2021-01-16 14:51:06','2021-01-16 14:51:06','',0,'http://gardenguide.org/wp-content/uploads/2021/01/cropped-garden-guide.png',0,'attachment','image/png',0),(106,1,'2021-01-16 14:53:17','2021-01-16 14:53:17','http://gardenguide.org/wp-content/uploads/2021/01/cropped-Logo-Maker-2021_01_16_08_22_20.png','cropped-Logo-Maker-2021_01_16_08_22_20.png','','inherit','open','closed','','cropped-logo-maker-2021_01_16_08_22_20-png','','','2021-01-16 14:53:17','2021-01-16 14:53:17','',0,'http://gardenguide.org/wp-content/uploads/2021/01/cropped-Logo-Maker-2021_01_16_08_22_20.png',0,'attachment','image/png',0),(107,1,'2021-01-16 15:11:50','2021-01-16 15:11:50','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:100%;\\n\\tmargin:0px;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 15:11:50\"\n }\n}','','','trash','closed','closed','','02424899-e0f8-4977-b81b-196654947917','','','2021-01-16 15:11:50','2021-01-16 15:11:50','',0,'http://gardenguide.org/?p=107',0,'customize_changeset','',0),(108,1,'2021-01-16 15:11:50','2021-01-16 15:11:50','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:100%;\n margin:0px;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-16 15:11:50','2021-01-16 15:11:50','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(109,1,'2021-01-16 15:11:57','2021-01-16 15:11:57','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:100%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 15:11:57\"\n }\n}','','','trash','closed','closed','','4716fed5-ee3b-4ea8-bd32-57410d45eedb','','','2021-01-16 15:11:57','2021-01-16 15:11:57','',0,'http://gardenguide.org/4716fed5-ee3b-4ea8-bd32-57410d45eedb/',0,'customize_changeset','',0),(110,1,'2021-01-16 15:11:57','2021-01-16 15:11:57','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:100%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-16 15:11:57','2021-01-16 15:11:57','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(111,1,'2021-01-16 15:12:11','2021-01-16 15:12:11','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 15:12:11\"\n }\n}','','','trash','closed','closed','','cef2915a-cf45-4113-9fcf-09c2f87ce7f8','','','2021-01-16 15:12:11','2021-01-16 15:12:11','',0,'http://gardenguide.org/cef2915a-cf45-4113-9fcf-09c2f87ce7f8/',0,'customize_changeset','',0),(112,1,'2021-01-16 15:12:11','2021-01-16 15:12:11','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-16 15:12:11','2021-01-16 15:12:11','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(113,1,'2021-01-16 15:12:46','2021-01-16 15:12:46','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-16 15:12:46\"\n }\n}','','','trash','closed','closed','','102c0485-8108-4810-8b18-877782df2062','','','2021-01-16 15:12:46','2021-01-16 15:12:46','',0,'http://gardenguide.org/102c0485-8108-4810-8b18-877782df2062/',0,'customize_changeset','',0),(114,1,'2021-01-16 15:12:46','2021-01-16 15:12:46','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-16 15:12:46','2021-01-16 15:12:46','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(115,1,'2021-01-17 12:56:12','2021-01-17 12:56:12',' ','','','publish','closed','closed','','115','','','2021-01-18 03:36:24','2021-01-18 03:36:24','',0,'http://gardenguide.org/115/',2,'nav_menu_item','',0),(116,1,'2021-01-17 12:56:12','2021-01-17 12:56:12','','Home Gardening','','inherit','closed','closed','','97-revision-v1','','','2021-01-17 12:56:12','2021-01-17 12:56:12','',97,'http://gardenguide.org/97-revision-v1/',0,'revision','',0),(145,1,'2021-01-18 03:35:00','2021-01-18 03:35:00','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Water Gardens','','trash','closed','closed','','water-gardens__trashed-2','','','2021-01-18 03:36:52','2021-01-18 03:36:52','',0,'http://gardenguide.org/?p=145',0,'post','',0),(119,1,'2021-01-18 01:09:29','2021-01-18 01:09:29','','About Us','','publish','closed','closed','','about-us','','','2021-01-18 01:10:25','2021-01-18 01:10:25','',0,'http://gardenguide.org/?page_id=119',0,'page','',0),(121,1,'2021-01-18 01:09:29','2021-01-18 01:09:29','','about-us','','inherit','closed','closed','','119-revision-v1','','','2021-01-18 01:09:29','2021-01-18 01:09:29','',119,'http://gardenguide.org/119-revision-v1/',0,'revision','',0),(122,1,'2021-01-18 01:09:47','2021-01-18 01:09:47','','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2021-01-18 01:09:47','2021-01-18 01:09:47','',0,'http://gardenguide.org/?page_id=122',0,'page','',0),(124,1,'2021-01-18 01:09:47','2021-01-18 01:09:47','','Terms and Conditions','','inherit','closed','closed','','122-revision-v1','','','2021-01-18 01:09:47','2021-01-18 01:09:47','',122,'http://gardenguide.org/122-revision-v1/',0,'revision','',0),(125,1,'2021-01-18 01:09:58','2021-01-18 01:09:58','','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2021-01-18 01:09:58','2021-01-18 01:09:58','',0,'http://gardenguide.org/?page_id=125',0,'page','',0),(148,1,'2021-01-18 03:38:44','2021-01-18 03:38:44','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Water Gardens','','publish','closed','closed','','water-gardnes','','','2021-01-18 03:38:59','2021-01-18 03:38:59','',0,'http://gardenguide.org/?p=148',0,'post','',0),(127,1,'2021-01-18 01:09:58','2021-01-18 01:09:58','','Privacy Policy','','inherit','closed','closed','','125-revision-v1','','','2021-01-18 01:09:58','2021-01-18 01:09:58','',125,'http://gardenguide.org/125-revision-v1/',0,'revision','',0),(128,1,'2021-01-18 01:10:10','2021-01-18 01:10:10','','Contact us','','publish','closed','closed','','contact-us','','','2021-01-18 01:10:10','2021-01-18 01:10:10','',0,'http://gardenguide.org/?page_id=128',0,'page','',0),(130,1,'2021-01-18 01:10:10','2021-01-18 01:10:10','','Contact us','','inherit','closed','closed','','128-revision-v1','','','2021-01-18 01:10:10','2021-01-18 01:10:10','',128,'http://gardenguide.org/128-revision-v1/',0,'revision','',0),(131,1,'2021-01-18 01:10:12','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2021-01-18 01:10:12','0000-00-00 00:00:00','',0,'http://gardenguide.org/?page_id=131',0,'page','',0),(132,1,'2021-01-18 01:10:25','2021-01-18 01:10:25','','About Us','','inherit','closed','closed','','119-revision-v1','','','2021-01-18 01:10:25','2021-01-18 01:10:25','',119,'http://gardenguide.org/119-revision-v1/',0,'revision','',0),(133,1,'2021-01-18 01:11:55','0000-00-00 00:00:00','{\n \"sidebars_widgets[sidebar-2]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 01:11:55\"\n },\n \"sidebars_widgets[sidebar-4]\": {\n \"value\": [\n \"pages-3\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 01:11:55\"\n },\n \"widget_pages[3]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 01:11:55\"\n },\n \"widget_pages[4]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 01:11:55\"\n }\n}','','','auto-draft','closed','closed','','c433e893-9539-4de3-9319-b0aeb025063f','','','2021-01-18 01:11:55','0000-00-00 00:00:00','',0,'http://gardenguide.org/?p=133',0,'customize_changeset','',0),(134,1,'2021-01-18 01:12:35','2021-01-18 01:12:35',' ','','','publish','closed','closed','','134','','','2021-01-18 03:35:44','2021-01-18 03:35:44','',0,'http://gardenguide.org/?p=134',4,'nav_menu_item','',0),(135,1,'2021-01-18 01:12:35','2021-01-18 01:12:35',' ','','','publish','closed','closed','','135','','','2021-01-18 03:35:44','2021-01-18 03:35:44','',0,'http://gardenguide.org/?p=135',2,'nav_menu_item','',0),(136,1,'2021-01-18 01:12:35','2021-01-18 01:12:35',' ','','','publish','closed','closed','','136','','','2021-01-18 03:35:44','2021-01-18 03:35:44','',0,'http://gardenguide.org/?p=136',3,'nav_menu_item','',0),(137,1,'2021-01-18 01:12:35','2021-01-18 01:12:35',' ','','','publish','closed','closed','','137','','','2021-01-18 03:35:44','2021-01-18 03:35:44','',0,'http://gardenguide.org/?p=137',1,'nav_menu_item','',0),(138,1,'2021-01-18 01:33:21','2021-01-18 01:33:21','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\n.site-generator{\\n\\tbackground:#000000;\\n}\\n.site-generator a{\\n\\tcolor:#fff;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 01:33:21\"\n }\n}','','','trash','closed','closed','','924c3368-2e8e-4af3-b280-249432ad861e','','','2021-01-18 01:33:21','2021-01-18 01:33:21','',0,'http://gardenguide.org/924c3368-2e8e-4af3-b280-249432ad861e/',0,'customize_changeset','',0),(139,1,'2021-01-18 01:33:21','2021-01-18 01:33:21','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\n.site-generator{\n background:#000000;\n}\n.site-generator a{\n color:#fff;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 01:33:21','2021-01-18 01:33:21','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(140,1,'2021-01-18 01:34:18','2021-01-18 01:34:18','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 01:34:18\"\n }\n}','','','trash','closed','closed','','371e407e-7bb5-460b-8a0f-96ee9b497ff0','','','2021-01-18 01:34:18','2021-01-18 01:34:18','',0,'http://gardenguide.org/371e407e-7bb5-460b-8a0f-96ee9b497ff0/',0,'customize_changeset','',0),(141,1,'2021-01-18 01:34:18','2021-01-18 01:34:18','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 01:34:18','2021-01-18 01:34:18','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(142,1,'2021-01-18 01:34:46','2021-01-18 01:34:46','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 01:34:46\"\n }\n}','','','trash','closed','closed','','d7a3f00e-a8c0-4a24-b32d-972cedad2e82','','','2021-01-18 01:34:46','2021-01-18 01:34:46','',0,'http://gardenguide.org/d7a3f00e-a8c0-4a24-b32d-972cedad2e82/',0,'customize_changeset','',0),(143,1,'2021-01-18 01:34:46','2021-01-18 01:34:46','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 01:34:46','2021-01-18 01:34:46','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(144,1,'2021-01-18 01:35:09','2021-01-18 01:35:09','{\n \"sidebars_widgets[sidebar-2]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 01:35:09\"\n }\n}','','','trash','closed','closed','','ebb0a267-0bae-4c60-8e02-7ab9e1f677b4','','','2021-01-18 01:35:09','2021-01-18 01:35:09','',0,'http://gardenguide.org/ebb0a267-0bae-4c60-8e02-7ab9e1f677b4/',0,'customize_changeset','',0),(146,1,'2021-01-18 03:35:21','2021-01-18 03:35:21','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Water Gardens','','inherit','closed','closed','','145-revision-v1','','','2021-01-18 03:35:21','2021-01-18 03:35:21','',145,'http://gardenguide.org/145-revision-v1/',0,'revision','',0),(147,1,'2021-01-18 03:36:24','2021-01-18 03:36:24',' ','','','publish','closed','closed','','147','','','2021-01-18 03:36:24','2021-01-18 03:36:24','',0,'http://gardenguide.org/?p=147',3,'nav_menu_item','',0),(149,1,'2021-01-18 03:38:59','2021-01-18 03:38:59','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Water Gardens','','inherit','closed','closed','','148-revision-v1','','','2021-01-18 03:38:59','2021-01-18 03:38:59','',148,'http://gardenguide.org/148-revision-v1/',0,'revision','',0),(150,1,'2021-01-18 03:39:02','2021-01-18 03:39:02','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Landscape Plans','','publish','closed','closed','','landscape-plans','','','2021-01-18 03:39:19','2021-01-18 03:39:19','',0,'http://gardenguide.org/?p=150',0,'post','',0),(151,1,'2021-01-18 03:39:19','2021-01-18 03:39:19','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Landscape Plans','','inherit','closed','closed','','150-revision-v1','','','2021-01-18 03:39:19','2021-01-18 03:39:19','',150,'http://gardenguide.org/150-revision-v1/',0,'revision','',0),(152,1,'2021-01-18 03:39:21','2021-01-18 03:39:21','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Landscape Basics','','publish','closed','closed','','landscape-basics','','','2021-01-18 03:39:35','2021-01-18 03:39:35','',0,'http://gardenguide.org/?p=152',0,'post','',0),(153,1,'2021-01-18 03:39:35','2021-01-18 03:39:35','<!-- wp:heading {\"level\":3} -->\n<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Section 1.10.33 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1914 translation by H. Rackham</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>\"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.\"</p>\n<!-- /wp:paragraph -->','Landscape Basics','','inherit','closed','closed','','152-revision-v1','','','2021-01-18 03:39:35','2021-01-18 03:39:35','',152,'http://gardenguide.org/152-revision-v1/',0,'revision','',0),(154,1,'2021-01-18 03:43:19','2021-01-18 03:43:19','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column footer-widget-1 li{\\n\\tmargin-bottom:15px;\\n}\\n.widget-column footer-widget-1 .wppb-post-grid-title{\\n\\tfont-size:16px;\\n\\tmargin:10px 0px 10px 0px;\\n}\\n\\n.widget-column footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:43:19\"\n }\n}','','','trash','closed','closed','','ec28928e-1d2d-4dab-bf7d-ebe1e5eed17b','','','2021-01-18 03:43:19','2021-01-18 03:43:19','',0,'http://gardenguide.org/?p=154',0,'customize_changeset','',0),(155,1,'2021-01-18 03:43:19','2021-01-18 03:43:19','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column footer-widget-1 li{\n margin-bottom:15px;\n}\n.widget-column footer-widget-1 .wppb-post-grid-title{\n font-size:16px;\n margin:10px 0px 10px 0px;\n}\n\n.widget-column footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:43:19','2021-01-18 03:43:19','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(156,1,'2021-01-18 03:43:46','2021-01-18 03:43:46','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column footer-widget-1 .widget-area li{\\n\\tmargin-bottom:15px;\\n}\\n.widget-column footer-widget-1 .wppb-post-grid-title{\\n\\tfont-size:16px;\\n\\tmargin:10px 0px 10px 0px;\\n}\\n\\n.widget-column footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:43:46\"\n }\n}','','','trash','closed','closed','','d81a9016-5ee1-4a6e-ae24-945ab33c687f','','','2021-01-18 03:43:46','2021-01-18 03:43:46','',0,'http://gardenguide.org/d81a9016-5ee1-4a6e-ae24-945ab33c687f/',0,'customize_changeset','',0),(157,1,'2021-01-18 03:43:46','2021-01-18 03:43:46','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column footer-widget-1 .widget-area li{\n margin-bottom:15px;\n}\n.widget-column footer-widget-1 .wppb-post-grid-title{\n font-size:16px;\n margin:10px 0px 10px 0px;\n}\n\n.widget-column footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:43:46','2021-01-18 03:43:46','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(158,1,'2021-01-18 03:44:11','2021-01-18 03:44:11','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column footer-widget-1 .widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n.widget-column footer-widget-1 .wppb-post-grid-title{\\n\\tfont-size:16px;\\n\\tmargin:10px 0px 10px 0px;\\n}\\n\\n.widget-column footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:44:11\"\n }\n}','','','trash','closed','closed','','4dc0684b-ea9a-4fed-a713-b020c2148460','','','2021-01-18 03:44:11','2021-01-18 03:44:11','',0,'http://gardenguide.org/4dc0684b-ea9a-4fed-a713-b020c2148460/',0,'customize_changeset','',0),(159,1,'2021-01-18 03:44:11','2021-01-18 03:44:11','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column footer-widget-1 .widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column footer-widget-1 .wppb-post-grid-title{\n font-size:16px;\n margin:10px 0px 10px 0px;\n}\n\n.widget-column footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:44:11','2021-01-18 03:44:11','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(160,1,'2021-01-18 03:44:53','2021-01-18 03:44:53','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column footer-widget-1 .widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n.widget-column footer-widget-1 h3.wppb-post-grid-title{\\n\\tfont-size:16px !important;\\n\\tmargin:10px 0px 10px 0px !important;\\n}\\n\\n.widget-column footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:44:53\"\n }\n}','','','trash','closed','closed','','c4981340-7d49-4f44-aab3-65c84176a043','','','2021-01-18 03:44:53','2021-01-18 03:44:53','',0,'http://gardenguide.org/?p=160',0,'customize_changeset','',0),(163,1,'2021-01-18 03:45:40','2021-01-18 03:45:40','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column footer-widget-1 .widget-area li{\n margin-bottom:15px !important;\n}\n h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:10px 0px 10px 0px !important;\n}\n\n.widget-column footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:45:40','2021-01-18 03:45:40','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(161,1,'2021-01-18 03:44:53','2021-01-18 03:44:53','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column footer-widget-1 .widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column footer-widget-1 h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:10px 0px 10px 0px !important;\n}\n\n.widget-column footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:44:53','2021-01-18 03:44:53','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(162,1,'2021-01-18 03:45:40','2021-01-18 03:45:40','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column footer-widget-1 .widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n h3.wppb-post-grid-title{\\n\\tfont-size:16px !important;\\n\\tmargin:10px 0px 10px 0px !important;\\n}\\n\\n.widget-column footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:45:40\"\n }\n}','','','trash','closed','closed','','a925e21f-2153-478c-b204-e45c2d98485d','','','2021-01-18 03:45:40','2021-01-18 03:45:40','',0,'http://gardenguide.org/a925e21f-2153-478c-b204-e45c2d98485d/',0,'customize_changeset','',0),(164,1,'2021-01-18 03:46:09','2021-01-18 03:46:09','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column.footer-widget-1 .widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\\n\\tfont-size:16px !important;\\n\\tmargin:10px 0px 10px 0px !important;\\n}\\n\\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:46:09\"\n }\n}','','','trash','closed','closed','','0c05882c-c25f-48a4-89c1-a771acacda42','','','2021-01-18 03:46:09','2021-01-18 03:46:09','',0,'http://gardenguide.org/0c05882c-c25f-48a4-89c1-a771acacda42/',0,'customize_changeset','',0),(165,1,'2021-01-18 03:46:09','2021-01-18 03:46:09','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column.footer-widget-1 .widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:10px 0px 10px 0px !important;\n}\n\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:46:09','2021-01-18 03:46:09','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(166,1,'2021-01-18 03:46:44','2021-01-18 03:46:44','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column.footer-widget-1 .widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\\n\\tfont-size:16px !important;\\n\\tmargin:10px 0px 10px 0px !important;\\n}\\n\\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n\\tfont-size:14px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:46:44\"\n }\n}','','','trash','closed','closed','','a7d65ffe-6b89-41b3-bd2f-bcb4cb244bb2','','','2021-01-18 03:46:44','2021-01-18 03:46:44','',0,'http://gardenguide.org/a7d65ffe-6b89-41b3-bd2f-bcb4cb244bb2/',0,'customize_changeset','',0),(175,1,'2021-01-18 03:48:58','2021-01-18 03:48:58','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:0px 0px 5px 0px !important;\n}\n\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n font-size:14px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:48:58','2021-01-18 03:48:58','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(167,1,'2021-01-18 03:46:44','2021-01-18 03:46:44','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column.footer-widget-1 .widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:10px 0px 10px 0px !important;\n}\n\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n font-size:14px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:46:44','2021-01-18 03:46:44','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(168,1,'2021-01-18 03:47:03','2021-01-18 03:47:03','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column.footer-widget-1 .widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\\n\\tfont-size:16px !important;\\n\\tmargin:0px 0px 0px 0px !important;\\n}\\n\\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n\\tfont-size:14px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:47:03\"\n }\n}','','','trash','closed','closed','','8530823d-60b4-4c12-baa5-0310bff45439','','','2021-01-18 03:47:03','2021-01-18 03:47:03','',0,'http://gardenguide.org/8530823d-60b4-4c12-baa5-0310bff45439/',0,'customize_changeset','',0),(169,1,'2021-01-18 03:47:03','2021-01-18 03:47:03','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column.footer-widget-1 .widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:0px 0px 0px 0px !important;\n}\n\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n font-size:14px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:47:03','2021-01-18 03:47:03','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(170,1,'2021-01-18 03:47:11','2021-01-18 03:47:11','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column.footer-widget-1 .widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\\n\\tfont-size:16px !important;\\n\\tmargin:0px 0px 10px 0px !important;\\n}\\n\\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n\\tfont-size:14px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:47:11\"\n }\n}','','','trash','closed','closed','','c380ad7e-6ad1-47ab-89d4-466f1c705ed0','','','2021-01-18 03:47:11','2021-01-18 03:47:11','',0,'http://gardenguide.org/c380ad7e-6ad1-47ab-89d4-466f1c705ed0/',0,'customize_changeset','',0),(171,1,'2021-01-18 03:47:11','2021-01-18 03:47:11','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column.footer-widget-1 .widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:0px 0px 10px 0px !important;\n}\n\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n font-size:14px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:47:11','2021-01-18 03:47:11','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(172,1,'2021-01-18 03:48:15','2021-01-18 03:48:15','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-column.footer-widget-1 .widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\\n\\tfont-size:16px !important;\\n\\tmargin:0px 0px 5px 0px !important;\\n}\\n\\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n\\tfont-size:14px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:48:15\"\n }\n}','','','trash','closed','closed','','c54961be-3f74-45cd-8a7a-dacb7035286a','','','2021-01-18 03:48:15','2021-01-18 03:48:15','',0,'http://gardenguide.org/c54961be-3f74-45cd-8a7a-dacb7035286a/',0,'customize_changeset','',0),(173,1,'2021-01-18 03:48:15','2021-01-18 03:48:15','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-column.footer-widget-1 .widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:0px 0px 5px 0px !important;\n}\n\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n font-size:14px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:48:15','2021-01-18 03:48:15','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(174,1,'2021-01-18 03:48:58','2021-01-18 03:48:58','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\\n\\tfont-size:16px !important;\\n\\tmargin:0px 0px 5px 0px !important;\\n}\\n\\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n\\tfont-size:14px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:48:58\"\n }\n}','','','trash','closed','closed','','b840f94a-c28a-4de3-9de3-d52a72b50e7b','','','2021-01-18 03:48:58','2021-01-18 03:48:58','',0,'http://gardenguide.org/b840f94a-c28a-4de3-9de3-d52a72b50e7b/',0,'customize_changeset','',0),(176,1,'2021-01-18 03:49:09','2021-01-18 03:49:09','{\n \"custom_css[shutter-up]\": {\n \"value\": \"#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\\n\\tbackground-color:#81d742;\\n}\\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\\n\\tmax-width:70%;\\n\\tmargin:0px;\\n\\tfloat:left;\\n\\t\\n}\\n.no-sidebar .content-area{\\n\\tmargin:0px;\\n}\\n.sidebar{\\n\\tmargin-left:0px;\\n}\\ndiv#site-generator {\\n background: #000000;\\n}\\ndiv#site-generator a{\\n\\tcolor:#fff;\\n}\\n.site-info{\\n\\tcolor:#fff\\n}\\n\\n.widget-area li{\\n\\tmargin-bottom:15px !important;\\n}\\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\\n\\tfont-size:16px !important;\\n\\tmargin:5px 0px 5px 0px !important;\\n}\\n\\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\\n\\tline-height:1;\\n\\tfont-size:14px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-01-18 03:49:09\"\n }\n}','','','trash','closed','closed','','52506745-0f93-4f69-99be-0138e1929b2e','','','2021-01-18 03:49:09','2021-01-18 03:49:09','',0,'http://gardenguide.org/52506745-0f93-4f69-99be-0138e1929b2e/',0,'customize_changeset','',0),(177,1,'2021-01-18 03:49:09','2021-01-18 03:49:09','#feature-slider-section .owl-dot, .site-header-button .button, #promotion-section .play-button-icon, #footer-instagram .catch-instagram-feed-gallery-widget-wrapper .button{\n background-color:#81d742;\n}\n.page.no-sidebar .content-area, .single.no-sidebar .content-area{\n max-width:70%;\n margin:0px;\n float:left;\n \n}\n.no-sidebar .content-area{\n margin:0px;\n}\n.sidebar{\n margin-left:0px;\n}\ndiv#site-generator {\n background: #000000;\n}\ndiv#site-generator a{\n color:#fff;\n}\n.site-info{\n color:#fff\n}\n\n.widget-area li{\n margin-bottom:15px !important;\n}\n.widget-column.footer-widget-1 h3.wppb-post-grid-title{\n font-size:16px !important;\n margin:5px 0px 5px 0px !important;\n}\n\n.widget-column.footer-widget-1 .wppb-post-grid-intro{\n line-height:1;\n font-size:14px;\n}','shutter-up','','inherit','closed','closed','','65-revision-v1','','','2021-01-18 03:49:09','2021-01-18 03:49:09','',65,'http://gardenguide.org/65-revision-v1/',0,'revision','',0),(178,1,'2021-03-05 11:20:14','0000-00-00 00:00:00','','TEts','','draft','closed','closed','','','','','2021-03-05 11:20:14','2021-03-05 11:20:14','',0,'http://gardenguide.org/?page_id=178',0,'page','',0),(179,1,'2021-03-05 11:20:09','2021-03-05 11:20:09','','TEts','','inherit','closed','closed','','178-revision-v1','','','2021-03-05 11:20:09','2021-03-05 11:20:09','',178,'http://gardenguide.org/178-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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(68,3,0),(16,2,0),(32,2,0),(34,2,0),(87,4,0),(70,3,0),(72,3,0),(74,3,0),(76,3,0),(115,4,0),(89,5,0),(91,5,0),(152,3,0),(150,3,0),(148,3,0),(137,6,0),(135,6,0),(136,6,0),(134,6,0),(147,4,0),(145,3,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext 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=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','',0,3),(3,3,'category','',0,3),(4,4,'nav_menu','',0,3),(5,5,'category','',0,2),(6,6,'nav_menu','',0,4);
/*!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) DEFAULT NULL,
`meta_value` longtext 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) 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=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Edible Gardening','edible-gardening',0),(3,'Landscaping','landscaping',0),(4,'Main Menu','main-menu',0),(5,'House Plants','house-plants',0),(6,'Footer Menu','footer-menu',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','steve'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"9684aaf3d81b7ba3cc8b85997821ee3d8545293e2c97ebbac77f44824e344beb\";a:4:{s:10:\"expiration\";i:1615115915;s:2:\"ip\";s:13:\"183.83.253.91\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36\";s:5:\"login\";i:1614943115;}}'),(17,1,'wp_user-settings','libraryContent=browse&mfold=o'),(18,1,'wp_user-settings-time','1610798318'),(19,1,'wp_dashboard_quick_press_last_post_id','4'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"183.83.253.0\";}'),(21,1,'wp_media_library_mode','grid'),(22,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(23,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(24,1,'closedpostboxes_page','a:1:{i:0;s:18:\"shutter-up-options\";}'),(25,1,'metaboxhidden_page','a:0:{}'),(26,1,'nav_menu_recently_edited','4');
/*!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) NOT NULL DEFAULT '',
`user_pass` varchar(255) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'steve','$P$BunP990f2uNPO5NAWBpIKWp2q/X2aC.','steve','steve@gardenguide.org','http://gardenguide.org','2021-01-16 11:58:31','',0,'steve');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping routines for database 'gardenguide_wp'
--
/*!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 2023-12-18 16:29:06
|