SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
SET foreign_key_checks = 0;

DROP TABLE IF EXISTS `wp_commentmeta`;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;



DROP TABLE IF EXISTS `wp_comments`;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;



DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;



DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=946 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

 
INSERT INTO `wp_options` VALUES (1, 'siteurl', 'http://www.toowoombaregionalcouncil.com.au/tcof', 'yes'),
 (2, 'home', 'http://www.toowoombaregionalcouncil.com.au/tcof', 'yes'),
 (3, 'blogname', 'TCOF', 'yes'),
 (4, 'blogdescription', '21-30 SEPT', 'yes'),
 (5, 'users_can_register', '0', 'yes'),
 (6, 'admin_email', 'webteam@tr.qld.gov.au', 'yes'),
 (7, 'start_of_week', '0', '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', '1', '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', 'closed', 'yes'),
 (20, 'default_ping_status', 'closed', 'yes'),
 (21, 'default_pingback_flag', '1', 'yes'),
 (22, 'posts_per_page', '10', 'yes'),
 (23, 'date_format', 'j F Y', 'yes'),
 (24, 'time_format', 'g:i a', 'yes'),
 (25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
 (26, 'comment_moderation', '1', 'yes'),
 (27, 'moderation_notify', '1', 'yes'),
 (28, 'permalink_structure', '/%postname%/', 'yes'),
 (29, 'rewrite_rules', 'a:104:{s:11:"^wp-json/?$";s:22:"index.php?rest_route=/";s:14:"^wp-json/(.*)?";s:33:"index.php?rest_route=/$matches[1]";s:21:"^index.php/wp-json/?$";s:22:"index.php?rest_route=/";s:24:"^index.php/wp-json/(.*)?";s:33:"index.php?rest_route=/$matches[1]";s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:23:"category/(.+?)/embed/?$";s:46:"index.php?category_name=$matches[1]&embed=true";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:20:"tag/([^/]+)/embed/?$";s:36:"index.php?tag=$matches[1]&embed=true";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:51:"index.php?project_type=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:51:"index.php?project_type=$matches[1]&feed=$matches[2]";s:21:"type/([^/]+)/embed/?$";s:45:"index.php?project_type=$matches[1]&embed=true";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:52:"index.php?project_type=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:34:"index.php?project_type=$matches[1]";s:35:"project/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:45:"project/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:65:"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:41:"project/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:24:"project/([^/]+)/embed/?$";s:40:"index.php?project=$matches[1]&embed=true";s:28:"project/([^/]+)/trackback/?$";s:34:"index.php?project=$matches[1]&tb=1";s:36:"project/([^/]+)/page/?([0-9]{1,})/?$";s:47:"index.php?project=$matches[1]&paged=$matches[2]";s:43:"project/([^/]+)/comment-page-([0-9]{1,})/?$";s:47:"index.php?project=$matches[1]&cpage=$matches[2]";s:32:"project/([^/]+)(?:/([0-9]+))?/?$";s:46:"index.php?project=$matches[1]&page=$matches[2]";s:24:"project/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:34:"project/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:54:"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:30:"project/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:8:"embed/?$";s:21:"index.php?&embed=true";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s: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:13:{i:0;s:23:"backup-wd/backup-wd.php";i:1;s:45:"bento-expansion-pack/bento-expansion-pack.php";i:2;s:37:"breadcrumb-navxt/breadcrumb-navxt.php";i:3;s:36:"contact-form-7/wp-contact-form-7.php";i:4;s:33:"duplicate-post/duplicate-post.php";i:5;s:59:"intuitive-custom-post-order/intuitive-custom-post-order.php";i:6;s:19:"keyring/keyring.php";i:7;s:39:"siteorigin-panels/siteorigin-panels.php";i:8;s:39:"so-widgets-bundle/so-widgets-bundle.php";i:9;s:39:"the-post-grid-pro/the-post-grid-pro.php";i:10;s:31:"the-post-grid/the-post-grid.php";i:11;s:33:"widget-context/widget-context.php";i:12;s:30:"youtube-embed-plus/youtube.php";}', 'yes'),
 (34, 'category_base', '', 'yes'),
 (35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
 (36, 'comment_max_links', '2', 'yes'),
 (37, 'gmt_offset', '10', 'yes'),
 (38, 'default_email_category', '1', 'yes'),
 (39, 'recently_edited', 'a:2:{i:0;s:63:"/home/tmbarc/public_html/tcof/wp-content/themes/bento/style.css";i:2;s:0:"";}', 'no'),
 (40, 'template', 'bento', 'yes'),
 (41, 'stylesheet', 'bento-child-tcof', 'yes'),
 (42, 'comment_whitelist', '1', 'yes'),
 (43, 'blacklist_keys', '', 'no'),
 (44, 'comment_registration', '1', 'yes'),
 (45, 'html_type', 'text/html', 'yes'),
 (46, 'use_trackback', '0', 'yes'),
 (47, 'default_role', 'subscriber', 'yes'),
 (48, 'db_version', '38590', 'yes'),
 (49, 'uploads_use_yearmonth_folders', '1', 'yes'),
 (50, 'upload_path', '', 'yes'),
 (51, 'blog_public', '1', 'yes'),
 (52, 'default_link_category', '2', 'yes'),
 (53, 'show_on_front', 'page', 'yes'),
 (54, 'tag_base', '', 'yes'),
 (55, 'show_avatars', '1', 'yes'),
 (56, 'avatar_rating', 'G', 'yes'),
 (57, 'upload_url_path', '', 'yes'),
 (58, 'thumbnail_size_w', '150', 'yes'),
 (59, 'thumbnail_size_h', '150', 'yes'),
 (60, 'thumbnail_crop', '1', 'yes'),
 (61, 'medium_size_w', '300', 'yes'),
 (62, 'medium_size_h', '300', 'yes'),
 (63, 'avatar_default', 'mystery', 'yes'),
 (64, 'large_size_w', '1024', 'yes'),
 (65, 'large_size_h', '1024', 'yes'),
 (66, 'image_default_link_type', 'none', 'yes'),
 (67, 'image_default_size', '', 'yes'),
 (68, 'image_default_align', '', 'yes'),
 (69, 'close_comments_for_old_posts', '', 'yes'),
 (70, 'close_comments_days_old', '14', 'yes'),
 (71, 'thread_comments', '1', 'yes'),
 (72, 'thread_comments_depth', '5', 'yes'),
 (73, 'page_comments', '', 'yes'),
 (74, 'comments_per_page', '50', 'yes'),
 (75, 'default_comments_page', 'newest', 'yes'),
 (76, 'comment_order', 'asc', 'yes'),
 (77, 'sticky_posts', 'a:0:{}', 'yes'),
 (78, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
 (79, 'widget_text', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (80, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
 (81, 'uninstall_plugins', 'a:1:{s:59:"intuitive-custom-post-order/intuitive-custom-post-order.php";s:15:"hicpo_uninstall";}', 'no'),
 (82, 'timezone_string', '', 'yes'),
 (84, 'page_on_front', '7', 'yes'),
 (85, 'default_post_format', '0', 'yes'),
 (86, 'link_manager_enabled', '0', 'yes'),
 (87, 'finished_splitting_shared_terms', '1', 'yes'),
 (88, 'site_icon', '15', 'yes'),
 (89, 'medium_large_size_w', '768', 'yes'),
 (90, 'medium_large_size_h', '0', 'yes'),
 (91, 'initial_db_version', '38590', 'yes'),
 (92, 'wp_user_roles', 'a:8:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:85:{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:8:"edit_box";b:1;s:10:"edit_boxes";b:1;s:16:"edit_other_boxes";b:1;s:13:"publish_boxes";b:1;s:8:"read_box";b:1;s:16:"read_private_box";b:1;s:10:"delete_box";b:1;s:10:"copy_posts";b:1;s:9:"buwd_edit";b:1;s:8:"buwd_job";b:1;s:13:"buwd_job_edit";b:1;s:15:"buwd_job_delete";b:1;s:12:"buwd_job_run";b:1;s:13:"buwd_api_keys";b:1;s:13:"buwd_settings";b:1;s:20:"buwd_settings_import";b:1;s:20:"buwd_settings_export";b:1;s:9:"buwd_logs";b:1;s:13:"buwd_log_view";b:1;s:15:"buwd_log_delete";b:1;s:17:"buwd_log_download";b:1;s:12:"buwd_backups";b:1;s:19:"buwd_backups_delete";b:1;s:21:"buwd_backups_download";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;}}s:10:"buwd_admin";a:2:{s:4:"name";s:15:"Backup WD Admin";s:12:"capabilities";a:17:{s:4:"read";b:1;s:9:"buwd_edit";b:1;s:8:"buwd_job";b:1;s:13:"buwd_job_edit";b:1;s:15:"buwd_job_delete";b:1;s:12:"buwd_job_run";b:1;s:13:"buwd_api_keys";b:1;s:9:"buwd_logs";b:1;s:13:"buwd_settings";b:1;s:20:"buwd_settings_import";b:1;s:20:"buwd_settings_export";b:1;s:13:"buwd_log_view";b:1;s:15:"buwd_log_delete";b:1;s:17:"buwd_log_download";b:1;s:12:"buwd_backups";b:1;s:19:"buwd_backups_delete";b:1;s:21:"buwd_backups_download";b:1;}}s:11:"buwd_helper";a:2:{s:4:"name";s:16:"Backup WD Helper";s:12:"capabilities";a:17:{s:4:"read";b:1;s:9:"buwd_edit";b:1;s:8:"buwd_job";b:1;s:13:"buwd_job_edit";b:0;s:15:"buwd_job_delete";b:0;s:12:"buwd_job_run";b:1;s:13:"buwd_api_keys";b:0;s:13:"buwd_settings";b:0;s:20:"buwd_settings_import";b:0;s:20:"buwd_settings_export";b:0;s:9:"buwd_logs";b:1;s:13:"buwd_log_view";b:1;s:15:"buwd_log_delete";b:0;s:17:"buwd_log_download";b:1;s:12:"buwd_backups";b:1;s:19:"buwd_backups_delete";b:0;s:21:"buwd_backups_download";b:1;}}s:12:"buwd_checker";a:2:{s:4:"name";s:17:"Backup WD Checker";s:12:"capabilities";a:17:{s:4:"read";b:1;s:9:"buwd_edit";b:1;s:8:"buwd_job";b:1;s:13:"buwd_job_edit";b:0;s:15:"buwd_job_delete";b:0;s:12:"buwd_job_run";b:0;s:13:"buwd_api_keys";b:0;s:13:"buwd_settings";b:0;s:20:"buwd_settings_import";b:0;s:20:"buwd_settings_export";b:0;s:9:"buwd_logs";b:1;s:13:"buwd_log_view";b:1;s:15:"buwd_log_delete";b:0;s:17:"buwd_log_download";b:0;s:12:"buwd_backups";b:1;s:19:"buwd_backups_delete";b:0;s:21:"buwd_backups_download";b:0;}}}', 'yes'),
 (93, 'fresh_site', '0', 'yes'),
 (94, 'WPLANG', 'en_AU', 'yes'),
 (95, 'widget_search', 'a:3:{i:2;a:1:{s:5:"title";s:0:"";}i:5;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
 (96, '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'),
 (97, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
 (98, 'widget_archives', 'a: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'),
 (99, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
 (100, 'sidebars_widgets', 'a:4:{s:19:"wp_inactive_widgets";a:6:{i:0;s:10:"archives-2";i:1;s:6:"meta-2";i:2;s:8:"search-2";i:3;s:12:"categories-2";i:4;s:14:"recent-posts-2";i:5;s:17:"recent-comments-2";}s:13:"bento_sidebar";a:2:{i:0;s:8:"search-5";i:1;s:13:"custom_html-3";}s:12:"bento_footer";a:1:{i:0;s:13:"custom_html-2";}s:13:"array_version";i:3;}', 'yes'),
 (101, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (102, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (103, 'widget_media_audio', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (104, 'widget_media_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (105, 'widget_media_gallery', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (106, 'widget_media_video', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (107, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (108, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (109, 'widget_custom_html', 'a:3:{i:2;a:2:{s:5:"title";s:8:"Sponsors";s:7:"content";s:1708:"<div class="sponsors">\r\nProudly operated by: <br>\r\n<img src="/tcof/wp-content/uploads/2018/01/footer-ToowoombaReg.jpg" align="middle" alt="logo" valign style="max-width: 100%; object-fit: contain;">\r\n<hr>\r\nStrategic partners: <br>\r\n<img src="/tcof/wp-content/uploads/2018/03/footer-tourismqld.jpg" alt="logo" style="max-width: 100%; object-fit: contain;">\r\n<img src="/tcof/wp-content/uploads/2018/01/footer-sqc.jpg" alt="logo" style="max-width: 100%; object-fit: contain;">\r\n<br />\r\nMajor partners: <br>\r\n<img src="/tcof/wp-content/uploads/2018/01/footer-ergon.jpg" alt="logo" style="max-width: 100%; object-fit: contain;">\r\n<img src="/tcof/wp-content/uploads/2018/01/footer-heritagebank.jpg" alt="logo" style="max-width: 100%; object-fit: contain;">\r\n<img src="/tcof/wp-content/uploads/2018/01/footer-grandcentral.jpg" alt="logo" style="max-width: 100%; object-fit: contain;">\r\n<img src="/tcof/wp-content/uploads/2018/01/footer-QANTAS_Link.jpg" alt="logo" style="max-width: 100%; object-fit: contain;">\r\n<img src="/tcof/wp-content/uploads/2018/01/footer-TheChronicle.jpg" alt="logo" style="max-width: 100%; object-fit: contain;">\r\n<img src="/tcof/wp-content/uploads/2018/01/footer-pete-honda.jpg" alt="logo" style="max-width: 100%; object-fit: contain;">\r\n<hr>\r\nAwards: <br>\r\n<img src="/tcof/wp-content/uploads/2018/01/footer-ata.jpg" align="middle" alt="logo" style="max-width: 100%; object-fit: contain;"> <img src="/tcof/wp-content/uploads/2018/01/footer-gold-tour-aw-2017.jpg" align="middle" alt="logo" style="max-width: 100%; object-fit: contain;"> <img src="/tcof/wp-content/uploads/2018/01/footer-fame-tour-aw-2017.jpg" align="middle" alt="logo" style="max-width: 100%; object-fit: contain;">\r\n</div>";}i:3;a:2:{s:5:"title";s:6:"Events";s:7:"content";s:320:"<ul>\r\n	<li><a href="family">Family</a></li>\r\n	<li><a href="floral">Floral</a></li>\r\n	<li><a href="tours">Tours</a></li>\r\n	<li><a href="parks-gardens">Parks &amp; Gardens</a></li>\r\n	<li><a href="music">Music</a></li>\r\n	<li><a href="food-wine">Food &amp; Wine</a></li>\r\n	<li><a href="all-events">All events</a></li>\r\n</ul>";}s:12:"_multiwidget";i:1;}', 'yes'),
 (110, 'cron', 'a:4:{i:1521118324;a:3:{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;}}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;}}}i:1521161555;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:1521168001;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
 (111, 'theme_mods_twentyseventeen', 'a:2:{s:18:"custom_css_post_id";i:-1;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1516582976;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:3:{i:0;s:6:"text-2";i:1;s:8:"search-3";i:2;s:6:"text-3";}s:9:"sidebar-2";a:1:{i:0;s:6:"text-4";}s:9:"sidebar-3";a:2:{i:0;s:6:"text-5";i:1;s:8:"search-4";}}}}', 'yes'),
 (129, 'can_compress_scripts', '1', 'no'),
 (150, 'theme_mods_bento', 'a:50:{s:18:"custom_css_post_id";i:193;s:11:"custom_logo";i:13;s:17:"bento_author_meta";i:1;s:20:"bento_website_layout";s:1:"0";s:15:"bento_font_body";s:9:"Open Sans";s:19:"bento_font_headings";s:6:"Santis";s:15:"bento_font_menu";s:9:"Open Sans";s:29:"bento_header_background_color";s:7:"#4d3f72";s:29:"bento_primary_menu_text_color";s:7:"#eeee22";s:35:"bento_primary_menu_text_hover_color";s:7:"#dd3333";s:43:"bento_primary_menu_submenu_background_color";s:7:"#564972";s:49:"bento_primary_menu_submenu_background_hover_color";s:7:"#cccccc";s:34:"bento_mobile_menu_background_color";s:7:"#4d3f72";s:40:"bento_mobile_menu_background_hover_color";s:7:"#4d3f72";s:28:"bento_mobile_menu_text_color";s:7:"#eeee22";s:34:"bento_mobile_menu_text_hover_color";s:7:"#dd3333";s:32:"bento_content_heading_text_color";s:7:"#ed1165";s:29:"bento_content_body_text_color";s:7:"#8377a5";s:29:"bento_content_link_text_color";s:7:"#ed1165";s:37:"bento_footer_widgets_background_color";s:7:"#ffffff";s:23:"bento_footer_text_color";s:7:"#000000";s:28:"bento_footer_link_text_color";s:7:"#dd3333";s:36:"bento_footer_bottom_background_color";s:7:"#931964";s:30:"bento_footer_bottom_text_color";s:7:"#ffffff";s:35:"bento_footer_bottom_link_text_color";s:7:"#eeee22";s:24:"bento_front_header_image";i:35;s:35:"bento_front_header_primary_cta_text";s:23:"Summer Tunes - Jan 2018";s:35:"bento_front_header_primary_cta_link";s:36:"http://www.tr.qld.gov.au/summertunes";s:40:"bento_front_header_primary_cta_bck_color";s:7:"#8377a5";s:41:"bento_front_header_primary_cta_text_color";s:7:"#ffffff";s:37:"bento_front_header_secondary_cta_text";s:0:"";s:18:"nav_menu_locations";a:2:{s:12:"primary-menu";i:2;s:11:"footer-menu";i:0;}s:37:"bento_primary_menu_submenu_text_color";s:7:"#ffffff";s:43:"bento_primary_menu_submenu_text_hover_color";s:7:"#dd3333";s:16:"background_image";s:0:"";s:17:"background_preset";s:4:"fill";s:21:"background_position_x";s:4:"left";s:21:"background_position_y";s:6:"center";s:17:"background_repeat";s:9:"no-repeat";s:15:"background_size";s:5:"cover";s:21:"background_attachment";s:5:"fixed";s:22:"bento_footer_copyright";s:118:"PO Box 3021, Toowoomba Queensland 4350 | Email: info@tcof.com.au | Phone: 131 872 | © Toowoomba Regional Council 2018";s:17:"bento_menu_config";s:1:"1";s:22:"bento_font_body_upload";s:95:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/OpenSans-Regular.ttf";s:22:"bento_font_menu_upload";s:92:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/OpenSans-Bold.ttf";s:20:"bento_text_size_menu";s:2:"16";s:26:"bento_font_headings_upload";s:90:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Roboto-Bold.ttf";s:15:"bento_preloader";b:0;s:18:"bento_logo_padding";s:2:"30";s:16:"sidebars_widgets";a:2:{s:4:"time";i:1517361815;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:6:{i:0;s:10:"archives-2";i:1;s:6:"meta-2";i:2;s:8:"search-2";i:3;s:12:"categories-2";i:4;s:14:"recent-posts-2";i:5;s:17:"recent-comments-2";}s:13:"bento_sidebar";a:7:{i:0;s:8:"search-5";i:1;s:13:"custom_html-3";i:2;s:6:"text-2";i:3;s:8:"search-3";i:4;s:6:"text-3";i:5;s:6:"text-5";i:6;s:8:"search-4";}s:12:"bento_footer";a:3:{i:0;s:13:"custom_html-2";i:1;s:11:"tag_cloud-2";i:2;s:6:"text-4";}}}}', 'yes'),
 (152, 'current_theme', 'Bento Child Theme - TCOF', 'yes'),
 (153, 'theme_switched', '', 'yes'),
 (154, 'theme_switched_via_customizer', '', 'yes'),
 (155, 'nav_menu_options', 'a:1:{s:8:"auto_add";a:0:{}}', 'yes'),
 (156, 'customize_stashed_theme_mods', 'a:1:{s:15:"twentyseventeen";a:6:{s:23:"nav_menu_locations[top]";a:5:{s:15:"starter_content";b:1;s:5:"value";i:-1;s:4:"type";s:9:"theme_mod";s:7:"user_id";i:1;s:17:"date_modified_gmt";s:19:"2018-01-22 00:53:37";}s:26:"nav_menu_locations[social]";a:5:{s:15:"starter_content";b:1;s:5:"value";i:-5;s:4:"type";s:9:"theme_mod";s:7:"user_id";i:1;s:17:"date_modified_gmt";s:19:"2018-01-22 00:53:37";}s:7:"panel_1";a:5:{s:15:"starter_content";b:1;s:5:"value";i:11;s:4:"type";s:9:"theme_mod";s:7:"user_id";i:1;s:17:"date_modified_gmt";s:19:"2018-01-22 00:53:37";}s:7:"panel_2";a:5:{s:15:"starter_content";b:1;s:5:"value";i:8;s:4:"type";s:9:"theme_mod";s:7:"user_id";i:1;s:17:"date_modified_gmt";s:19:"2018-01-22 00:53:37";}s:7:"panel_3";a:5:{s:15:"starter_content";b:1;s:5:"value";i:10;s:4:"type";s:9:"theme_mod";s:7:"user_id";i:1;s:17:"date_modified_gmt";s:19:"2018-01-22 00:53:37";}s:7:"panel_4";a:5:{s:15:"starter_content";b:1;s:5:"value";i:9;s:4:"type";s:9:"theme_mod";s:7:"user_id";i:1;s:17:"date_modified_gmt";s:19:"2018-01-22 00:53:37";}}}', 'no'),
 (167, 'recently_activated', 'a:8:{s:25:"add-to-any/add-to-any.php";i:1521088932;s:21:"boxzilla/boxzilla.php";i:1521084614;s:33:"eventbrite-api/eventbrite-api.php";i:1521082797;s:25:"wd-youtube/wd-youtube.php";i:1521081600;s:47:"wp-ultimate-post-grid/wp-ultimate-post-grid.php";i:1520996924;s:51:"display-posts-shortcode/display-posts-shortcode.php";i:1520996912;s:23:"post-grid/post-grid.php";i:1520996484;s:43:"list-category-posts/list-category-posts.php";i:1520905600;}', 'yes'),
 (176, 'wpcf7', 'a:2:{s:7:"version";s:5:"5.0.1";s:13:"bulk_validate";a:4:{s:9:"timestamp";i:1516587770;s:7:"version";s:5:"4.9.2";s:11:"count_valid";i:1;s:13:"count_invalid";i:0;}}', 'yes'),
 (189, 'widget_bcn_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (190, 'bcn_version', '6.0.3', 'no'),
 (191, 'bcn_options_bk', 'a:48:{s:17:"bmainsite_display";b:1;s:18:"Hmainsite_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:28:"Hmainsite_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:13:"bhome_display";b:1;s:14:"Hhome_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:24:"Hhome_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:13:"bblog_display";b:1;s:10:"hseparator";s:6:" &gt; ";s:12:"blimit_title";b:0;s:17:"amax_title_length";i:20;s:20:"bcurrent_item_linked";b:0;s:28:"bpost_page_hierarchy_display";b:1;s:25:"Spost_page_hierarchy_type";s:15:"BCN_POST_PARENT";s:19:"Hpost_page_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:29:"Hpost_page_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:15:"apost_page_root";s:1:"7";s:15:"Hpaged_template";s:147:"<span property="itemListElement" typeof="ListItem"><span property="name">Page %htitle%</span><meta property="position" content="%position%"></span>";s:14:"bpaged_display";b:0;s:19:"Hpost_post_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:29:"Hpost_post_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:15:"apost_post_root";b:0;s:28:"bpost_post_hierarchy_display";b:1;s:27:"bpost_post_taxonomy_referer";b:0;s:25:"Spost_post_hierarchy_type";s:8:"category";s:25:"Hpost_attachment_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:35:"Hpost_attachment_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:13:"H404_template";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:10:"S404_title";s:3:"404";s:16:"Hsearch_template";s:302:"<span property="itemListElement" typeof="ListItem"><span property="name">Search results for &#039;<a property="item" typeof="WebPage" title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>&#039;</span><meta property="position" content="%position%"></span>";s:26:"Hsearch_template_no_anchor";s:173:"<span property="itemListElement" typeof="ListItem"><span property="name">Search results for &#039;%htitle%&#039;</span><meta property="position" content="%position%"></span>";s:22:"Htax_post_tag_template";s:251:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% tag archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:32:"Htax_post_tag_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:25:"Htax_post_format_template";s:247:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:35:"Htax_post_format_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:16:"Hauthor_template";s:180:"<span property="itemListElement" typeof="ListItem"><span property="name">Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>";s:26:"Hauthor_template_no_anchor";s:155:"<span property="itemListElement" typeof="ListItem"><span property="name">Articles by: %htitle%</span><meta property="position" content="%position%"></span>";s:12:"Sauthor_name";s:12:"display_name";s:22:"Htax_category_template";s:256:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% category archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:32:"Htax_category_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:14:"Hdate_template";s:247:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:24:"Hdate_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:41:"bpost_wpcf7_contact_form_taxonomy_referer";b:0;s:33:"Hpost_wpcf7_contact_form_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:43:"Hpost_wpcf7_contact_form_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:40:"bpost_wpcf7_contact_form_archive_display";b:0;s:29:"apost_wpcf7_contact_form_root";i:0;s:42:"bpost_wpcf7_contact_form_hierarchy_display";b:0;s:39:"Spost_wpcf7_contact_form_hierarchy_type";s:8:"BCN_DATE";}', 'yes'),
 (192, 'bcn_options', 'a:48:{s:17:"bmainsite_display";b:1;s:18:"Hmainsite_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:28:"Hmainsite_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:13:"bhome_display";b:1;s:14:"Hhome_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:24:"Hhome_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:13:"bblog_display";b:1;s:10:"hseparator";s:6:"&bull;";s:12:"blimit_title";b:0;s:17:"amax_title_length";i:20;s:20:"bcurrent_item_linked";b:0;s:28:"bpost_page_hierarchy_display";b:1;s:25:"Spost_page_hierarchy_type";s:15:"BCN_POST_PARENT";s:19:"Hpost_page_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:29:"Hpost_page_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:15:"apost_page_root";s:1:"7";s:15:"Hpaged_template";s:147:"<span property="itemListElement" typeof="ListItem"><span property="name">Page %htitle%</span><meta property="position" content="%position%"></span>";s:14:"bpaged_display";b:0;s:19:"Hpost_post_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:29:"Hpost_post_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:15:"apost_post_root";b:0;s:28:"bpost_post_hierarchy_display";b:1;s:27:"bpost_post_taxonomy_referer";b:0;s:25:"Spost_post_hierarchy_type";s:8:"category";s:25:"Hpost_attachment_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:35:"Hpost_attachment_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:13:"H404_template";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:10:"S404_title";s:3:"404";s:16:"Hsearch_template";s:302:"<span property="itemListElement" typeof="ListItem"><span property="name">Search results for &#039;<a property="item" typeof="WebPage" title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>&#039;</span><meta property="position" content="%position%"></span>";s:26:"Hsearch_template_no_anchor";s:173:"<span property="itemListElement" typeof="ListItem"><span property="name">Search results for &#039;%htitle%&#039;</span><meta property="position" content="%position%"></span>";s:22:"Htax_post_tag_template";s:251:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% tag archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:32:"Htax_post_tag_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:25:"Htax_post_format_template";s:247:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:35:"Htax_post_format_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:16:"Hauthor_template";s:180:"<span property="itemListElement" typeof="ListItem"><span property="name">Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>";s:26:"Hauthor_template_no_anchor";s:155:"<span property="itemListElement" typeof="ListItem"><span property="name">Articles by: %htitle%</span><meta property="position" content="%position%"></span>";s:12:"Sauthor_name";s:12:"display_name";s:22:"Htax_category_template";s:256:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% category archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:32:"Htax_category_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:14:"Hdate_template";s:247:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:24:"Hdate_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:41:"bpost_wpcf7_contact_form_taxonomy_referer";b:0;s:33:"Hpost_wpcf7_contact_form_template";s:234:"<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>";s:43:"Hpost_wpcf7_contact_form_template_no_anchor";s:142:"<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>";s:40:"bpost_wpcf7_contact_form_archive_display";b:0;s:29:"apost_wpcf7_contact_form_root";i:0;s:42:"bpost_wpcf7_contact_form_hierarchy_display";b:0;s:39:"Spost_wpcf7_contact_form_hierarchy_type";s:8:"BCN_DATE";}', 'yes'),
 (223, 'new_admin_email', 'webteam@tr.qld.gov.au', 'yes'),
 (226, 'page_for_posts', '0', 'yes'),
 (235, 'cpto_options', 'a:7:{s:23:"show_reorder_interfaces";a:2:{s:4:"post";s:4:"show";s:10:"attachment";s:4:"show";}s:8:"autosort";s:0:"";s:9:"adminsort";i:1;s:18:"use_query_ASC_DESC";i:1;s:17:"archive_drag_drop";i:1;s:10:"capability";s:14:"manage_options";s:21:"navigation_sort_apply";i:1;}', 'yes'),
 (236, 'CPT_configured', 'TRUE', 'yes'),
 (241, 'hicpo_ver', '3.1.1', 'yes'),
 (242, 'hicpo_options', 'a:2:{s:7:"objects";a:2:{i:0;s:4:"post";i:1;s:4:"page";}s:4:"tags";a:3:{i:0;s:8:"category";i:1;s:8:"post_tag";i:2;s:13:"link_category";}}', 'yes'),
 (286, 'siteorigin_panels_settings', 'a:23:{s:10:"post-types";a:2:{i:0;s:4:"page";i:1;s:4:"post";}s:22:"live-editor-quick-link";b:1;s:18:"admin-widget-count";b:0;s:15:"parallax-motion";s:0:"";s:17:"sidebars-emulator";b:1;s:14:"display-teaser";b:0;s:13:"display-learn";b:1;s:14:"load-on-attach";b:0;s:10:"title-html";s:39:"<h3 class="widget-title">{{title}}</h3>";s:16:"add-widget-class";b:1;s:15:"bundled-widgets";b:0;s:19:"recommended-widgets";b:1;s:10:"responsive";b:1;s:13:"tablet-layout";b:0;s:13:"legacy-layout";s:4:"auto";s:12:"tablet-width";i:1024;s:12:"mobile-width";i:780;s:13:"margin-bottom";i:30;s:22:"margin-bottom-last-row";b:0;s:12:"margin-sides";i:30;s:20:"full-width-container";s:4:"body";s:12:"copy-content";b:1;s:11:"copy-styles";b:1;}', 'yes'),
 (287, 'siteorigin_panels_initial_version', '2.6.1', 'no'),
 (288, 'siteorigin_panels_active_version', '2.6.3', 'yes'),
 (289, 'widget_siteorigin-panels-post-content', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (290, 'widget_siteorigin-panels-postloop', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (291, 'widget_siteorigin-panels-builder', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (292, 'widget_sow-button', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (293, 'widget_sow-google-map', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (294, 'widget_sow-image', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (295, 'widget_sow-slider', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (296, 'widget_sow-post-carousel', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (297, 'widget_sow-editor', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (298, 'siteorigin_widget_bundle_version', '1.11.6', 'yes'),
 (299, 'siteorigin_widgets_old_widgets', '/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/accordion/accordion.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/button/button.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/cta/cta.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/contact/contact.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/editor/editor.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/features/features.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/google-map/google-map.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/headline/headline.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/hero/hero.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/icon/icon.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/image/image.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/image-grid/image-grid.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/slider/slider.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/layout-slider/layout-slider.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/post-carousel.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/price-table/price-table.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/simple-masonry/simple-masonry.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/social-media-buttons/social-media-buttons.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/tabs/tabs.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/taxonomy/taxonomy.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/testimonial/testimonial.php,/home/tmbarc/public_html/tcof/wp-content/plugins/so-widgets-bundle/widgets/video/video.php', 'yes'),
 (308, 'widget_logic_options', 'a:4:{s:8:"search-5";a:6:{s:6:"incexc";a:1:{s:9:"condition";s:8:"selected";}s:8:"location";a:16:{s:13:"is_front_page";s:1:"0";s:7:"is_home";s:1:"0";s:11:"is_singular";s:1:"0";s:9:"is_single";s:1:"0";s:7:"is_page";s:1:"0";s:13:"is_attachment";s:1:"0";s:9:"is_search";s:1:"0";s:6:"is_404";s:1:"0";s:10:"is_archive";s:1:"0";s:7:"is_date";s:1:"0";s:6:"is_day";s:1:"0";s:8:"is_month";s:1:"0";s:7:"is_year";s:1:"0";s:11:"is_category";s:1:"1";s:6:"is_tag";s:1:"1";s:9:"is_author";s:1:"0";}s:28:"custom_post_types_taxonomies";a:2:{s:19:"is_singular-project";s:1:"0";s:19:"is_tax-project_type";s:1:"0";}s:10:"word_count";a:3:{s:15:"check_wordcount";s:1:"0";s:20:"check_wordcount_type";s:4:"less";s:10:"word_count";s:0:"";}s:3:"url";a:1:{s:4:"urls";s:0:"";}s:11:"admin_notes";a:1:{s:5:"notes";s:0:"";}}s:13:"custom_html-3";a:6:{s:6:"incexc";a:1:{s:9:"condition";s:8:"selected";}s:8:"location";a:16:{s:13:"is_front_page";s:1:"0";s:7:"is_home";s:1:"0";s:11:"is_singular";s:1:"0";s:9:"is_single";s:1:"0";s:7:"is_page";s:1:"0";s:13:"is_attachment";s:1:"0";s:9:"is_search";s:1:"0";s:6:"is_404";s:1:"0";s:10:"is_archive";s:1:"0";s:7:"is_date";s:1:"0";s:6:"is_day";s:1:"0";s:8:"is_month";s:1:"0";s:7:"is_year";s:1:"0";s:11:"is_category";s:1:"0";s:6:"is_tag";s:1:"1";s:9:"is_author";s:1:"0";}s:28:"custom_post_types_taxonomies";a:2:{s:19:"is_singular-project";s:1:"0";s:19:"is_tax-project_type";s:1:"0";}s:10:"word_count";a:3:{s:15:"check_wordcount";s:1:"0";s:20:"check_wordcount_type";s:4:"less";s:10:"word_count";s:0:"";}s:3:"url";a:1:{s:4:"urls";s:79:"2017-events\r\nfamily\r\nfloral\r\ntours\r\nparks-gardens\r\nmusic\r\nfood-wine\r\nall-events";}s:11:"admin_notes";a:1:{s:5:"notes";s:0:"";}}s:13:"custom_html-2";a:6:{s:6:"incexc";a:1:{s:9:"condition";s:4:"show";}s:8:"location";a:16:{s:13:"is_front_page";s:1:"0";s:7:"is_home";s:1:"0";s:11:"is_singular";s:1:"0";s:9:"is_single";s:1:"0";s:7:"is_page";s:1:"0";s:13:"is_attachment";s:1:"0";s:9:"is_search";s:1:"0";s:6:"is_404";s:1:"0";s:10:"is_archive";s:1:"0";s:7:"is_date";s:1:"0";s:6:"is_day";s:1:"0";s:8:"is_month";s:1:"0";s:7:"is_year";s:1:"0";s:11:"is_category";s:1:"0";s:6:"is_tag";s:1:"0";s:9:"is_author";s:1:"0";}s:28:"custom_post_types_taxonomies";a:2:{s:19:"is_singular-project";s:1:"0";s:19:"is_tax-project_type";s:1:"0";}s:10:"word_count";a:3:{s:15:"check_wordcount";s:1:"0";s:20:"check_wordcount_type";s:4:"less";s:10:"word_count";s:0:"";}s:3:"url";a:1:{s:4:"urls";s:0:"";}s:11:"admin_notes";a:1:{s:5:"notes";s:0:"";}}s:11:"tag_cloud-2";a:6:{s:6:"incexc";a:1:{s:9:"condition";s:4:"show";}s:8:"location";a:16:{s:13:"is_front_page";s:1:"0";s:7:"is_home";s:1:"0";s:11:"is_singular";s:1:"0";s:9:"is_single";s:1:"0";s:7:"is_page";s:1:"0";s:13:"is_attachment";s:1:"0";s:9:"is_search";s:1:"0";s:6:"is_404";s:1:"0";s:10:"is_archive";s:1:"0";s:7:"is_date";s:1:"0";s:6:"is_day";s:1:"0";s:8:"is_month";s:1:"0";s:7:"is_year";s:1:"0";s:11:"is_category";s:1:"0";s:6:"is_tag";s:1:"0";s:9:"is_author";s:1:"0";}s:28:"custom_post_types_taxonomies";a:2:{s:19:"is_singular-project";s:1:"0";s:19:"is_tax-project_type";s:1:"0";}s:10:"word_count";a:3:{s:15:"check_wordcount";s:1:"0";s:20:"check_wordcount_type";s:4:"less";s:10:"word_count";s:0:"";}s:3:"url";a:1:{s:4:"urls";s:0:"";}s:11:"admin_notes";a:1:{s:5:"notes";s:0:"";}}}', 'yes'),
 (309, 'siteorigin_widgets_active', 'a:13:{s:6:"button";b:1;s:10:"google-map";b:1;s:5:"image";b:1;s:6:"slider";b:1;s:13:"post-carousel";b:1;s:6:"editor";b:1;s:4:"hero";b:1;s:8:"headline";b:1;s:8:"features";b:1;s:20:"social-media-buttons";b:1;s:5:"video";b:1;s:14:"simple-masonry";b:1;s:7:"contact";b:1;}', 'yes'),
 (310, 'widget_sow-hero', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (311, 'widget_sow-headline', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (312, 'widget_sow-features', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (371, 'widget_sow-social-media-buttons', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (372, 'widget_sow-video', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (373, 'so_widget_settings[SiteOrigin_Widget_GoogleMap_Widget]', 'a:2:{s:7:"api_key";s:39:"AIzaSyBNAloJXM9hxphBnmJTetI3D7LlTrqUOMo";s:19:"_sow_form_timestamp";s:13:"1516845351622";}', 'yes'),
 (374, 'widget_sow-simple-masonry', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (384, 'widget_sow-contact-form', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (552, 'bento_ep_license_status', 'valid', 'yes'),
 (553, 'bento_ep_license_key', 'b9ac7dc46ed610dbc5d4dddad47dde95', 'yes'),
 (556, 'widget_bento_advanced_recent_posts', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (557, 'widget_bento_twitter_feed', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (584, 'theme_mods_bento-child-tcof', 'a:43:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:12:"primary-menu";i:2;s:11:"footer-menu";i:0;}s:18:"custom_css_post_id";i:485;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1517360918;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:6:{i:0;s:10:"archives-2";i:1;s:6:"meta-2";i:2;s:8:"search-2";i:3;s:12:"categories-2";i:4;s:14:"recent-posts-2";i:5;s:17:"recent-comments-2";}s:13:"bento_sidebar";a:7:{i:0;s:8:"search-5";i:1;s:13:"custom_html-3";i:2;s:6:"text-2";i:3;s:8:"search-3";i:4;s:6:"text-3";i:5;s:6:"text-5";i:6;s:8:"search-4";}s:12:"bento_footer";a:3:{i:0;s:13:"custom_html-2";i:1;s:11:"tag_cloud-2";i:2;s:6:"text-4";}}}s:11:"custom_logo";i:664;s:22:"bento_footer_copyright";s:122:"PO Box 3021, Toowoomba Queensland 4350 | Email: info@tcof.com.au | Phone: 131 872 |	&copy; Toowoomba Regional Council 2018";s:17:"bento_author_meta";i:1;s:17:"bento_menu_config";s:1:"1";s:20:"bento_text_size_menu";s:2:"16";s:22:"bento_font_body_upload";s:95:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/OpenSans-Regular.ttf";s:26:"bento_font_headings_upload";s:90:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Roboto-Bold.ttf";s:22:"bento_font_menu_upload";s:92:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/OpenSans-Bold.ttf";s:29:"bento_header_background_color";s:7:"#4d3f72";s:29:"bento_primary_menu_text_color";s:7:"#eeee22";s:35:"bento_primary_menu_text_hover_color";s:7:"#dd3333";s:43:"bento_primary_menu_submenu_background_color";s:7:"#564972";s:43:"bento_primary_menu_submenu_text_hover_color";s:7:"#dd3333";s:34:"bento_mobile_menu_background_color";s:7:"#4d3f72";s:40:"bento_mobile_menu_background_hover_color";s:7:"#4d3f72";s:28:"bento_mobile_menu_text_color";s:7:"#eeee22";s:34:"bento_mobile_menu_text_hover_color";s:7:"#dd3333";s:37:"bento_primary_menu_submenu_text_color";s:7:"#ffffff";s:32:"bento_content_heading_text_color";s:7:"#ed1165";s:29:"bento_content_body_text_color";s:7:"#8377a5";s:29:"bento_content_link_text_color";s:7:"#ed1165";s:37:"bento_footer_widgets_background_color";s:7:"#ffffff";s:23:"bento_footer_text_color";s:7:"#0a0a0a";s:28:"bento_footer_link_text_color";s:7:"#dd3333";s:36:"bento_footer_bottom_background_color";s:7:"#931964";s:30:"bento_footer_bottom_text_color";s:7:"#ffffff";s:35:"bento_footer_bottom_link_text_color";s:7:"#eeee22";s:24:"bento_front_header_image";i:35;s:35:"bento_front_header_primary_cta_text";s:0:"";s:35:"bento_front_header_primary_cta_link";s:0:"";s:40:"bento_front_header_primary_cta_bck_color";s:7:"#4d3f72";s:41:"bento_front_header_primary_cta_text_color";s:7:"#ffffff";s:46:"bento_front_header_primary_cta_bck_color_hover";s:7:"#dd3333";s:22:"bento_front_meta_title";s:23:"The Carnival of Flowers";s:28:"bento_front_meta_description";s:153:"The award-winning Toowoomba Carnival of Flowers continues to grow. Spectacular gardens, country touring, live music and local food & wine plus much more.";s:16:"background_color";s:6:"fcf9ef";s:30:"bento_content_background_color";s:7:"#fcf9ef";s:17:"bento_logo_mobile";i:13;s:20:"bento_analytics_code";s:1584:"<script>\n	(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){\n	(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n	m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n	})(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'__gaTracker\');\n	__gaTracker(\'create\', \'UA-3164092-16\', \'auto\');\n	__gaTracker(\'send\', \'pageview\');\n</script>\n\n<!-- Google Tag Manager for adroll -->\n<noscript>\n  <iframe src="//www.googletagmanager.com/ns.html?id=GTM-54KBKV" height="0" width="0" style="display:none;visibility:hidden">\n  </iframe>\n</noscript>\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\n\'//www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\n})(window,document,\'script\',\'dataLayer\',\'GTM-54KBKV\');</script>\n<!-- End Google Tag Manager -->\n<!-- Google Code for Remarketing Tag -->\n<script type="text/javascript">\n/* <![CDATA[ */\nvar google_conversion_id = 944539639;\nvar google_custom_params = window.google_tag_params;\nvar google_remarketing_only = true;\n/* ]]> */\n</script>\n<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">\n</script>\n<noscript>\n  <div style="display:inline;"> \n    <img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/944539639/?value=0&amp;guid=ON&amp;script=0"/>\n  </div>\n</noscript>";}', 'yes'),
 (673, 'auto_core_update_notified', 'a:4:{s:4:"type";s:7:"success";s:5:"email";s:21:"webteam@tr.qld.gov.au";s:7:"version";s:5:"4.9.3";s:9:"timestamp";i:1517873401;}', 'no'),
 (694, '_site_transient_timeout_browser_76973f252ad0942fd599fdc04d17d45c', '1521421932', 'no'),
 (695, '_site_transient_browser_76973f252ad0942fd599fdc04d17d45c', 'a:10:{s:4:"name";s:6:"Chrome";s:7:"version";s:12:"63.0.3239.84";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'),
 (710, '_transient_timeout_plugin_slugs', '1521175484', 'no'),
 (711, '_transient_plugin_slugs', 'a:16:{i:0;s:25:"add-to-any/add-to-any.php";i:1;s:19:"akismet/akismet.php";i:2;s:23:"backup-wd/backup-wd.php";i:3;s:45:"bento-expansion-pack/bento-expansion-pack.php";i:4;s:37:"breadcrumb-navxt/breadcrumb-navxt.php";i:5;s:36:"contact-form-7/wp-contact-form-7.php";i:6;s:33:"duplicate-post/duplicate-post.php";i:7;s:33:"eventbrite-api/eventbrite-api.php";i:8;s:59:"intuitive-custom-post-order/intuitive-custom-post-order.php";i:9;s:19:"keyring/keyring.php";i:10;s:39:"siteorigin-panels/siteorigin-panels.php";i:11;s:39:"so-widgets-bundle/so-widgets-bundle.php";i:12;s:31:"the-post-grid/the-post-grid.php";i:13;s:39:"the-post-grid-pro/the-post-grid-pro.php";i:14;s:33:"widget-context/widget-context.php";i:15;s:30:"youtube-embed-plus/youtube.php";}', 'no'),
 (739, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:65:"https://downloads.wordpress.org/release/en_AU/wordpress-4.9.4.zip";s:6:"locale";s:5:"en_AU";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:65:"https://downloads.wordpress.org/release/en_AU/wordpress-4.9.4.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.9.4";s:7:"version";s:5:"4.9.4";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.7";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1521089071;s:15:"version_checked";s:5:"4.9.4";s:12:"translations";a:0:{}}', 'no'),
 (748, 'numberposts', '10', 'yes'),
 (749, 'widget_listcategorypostswidget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (752, 'post_grid_layout_content', 'a:6:{s:4:"flat";a:3:{i:0;a:5:{s:3:"key";s:5:"title";s:10:"char_limit";s:2:"20";s:4:"name";s:5:"Title";s:3:"css";s:86:"display: block;font-size: 21px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";}i:1;a:5:{s:3:"key";s:7:"excerpt";s:10:"char_limit";s:2:"20";s:4:"name";s:7:"Excerpt";s:3:"css";s:66:"display: block;font-size: 12px;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";}i:2;a:4:{s:3:"key";s:9:"read_more";s:4:"name";s:9:"Read more";s:3:"css";s:82:"display: block;font-size: 12px;font-weight: bold;padding: 0 10px;text-align: left;";s:9:"css_hover";s:0:"";}}s:11:"flat-center";a:3:{i:0;a:5:{s:3:"key";s:5:"title";s:10:"char_limit";s:2:"20";s:4:"name";s:5:"Title";s:3:"css";s:88:"display: block;font-size: 21px;line-height: normal;padding: 5px 10px;text-align: center;";s:9:"css_hover";s:0:"";}i:1;a:5:{s:3:"key";s:7:"excerpt";s:10:"char_limit";s:2:"20";s:4:"name";s:7:"Excerpt";s:3:"css";s:68:"display: block;font-size: 12px;padding: 5px 10px;text-align: center;";s:9:"css_hover";s:0:"";}i:2;a:4:{s:3:"key";s:9:"read_more";s:4:"name";s:9:"Read more";s:3:"css";s:84:"display: block;font-size: 12px;font-weight: bold;padding: 0 10px;text-align: center;";s:9:"css_hover";s:0:"";}}s:10:"flat-right";a:3:{i:0;a:5:{s:3:"key";s:5:"title";s:10:"char_limit";s:2:"20";s:4:"name";s:5:"Title";s:3:"css";s:87:"display: block;font-size: 21px;line-height: normal;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";}i:1;a:5:{s:3:"key";s:7:"excerpt";s:10:"char_limit";s:2:"20";s:4:"name";s:7:"Excerpt";s:3:"css";s:67:"display: block;font-size: 12px;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";}i:2;a:4:{s:3:"key";s:9:"read_more";s:4:"name";s:9:"Read more";s:3:"css";s:83:"display: block;font-size: 12px;font-weight: bold;padding: 0 10px;text-align: right;";s:9:"css_hover";s:0:"";}}s:9:"flat-left";a:3:{i:0;a:5:{s:3:"key";s:5:"title";s:10:"char_limit";s:2:"20";s:4:"name";s:5:"Title";s:3:"css";s:86:"display: block;font-size: 21px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";}i:1;a:5:{s:3:"key";s:7:"excerpt";s:10:"char_limit";s:2:"20";s:4:"name";s:7:"Excerpt";s:3:"css";s:66:"display: block;font-size: 12px;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";}i:2;a:4:{s:3:"key";s:9:"read_more";s:4:"name";s:9:"Read more";s:3:"css";s:82:"display: block;font-size: 12px;font-weight: bold;padding: 0 10px;text-align: left;";s:9:"css_hover";s:0:"";}}s:15:"wc-center-price";a:3:{i:0;a:5:{s:3:"key";s:5:"title";s:10:"char_limit";s:2:"20";s:4:"name";s:5:"Title";s:3:"css";s:88:"display: block;font-size: 21px;line-height: normal;padding: 5px 10px;text-align: center;";s:9:"css_hover";s:0:"";}i:1;a:4:{s:3:"key";s:13:"wc_full_price";s:4:"name";s:5:"Price";s:3:"css";s:122:"background:#f9b013;color:#fff;display: inline-block;font-size: 20px;line-height:normal;padding: 0 17px;text-align: center;";s:9:"css_hover";s:0:"";}i:2;a:5:{s:3:"key";s:7:"excerpt";s:10:"char_limit";s:2:"20";s:4:"name";s:7:"Excerpt";s:3:"css";s:68:"display: block;font-size: 12px;padding: 5px 10px;text-align: center;";s:9:"css_hover";s:0:"";}}s:14:"wc-center-cart";a:3:{i:0;a:5:{s:3:"key";s:5:"title";s:10:"char_limit";s:2:"20";s:4:"name";s:5:"Title";s:3:"css";s:88:"display: block;font-size: 21px;line-height: normal;padding: 5px 10px;text-align: center;";s:9:"css_hover";s:0:"";}i:1;a:4:{s:3:"key";s:10:"wc_gallery";s:4:"name";s:11:"Add to Cart";s:3:"css";s:103:"color:#555;display: inline-block;font-size: 13px;line-height:normal;padding: 0 17px;text-align: center;";s:9:"css_hover";s:0:"";}i:2;a:5:{s:3:"key";s:7:"excerpt";s:10:"char_limit";s:2:"20";s:4:"name";s:7:"Excerpt";s:3:"css";s:68:"display: block;font-size: 12px;padding: 5px 10px;text-align: center;";s:9:"css_hover";s:0:"";}}}', 'yes'),
 (786, 'wp-ultimate-post-grid_version', '2.6.2', 'yes'),
 (787, 'wpupg_custom_template_0', 'O:14:"WPUPG_Template":3:{s:6:"blocks";a:4:{i:0;O:24:"WPUPG_Template_Container":24:{s:11:"editorField";s:9:"container";s:4:"type";s:9:"container";s:8:"children";a:1:{i:0;a:1:{i:0;a:1:{i:0;O:19:"WPUPG_Template_Rows":26:{s:4:"rows";i:2;s:7:"heights";a:2:{i:0;s:4:"auto";i:1;s:4:"auto";}s:11:"editorField";s:4:"rows";s:4:"type";s:4:"rows";s:8:"children";a:2:{i:1;a:1:{i:0;a:1:{i:0;O:25:"WPUPG_Template_Post_Title":25:{s:3:"tag";N;s:11:"editorField";s:9:"postTitle";s:4:"type";s:10:"post-title";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":42:{s:4:"type";s:9:"postTitle";s:7:"deleted";b:0;s:5:"order";i:2;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";s:1:"5";s:12:"marginBottom";s:1:"5";s:10:"marginLeft";s:1:"5";s:11:"marginRight";s:1:"5";s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:1;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:11:"placeholder";s:10:"Post Title";s:5:"index";i:1;s:6:"parent";s:1:"2";s:3:"row";s:1:"1";s:6:"column";s:1:"0";}s:5:"style";a:2:{s:7:"default";a:8:{s:10:"margin-top";s:3:"5px";s:13:"margin-bottom";s:3:"5px";s:11:"margin-left";s:3:"5px";s:12:"margin-right";s:3:"5px";s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";s:11:"font-weight";s:4:"bold";}s:2:"td";a:2:{s:10:"text-align";s:7:"inherit";s:11:"font-weight";s:4:"bold";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"2";s:3:"row";s:1:"1";s:6:"column";s:1:"0";s:5:"order";i:2;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}i:0;a:1:{i:0;a:1:{i:0;O:25:"WPUPG_Template_Post_Image":26:{s:11:"editorField";s:9:"postImage";s:9:"thumbnail";s:4:"full";s:4:"crop";b:0;s:4:"type";s:10:"post-image";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":44:{s:4:"type";s:9:"postImage";s:7:"deleted";b:0;s:5:"order";i:3;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:1:"%";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"width";s:3:"200";s:6:"height";s:3:"100";s:5:"index";i:3;s:6:"parent";s:1:"2";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:9:"imageCrop";b:0;}s:5:"style";a:2:{s:7:"default";a:5:{s:5:"width";s:5:"200px";s:6:"height";s:4:"100%";s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"2";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:3;s:9:"max_width";i:200;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":62:{s:4:"type";s:4:"rows";s:7:"deleted";b:0;s:5:"order";i:1;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:4:"rows";i:2;s:4:"row0";i:30;s:4:"row1";i:30;s:4:"row2";i:30;s:4:"row3";i:30;s:4:"row4";i:30;s:4:"row5";i:30;s:4:"row6";i:30;s:4:"row7";i:30;s:4:"row8";i:30;s:4:"row9";i:30;s:8:"rowtype0";s:5:"fluid";s:8:"rowtype1";s:5:"fluid";s:8:"rowtype2";s:5:"fluid";s:8:"rowtype3";s:5:"fluid";s:8:"rowtype4";s:5:"fluid";s:8:"rowtype5";s:5:"fluid";s:8:"rowtype6";s:5:"fluid";s:8:"rowtype7";s:5:"fluid";s:8:"rowtype8";s:5:"fluid";s:8:"rowtype9";s:5:"fluid";s:5:"index";i:2;s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";}s:5:"style";a:4:{s:5:"row-0";a:1:{s:6:"height";s:4:"auto";}s:5:"row-1";a:1:{s:6:"height";s:4:"auto";}s:7:"default";a:3:{s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:1;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":42:{s:4:"type";s:9:"container";s:8:"maxWidth";s:3:"200";s:9:"marginTop";s:1:"5";s:12:"marginBottom";s:1:"5";s:10:"marginLeft";s:1:"5";s:11:"marginRight";s:1:"5";s:8:"position";s:8:"absolute";s:5:"order";i:-1;s:5:"index";i:0;s:6:"parent";i:-1;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"widthType";s:1:"%";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:11:"borderColor";s:13:"rgba(0,0,0,1)";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:11:"borderWidth";s:1:"1";s:10:"paddingTop";s:0:"";s:5:"width";s:3:"100";}s:5:"style";a:2:{s:7:"default";a:11:{s:10:"margin-top";s:3:"5px";s:13:"margin-bottom";s:3:"5px";s:11:"margin-left";s:3:"5px";s:12:"margin-right";s:3:"5px";s:5:"width";s:4:"100%";s:9:"max-width";s:5:"200px";s:8:"position";s:8:"absolute";s:12:"border-width";s:15:"1px 1px 1px 1px";s:12:"border-color";s:13:"rgba(0,0,0,1)";s:12:"border-style";s:5:"solid";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:3:{s:12:"border-width";s:3:"1px";s:12:"border-color";s:13:"rgba(0,0,0,1)";s:12:"border-style";s:5:"solid";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";i:-1;s:3:"row";i:0;s:6:"column";i:0;s:5:"order";i:0;s:9:"max_width";i:200;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}i:1;r:19;i:2;r:9;i:3;r:101;}s:9:"container";r:3;s:5:"fonts";a:0:{}}', 'yes'),
 (788, 'wpupg_custom_template_1', 'O:14:"WPUPG_Template":3:{s:6:"blocks";a:5:{i:0;O:24:"WPUPG_Template_Container":24:{s:11:"editorField";s:9:"container";s:4:"type";s:9:"container";s:8:"children";a:1:{i:0;a:1:{i:0;a:1:{i:0;O:19:"WPUPG_Template_Rows":26:{s:4:"rows";i:3;s:7:"heights";a:3:{i:0;s:4:"auto";i:1;s:4:"auto";i:2;s:4:"auto";}s:11:"editorField";s:4:"rows";s:4:"type";s:4:"rows";s:8:"children";a:3:{i:1;a:1:{i:0;a:1:{i:0;O:25:"WPUPG_Template_Post_Title":25:{s:3:"tag";N;s:11:"editorField";s:9:"postTitle";s:4:"type";s:10:"post-title";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":42:{s:4:"type";s:9:"postTitle";s:7:"deleted";b:0;s:5:"order";i:2;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";s:1:"5";s:12:"marginBottom";s:1:"5";s:10:"marginLeft";s:1:"5";s:11:"marginRight";s:1:"5";s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:1;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:11:"placeholder";s:10:"Post Title";s:5:"index";i:1;s:6:"parent";s:1:"2";s:3:"row";s:1:"1";s:6:"column";s:1:"0";}s:5:"style";a:2:{s:7:"default";a:8:{s:10:"margin-top";s:3:"5px";s:13:"margin-bottom";s:3:"5px";s:11:"margin-left";s:3:"5px";s:12:"margin-right";s:3:"5px";s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";s:11:"font-weight";s:4:"bold";}s:2:"td";a:2:{s:10:"text-align";s:7:"inherit";s:11:"font-weight";s:4:"bold";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"2";s:3:"row";s:1:"1";s:6:"column";s:1:"0";s:5:"order";i:2;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}i:0;a:1:{i:0;a:1:{i:0;O:25:"WPUPG_Template_Post_Image":26:{s:11:"editorField";s:9:"postImage";s:9:"thumbnail";s:4:"full";s:4:"crop";b:0;s:4:"type";s:10:"post-image";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":44:{s:4:"type";s:9:"postImage";s:7:"deleted";b:0;s:5:"order";i:3;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:1:"%";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"width";s:3:"200";s:6:"height";s:3:"100";s:5:"index";i:3;s:6:"parent";s:1:"2";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:9:"imageCrop";b:0;}s:5:"style";a:2:{s:7:"default";a:5:{s:5:"width";s:5:"200px";s:6:"height";s:4:"100%";s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"2";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:3;s:9:"max_width";i:200;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}i:2;a:1:{i:0;a:1:{i:0;O:27:"WPUPG_Template_Post_Excerpt":24:{s:11:"editorField";s:11:"postExcerpt";s:4:"type";s:12:"post-excerpt";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":42:{s:4:"type";s:11:"postExcerpt";s:7:"deleted";b:0;s:5:"order";i:4;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";s:1:"0";s:12:"marginBottom";s:1:"5";s:10:"marginLeft";s:1:"5";s:11:"marginRight";s:1:"5";s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:3:"0.9";s:12:"fontSizeUnit";s:2:"em";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:16:"rgba(79,79,79,1)";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:11:"placeholder";s:12:"Post Excerpt";s:5:"index";i:4;s:6:"parent";s:1:"2";s:3:"row";s:1:"2";s:6:"column";s:1:"0";}s:5:"style";a:2:{s:7:"default";a:9:{s:10:"margin-top";s:3:"0px";s:13:"margin-bottom";s:3:"5px";s:11:"margin-left";s:3:"5px";s:12:"margin-right";s:3:"5px";s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";s:9:"font-size";s:5:"0.9em";s:5:"color";s:16:"rgba(79,79,79,1)";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"2";s:3:"row";s:1:"2";s:6:"column";s:1:"0";s:5:"order";i:4;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":62:{s:4:"type";s:4:"rows";s:7:"deleted";b:0;s:5:"order";i:1;s:10:"conditions";a:1:{i:0;O:8:"stdClass":4:{s:14:"condition_type";s:5:"field";s:6:"target";s:5:"row-2";s:5:"field";s:12:"post_excerpt";s:4:"when";s:7:"missing";}}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:4:"rows";i:3;s:4:"row0";i:30;s:4:"row1";i:30;s:4:"row2";i:30;s:4:"row3";i:30;s:4:"row4";i:30;s:4:"row5";i:30;s:4:"row6";i:30;s:4:"row7";i:30;s:4:"row8";i:30;s:4:"row9";i:30;s:8:"rowtype0";s:5:"fluid";s:8:"rowtype1";s:5:"fluid";s:8:"rowtype2";s:5:"fluid";s:8:"rowtype3";s:5:"fluid";s:8:"rowtype4";s:5:"fluid";s:8:"rowtype5";s:5:"fluid";s:8:"rowtype6";s:5:"fluid";s:8:"rowtype7";s:5:"fluid";s:8:"rowtype8";s:5:"fluid";s:8:"rowtype9";s:5:"fluid";s:5:"index";i:2;s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";}s:5:"style";a:5:{s:5:"row-0";a:1:{s:6:"height";s:4:"auto";}s:5:"row-1";a:1:{s:6:"height";s:4:"auto";}s:5:"row-2";a:1:{s:6:"height";s:4:"auto";}s:7:"default";a:3:{s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:1:{s:5:"row-2";a:1:{i:0;a:4:{s:4:"type";s:4:"hide";s:14:"condition_type";s:5:"field";s:5:"field";s:12:"post_excerpt";s:4:"when";s:7:"missing";}}}s:7:"classes";a:0:{}s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:1;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":42:{s:4:"type";s:9:"container";s:8:"maxWidth";s:3:"200";s:9:"marginTop";s:1:"5";s:12:"marginBottom";s:1:"5";s:10:"marginLeft";s:1:"5";s:11:"marginRight";s:1:"5";s:8:"position";s:8:"absolute";s:5:"order";i:-1;s:5:"index";i:0;s:6:"parent";i:-1;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"widthType";s:1:"%";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:11:"borderColor";s:13:"rgba(0,0,0,1)";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:11:"borderWidth";s:1:"1";s:10:"paddingTop";s:0:"";s:5:"width";s:3:"100";}s:5:"style";a:2:{s:7:"default";a:11:{s:10:"margin-top";s:3:"5px";s:13:"margin-bottom";s:3:"5px";s:11:"margin-left";s:3:"5px";s:12:"margin-right";s:3:"5px";s:5:"width";s:4:"100%";s:9:"max-width";s:5:"200px";s:8:"position";s:8:"absolute";s:12:"border-width";s:15:"1px 1px 1px 1px";s:12:"border-color";s:13:"rgba(0,0,0,1)";s:12:"border-style";s:5:"solid";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:3:{s:12:"border-width";s:3:"1px";s:12:"border-color";s:13:"rgba(0,0,0,1)";s:12:"border-style";s:5:"solid";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";i:-1;s:3:"row";i:0;s:6:"column";i:0;s:5:"order";i:0;s:9:"max_width";i:200;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}i:1;r:20;i:2;r:9;i:3;r:102;i:4;r:183;}s:9:"container";r:3;s:5:"fonts";a:0:{}}', 'yes'),
 (789, 'wpupg_custom_template_2', 'O:14:"WPUPG_Template":3:{s:6:"blocks";a:7:{i:0;O:24:"WPUPG_Template_Container":24:{s:11:"editorField";s:9:"container";s:4:"type";s:9:"container";s:8:"children";a:1:{i:0;a:1:{i:0;a:1:{i:0;O:19:"WPUPG_Template_Rows":26:{s:4:"rows";i:2;s:7:"heights";a:2:{i:0;s:4:"auto";i:1;s:4:"auto";}s:11:"editorField";s:4:"rows";s:4:"type";s:4:"rows";s:8:"children";a:2:{i:0;a:1:{i:0;a:1:{i:0;O:19:"WPUPG_Template_Rows":26:{s:4:"rows";i:1;s:7:"heights";a:1:{i:0;s:4:"auto";}s:11:"editorField";s:4:"rows";s:4:"type";s:4:"rows";s:8:"children";a:1:{i:0;a:1:{i:0;a:2:{i:0;O:25:"WPUPG_Template_Post_Image":26:{s:11:"editorField";s:9:"postImage";s:9:"thumbnail";s:4:"full";s:4:"crop";b:0;s:4:"type";s:10:"post-image";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":45:{s:4:"type";s:9:"postImage";s:7:"deleted";b:0;s:5:"order";i:9;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:1:"%";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"width";s:3:"200";s:6:"height";s:3:"100";s:5:"index";i:3;s:6:"parent";s:1:"6";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:9:"imageCrop";b:0;s:11:"placeholder";s:10:"Post Image";}s:5:"style";a:2:{s:7:"default";a:5:{s:5:"width";s:5:"200px";s:6:"height";s:4:"100%";s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"6";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:9;s:9:"max_width";i:200;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}i:1;O:19:"WPUPG_Template_Rows":26:{s:4:"rows";i:1;s:7:"heights";a:1:{i:0;s:4:"auto";}s:11:"editorField";s:4:"rows";s:4:"type";s:4:"rows";s:8:"children";a:1:{i:0;a:1:{i:0;a:1:{i:0;O:25:"WPUPG_Template_Post_Title":25:{s:3:"tag";N;s:11:"editorField";s:9:"postTitle";s:4:"type";s:10:"post-title";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":42:{s:4:"type";s:9:"postTitle";s:7:"deleted";b:0;s:5:"order";i:11;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";s:1:"5";s:12:"marginBottom";s:1:"5";s:10:"marginLeft";s:1:"5";s:11:"marginRight";s:1:"5";s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:11:"placeholder";s:10:"Post Title";s:5:"index";i:1;s:6:"parent";s:1:"7";s:3:"row";s:1:"0";s:6:"column";s:1:"0";}s:5:"style";a:2:{s:7:"default";a:7:{s:10:"margin-top";s:3:"5px";s:13:"margin-bottom";s:3:"5px";s:11:"margin-left";s:3:"5px";s:12:"margin-right";s:3:"5px";s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"7";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:11;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":67:{s:4:"type";s:4:"rows";s:7:"deleted";b:0;s:5:"order";i:10;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:8:"absolute";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:19:"rgba(255,255,255,1)";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:4:"rows";i:1;s:4:"row0";i:30;s:4:"row1";i:30;s:4:"row2";i:30;s:4:"row3";i:30;s:4:"row4";i:30;s:4:"row5";i:30;s:4:"row6";i:30;s:4:"row7";i:30;s:4:"row8";i:30;s:4:"row9";i:30;s:8:"rowtype0";s:5:"fluid";s:8:"rowtype1";s:5:"fluid";s:8:"rowtype2";s:5:"fluid";s:8:"rowtype3";s:5:"fluid";s:8:"rowtype4";s:5:"fluid";s:8:"rowtype5";s:5:"fluid";s:8:"rowtype6";s:5:"fluid";s:8:"rowtype7";s:5:"fluid";s:8:"rowtype8";s:5:"fluid";s:8:"rowtype9";s:5:"fluid";s:5:"index";i:7;s:6:"parent";s:1:"6";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:11:"positionTop";s:0:"";s:14:"positionBottom";s:1:"0";s:12:"positionLeft";s:1:"0";s:13:"positionRight";s:1:"0";s:15:"backgroundColor";s:15:"rgba(0,0,0,0.5)";}s:5:"style";a:3:{s:5:"row-0";a:1:{s:6:"height";s:4:"auto";}s:7:"default";a:8:{s:8:"position";s:8:"absolute";s:6:"bottom";s:3:"0px";s:4:"left";s:3:"0px";s:5:"right";s:3:"0px";s:16:"background-color";s:15:"rgba(0,0,0,0.5)";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";s:5:"color";s:19:"rgba(255,255,255,1)";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"6";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:10;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":62:{s:4:"type";s:4:"rows";s:7:"deleted";b:0;s:5:"order";i:8;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:8:"relative";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:4:"rows";i:1;s:4:"row0";i:30;s:4:"row1";i:30;s:4:"row2";i:30;s:4:"row3";i:30;s:4:"row4";i:30;s:4:"row5";i:30;s:4:"row6";i:30;s:4:"row7";i:30;s:4:"row8";i:30;s:4:"row9";i:30;s:8:"rowtype0";s:5:"fluid";s:8:"rowtype1";s:5:"fluid";s:8:"rowtype2";s:5:"fluid";s:8:"rowtype3";s:5:"fluid";s:8:"rowtype4";s:5:"fluid";s:8:"rowtype5";s:5:"fluid";s:8:"rowtype6";s:5:"fluid";s:8:"rowtype7";s:5:"fluid";s:8:"rowtype8";s:5:"fluid";s:8:"rowtype9";s:5:"fluid";s:5:"index";i:6;s:6:"parent";s:1:"2";s:3:"row";s:1:"0";s:6:"column";s:1:"0";}s:5:"style";a:3:{s:5:"row-0";a:1:{s:6:"height";s:4:"auto";}s:7:"default";a:3:{s:8:"position";s:8:"relative";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"2";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:8;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}i:1;a:1:{i:0;a:1:{i:0;O:25:"WPUPG_Template_Post_Title":25:{s:3:"tag";N;s:11:"editorField";s:9:"postTitle";s:4:"type";s:10:"post-title";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":42:{s:4:"type";s:9:"postTitle";s:7:"deleted";b:0;s:5:"order";i:12;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";s:1:"5";s:12:"marginBottom";s:1:"5";s:10:"marginLeft";s:1:"5";s:11:"marginRight";s:1:"5";s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:1;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:11:"placeholder";s:10:"Post Title";s:5:"index";i:8;s:6:"parent";s:1:"2";s:3:"row";s:1:"1";s:6:"column";s:1:"0";}s:5:"style";a:2:{s:7:"default";a:8:{s:10:"margin-top";s:3:"5px";s:13:"margin-bottom";s:3:"5px";s:11:"margin-left";s:3:"5px";s:12:"margin-right";s:3:"5px";s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";s:11:"font-weight";s:4:"bold";}s:2:"td";a:2:{s:10:"text-align";s:7:"inherit";s:11:"font-weight";s:4:"bold";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"2";s:3:"row";s:1:"1";s:6:"column";s:1:"0";s:5:"order";i:12;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":62:{s:4:"type";s:4:"rows";s:7:"deleted";b:0;s:5:"order";i:1;s:10:"conditions";a:2:{i:0;O:8:"stdClass":4:{s:14:"condition_type";s:5:"field";s:6:"target";s:5:"row-0";s:5:"field";s:10:"post_image";s:4:"when";s:7:"missing";}i:1;O:8:"stdClass":4:{s:14:"condition_type";s:5:"field";s:6:"target";s:5:"row-1";s:5:"field";s:10:"post_image";s:4:"when";s:7:"present";}}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:4:"rows";i:2;s:4:"row0";i:30;s:4:"row1";i:30;s:4:"row2";i:30;s:4:"row3";i:30;s:4:"row4";i:30;s:4:"row5";i:30;s:4:"row6";i:30;s:4:"row7";i:30;s:4:"row8";i:30;s:4:"row9";i:30;s:8:"rowtype0";s:5:"fluid";s:8:"rowtype1";s:5:"fluid";s:8:"rowtype2";s:5:"fluid";s:8:"rowtype3";s:5:"fluid";s:8:"rowtype4";s:5:"fluid";s:8:"rowtype5";s:5:"fluid";s:8:"rowtype6";s:5:"fluid";s:8:"rowtype7";s:5:"fluid";s:8:"rowtype8";s:5:"fluid";s:8:"rowtype9";s:5:"fluid";s:5:"index";i:2;s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";}s:5:"style";a:4:{s:5:"row-0";a:1:{s:6:"height";s:4:"auto";}s:5:"row-1";a:1:{s:6:"height";s:4:"auto";}s:7:"default";a:3:{s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:2:{s:5:"row-0";a:1:{i:0;a:4:{s:4:"type";s:4:"hide";s:14:"condition_type";s:5:"field";s:5:"field";s:10:"post_image";s:4:"when";s:7:"missing";}}s:5:"row-1";a:1:{i:0;a:4:{s:4:"type";s:4:"hide";s:14:"condition_type";s:5:"field";s:5:"field";s:10:"post_image";s:4:"when";s:7:"present";}}}s:7:"classes";a:0:{}s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:1;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":42:{s:4:"type";s:9:"container";s:8:"maxWidth";s:3:"200";s:9:"marginTop";s:1:"5";s:12:"marginBottom";s:1:"5";s:10:"marginLeft";s:1:"5";s:11:"marginRight";s:1:"5";s:8:"position";s:8:"absolute";s:5:"order";i:-1;s:5:"index";i:0;s:6:"parent";i:-1;s:10:"conditions";a:0:{}s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"widthType";s:1:"%";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:11:"borderColor";s:13:"rgba(0,0,0,1)";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:11:"borderWidth";s:1:"1";s:10:"paddingTop";s:0:"";s:5:"width";s:3:"100";}s:5:"style";a:2:{s:7:"default";a:11:{s:10:"margin-top";s:3:"5px";s:13:"margin-bottom";s:3:"5px";s:11:"margin-left";s:3:"5px";s:12:"margin-right";s:3:"5px";s:5:"width";s:4:"100%";s:9:"max-width";s:5:"200px";s:8:"position";s:8:"absolute";s:12:"border-width";s:15:"1px 1px 1px 1px";s:12:"border-color";s:13:"rgba(0,0,0,1)";s:12:"border-style";s:5:"solid";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:3:{s:12:"border-width";s:3:"1px";s:12:"border-color";s:13:"rgba(0,0,0,1)";s:12:"border-style";s:5:"solid";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";i:-1;s:3:"row";i:0;s:6:"column";i:0;s:5:"order";i:0;s:9:"max_width";i:200;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}i:1;r:117;i:2;r:9;i:3;r:28;i:6;r:19;i:7;r:108;i:8;r:389;}s:9:"container";r:3;s:5:"fonts";a:0:{}}', 'yes'),
 (790, 'wpupg_custom_template_3', 'O:14:"WPUPG_Template":3:{s:6:"blocks";a:9:{i:0;O:24:"WPUPG_Template_Container":24:{s:11:"editorField";s:9:"container";s:4:"type";s:9:"container";s:8:"children";a:1:{i:0;a:1:{i:0;a:2:{i:0;O:19:"WPUPG_Template_Rows":26:{s:4:"rows";i:1;s:7:"heights";a:1:{i:0;s:4:"auto";}s:11:"editorField";s:4:"rows";s:4:"type";s:4:"rows";s:8:"children";a:1:{i:0;a:1:{i:0;a:2:{i:0;O:25:"WPUPG_Template_Post_Image":26:{s:11:"editorField";s:9:"postImage";s:9:"thumbnail";s:4:"full";s:4:"crop";b:0;s:4:"type";s:10:"post-image";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":52:{s:4:"type";s:9:"postImage";s:7:"deleted";b:0;s:5:"order";i:5;s:10:"conditions";a:0:{}s:11:"shortenText";s:4:"none";s:17:"shortenTextNumber";s:0:"";s:16:"shortenTextAfter";s:3:"...";s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:1:"%";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"hover";s:8:"disabled";s:17:"hoverInTransition";s:7:"instant";s:18:"hoverOutTransition";s:7:"instant";s:11:"hoverInTime";i:0;s:12:"hoverOutTime";i:0;s:5:"width";s:3:"200";s:6:"height";s:3:"100";s:11:"placeholder";s:10:"Post Image";s:5:"index";i:1;s:6:"parent";s:1:"5";s:3:"row";s:1:"0";s:6:"column";s:1:"0";}s:5:"style";a:2:{s:7:"default";a:5:{s:5:"width";s:5:"200px";s:6:"height";s:4:"100%";s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"5";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:5;s:9:"max_width";i:200;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}i:1;O:19:"WPUPG_Template_Rows":26:{s:4:"rows";i:1;s:7:"heights";a:1:{i:0;s:4:"auto";}s:11:"editorField";s:4:"rows";s:4:"type";s:4:"rows";s:8:"children";a:1:{i:0;a:1:{i:0;a:1:{i:0;O:19:"WPUPG_Template_Rows":26:{s:4:"rows";i:2;s:7:"heights";a:2:{i:0;s:4:"auto";i:1;s:4:"auto";}s:11:"editorField";s:4:"rows";s:4:"type";s:4:"rows";s:8:"children";a:2:{i:0;a:1:{i:0;a:1:{i:0;O:25:"WPUPG_Template_Post_Title":25:{s:3:"tag";N;s:11:"editorField";s:9:"postTitle";s:4:"type";s:10:"post-title";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":50:{s:4:"type";s:9:"postTitle";s:7:"deleted";b:0;s:5:"order";i:13;s:10:"conditions";a:0:{}s:11:"shortenText";s:4:"none";s:17:"shortenTextNumber";s:0:"";s:16:"shortenTextAfter";s:3:"...";s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:1;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:3:"1.2";s:14:"lineHeightUnit";s:2:"em";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"hover";s:8:"disabled";s:17:"hoverInTransition";s:7:"instant";s:18:"hoverOutTransition";s:7:"instant";s:11:"hoverInTime";i:0;s:12:"hoverOutTime";i:0;s:11:"placeholder";s:10:"Post Title";s:5:"index";i:10;s:6:"parent";s:1:"8";s:3:"row";s:1:"0";s:6:"column";s:1:"0";}s:5:"style";a:2:{s:7:"default";a:5:{s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";s:11:"font-weight";s:4:"bold";s:11:"line-height";s:5:"1.2em";}s:2:"td";a:2:{s:10:"text-align";s:7:"inherit";s:11:"font-weight";s:4:"bold";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"8";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:13;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}i:1;a:1:{i:0;a:1:{i:0;O:24:"WPUPG_Template_Post_Date":25:{s:6:"format";s:0:"";s:11:"editorField";s:8:"postDate";s:4:"type";s:9:"post-date";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":50:{s:4:"type";s:8:"postDate";s:7:"deleted";b:0;s:5:"order";i:15;s:10:"conditions";a:0:{}s:11:"shortenText";s:4:"none";s:17:"shortenTextNumber";s:0:"";s:16:"shortenTextAfter";s:3:"...";s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:3:"0.7";s:12:"fontSizeUnit";s:2:"em";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"hover";s:8:"disabled";s:17:"hoverInTransition";s:7:"instant";s:18:"hoverOutTransition";s:7:"instant";s:11:"hoverInTime";i:0;s:12:"hoverOutTime";i:0;s:11:"placeholder";s:9:"Post Date";s:5:"index";i:12;s:6:"parent";s:1:"8";s:3:"row";s:1:"1";s:6:"column";s:1:"0";}s:5:"style";a:2:{s:7:"default";a:4:{s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";s:9:"font-size";s:5:"0.7em";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"8";s:3:"row";s:1:"1";s:6:"column";s:1:"0";s:5:"order";i:15;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":71:{s:4:"type";s:4:"rows";s:7:"deleted";b:0;s:5:"order";i:10;s:10:"conditions";a:0:{}s:11:"shortenText";s:4:"none";s:17:"shortenTextNumber";s:0:"";s:16:"shortenTextAfter";s:3:"...";s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";s:2:"10";s:12:"marginBottom";s:2:"10";s:10:"marginLeft";s:2:"10";s:11:"marginRight";s:2:"10";s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:6:"center";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:19:"rgba(255,255,255,1)";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"hover";s:8:"disabled";s:17:"hoverInTransition";s:7:"instant";s:18:"hoverOutTransition";s:7:"instant";s:11:"hoverInTime";i:0;s:12:"hoverOutTime";i:0;s:4:"rows";i:2;s:4:"row0";i:30;s:4:"row1";i:30;s:4:"row2";i:30;s:4:"row3";i:30;s:4:"row4";i:30;s:4:"row5";i:30;s:4:"row6";i:30;s:4:"row7";i:30;s:4:"row8";i:30;s:4:"row9";i:30;s:8:"rowtype0";s:5:"fluid";s:8:"rowtype1";s:5:"fluid";s:8:"rowtype2";s:5:"fluid";s:8:"rowtype3";s:5:"fluid";s:8:"rowtype4";s:5:"fluid";s:8:"rowtype5";s:5:"fluid";s:8:"rowtype6";s:5:"fluid";s:8:"rowtype7";s:5:"fluid";s:8:"rowtype8";s:5:"fluid";s:8:"rowtype9";s:5:"fluid";s:5:"index";i:8;s:6:"parent";s:1:"2";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:9:"linkColor";s:19:"rgba(255,255,255,1)";}s:5:"style";a:4:{s:5:"row-0";a:1:{s:6:"height";s:4:"auto";}s:5:"row-1";a:1:{s:6:"height";s:4:"auto";}s:7:"default";a:8:{s:10:"margin-top";s:4:"10px";s:13:"margin-bottom";s:4:"10px";s:11:"margin-left";s:4:"10px";s:12:"margin-right";s:4:"10px";s:8:"position";s:6:"static";s:10:"text-align";s:6:"center";s:14:"vertical-align";s:7:"inherit";s:5:"color";s:19:"rgba(255,255,255,1)";}s:2:"td";a:1:{s:10:"text-align";s:6:"center";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"2";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:10;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";s:19:"rgba(255,255,255,1)";s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":79:{s:4:"type";s:4:"rows";s:7:"deleted";b:0;s:5:"order";i:6;s:10:"conditions";a:0:{}s:11:"shortenText";s:4:"none";s:17:"shortenTextNumber";s:0:"";s:16:"shortenTextAfter";s:3:"...";s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:8:"absolute";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"hover";s:4:"show";s:17:"hoverInTransition";s:4:"fade";s:18:"hoverOutTransition";s:4:"fade";s:11:"hoverInTime";i:300;s:12:"hoverOutTime";i:300;s:4:"rows";i:1;s:4:"row0";i:30;s:4:"row1";i:30;s:4:"row2";i:30;s:4:"row3";i:30;s:4:"row4";i:30;s:4:"row5";i:30;s:4:"row6";i:30;s:4:"row7";i:30;s:4:"row8";i:30;s:4:"row9";i:30;s:8:"rowtype0";s:5:"fluid";s:8:"rowtype1";s:5:"fluid";s:8:"rowtype2";s:5:"fluid";s:8:"rowtype3";s:5:"fluid";s:8:"rowtype4";s:5:"fluid";s:8:"rowtype5";s:5:"fluid";s:8:"rowtype6";s:5:"fluid";s:8:"rowtype7";s:5:"fluid";s:8:"rowtype8";s:5:"fluid";s:8:"rowtype9";s:5:"fluid";s:5:"index";i:2;s:6:"parent";s:1:"5";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:11:"positionTop";s:1:"0";s:14:"positionBottom";s:1:"0";s:12:"positionLeft";s:1:"0";s:13:"positionRight";s:1:"0";s:15:"backgroundColor";s:15:"rgba(0,0,0,0.5)";s:10:"paddingTop";s:0:"";s:13:"paddingBottom";s:0:"";s:11:"paddingLeft";s:0:"";s:12:"paddingRight";s:0:"";}s:5:"style";a:3:{s:5:"row-0";a:1:{s:6:"height";s:4:"auto";}s:7:"default";a:8:{s:8:"position";s:8:"absolute";s:3:"top";s:3:"0px";s:6:"bottom";s:3:"0px";s:4:"left";s:3:"0px";s:5:"right";s:3:"0px";s:16:"background-color";s:15:"rgba(0,0,0,0.5)";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"5";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:6;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:1;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:4:"fade";s:20:"hover_out_transition";s:4:"fade";s:13:"hover_in_time";i:300;s:14:"hover_out_time";i:300;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":70:{s:4:"type";s:4:"rows";s:7:"deleted";b:0;s:5:"order";i:4;s:10:"conditions";a:1:{i:0;O:8:"stdClass":4:{s:14:"condition_type";s:5:"field";s:6:"target";s:5:"block";s:5:"field";s:10:"post_image";s:4:"when";s:7:"missing";}}s:11:"shortenText";s:4:"none";s:17:"shortenTextNumber";s:0:"";s:16:"shortenTextAfter";s:3:"...";s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"hover";s:8:"disabled";s:17:"hoverInTransition";s:7:"instant";s:18:"hoverOutTransition";s:7:"instant";s:11:"hoverInTime";i:0;s:12:"hoverOutTime";i:0;s:4:"rows";i:1;s:4:"row0";i:30;s:4:"row1";i:30;s:4:"row2";i:30;s:4:"row3";i:30;s:4:"row4";i:30;s:4:"row5";i:30;s:4:"row6";i:30;s:4:"row7";i:30;s:4:"row8";i:30;s:4:"row9";i:30;s:8:"rowtype0";s:5:"fluid";s:8:"rowtype1";s:5:"fluid";s:8:"rowtype2";s:5:"fluid";s:8:"rowtype3";s:5:"fluid";s:8:"rowtype4";s:5:"fluid";s:8:"rowtype5";s:5:"fluid";s:8:"rowtype6";s:5:"fluid";s:8:"rowtype7";s:5:"fluid";s:8:"rowtype8";s:5:"fluid";s:8:"rowtype9";s:5:"fluid";s:5:"index";i:5;s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";}s:5:"style";a:3:{s:5:"row-0";a:1:{s:6:"height";s:4:"auto";}s:7:"default";a:3:{s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:1:{s:5:"block";a:1:{i:0;a:4:{s:4:"type";s:4:"hide";s:14:"condition_type";s:5:"field";s:5:"field";s:10:"post_image";s:4:"when";s:7:"missing";}}}s:7:"classes";a:0:{}s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:4;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}i:1;O:19:"WPUPG_Template_Rows":26:{s:4:"rows";i:1;s:7:"heights";a:1:{i:0;s:4:"auto";}s:11:"editorField";s:4:"rows";s:4:"type";s:4:"rows";s:8:"children";a:1:{i:0;a:1:{i:0;a:1:{i:0;O:25:"WPUPG_Template_Post_Title":25:{s:3:"tag";N;s:11:"editorField";s:9:"postTitle";s:4:"type";s:10:"post-title";s:8:"children";a:0:{}s:8:"settings";O:8:"stdClass":50:{s:4:"type";s:9:"postTitle";s:7:"deleted";b:0;s:5:"order";i:3;s:10:"conditions";a:0:{}s:11:"shortenText";s:4:"none";s:17:"shortenTextNumber";s:0:"";s:16:"shortenTextAfter";s:3:"...";s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"hover";s:8:"disabled";s:17:"hoverInTransition";s:7:"instant";s:18:"hoverOutTransition";s:7:"instant";s:11:"hoverInTime";i:0;s:12:"hoverOutTime";i:0;s:11:"placeholder";s:10:"Post Title";s:5:"index";i:4;s:6:"parent";s:1:"3";s:3:"row";s:1:"0";s:6:"column";s:1:"0";}s:5:"style";a:2:{s:7:"default";a:3:{s:8:"position";s:6:"static";s:10:"text-align";s:7:"inherit";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:1:{s:10:"text-align";s:7:"inherit";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";s:1:"3";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:3;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":75:{s:4:"type";s:4:"rows";s:7:"deleted";b:0;s:5:"order";i:7;s:10:"conditions";a:1:{i:0;O:8:"stdClass":4:{s:14:"condition_type";s:5:"field";s:6:"target";s:5:"block";s:5:"field";s:10:"post_image";s:4:"when";s:7:"present";}}s:11:"shortenText";s:4:"none";s:17:"shortenTextNumber";s:0:"";s:16:"shortenTextAfter";s:3:"...";s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"marginTop";i:0;s:12:"marginBottom";i:0;s:10:"marginLeft";i:0;s:11:"marginRight";i:0;s:9:"widthType";s:2:"px";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:8:"position";s:6:"static";s:11:"borderColor";s:0:"";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:6:"center";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:1;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"hover";s:8:"disabled";s:17:"hoverInTransition";s:7:"instant";s:18:"hoverOutTransition";s:7:"instant";s:11:"hoverInTime";i:0;s:12:"hoverOutTime";i:0;s:4:"rows";i:1;s:4:"row0";i:30;s:4:"row1";i:30;s:4:"row2";i:30;s:4:"row3";i:30;s:4:"row4";i:30;s:4:"row5";i:30;s:4:"row6";i:30;s:4:"row7";i:30;s:4:"row8";i:30;s:4:"row9";i:30;s:8:"rowtype0";s:5:"fluid";s:8:"rowtype1";s:5:"fluid";s:8:"rowtype2";s:5:"fluid";s:8:"rowtype3";s:5:"fluid";s:8:"rowtype4";s:5:"fluid";s:8:"rowtype5";s:5:"fluid";s:8:"rowtype6";s:5:"fluid";s:8:"rowtype7";s:5:"fluid";s:8:"rowtype8";s:5:"fluid";s:8:"rowtype9";s:5:"fluid";s:5:"index";i:3;s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:6:"height";s:0:"";s:10:"paddingTop";s:2:"10";s:13:"paddingBottom";s:2:"10";s:11:"paddingLeft";s:2:"10";s:12:"paddingRight";s:2:"10";}s:5:"style";a:3:{s:5:"row-0";a:1:{s:6:"height";s:4:"auto";}s:7:"default";a:8:{s:11:"padding-top";s:4:"10px";s:14:"padding-bottom";s:4:"10px";s:12:"padding-left";s:4:"10px";s:13:"padding-right";s:4:"10px";s:8:"position";s:6:"static";s:10:"text-align";s:6:"center";s:14:"vertical-align";s:7:"inherit";s:11:"font-weight";s:4:"bold";}s:2:"td";a:6:{s:11:"padding-top";s:4:"10px";s:14:"padding-bottom";s:4:"10px";s:12:"padding-left";s:4:"10px";s:13:"padding-right";s:4:"10px";s:10:"text-align";s:6:"center";s:11:"font-weight";s:4:"bold";}}s:10:"conditions";a:1:{s:5:"block";a:1:{i:0;a:4:{s:4:"type";s:4:"hide";s:14:"condition_type";s:5:"field";s:5:"field";s:10:"post_image";s:4:"when";s:7:"present";}}}s:7:"classes";a:0:{}s:6:"parent";s:1:"0";s:3:"row";s:1:"0";s:6:"column";s:1:"0";s:5:"order";i:7;s:9:"max_width";N;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}}}}s:8:"settings";O:8:"stdClass":49:{s:4:"type";s:9:"container";s:8:"maxWidth";s:3:"200";s:9:"marginTop";s:1:"5";s:12:"marginBottom";s:1:"5";s:10:"marginLeft";s:1:"5";s:11:"marginRight";s:1:"5";s:8:"position";s:8:"absolute";s:5:"order";i:-1;s:5:"index";i:0;s:6:"parent";i:-1;s:10:"conditions";a:0:{}s:11:"shortenText";s:4:"none";s:17:"shortenTextNumber";s:0:"";s:16:"shortenTextAfter";s:3:"...";s:5:"float";s:4:"none";s:6:"center";b:0;s:9:"widthType";s:1:"%";s:10:"heightType";s:2:"px";s:12:"minWidthType";s:2:"px";s:13:"minHeightType";s:2:"px";s:12:"maxWidthType";s:2:"px";s:13:"maxHeightType";s:2:"px";s:11:"borderColor";s:5:"black";s:11:"borderStyle";s:5:"solid";s:9:"borderTop";b:1;s:12:"borderBottom";b:1;s:10:"borderLeft";b:1;s:11:"borderRight";b:1;s:10:"shadowType";s:0:"";s:9:"textAlign";s:7:"inherit";s:13:"verticalAlign";s:7:"inherit";s:8:"fontBold";b:0;s:13:"fontSmallCaps";b:0;s:8:"fontSize";s:0:"";s:12:"fontSizeUnit";s:2:"px";s:10:"lineHeight";s:0:"";s:14:"lineHeightUnit";s:2:"px";s:9:"fontColor";s:0:"";s:14:"fontFamilyType";s:0:"";s:13:"fontFamilyGWF";s:9:"Open+Sans";s:11:"customClass";s:0:"";s:11:"customStyle";s:0:"";s:5:"hover";s:8:"disabled";s:17:"hoverInTransition";s:7:"instant";s:18:"hoverOutTransition";s:7:"instant";s:11:"hoverInTime";i:0;s:12:"hoverOutTime";i:0;s:5:"width";s:3:"100";s:11:"borderWidth";s:1:"1";}s:5:"style";a:2:{s:7:"default";a:11:{s:10:"margin-top";s:3:"5px";s:13:"margin-bottom";s:3:"5px";s:11:"margin-left";s:3:"5px";s:12:"margin-right";s:3:"5px";s:5:"width";s:4:"100%";s:9:"max-width";s:5:"200px";s:8:"position";s:8:"absolute";s:12:"border-width";s:15:"1px 1px 1px 1px";s:12:"border-color";s:5:"black";s:12:"border-style";s:5:"solid";s:14:"vertical-align";s:7:"inherit";}s:2:"td";a:3:{s:12:"border-width";s:3:"1px";s:12:"border-color";s:5:"black";s:12:"border-style";s:5:"solid";}}s:10:"conditions";a:0:{}s:7:"classes";a:0:{}s:6:"parent";i:-1;s:3:"row";i:0;s:6:"column";i:0;s:5:"order";i:0;s:9:"max_width";i:200;s:10:"max_height";N;s:13:"show_on_hover";b:0;s:13:"hide_on_hover";b:0;s:19:"hover_in_transition";s:7:"instant";s:20:"hover_out_transition";s:7:"instant";s:13:"hover_in_time";i:0;s:14:"hover_out_time";i:0;s:18:"\0*\0show_on_desktop";b:1;s:17:"\0*\0show_on_mobile";b:1;s:13:"\0*\0link_color";b:0;s:20:"\0*\0background_preset";b:0;s:10:"\0*\0cut_off";b:0;}i:1;r:18;i:2;r:105;i:3;r:624;i:4;r:633;i:5;r:9;i:8;r:114;i:10;r:124;i:12;r:211;}s:9:"container";r:3;s:5:"fonts";a:0:{}}', 'yes'),
 (791, 'wpupg_custom_template_mapping', 'a:4:{i:0;s:6:"Simple";i:1;s:19:"Simple with Excerpt";i:2;s:7:"Overlay";i:3;s:15:"Hover with Date";}', 'yes'),
 (792, 'wpupg_option', 'a:22:{s:35:"grid_template_premium_not_installed";N;s:43:"grid_template_open_template_editor_disabled";s:95:"<a href="#" class="button button-primary button-disabled" disabled>Open the Template Editor</a>";s:28:"template_editor_preview_grid";s:9:"{{first}}";s:25:"grid_template_force_style";s:1:"0";s:24:"grid_template_inline_css";s:1:"1";s:30:"grid_container_animation_speed";s:3:"0.8";s:20:"grid_animation_speed";s:3:"0.8";s:19:"grid_animation_show";s:10:"opacity: 1";s:19:"grid_animation_hide";s:10:"opacity: 0";s:16:"grid_links_class";s:0:"";s:29:"filters_premium_not_installed";N;s:29:"filters_dropdown_border_color";s:7:"#AAAAAA";s:27:"filters_dropdown_text_color";s:7:"#444444";s:43:"filters_dropdown_highlight_background_color";s:7:"#5897FB";s:37:"filters_dropdown_highlight_text_color";s:7:"#FFFFFF";s:28:"filters_dropdown_hide_search";s:1:"0";s:27:"shortcode_editor_post_types";a:2:{i:0;s:4:"post";i:1;s:4:"page";}s:13:"meta_box_hide";a:0:{}s:16:"assets_use_cache";s:1:"1";s:22:"custom_code_public_css";N;s:19:"faq_support_notebox";N;s:0:"";N;}', 'yes'),
 (793, 'wpupg_migrate_version', '2.6.2', 'yes'),
 (794, 'wpupg_regenerate_grids_check', 'a:0:{}', 'yes'),
 (799, 'rt_the_post_grid_current_version', '2.2.2', 'yes'),
 (800, 'rt_the_post_grid_settings', 'a:9:{s:12:"popup_fields";a:3:{i:0;s:5:"title";i:1;s:11:"feature_img";i:2;s:7:"content";}s:10:"custom_css";s:0:"";s:15:"template_author";s:0:"";s:17:"template_category";s:0:"";s:15:"template_search";s:0:"";s:12:"template_tag";s:0:"";s:14:"template_class";s:0:"";s:11:"license_key";s:32:"9a532cc191d454878989b4642e1a5e07";s:14:"license_status";s:5:"valid";}', 'yes'),
 (801, 'widget_widget_tpg_post_grid', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (806, '0f28e315aedceddfc1a64cea41ccef22', 'a:2:{s:7:"timeout";i:1521045877;s:5:"value";s:32804:"{"new_version":"3.3.3","stable_version":"3.3.3","name":"The Post Grid Pro for WordPress","slug":"the-post-grid-pro","url":"https:\\/\\/www.radiustheme.com\\/downloads\\/the-post-grid-pro-for-wordpress\\/?changelog=1","last_updated":"2018-03-01 11:39:30","homepage":"https:\\/\\/www.radiustheme.com\\/downloads\\/the-post-grid-pro-for-wordpress\\/","package":"","download_link":"","sections":{"description":"<p>[vc_row][vc_column][vc_column_text]The Post Grid is a fully Responsive &amp; Mobile friendly plugin to display your page\\/post\\/ custom post type in Grid, List, Carousel Slider and Isotope View without any line of coding. It is fast and easy to generate grid from admin end and insert into page\\/post. You can Display posts by any category(s), tag(s), author(s), keyword(s) also Order posts by Id, Title, Created date, Modified date, Date Range and Menu order.<\\/p>\\n<p>[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_custom_heading text=\\"Features\\" font_container=\\"tag:h2|text_align:left|color:%2381d742\\" use_theme_fonts=\\"yes\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/2\\"][vc_column_text el_class=\\"cp-features\\"]<\\/p>\\n<ul>\\n<li> Fully responsive and mobile friendly.<\\/li>\\n<li> 55 Amazing Layouts with Masonry, Google, <strong>Pinterest<\\/strong> and others.<\\/li>\\n<li> Even and <strong>Masonry<\\/strong> Grid for all Grid.<\\/li>\\n<li> Generate Unlimited grid.<\\/li>\\n<li> Layout Preview in Shortcode Settings.<\\/li>\\n<li> Custom number of post per page.<\\/li>\\n<li> Use posts, pages, <strong>Custom Post Type<\\/strong> as the source (<strong>don\'t support multiple post type in a single shortcode<\\/strong>).<\\/li>\\n<li> Display posts by any Taxonomy like category(s), tag(s), author(s), keyword(s), Status and <strong>Date Range<\\/strong><\\/li>\\n<li> Order by Id, Title, Created date, Modified date, <strong>Random<\\/strong>, <strong>Comments Count<\\/strong> and Menu order.<\\/li>\\n<li> Display image size (thumbnail, medium, large, full and <strong>Custom Image Size<\\/strong>)<\\/li>\\n<li> Custom Image Re-size option.<\\/li>\\n<li> Enable Sticky Post.<\\/li>\\n<li> Category, Search and Tags Layout .<\\/li>\\n<li> Add Visual Composer Addone .<\\/li>\\n<li> <strong>All 16 layouts now can turn as Grid or Filter.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Improve Code &amp; AJAX functionality.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Now Filter as Button or Drop down.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Count on Filter button.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Short by &amp; Ordering option.\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Gutter or Padding Control.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Search option added <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<\\/ul>\\n<p>[\\/vc_column_text][\\/vc_column][vc_column width=\\"1\\/2\\"][vc_column_text el_class=\\"cp-features\\"]<\\/p>\\n<ul>\\n<li> Isotope filter for any taxonomy ie. categories, tags...<\\/li>\\n<li> <strong>Search field on Isotope<\\/strong>.<\\/li>\\n<li> Set Default Isotop Filter Button.<\\/li>\\n<li> Disable Show All Button for Isotope Filter.<\\/li>\\n<li> Query Post with Relation.<\\/li>\\n<li> All Fields Control.<\\/li>\\n<li> All Text color, size and Button Color control.<\\/li>\\n<li> Overlay color and opacity control.<\\/li>\\n<li> Default image set option in Shortcode generator settings.<\\/li>\\n<li> Enable\\/Disable Pagination.<\\/li>\\n<li> Number Pagination Supported.<\\/li>\\n<li> <strong>Ajax Pagination: Load more, Load on scroll and AJAX Number Pagination<\\/strong><\\/li>\\n<li> <strong>AJAX Number Pagination (only for Grid layouts)<\\/strong> .<\\/li>\\n<li> <strong>Single popup and Popup with next preview<\\/strong>.<\\/li>\\n<li> Social Share on popup.<\\/li>\\n<li> Social Share on Grid View.<\\/li>\\n<li> <strong>4 Offset Layouts Added.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Gallery Layout Added.\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Desktop, Tab &amp; Mobile Display Control.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Excerpt Limit in Words.<\\/strong>\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Some new styling control added. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Taxonomy ie Category Ordering. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Layout 2 image Grid width Control. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Auto update by activate license key<\\/strong><\\/span><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Add Advanced Custom field integration for custom field (V 3.3)<\\/strong><\\/span><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Add Sub-Category Filtering (V 3.3)<\\/strong><\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_column_text][\\/vc_column_text][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3332\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nFully Responsive &amp; Mobile Friendly<br \\/>\\nAll 55 Layouts are fully responsive and mobile and perfect for all devices like Desktop, Laptop, iPad, iPhone and Android Devices.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTotal 55 Layouts with grid, Isotope, Slider, Offset &amp; Gallery<br \\/>\\n<strong>Grid:<\\/strong> 20 Grid Layout with Woo Commerce.<\\/p>\\n<p><strong>Isotope:<\\/strong> 16 Isotope Filter Layout with Category\\/ Tag Filter button.<\\/p>\\n<p><strong>Slider:<\\/strong> 12 Carousel Slider Layouts<\\/p>\\n<p><strong>Offset:<\\/strong> 4 Offset Layouts<\\/p>\\n<p><strong>Gallery:<\\/strong> 1 Gallery Layout[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3333\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3316\\" img_size=\\"full\\" onclick=\\"link_image\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nAdvance Filter by Query Post<br \\/>\\nYou can filter by Category(s), Tag(s)<\\/p>\\n<p>Set order by id, title, post date, modify date, random and comments count.<\\/p>\\n<p>Can set specific user post.<\\/p>\\n<p>And set specific date range post[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTurn Grid Layout to Filterable Grid<br \\/>\\nYou can set\\u00a0all layout normal Grid or Filterable grid with two types of filter buttons dropdown or normal buttons[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9192\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9191\\" img_size=\\"full\\" onclick=\\"link_image\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\n4 New offset layouts<br \\/>\\nYou can set offset layouts in Version 2.0 we added 4 new layouts for offset.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\n4 Types of Pagination<br \\/>\\nNormal Number Pagination, Ajax Number Pagination, Load More and Load on Scrolling. You can control the number how many load per click.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3807\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3323\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nEven &amp; Masonry Grid<br \\/>\\nYou can set Even or Masonry grid also can set margin or no margin.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSingle Popup &amp; Multi Pop up<br \\/>\\nYou can set single item popup it will show with social share button[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3325\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9195\\" img_size=\\"full\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nGallery Layout<br \\/>\\nYou can Make Gallery in V 2.0 we added this feature.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTaxonomy Ordering<br \\/>\\nYou can\\u00a0order category for Filtering button.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9194\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9197\\" img_size=\\"full\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nMulti Popup with next preview button<br \\/>\\nYou can set multi popup it has\\u00a0control of next and preview button[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nDetail popup Page field control<br \\/>\\nYou can select which fields will show in single &amp; multi popup page.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3328\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3327\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nField Selection in Grid View<br \\/>\\nYou can select which fields you want to display in Grid View.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nAll Color and font size control<br \\/>\\nFrom Short Code Generator Style Tab you can set all font size and color control.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3330\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nLayout Preview in Admin<br \\/>\\nUnder Short Code Generator you can view the layout how it will look.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9184\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3808\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSupport Sticky Post<br \\/>\\nYou can add Sticky Post (added V 1.1) Just select Yes. Then that post will show first of grid.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSocial Share on Grid View<br \\/>\\nYou can set social share on Grid view[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3810\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_column_text]<br \\/>\\nTemplate Override<br \\/>\\nCategory Archive, Search and Tags template can override by Grid Layout.[\\/vc_column_text][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_single_image image=\\"3809\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row]<\\/p>\\n","changelog":"<p><strong>Version 3.3 (Jan 25, 2018)<\\/strong><\\/p>\\n<p>1) Add\\u00a0Advanced Custom field integration for custom field<br \\/>\\n2) Added Sub-category Filter Option<\\/p>\\n<p><strong>Version 3.2 (Dec 21, 2017)<\\/strong><\\/p>\\n<p>1) Fixed Archive page bug<\\/p>\\n<p><strong>Version 3.1 (Dec 12, 2017)<\\/strong><\\/p>\\n<p>1) Add Read More dynamic Text.<br \\/>\\n2) Title color forcefully added.<\\/p>\\n<p><strong>Version 3.0 (Dec 06, 2017)<\\/strong><\\/p>\\n<p>1) Add auto update feature with license activation<br \\/>\\n2) iPhone isotope button click issue fixed.<\\/p>\\n<p><strong>Version 2.9 (Dec 01, 2017)<\\/strong><\\/p>\\n<p>1) New: Specific Archive page Layout Select Option Category, Search, Author &amp; Tags.<br \\/>\\n2) Add a class option for archive page container<\\/p>\\n<p><strong>Version 2.8 (Nov 24, 2017)<\\/strong><\\/p>\\n<p>Remove admin notification from V 2.7<\\/p>\\n<p><strong>Version 2.7 (Nov 23, 2017)<\\/strong><\\/p>\\n<p>Add: Image Disable Option added.<\\/p>\\n<p><strong>Version 2.6 ( Sep 26, 2017)<\\/strong><br \\/>\\nBug Fix: Multi Popup and Deprecated removed.<\\/p>\\n<p><strong>Version 2.3.4 (July 15, 2017)<\\/strong><br \\/>\\n1) Fixed Excerpt issue<\\/p>\\n<p>Version 2.3.3 (July 08, 2017)<br \\/>\\n1) Fixed VC addon issue for 5.2.2<\\/p>\\n<p>Version 2.3.2 (June 21 06, 2017)<br \\/>\\n1) Isotope Filtering issue fixed.<\\/p>\\n<p>Version 2.3.1 (June 06, 2017)<br \\/>\\n1) Tag filtering fixed.<br \\/>\\n2) Popup field auto selected<\\/p>\\n<p>Version 2.3 (May 02, 2017)<br \\/>\\n1) Add: Order by Meta Key<br \\/>\\n2) Add: Carousel Speed control<br \\/>\\n3) Add: 5 Per row<br \\/>\\n4) Fix: Excerpt ending<br \\/>\\n5) Fix: Filter Button Responsive<br \\/>\\n6) Fix: Translation<br \\/>\\n7) Fix: Taxonomy Filtering issue<br \\/>\\n8) Fix: Post source page<\\/p>\\n<p>Version 2.2 May 16, 2017<br \\/>\\n1)\\u00a0Added Widget.<\\/p>\\n<p>Version 2.1 May 10, 2017<br \\/>\\n1) Bug fix: Tab &amp; mobile device item view control<\\/p>\\n<p>Version 2.0 April 24, 2017<br \\/>\\n1) All 16 layouts now can turn as Grid or Filter.<br \\/>\\n2) Improve Code &amp; AJAX functionality.<br \\/>\\n3) Now Filter as Button or Drop down.<br \\/>\\n4) Count on Filter button.<br \\/>\\n5) Short by &amp; Ordering option.<br \\/>\\n6) Gutter or Padding Control.<br \\/>\\n7) Search option added<br \\/>\\n8) 4 Offset Layouts Added.<br \\/>\\n9) Gallery Layout Added.<br \\/>\\n10) Desktop, Tab &amp; Mobile Display Control.<br \\/>\\n11) Excerpt Limit in Words.<br \\/>\\n12) Some new styling control added<br \\/>\\n13) Layout 2 image Grid width Control<br \\/>\\n14) Fix some bug.<\\/p>\\n<p>Pro Released: July 27, 2016<br \\/>\\nNov 29, 2016: Version 1.3 Released<br \\/>\\n1) Ajax Load More &amp; Auto Scrolling bug fix<br \\/>\\n2) Also some PHP code updated.<\\/p>\\n<p>Nov 3, 2016: Version 1.2 Released<br \\/>\\n1) Ajax Pagination bug fix<br \\/>\\n2) Fix admin css conflict<br \\/>\\n3) Also some PHP code updated.<\\/p>\\n<p>Aug 27, 2016: Version 1.1 Released<br \\/>\\nOct 14, 2016, Fix Layout 13<\\/p>\\n"},"banners":{"high":"","low":""},"description":["<p>[vc_row][vc_column][vc_column_text]The Post Grid is a fully Responsive &amp; Mobile friendly plugin to display your page\\/post\\/ custom post type in Grid, List, Carousel Slider and Isotope View without any line of coding. It is fast and easy to generate grid from admin end and insert into page\\/post. You can Display posts by any category(s), tag(s), author(s), keyword(s) also Order posts by Id, Title, Created date, Modified date, Date Range and Menu order.<\\/p>\\n<p>[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_custom_heading text=\\"Features\\" font_container=\\"tag:h2|text_align:left|color:%2381d742\\" use_theme_fonts=\\"yes\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/2\\"][vc_column_text el_class=\\"cp-features\\"]<\\/p>\\n<ul>\\n<li> Fully responsive and mobile friendly.<\\/li>\\n<li> 55 Amazing Layouts with Masonry, Google, <strong>Pinterest<\\/strong> and others.<\\/li>\\n<li> Even and <strong>Masonry<\\/strong> Grid for all Grid.<\\/li>\\n<li> Generate Unlimited grid.<\\/li>\\n<li> Layout Preview in Shortcode Settings.<\\/li>\\n<li> Custom number of post per page.<\\/li>\\n<li> Use posts, pages, <strong>Custom Post Type<\\/strong> as the source (<strong>don\'t support multiple post type in a single shortcode<\\/strong>).<\\/li>\\n<li> Display posts by any Taxonomy like category(s), tag(s), author(s), keyword(s), Status and <strong>Date Range<\\/strong><\\/li>\\n<li> Order by Id, Title, Created date, Modified date, <strong>Random<\\/strong>, <strong>Comments Count<\\/strong> and Menu order.<\\/li>\\n<li> Display image size (thumbnail, medium, large, full and <strong>Custom Image Size<\\/strong>)<\\/li>\\n<li> Custom Image Re-size option.<\\/li>\\n<li> Enable Sticky Post.<\\/li>\\n<li> Category, Search and Tags Layout .<\\/li>\\n<li> Add Visual Composer Addone .<\\/li>\\n<li> <strong>All 16 layouts now can turn as Grid or Filter.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Improve Code &amp; AJAX functionality.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Now Filter as Button or Drop down.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Count on Filter button.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Short by &amp; Ordering option.\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Gutter or Padding Control.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Search option added <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<\\/ul>\\n<p>[\\/vc_column_text][\\/vc_column][vc_column width=\\"1\\/2\\"][vc_column_text el_class=\\"cp-features\\"]<\\/p>\\n<ul>\\n<li> Isotope filter for any taxonomy ie. categories, tags...<\\/li>\\n<li> <strong>Search field on Isotope<\\/strong>.<\\/li>\\n<li> Set Default Isotop Filter Button.<\\/li>\\n<li> Disable Show All Button for Isotope Filter.<\\/li>\\n<li> Query Post with Relation.<\\/li>\\n<li> All Fields Control.<\\/li>\\n<li> All Text color, size and Button Color control.<\\/li>\\n<li> Overlay color and opacity control.<\\/li>\\n<li> Default image set option in Shortcode generator settings.<\\/li>\\n<li> Enable\\/Disable Pagination.<\\/li>\\n<li> Number Pagination Supported.<\\/li>\\n<li> <strong>Ajax Pagination: Load more, Load on scroll and AJAX Number Pagination<\\/strong><\\/li>\\n<li> <strong>AJAX Number Pagination (only for Grid layouts)<\\/strong> .<\\/li>\\n<li> <strong>Single popup and Popup with next preview<\\/strong>.<\\/li>\\n<li> Social Share on popup.<\\/li>\\n<li> Social Share on Grid View.<\\/li>\\n<li> <strong>4 Offset Layouts Added.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Gallery Layout Added.\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Desktop, Tab &amp; Mobile Display Control.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Excerpt Limit in Words.<\\/strong>\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Some new styling control added. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Taxonomy ie Category Ordering. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Layout 2 image Grid width Control. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Auto update by activate license key<\\/strong><\\/span><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Add Advanced Custom field integration for custom field (V 3.3)<\\/strong><\\/span><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Add Sub-Category Filtering (V 3.3)<\\/strong><\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_column_text][\\/vc_column_text][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3332\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nFully Responsive &amp; Mobile Friendly<br \\/>\\nAll 55 Layouts are fully responsive and mobile and perfect for all devices like Desktop, Laptop, iPad, iPhone and Android Devices.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTotal 55 Layouts with grid, Isotope, Slider, Offset &amp; Gallery<br \\/>\\n<strong>Grid:<\\/strong> 20 Grid Layout with Woo Commerce.<\\/p>\\n<p><strong>Isotope:<\\/strong> 16 Isotope Filter Layout with Category\\/ Tag Filter button.<\\/p>\\n<p><strong>Slider:<\\/strong> 12 Carousel Slider Layouts<\\/p>\\n<p><strong>Offset:<\\/strong> 4 Offset Layouts<\\/p>\\n<p><strong>Gallery:<\\/strong> 1 Gallery Layout[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3333\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3316\\" img_size=\\"full\\" onclick=\\"link_image\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nAdvance Filter by Query Post<br \\/>\\nYou can filter by Category(s), Tag(s)<\\/p>\\n<p>Set order by id, title, post date, modify date, random and comments count.<\\/p>\\n<p>Can set specific user post.<\\/p>\\n<p>And set specific date range post[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTurn Grid Layout to Filterable Grid<br \\/>\\nYou can set\\u00a0all layout normal Grid or Filterable grid with two types of filter buttons dropdown or normal buttons[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9192\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9191\\" img_size=\\"full\\" onclick=\\"link_image\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\n4 New offset layouts<br \\/>\\nYou can set offset layouts in Version 2.0 we added 4 new layouts for offset.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\n4 Types of Pagination<br \\/>\\nNormal Number Pagination, Ajax Number Pagination, Load More and Load on Scrolling. You can control the number how many load per click.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3807\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3323\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nEven &amp; Masonry Grid<br \\/>\\nYou can set Even or Masonry grid also can set margin or no margin.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSingle Popup &amp; Multi Pop up<br \\/>\\nYou can set single item popup it will show with social share button[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3325\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9195\\" img_size=\\"full\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nGallery Layout<br \\/>\\nYou can Make Gallery in V 2.0 we added this feature.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTaxonomy Ordering<br \\/>\\nYou can\\u00a0order category for Filtering button.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9194\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9197\\" img_size=\\"full\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nMulti Popup with next preview button<br \\/>\\nYou can set multi popup it has\\u00a0control of next and preview button[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nDetail popup Page field control<br \\/>\\nYou can select which fields will show in single &amp; multi popup page.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3328\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3327\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nField Selection in Grid View<br \\/>\\nYou can select which fields you want to display in Grid View.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nAll Color and font size control<br \\/>\\nFrom Short Code Generator Style Tab you can set all font size and color control.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3330\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nLayout Preview in Admin<br \\/>\\nUnder Short Code Generator you can view the layout how it will look.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9184\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3808\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSupport Sticky Post<br \\/>\\nYou can add Sticky Post (added V 1.1) Just select Yes. Then that post will show first of grid.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSocial Share on Grid View<br \\/>\\nYou can set social share on Grid view[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3810\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_column_text]<br \\/>\\nTemplate Override<br \\/>\\nCategory Archive, Search and Tags template can override by Grid Layout.[\\/vc_column_text][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_single_image image=\\"3809\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row]<\\/p>\\n"],"changelog":["<p><strong>Version 3.3 (Jan 25, 2018)<\\/strong><\\/p>\\n<p>1) Add\\u00a0Advanced Custom field integration for custom field<br \\/>\\n2) Added Sub-category Filter Option<\\/p>\\n<p><strong>Version 3.2 (Dec 21, 2017)<\\/strong><\\/p>\\n<p>1) Fixed Archive page bug<\\/p>\\n<p><strong>Version 3.1 (Dec 12, 2017)<\\/strong><\\/p>\\n<p>1) Add Read More dynamic Text.<br \\/>\\n2) Title color forcefully added.<\\/p>\\n<p><strong>Version 3.0 (Dec 06, 2017)<\\/strong><\\/p>\\n<p>1) Add auto update feature with license activation<br \\/>\\n2) iPhone isotope button click issue fixed.<\\/p>\\n<p><strong>Version 2.9 (Dec 01, 2017)<\\/strong><\\/p>\\n<p>1) New: Specific Archive page Layout Select Option Category, Search, Author &amp; Tags.<br \\/>\\n2) Add a class option for archive page container<\\/p>\\n<p><strong>Version 2.8 (Nov 24, 2017)<\\/strong><\\/p>\\n<p>Remove admin notification from V 2.7<\\/p>\\n<p><strong>Version 2.7 (Nov 23, 2017)<\\/strong><\\/p>\\n<p>Add: Image Disable Option added.<\\/p>\\n<p><strong>Version 2.6 ( Sep 26, 2017)<\\/strong><br \\/>\\nBug Fix: Multi Popup and Deprecated removed.<\\/p>\\n<p><strong>Version 2.3.4 (July 15, 2017)<\\/strong><br \\/>\\n1) Fixed Excerpt issue<\\/p>\\n<p>Version 2.3.3 (July 08, 2017)<br \\/>\\n1) Fixed VC addon issue for 5.2.2<\\/p>\\n<p>Version 2.3.2 (June 21 06, 2017)<br \\/>\\n1) Isotope Filtering issue fixed.<\\/p>\\n<p>Version 2.3.1 (June 06, 2017)<br \\/>\\n1) Tag filtering fixed.<br \\/>\\n2) Popup field auto selected<\\/p>\\n<p>Version 2.3 (May 02, 2017)<br \\/>\\n1) Add: Order by Meta Key<br \\/>\\n2) Add: Carousel Speed control<br \\/>\\n3) Add: 5 Per row<br \\/>\\n4) Fix: Excerpt ending<br \\/>\\n5) Fix: Filter Button Responsive<br \\/>\\n6) Fix: Translation<br \\/>\\n7) Fix: Taxonomy Filtering issue<br \\/>\\n8) Fix: Post source page<\\/p>\\n<p>Version 2.2 May 16, 2017<br \\/>\\n1)\\u00a0Added Widget.<\\/p>\\n<p>Version 2.1 May 10, 2017<br \\/>\\n1) Bug fix: Tab &amp; mobile device item view control<\\/p>\\n<p>Version 2.0 April 24, 2017<br \\/>\\n1) All 16 layouts now can turn as Grid or Filter.<br \\/>\\n2) Improve Code &amp; AJAX functionality.<br \\/>\\n3) Now Filter as Button or Drop down.<br \\/>\\n4) Count on Filter button.<br \\/>\\n5) Short by &amp; Ordering option.<br \\/>\\n6) Gutter or Padding Control.<br \\/>\\n7) Search option added<br \\/>\\n8) 4 Offset Layouts Added.<br \\/>\\n9) Gallery Layout Added.<br \\/>\\n10) Desktop, Tab &amp; Mobile Display Control.<br \\/>\\n11) Excerpt Limit in Words.<br \\/>\\n12) Some new styling control added<br \\/>\\n13) Layout 2 image Grid width Control<br \\/>\\n14) Fix some bug.<\\/p>\\n<p>Pro Released: July 27, 2016<br \\/>\\nNov 29, 2016: Version 1.3 Released<br \\/>\\n1) Ajax Load More &amp; Auto Scrolling bug fix<br \\/>\\n2) Also some PHP code updated.<\\/p>\\n<p>Nov 3, 2016: Version 1.2 Released<br \\/>\\n1) Ajax Pagination bug fix<br \\/>\\n2) Fix admin css conflict<br \\/>\\n3) Also some PHP code updated.<\\/p>\\n<p>Aug 27, 2016: Version 1.1 Released<br \\/>\\nOct 14, 2016, Fix Layout 13<\\/p>\\n"]}";}', 'no'),
 (814, '_site_transient_timeout_community-events-6b8269e85c238a8043d8cddaa41850b7', '1521112343', 'no'),
 (815, '_site_transient_community-events-6b8269e85c238a8043d8cddaa41850b7', 'a:2:{s:8:"location";a:1:{s:2:"ip";s:11:"203.42.88.0";}s:6:"events";a:1:{i:0;a:7:{s:4:"type";s:6:"meetup";s:5:"title";s:30:"WordPress Ipswich March Meetup";s:3:"url";s:65:"https://www.meetup.com/Ipswich-WordPress-Meetup/events/246893339/";s:6:"meetup";s:24:"Ipswich WordPress Meetup";s:10:"meetup_url";s:48:"https://www.meetup.com/Ipswich-WordPress-Meetup/";s:4:"date";s:19:"2018-03-28 18:00:00";s:8:"location";a:4:{s:8:"location";s:18:"Ipswich, Australia";s:7:"country";s:2:"au";s:8:"latitude";d:-27.61540000000000105728759081102907657623291015625;s:9:"longitude";d:152.754486000000014200850273482501506805419921875;}}}}', 'no'),
 (816, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1521112345', 'no'),
 (817, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:49:"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:34:"\n	Thu, 01 Mar 2018 08:41:16 +0000	";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:40:"https://wordpress.org/?v=5.0-alpha-42834";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:33:"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"The Month in WordPress: February 2018";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2018/03/the-month-in-wordpress-february-2018/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Mar 2018 08:41:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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=5613";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:324:"Judging by the flurry of activity across the WordPress project throughout February, it looks like everyone is really getting into the swing of things for 2018. There have been a lot of interesting new developments, so read on to see what the community has been up to for the past month. WordPress 4.9.3 &#38; 4.9.4 [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Hugh Lashbrooke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:5936:"<p>Judging by the flurry of activity across the WordPress project throughout February, it looks like everyone is really getting into the swing of things for 2018. There have been a lot of interesting new developments, so read on to see what the community has been up to for the past month.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>WordPress 4.9.3 &amp; 4.9.4</h2>\n\n<p>Early in the month, <a href="https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/">version 4.9.3 of WordPress was released</a>, including a number of important bug fixes. Unfortunately it introduced a bug that prevented many sites from automatically updating to future releases. To remedy this issue, <a href="https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/">version 4.9.4 was released</a> the following day requiring many people to manually update their sites.</p>\n\n<p>While this kind of issue is always regrettable, the good thing is that it was fixed quickly, and that not all sites had updated to 4.9.3 yet, which meant they bypassed the bug in that version.</p>\n\n<p>You can find out more technical information about this issue <a href="https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/">on the Core development blog</a>.</p>\n\n<h2>The WordCamp Incubator is Back</h2>\n\n<p>In 2016, the Global Community Team ran an experimental program to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event. This program was dubbed the WordCamp Incubator, and it was so successful in the three cities where it ran that <a href="https://wordpress.org/news/2018/02/wordcamp-incubator-2-0/">the program is back for 2018</a>.</p>\n\n<p>Right now, the Community Team is looking for cities to be a part of this year’s incubator by <a href="https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application">taking applications</a>. Additionally, each incubator community will need an experienced WordCamp organizer to assist them as a co-lead organizer for their event — if that sounds interesting to you, then you can <a href="https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-co-lead-application">fill in the application form for co-leads</a>.</p>\n\n<p>You can find out further information about the WordCamp Incubator <a href="https://make.wordpress.org/community/2018/02/19/wordcamp-incubator-program-2018-announcement/">on the Community Team blog</a>.</p>\n\n<h2>WordPress Meetup Roundtables scheduled for March</h2>\n\n<p>In order to assist local WordPress meetup organizers with running their meetup groups, some members of the Community Team have organized <a href="https://make.wordpress.org/community/2018/02/23/wordpress-meetup-roundtables-scheduled-for-march/">weekly meetup roundtable discussions through the month of March</a>.</p>\n\n<p>These will be run as video chats at 16:00 UTC every Wednesday this month and will be a great place for meetup organizers to come together and help each other out with practical ideas and advice.</p>\n\n<p>If you are not already in the WordPress meetup program and would like to join, you can find out more information in <a href="https://make.wordpress.org/community/handbook/meetup-organizer/welcome/">the WordPress Meetup Organizer Handbook</a>.</p>\n\n<h2>GDPR Compliance in WordPress Core</h2>\n\n<p>The General Data Protection Regulation (GDPR) is an upcoming regulation that will affect all online services across Europe. In order to prepare for this, a working group has been formed to make sure that WordPress is compliant with the GDPR regulations.</p>\n\n<p>Aside from the fact that this will be a requirement for the project going forward, it will also have an important and significant impact on the privacy and security of WordPress as a whole. The working group has posted <a href="https://make.wordpress.org/core/2018/02/19/proposed-roadmap-tools-for-gdpr-compliance/">their proposed roadmap</a> for this project and it looks very promising.</p>\n\n<p>To get involved in building WordPress Core, jump into the #gdpr-compliance channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>, and follow <a href="https://make.wordpress.org/core/">the Core team blog</a>.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li>WPShout published <a href="https://wpshout.com/complete-guide-wordpress-security/">a thorough guide to WordPress security</a>.</li>\n    <li>The Community Team has published interesting statistics from the WordCamp program in <a href="https://make.wordpress.org/community/2018/02/27/wordcamps-in-2016/">2016</a> and <a href="https://make.wordpress.org/community/2018/02/28/wordcamps-in-2017/">2017</a>.</li>\n    <li><a href="https://make.wordpress.org/community/2018/02/15/potential-addition-of-a-new-onboarding-team/">An intriguing proposal has been made</a> for a new ‘Onboarding’ team to be started in the WordPress project.</li>\n    <li>The new editing experience for WordPress, named Gutenberg, continues to be actively developed with <a href="https://make.wordpress.org/core/2018/02/16/whats-new-in-gutenberg-16th-february/">a feature-packed release</a> this past month.</li>\n    <li>The Advanced WordPress Facebook group <a href="https://www.youtube.com/watch?v=4vS_jR5-nIo">held an interview with WordPress co-founder, Matt Mullenweg</a> about the Gutenberg project.</li>\n    <li><a href="https://make.wordpress.org/meta/2018/02/27/two-factor-authentication-on-wp-org/">Two factor authentication is on its way to the WordPress.org network</a> — this will be a great improvement to the overall security of the project.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href="https://make.wordpress.org/community/month-in-wordpress-submissions/">submit it here</a>.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:4:"5613";s: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:39:"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"WordCamp Incubator 2.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:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wordpress.org/news/2018/02/wordcamp-incubator-2-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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 21 Feb 2018 22:53:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s: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:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=5577";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:343:"WordCamps are informal, community-organized events that are put together by a team of local WordPress users who have a passion for growing their communities. They are born out of active WordPress meetup groups that meet regularly and are able to host an annual WordCamp event. This has worked very well in many communities, with over [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Hugh Lashbrooke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2450:"<p><a href="https://central.wordcamp.org/">WordCamps</a> are informal, community-organized events that are put together by a team of local WordPress users who have a passion for growing their communities. They are born out of active WordPress meetup groups that meet regularly and are able to host an annual WordCamp event. This has worked very well in many communities, with over 120 WordCamps being hosted around the world in 2017.<br /></p>\n\n<p>Sometimes though, passionate and enthusiastic community members can’t pull together enough people in their community to make a WordCamp happen. To address this, we introduced <a href="https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/">the WordCamp Incubator program</a> in 2016.<br /></p>\n\n<p>The goal of the incubator program is <strong>to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event.</strong> In 2016, members of <a href="https://make.wordpress.org/community/">the global community team</a> worked with volunteers in three cities — Denpasar, Harare and Medellín — giving direct, hands-on assistance in making local WordCamps possible. All three of these WordCamp incubators <a href="https://make.wordpress.org/community/2017/06/30/wordcamp-incubator-report/">were a great success</a>, so we&#x27;re bringing the incubator program back for 2018.<br /></p>\n\n<p>Where should the next WordCamp incubators be? If you have always wanted a WordCamp in your city but haven’t been able to get a community started, this is a great opportunity. We will be taking applications for the next few weeks, then will get in touch with everyone who applied to discuss the possibilities. We will announce the chosen cities by the end of March.<br /></p>\n\n<p><strong>To apply, </strong><a href="https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application"><strong>fill in the application</strong></a><strong> by March 15, 2018.</strong> You don’t need to have any specific information handy, it’s just a form to let us know you’re interested. You can apply to nominate your city even if you don’t want to be the main organizer, but for this to work well we will need local liaisons and volunteers, so please only nominate cities where you live or work so that we have at least one local connection to begin.<br /></p>\n\n<p>We&#x27;re looking forward to hearing from you!<br /></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:4:"5577";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:36:"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 4.9.4 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Feb 2018 16:17:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:3:"4.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=5559";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:350:"WordPress 4.9.4 is now available. This maintenance release fixes a severe bug in 4.9.3, which will cause sites that support automatic background updates to fail to update automatically, and will require action from you (or your host) for it to be updated to 4.9.4. Four years ago with WordPress 3.7 &#8220;Basie&#8221;, we added the ability [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Dion Hulse";s: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:1823:"<p>WordPress 4.9.4 is now available.</p>\n<p>This maintenance release fixes a severe bug in 4.9.3, which will cause sites that support automatic background updates to fail to update automatically, and will require action from you (or your host) for it to be updated to 4.9.4.</p>\n<p>Four years ago with <a href="https://wordpress.org/news/2013/10/basie/">WordPress 3.7 &#8220;Basie&#8221;</a>, we added the ability for WordPress to self-update, keeping your website secure and bug-free, even when you weren&#8217;t available to do it yourself. For four years it&#8217;s helped keep millions of installs updated with very few issues over that time. Unfortunately <a href="https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/">yesterdays 4.9.3 release</a> contained a severe bug which was only discovered after release. The bug will cause WordPress to encounter an error when it attempts to update itself to WordPress 4.9.4, and will require an update to be performed through the WordPress dashboard or hosts update tools.</p>\n<p>WordPress managed hosting companies who install updates automatically for their customers can install the update as normal, and we&#8217;ll be working with other hosts to ensure that as many customers of theirs who can be automatically updated to WordPress 4.9.4 can be.</p>\n<p>For more technical details of the issue, we&#8217;ve <a href="https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/">posted on our Core Development blog</a>. For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.9.4&amp;group=component">list of tickets</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.9.4</a> or visit Dashboard → Updates and click “Update Now.”</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:"5559";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:33:"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 4.9.3 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Feb 2018 19:47: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: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=5545";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:372:"WordPress 4.9.3 is now available. This maintenance release fixes 34 bugs in 4.9, including fixes for Customizer changesets, widgets, visual editor, and PHP 7.2 compatibility. For a full list of changes, consult the list of tickets and the changelog. Download WordPress 4.9.3 or visit Dashboard → Updates and click “Update Now.” Sites that support automatic [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Sergey Biryukov";s: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:3421:"<p>WordPress 4.9.3 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 4.9, including fixes for Customizer changesets, widgets, visual editor, and PHP 7.2 compatibility. For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.9.3&amp;group=component">list of tickets</a> and the <a href="https://core.trac.wordpress.org/log/branches/4.9?rev=42630&amp;stop_rev=42521">changelog</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.9.3</a> or visit Dashboard → Updates and click “Update Now.” Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.3:</p>\n<p><a href="https://profiles.wordpress.org/jorbin/">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/abdullahramzan/">abdullahramzan</a>, <a href="https://profiles.wordpress.org/adamsilverstein/">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/afercia/">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/andreiglingeanu/">andreiglingeanu</a>, <a href="https://profiles.wordpress.org/azaozz/">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/bpayton/">Brandon Payton</a>, <a href="https://profiles.wordpress.org/chetan200891/">Chetan Prajapati</a>, <a href="https://profiles.wordpress.org/coleh/">coleh</a>, <a href="https://profiles.wordpress.org/darko-a7/">Darko A7</a>, <a href="https://profiles.wordpress.org/desertsnowman/">David Cramer</a>, <a href="https://profiles.wordpress.org/dlh/">David Herrera</a>, <a href="https://profiles.wordpress.org/dd32/">Dion Hulse</a>, <a href="https://profiles.wordpress.org/flixos90/">Felix Arntz</a>, <a href="https://profiles.wordpress.org/frank-klein/">Frank Klein</a>, <a href="https://profiles.wordpress.org/pento/">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/audrasjb/">Jb Audras</a>, <a href="https://profiles.wordpress.org/jbpaul17/">Jeffrey Paul</a>, <a href="https://profiles.wordpress.org/lizkarkoski/">lizkarkoski</a>, <a href="https://profiles.wordpress.org/clorith/">Marius L. J.</a>, <a href="https://profiles.wordpress.org/mattyrob/">mattyrob</a>, <a href="https://profiles.wordpress.org/monikarao/">Monika Rao</a>, <a href="https://profiles.wordpress.org/munyagu/">munyagu</a>, <a href="https://profiles.wordpress.org/ndavison/">ndavison</a>, <a href="https://profiles.wordpress.org/nickmomrik/">Nick Momrik</a>, <a href="https://profiles.wordpress.org/peterwilsoncc/">Peter Wilson</a>, <a href="https://profiles.wordpress.org/rachelbaker/">Rachel Baker</a>, <a href="https://profiles.wordpress.org/rishishah/">rishishah</a>, <a href="https://profiles.wordpress.org/othellobloke/">Ryan Paul</a>, <a href="https://profiles.wordpress.org/sasiddiqui/">Sami Ahmed Siddiqui</a>, <a href="https://profiles.wordpress.org/sayedwp/">Sayed Taqui</a>, <a href="https://profiles.wordpress.org/seanchayes/">Sean Hayes</a>, <a href="https://profiles.wordpress.org/sergeybiryukov/">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shooper/">Shawn Hooper</a>, <a href="https://profiles.wordpress.org/netweb/">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/manikmist09/">Sultan Nasir Uddin</a>, <a href="https://profiles.wordpress.org/tigertech/">tigertech</a>, and <a href="https://profiles.wordpress.org/westonruter/">Weston Ruter</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:4:"5545";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:33:"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"The Month in WordPress: January 2018";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/news/2018/02/the-month-in-wordpress-january-2018/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 02 Feb 2018 08:10:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s: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=5541";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:339:"Things got off to a gradual start in 2018 with momentum starting to pick up over the course of the month. There were some notable developments in January, including a new point release and work being done on other important areas of the WordPress project. WordPress 4.9.2 Security and Maintenance Release On January 16, WordPress [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Hugh Lashbrooke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3840:"<p>Things got off to a gradual start in 2018 with momentum starting to pick up over the course of the month. There were some notable developments in January, including a new point release and work being done on other important areas of the WordPress project.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>WordPress 4.9.2 Security and Maintenance Release</h2>\n\n<p>On January 16, <a href="https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/">WordPress 4.9.2 was released</a> to fix an important security issue with the media player, as well as a number of other smaller bugs. This release goes a long way to smoothing out the 4.9 release cycle with the next point release, v4.9.3, <a href="https://make.wordpress.org/core/2018/01/31/wordpress-4-9-3-release-pushed-to-february-5th/">due in early February</a>.</p>\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href="https://make.wordpress.org/chat/"> Making WordPress Slack group</a>, and follow<a href="https://make.wordpress.org/core/"> the Core team blog</a>.</p>\n\n<h2>Updated Plugin Directory Guidelines</h2>\n\n<p>At the end of 2017, <a href="https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/">the guidelines for the Plugin Directory</a> received a significant update to make them clearer and expanded to address certain situations. This does not necessarily make these guidelines complete, but rather more user-friendly and practical; they govern how developers build plugins for the Plugin Directory, so they need to evolve with the global community that the Directory serves.</p>\n\n<p>If you would like to contribute to these guidelines, you can make a pull request to <a href="https://github.com/WordPress/wporg-plugin-guidelines">the GitHub repository</a> or email <a href="mailto:plugins@wordpress.org">plugins@wordpress.org</a>. You can also jump into the #pluginreview channel in the<a href="https://make.wordpress.org/chat/"> Making WordPress Slack group</a>.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li>Near the end of last year a lot of work was put into improving the standards in the WordPress core codebase and now <a href="https://make.wordpress.org/core/2017/11/30/wordpress-php-now-mostly-conforms-to-wordpress-coding-standards/">the entire platform is at nearly 100% compliance with the WordPress coding standards</a>.</li>\n    <li>Gutenberg, the new editor coming to WordPress core in the next major release, <a href="https://make.wordpress.org/core/2018/01/25/whats-new-in-gutenberg-25th-january/">was updated to v2.1 this month</a> with some great usability and technical improvements.</li>\n    <li>The Global Community Team is <a href="https://make.wordpress.org/community/2018/01/16/2018-goals-for-the-global-community-team-suggestions-time/">taking suggestions for the goals of the Community program in 2018</a>.</li>\n    <li><a href="https://online.wpcampus.org/">WPCampus Online</a>, a digital conference focused on WordPress in higher education, took place on January 30. The videos of the event sessions will be online soon.</li>\n    <li>A WordPress community member <a href="https://wptavern.com/new-toolkit-simplifies-the-process-of-creating-gutenberg-blocks">has released a toolkit</a> to help developers build blocks for Gutenberg.</li>\n    <li>The community team that works to improve the WordPress hosting experience is relatively young, but <a href="https://make.wordpress.org/hosting/2018/01/25/hosting-meeting-notes-january-10-2018/">they have been making some great progress recently</a>.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href="https://make.wordpress.org/community/month-in-wordpress-submissions/">submit it here</a>.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:4:"5541";s: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:39:"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WordPress 4.9.2 Security and Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 16 Jan 2018 23:00:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=5376";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:360:"WordPress 4.9.2 is now available. This is a security and maintenance release for all versions since WordPress 3.7﻿. We strongly encourage you to update your sites immediately. An XSS vulnerability was discovered in the Flash fallback files in MediaElement, a library that is included with WordPress. Because the Flash files are no longer needed for [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"Ian Dunn";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3946:"<p>WordPress 4.9.2 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7﻿. We strongly encourage you to update your sites immediately.</p>\n\n<p>An XSS vulnerability was discovered in the Flash fallback files in MediaElement, a library that is included with WordPress. Because the Flash files are no longer needed for most use cases, they have been removed from WordPress.</p>\n\n<p>MediaElement has released a new version that contains a fix for the bug, and <a href="https://wordpress.org/plugins/mediaelement-flash-fallbacks/">a WordPress plugin containing the fixed files</a> is available in the plugin repository.</p>\n\n<p>Thank you to the reporters of this issue for practicing <a href="https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/">responsible security disclosure</a>: <a href="https://opnsec.com">Enguerran Gillier</a> and <a href="https://widiz.com/">Widiz﻿</a>.</p>\n\n<p>21 other bugs were fixed in WordPress 4.9.2. Particularly of note were:</p>\n\n<ul>\n    <li>JavaScript errors that prevented saving posts in Firefox have been fixed.</li>\n    <li>The previous taxonomy-agnostic behavior of <code>get_category_link()</code> and <code>category_description()</code> was restored.</li>\n    <li>Switching themes will now attempt to restore previous widget assignments, even when there are no sidebars to map.<br /></li>\n</ul>\n\n<p>The Codex has <a href="https://codex.wordpress.org/Version_4.9.2">more information about all of the issues fixed in 4.9.2</a>, if you&#x27;d like to learn more.</p>\n\n<p>﻿<a href="https://wordpress.org/download/"></a><a href="https://wordpress.org/download/">Download WordPress 4.9.2</a> or venture over to Dashboard → Updates and click &quot;Update Now.&quot; Sites that support automatic background updates are already beginning to update automatically.</p>\n\n<p>Thank you to everyone who contributed to WordPress 4.9.2:</p>\n\n<p><a href="https://profiles.wordpress.org/0x6f0/">0x6f0</a>, <a href="https://profiles.wordpress.org/jorbin/">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/afercia/">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/aduth/">Andrew Duthie</a>, <a href="https://profiles.wordpress.org/azaozz/">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/blobfolio/">Blobfolio</a>, <a href="https://profiles.wordpress.org/boonebgorges/">Boone Gorges</a>, <a href="https://profiles.wordpress.org/icaleb/">Caleb Burks</a>, <a href="https://profiles.wordpress.org/poena/">Carolina Nymark</a>, <a href="https://profiles.wordpress.org/chasewg/">chasewg</a>, <a href="https://profiles.wordpress.org/chetan200891/">Chetan Prajapati</a>, <a href="https://profiles.wordpress.org/dd32/">Dion Hulse</a>, <a href="https://profiles.wordpress.org/hardik-amipara/">Hardik Amipara</a>, <a href="https://profiles.wordpress.org/ionvv/">ionvv</a>, <a href="https://profiles.wordpress.org/jaswrks/">Jason Caldwell</a>, <a href="https://profiles.wordpress.org/jbpaul17/">Jeffrey Paul</a>, <a href="https://profiles.wordpress.org/jeremyfelt/">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/joemcgill/">Joe McGill</a>, <a href="https://profiles.wordpress.org/johnschulz/">johnschulz</a>, <a href="https://profiles.wordpress.org/juiiee8487/">Juhi Patel</a>, <a href="https://profiles.wordpress.org/obenland/">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/markjaquith/">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/rabmalin/">Nilambar Sharma</a>, <a href="https://profiles.wordpress.org/peterwilsoncc/">Peter Wilson</a>, <a href="https://profiles.wordpress.org/rachelbaker/">Rachel Baker</a>, <a href="https://profiles.wordpress.org/rinkuyadav999/">Rinku Y</a>, <a href="https://profiles.wordpress.org/sergeybiryukov/">Sergey Biryukov</a>, and <a href="https://profiles.wordpress.org/westonruter/">Weston Ruter</a>.﻿<strong></strong><br /></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:4:"5376";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:33:"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"The Month in WordPress: December 2017";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2018/01/the-month-in-wordpress-december-2017/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 03 Jan 2018 10:00:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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=5424";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:311:"Activity slowed down in December in the WordPress community, particularly in the last two weeks. However, the month started off with a big event and work pushed forward in a number of key areas of the project. Read on to find out more about what transpired in the WordPress community as 2017 came to a [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Hugh Lashbrooke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:4711:"<p>Activity slowed down in December in the WordPress community, particularly in the last two weeks. However, the month started off with a big event and work pushed forward in a number of key areas of the project. Read on to find out more about what transpired in the WordPress community as 2017 came to a close.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>WordCamp US 2017 Brings the Community Together</h2>\n\n<p>The latest edition of <a href="https://2017.us.wordcamp.org/">WordCamp US</a> took place last month in Nashville on December 1-3. The event brought together over 1,400 WordPress enthusiasts from around the world, fostering a deeper, more engaged global community.</p>\n\n<p>While attending a WordCamp is always a unique experience, you can catch up on <a href="https://wordpress.tv/event/wordcamp-us-2017/">the sessions on WordPress.tv</a> and look through <a href="https://www.facebook.com/pg/WordCampUSA/photos/?tab=albums">the event photos on Facebook</a> to get a feel for how it all happened. Of course, <a href="https://wordpress.tv/2017/12/04/matt-mullenweg-state-of-the-word-2017/">Matt Mullenweg’s State of the Word</a> talk is always one of the highlights at this event.</p>\n\n<p>The next WordCamp US will be held in Nashville again in 2018, but if you would like to see it hosted in your city in 2019 and 2020, then <a href="https://make.wordpress.org/community/2017/12/19/apply-to-host-wordcamp-us-2019-2020/">you have until February 2 to apply</a>.</p>\n\n<h2>WordPress User Survey Data Is Published</h2>\n\n<p>Over the last few years, tens of thousands of WordPress users all over the world have filled out the annual WordPress user survey. The results of that survey are used to improve the WordPress project, but that data has mostly remained private. This has changed now and <a href="https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/">the results from the last three surveys are now publicly available</a> for everyone to analyze.</p>\n\n<p>The data will be useful to anyone involved in WordPress since it provides a detailed look at who uses WordPress and what they do with it — information that can help inform product development decisions across the board.</p>\n\n<h2>New WordPress.org Team for the Tide Project</h2>\n\n<p>As announced at WordCamp US, <a href="https://make.wordpress.org/tide/2017/12/02/new-home/">the Tide project is being brought under the WordPress.org umbrella</a> to be managed and developed by the community.</p>\n\n<p>Tide is a series of automated tests run against every plugin and theme in the directory to help WordPress users make informed decisions about the plugins and themes that they choose to install.</p>\n\n<p>To get involved in developing Tide, jump into the #tide channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>, and follow <a href="https://make.wordpress.org/tide/">the Tide team blog</a>.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li>If you’re following the development of Gutenberg, or if you want a primer on where it’s headed, then <a href="https://wordpress.tv/2017/12/10/morten-rand-hendriksen-gutenberg-and-the-wordpress-of-tomorrow/">Morten Rand-Hendriksen’s talk from WordCamp US</a> is a must watch.</li>\n    <li>The annual surveys for WordPress <a href="https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-member-survey">meetup members</a> and <a href="https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-organizer-survey">meetup organizers</a> are available for people to fill out — if you’re involved in or attend your local meetup group then be sure to complete those.</li>\n    <li>10up has <a href="https://distributorplugin.com/">a brand new plugin in beta</a> that will assist with powerful and flexible content publishing and syndication across WordPress sites.</li>\n    <li><a href="https://make.wordpress.org/community/2017/12/07/should-we-change-the-default-wordcamp-theme-to-campsite-2017/">The Community Team is exploring a move</a> to make the recently developed CampSite theme the default theme for all new WordCamp websites. This is the theme that was developed and employed for <a href="https://2017.europe.wordcamp.org">WordCamp Europe 2017</a>.</li>\n    <li>The team working on the multisite features of WordPress Core has recently published <a href="https://make.wordpress.org/core/2017/12/19/multisite-roadmap-published/">their planned roadmap for development</a>.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href="https://make.wordpress.org/community/month-in-wordpress-submissions/">submit it here</a>.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:4:"5424";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:39:"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:40:"WordPress User Survey Data for 2015-2017";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Dec 2017 21:40:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s: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:6:"WrapUp";s: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:6:"survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=5310";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:321:"For many years, we&#8217;ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual State of the Word address. This year, for the first time, the results of the 2017 survey are being published on WordPress [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Andrea Middleton";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:64131:"<p>For many years, we&#8217;ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual <a href="https://ma.tt/2017/12/state-of-the-word-2017/">State of the Word</a> address. This year, for the first time, the results of the 2017 survey are being published on WordPress News, along with the results of the 2015 and 2016 survey.</p>\n<p>So that information from the survey doesn&#8217;t reveal anything that respondents might consider private, we do not publish a full export of the raw data. We’d love to make this information as accessible as possible, though, so if you have a suggestion for an OS project or tool we can put the data into that allows people to play with it that still protects individual response privacy, please leave a comment on this post!</p>\n<h4>Major Groups</h4>\n<p>This survey features multiple groups, dividing respondents at the first question:</p>\n<blockquote><p>Which of the following best describes how you use WordPress? (<em>Mandatory</em>)</p></blockquote>\n<p>Those who selected &#8220;I&#8217;m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, or other custom work.)&#8221; were served questions from what we&#8217;ll call the &#8220;WordPress Professionals&#8221; group.</p>\n<p>This &#8220;WordPress Professionals&#8221; group is further divided into WordPress Company and WordPress Freelancer/Hobbyist groups, based on how the respondent answered the question, &#8220;Which of the following best describes your involvement with WordPress? (2015) / Do you work for a company, or on your own? (2016-17).&#8221;</p>\n<p>Those who selected &#8220;I own, run, or contribute to a blog or website that is built with WordPress.&#8221; were served questions in what we&#8217;re calling the &#8220;WordPress Users&#8221; group.</p>\n<p>The relevant survey group is noted in each table below. In the case of questions that were served to different groups in 2015 but then served to all respondents in 2016 and 2017, the group responses from 2015 have been consolidated into one set of data for easier comparison between years.</p>\n<h4>Survey results</h4>\n<p><a href="#pro">Jump to answers from WordPress Professionals</a></p>\n<p><a href="#user">Jump to answers from WordPress Users</a></p>\n<p><a href="#all">Jump to answers from All Respondents</a></p>\n<p><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></p>\n<h3>Which of the following best describes how you use WordPress? (Mandatory)</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="51" />\n<col width="47" />\n<col width="51" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td>Number of responses (since this question was mandatory, the number of responses here is the total number for the survey)</td>\n<td>45,995</td>\n<td></td>\n<td>15,585</td>\n<td></td>\n<td>16,029</td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, other custom work.)</td>\n<td>26,662</td>\n<td>58%</td>\n<td>8,838</td>\n<td>57%</td>\n<td>9,099</td>\n<td>57%</td>\n</tr>\n<tr>\n<td>I own, run, or contribute to a blog or website that is built with WordPress.</td>\n<td>16,130</td>\n<td>35%</td>\n<td>5,293</td>\n<td>34%</td>\n<td>5,625</td>\n<td>35%</td>\n</tr>\n<tr>\n<td>Neither of the above.</td>\n<td>3,204</td>\n<td>7%</td>\n<td>1,460</td>\n<td>9%</td>\n<td>1,306</td>\n<td>8%</td>\n</tr>\n</tbody>\n</table>\n<h2 id="pro">WordPress Professionals</h2>\n<h3><strong>Which of the following best describes your involvement with WordPress? (Mandatory, 2015) / Do you work for a company, or on your own? (Mandatory, 2016-17)</strong></h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>26,699</td>\n<td></td>\n<td>8,838</td>\n<td></td>\n<td>9,101</td>\n<td></td>\n</tr>\n<tr>\n<td>My primary job is working for a company or organization that uses WordPress.</td>\n<td>9,505</td>\n<td>36%</td>\n<td>3,529</td>\n<td>40%</td>\n<td>3,660</td>\n<td>40%</td>\n</tr>\n<tr>\n<td>My primary job is as a self-employed designer or developer that uses WordPress.</td>\n<td>9,310</td>\n<td>35%</td>\n<td>3,188</td>\n<td>36%</td>\n<td>3,440</td>\n<td>38%</td>\n</tr>\n<tr>\n<td>I earn money from part-time or occasional freelance work involving WordPress.</td>\n<td>5,954</td>\n<td>22%</td>\n<td>1,633</td>\n<td>18%</td>\n<td>1,590</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>Work that I do involving WordPress is just a hobby, I don&#8217;t make money from it.</td>\n<td>1,930</td>\n<td>7%</td>\n<td>491</td>\n<td>6%</td>\n<td>411</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>How does your company or organization work with WordPress?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,342</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations.</td>\n<td>7,772</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or customize themes.</td>\n<td>5,404</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for my own use.</td>\n<td>4,733</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Host websites for customers.</td>\n<td>4,397</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or distribute plugins.</td>\n<td>3,181</td>\n<td>11%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress.</td>\n<td>1,349</td>\n<td>5%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps.</td>\n<td>1,127</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core.</td>\n<td>914</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>182</td>\n<td> 1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,457</td>\n<td></td>\n<td>3,598</td>\n<td></td>\n</tr>\n<tr>\n<td>We make websites for others.</td>\n<td></td>\n<td></td>\n<td>2,695</td>\n<td>24%</td>\n<td>2,722</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>We make websites for ourselves.</td>\n<td></td>\n<td></td>\n<td>2,355</td>\n<td>21%</td>\n<td>2,470</td>\n<td>21%</td>\n</tr>\n<tr>\n<td>We develop or customize themes.</td>\n<td></td>\n<td></td>\n<td>1,866</td>\n<td>16%</td>\n<td>1,910</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>We host websites for others.</td>\n<td></td>\n<td></td>\n<td>1,564</td>\n<td>14%</td>\n<td>1,595</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>We develop or distribute plugins.</td>\n<td></td>\n<td></td>\n<td>1,283</td>\n<td>11%</td>\n<td>1,342</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>We provide educational resources to help others to use WordPress.</td>\n<td></td>\n<td></td>\n<td>581</td>\n<td>5%</td>\n<td>631</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We sponsor and/or attend WordCamps.</td>\n<td></td>\n<td></td>\n<td>561</td>\n<td>5%</td>\n<td>579</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We contribute bug reports and/or patches to WordPress core.</td>\n<td></td>\n<td></td>\n<td>444</td>\n<td>4%</td>\n<td>468</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>98</td>\n<td>1%</td>\n<td>96</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How would you describe the business of your typical client(s)? (2015) / How would you describe the business of your typical client/customer? (2016, 2017)</strong></p>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,154</td>\n<td></td>\n<td>3,317</td>\n<td></td>\n<td>3,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>6,893</td>\n<td>32%</td>\n<td>2,398</td>\n<td>31%</td>\n<td>2,510</td>\n<td>31%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>3,635</td>\n<td>17%</td>\n<td>1,361</td>\n<td>18%</td>\n<td>1,447</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>2,644</td>\n<td>12%</td>\n<td>934</td>\n<td>12%</td>\n<td>992</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>2,600</td>\n<td>12%</td>\n<td>888</td>\n<td>12%</td>\n<td>1,022</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>2,344</td>\n<td>11%</td>\n<td>854</td>\n<td>11%</td>\n<td>966</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>2,065</td>\n<td>10%</td>\n<td>637</td>\n<td>8%</td>\n<td>677</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,410</td>\n<td>6%</td>\n<td>524</td>\n<td>7%</td>\n<td>552</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>127</td>\n<td>1%</td>\n<td>66</td>\n<td>1%</td>\n<td>64</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How does your company or organization use WordPress when developing websites? (2015) / When making websites, how does your company or organization use WordPress? (2016, 2017)</strong></p>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,078</td>\n<td></td>\n<td>3,369</td>\n<td></td>\n<td>3,552</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>6,361</td>\n<td>70%</td>\n<td>2,482</td>\n<td>74%</td>\n<td>2,640</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>1,222</td>\n<td>13%</td>\n<td>370</td>\n<td>11%</td>\n<td>383</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>721</td>\n<td>8%</td>\n<td>137</td>\n<td>4%</td>\n<td>129</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>629</td>\n<td>7%</td>\n<td>303</td>\n<td>9%</td>\n<td>303</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>145</td>\n<td>2%</td>\n<td>78</td>\n<td>2%</td>\n<td>97</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,054</td>\n<td></td>\n<td>3,302</td>\n<td></td>\n<td>3,473</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>5,651</td>\n<td>62%</td>\n<td>2,025</td>\n<td>61%</td>\n<td>2,105</td>\n<td>61%</td>\n</tr>\n<tr>\n<td>There&#8217;s a different theme and some plugins have been added.</td>\n<td>2,230</td>\n<td>25%</td>\n<td>799</td>\n<td>24%</td>\n<td>905</td>\n<td>26%</td>\n</tr>\n<tr>\n<td>Not at all, it&#8217;s still pretty much the same as the original download.</td>\n<td>756</td>\n<td>8%</td>\n<td>302</td>\n<td>9%</td>\n<td>298</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>You&#8217;d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>417</td>\n<td>5%</td>\n<td>177</td>\n<td>5%</td>\n<td>165</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly how many currently active WordPress sites has your company or organization built?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="51" />\n<col width="47" />\n<col width="51" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,801</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>1,074</td>\n<td>12%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 &#8211; 200</td>\n<td>1,721</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 &#8211; 50</td>\n<td>1,718</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 &#8211; 20</td>\n<td>1,284</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 &#8211; 10</td>\n<td>1,109</td>\n<td>13%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 &#8211; 5</td>\n<td>1,418</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>390</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>87</td>\n<td>1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,358</td>\n<td></td>\n<td>3,540</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>291</td>\n<td>9%</td>\n<td>331</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>770</td>\n<td>23%</td>\n<td>894</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>1,144</td>\n<td>34%</td>\n<td>1,177</td>\n<td>33%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>926</td>\n<td>28%</td>\n<td>896</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>228</td>\n<td>7%</td>\n<td>242</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many person-hours (of your company&#8217;s work) does the typical site take to complete?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="51" />\n<col width="47" />\n<col width="51" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,091</td>\n<td></td>\n<td>3,353</td>\n<td></td>\n<td>3,522</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>939</td>\n<td>10%</td>\n<td>309</td>\n<td>9%</td>\n<td>325</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>100 &#8211; 200</td>\n<td>1080</td>\n<td>12%</td>\n<td>329</td>\n<td>10%</td>\n<td>367</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 &#8211; 100</td>\n<td>1541</td>\n<td>17%</td>\n<td>527</td>\n<td>16%</td>\n<td>513</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 &#8211; 60</td>\n<td>1854</td>\n<td>20%</td>\n<td>583</td>\n<td>17%</td>\n<td>620</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>20 &#8211; 40</td>\n<td>2066</td>\n<td>23%</td>\n<td>691</td>\n<td>21%</td>\n<td>685</td>\n<td>19%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>1611</td>\n<td>18%</td>\n<td>479</td>\n<td>14%</td>\n<td>519</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>Prefer not to answer (2016, 2017)</td>\n<td></td>\n<td></td>\n<td>436</td>\n<td>13%</td>\n<td>493</td>\n<td>14%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your company or organization&#8217;s output is based around WordPress (as opposed to other platforms or software)?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="51" />\n<col width="47" />\n<col width="51" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,950</td>\n<td></td>\n<td>3,345</td>\n<td></td>\n<td>3,503</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>1,089</td>\n<td>12%</td>\n<td>438</td>\n<td>13%</td>\n<td>480</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,043</td>\n<td>12%</td>\n<td>417</td>\n<td>12%</td>\n<td>459</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>955</td>\n<td>11%</td>\n<td>367</td>\n<td>11%</td>\n<td>424</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>831</td>\n<td>9%</td>\n<td>305</td>\n<td>9%</td>\n<td>344</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>534</td>\n<td>6%</td>\n<td>246</td>\n<td>7%</td>\n<td>226</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>973</td>\n<td>11%</td>\n<td>335</td>\n<td>10%</td>\n<td>338</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>613</td>\n<td>7%</td>\n<td>245</td>\n<td>7%</td>\n<td>202</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>877</td>\n<td>10%</td>\n<td>335</td>\n<td>10%</td>\n<td>310</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>806</td>\n<td>9%</td>\n<td>242</td>\n<td>7%</td>\n<td>280</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,039</td>\n<td>12%</td>\n<td>344</td>\n<td>10%</td>\n<td>348</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>190</td>\n<td>2%</td>\n<td>72</td>\n<td>2%</td>\n<td>92</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>In which of the following ways do you work with WordPress?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>17,009</td>\n<td></td>\n<td>5,221</td>\n<td></td>\n<td>5,425</td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations</td>\n<td>15,342</td>\n<td>34%</td>\n<td>4,795</td>\n<td>34%</td>\n<td>5,064</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Develop or customize themes</td>\n<td>10,549</td>\n<td>24%</td>\n<td>2,997</td>\n<td>21%</td>\n<td>3,021</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Host websites for customers</td>\n<td>8,142</td>\n<td>18%</td>\n<td>2,466</td>\n<td>17%</td>\n<td>2,728</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Develop or distribute plugins</td>\n<td>4,125</td>\n<td>9%</td>\n<td>1,395</td>\n<td>10%</td>\n<td>1,416</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress</td>\n<td>3,276</td>\n<td>7%</td>\n<td>1,187</td>\n<td>8%</td>\n<td>1,308</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps</td>\n<td>1,559</td>\n<td>4%</td>\n<td>648</td>\n<td>5%</td>\n<td>724</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core</td>\n<td>1,107</td>\n<td>2%</td>\n<td>381</td>\n<td>3%</td>\n<td>393</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>389</td>\n<td>1%</td>\n<td>243</td>\n<td>2%</td>\n<td>299</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How would you describe the business of your typical client(s)?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,863</td>\n<td></td>\n<td>5,151</td>\n<td></td>\n<td>5,353</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>14,185</td>\n<td>35%</td>\n<td>4,342</td>\n<td>35%</td>\n<td>4,622</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>8,513</td>\n<td>21%</td>\n<td>2,581</td>\n<td>21%</td>\n<td>2,583</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>6,585</td>\n<td>16%</td>\n<td>2,004</td>\n<td>16%</td>\n<td>2,113</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>4,301</td>\n<td>11%</td>\n<td>1,258</td>\n<td>10%</td>\n<td>1,216</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>3,458</td>\n<td>8%</td>\n<td>1,049</td>\n<td>8%</td>\n<td>1,139</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>2,391</td>\n<td>6%</td>\n<td>805</td>\n<td>6%</td>\n<td>857</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,150</td>\n<td>3%</td>\n<td>300</td>\n<td>2%</td>\n<td>329</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>173</td>\n<td>0%</td>\n<td>101</td>\n<td>1%</td>\n<td>99</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How do you use WordPress in your development?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,768</td>\n<td></td>\n<td>5,145</td>\n<td></td>\n<td>5,372</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>11,754</td>\n<td>70%</td>\n<td>3,641</td>\n<td>71%</td>\n<td>3,959</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>2,825</td>\n<td>17%</td>\n<td>812</td>\n<td>16%</td>\n<td>721</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>1,012</td>\n<td>6%</td>\n<td>343</td>\n<td>7%</td>\n<td>344</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>992</td>\n<td>6%</td>\n<td>246</td>\n<td>5%</td>\n<td>226</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>185</td>\n<td>1%</td>\n<td>105</td>\n<td>2%</td>\n<td>122</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,699</td>\n<td></td>\n<td>5,131</td>\n<td></td>\n<td>5,317</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>9,457</td>\n<td>57%</td>\n<td>2,837</td>\n<td>55%</td>\n<td>2,998</td>\n<td>56%</td>\n</tr>\n<tr>\n<td>There&#8217;s a different theme and some plugins have been added.</td>\n<td>5,526</td>\n<td>33%</td>\n<td>1,694</td>\n<td>33%</td>\n<td>1,781</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it&#8217;s still pretty much the same as the original download.</td>\n<td>977</td>\n<td>6%</td>\n<td>341</td>\n<td>7%</td>\n<td>310</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>You&#8217;d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>739</td>\n<td>4%</td>\n<td>261</td>\n<td>5%</td>\n<td>228</td>\n<td>4%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many currently active WordPress sites have you built? (2015) / Roughly how many currently active WordPress sites have you built? (2016, 2017)</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,690</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>514</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 &#8211; 200</td>\n<td>1,728</td>\n<td>10%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 &#8211; 50</td>\n<td>3,000</td>\n<td>18%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 &#8211; 20</td>\n<td>3,146</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 &#8211; 10</td>\n<td>3,405</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 &#8211; 5</td>\n<td>3,838</td>\n<td>23%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>698</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>361</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,165</td>\n<td></td>\n<td>5367</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>110</td>\n<td>2%</td>\n<td>104</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>603</td>\n<td>12%</td>\n<td>713</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>2,264</td>\n<td>44%</td>\n<td>2,457</td>\n<td>46%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>1,871</td>\n<td>36%</td>\n<td>1,813</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>319</td>\n<td>6%</td>\n<td>280</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your working time is spent working with WordPress?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,658</td>\n<td></td>\n<td>5,039</td>\n<td></td>\n<td>5,241</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>949</td>\n<td>6%</td>\n<td>459</td>\n<td>9%</td>\n<td>461</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,300</td>\n<td>8%</td>\n<td>527</td>\n<td>10%</td>\n<td>540</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>1,784</td>\n<td>11%</td>\n<td>637</td>\n<td>13%</td>\n<td>711</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>1,850</td>\n<td>11%</td>\n<td>608</td>\n<td>12%</td>\n<td>627</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>1,313</td>\n<td>8%</td>\n<td>438</td>\n<td>9%</td>\n<td>465</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>2,095</td>\n<td>13%</td>\n<td>612</td>\n<td>12%</td>\n<td>639</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>1,438</td>\n<td>9%</td>\n<td>391</td>\n<td>8%</td>\n<td>384</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>2,076</td>\n<td>12%</td>\n<td>530</td>\n<td>11%</td>\n<td>511</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>1,743</td>\n<td>10%</td>\n<td>445</td>\n<td>9%</td>\n<td>429</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,819</td>\n<td>11%</td>\n<td>342</td>\n<td>7%</td>\n<td>419</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>291</td>\n<td>2%</td>\n<td>52</td>\n<td>1%</td>\n<td>55</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many hours of your work does the typical site take to complete? (2015) / How many hours of work does your typical WordPress project take to launch? (2016, 2017)</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="51" />\n<col width="47" />\n<col width="51" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,670</td>\n<td></td>\n<td>5,164</td>\n<td></td>\n<td>5,378</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>503</td>\n<td>3%</td>\n<td>222</td>\n<td>4%</td>\n<td>245</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>100 &#8211; 200</td>\n<td>973</td>\n<td>6%</td>\n<td>386</td>\n<td>7%</td>\n<td>393</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>60 &#8211; 100</td>\n<td>2,277</td>\n<td>14%</td>\n<td>788</td>\n<td>15%</td>\n<td>815</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 &#8211; 60</td>\n<td>3,896</td>\n<td>23%</td>\n<td>1,153</td>\n<td>22%</td>\n<td>1,216</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>20 &#8211; 40</td>\n<td>6,068</td>\n<td>36%</td>\n<td>1,487</td>\n<td>29%</td>\n<td>1,582</td>\n<td>29%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>2,953</td>\n<td>18%</td>\n<td>712</td>\n<td>14%</td>\n<td>751</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>418</td>\n<td>8%</td>\n<td>376</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which of the following have you done with WordPress?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" /> </colgroup>\n</table>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional (Company/Freelancer/Hobbyist)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>20,687</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a theme from scratch.</td>\n<td>11,894</td>\n<td>25%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a plugin.</td>\n<td>9,719</td>\n<td>21%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;ve answered a question in the WordPress forum.</td>\n<td>8,805</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;ve attended a WordPress meetup.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;ve submitted a WordPress bug report.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;ve attended a WordCamp.</td>\n<td>3,571</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;ve contributed to WordPress documentation.</td>\n<td>1,778</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1,739</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;ve contributed a WordPress core patch.</td>\n<td>1,055</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What&#8217;s the best thing about WordPress?<a href="#text">*</a></h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>22,718</td>\n<td></td>\n<td>7,891</td>\n<td></td>\n<td>8,267</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>9,450</td>\n<td>42%</td>\n<td>3,454</td>\n<td>44%</td>\n<td>3,852</td>\n<td>47%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>8,601</td>\n<td>38%</td>\n<td>3,116</td>\n<td>39%</td>\n<td>3,555</td>\n<td>43%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>3,806</td>\n<td>17%</td>\n<td>1,211</td>\n<td>15%</td>\n<td>1,340</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>2,291</td>\n<td>10%</td>\n<td>802</td>\n<td>10%</td>\n<td>908</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>249</td>\n<td>1%</td>\n<td>86</td>\n<td>1%</td>\n<td>187</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3> What&#8217;s the most frustrating thing about WordPress?<a href="#text">*</a></h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>21,144</td>\n<td></td>\n<td>7,294</td>\n<td></td>\n<td>7,691</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins &amp; themes (abandoned/conflicts/coding standards)</td>\n<td>6,122</td>\n<td>29%</td>\n<td>2,194</td>\n<td>30%</td>\n<td>2,187</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilities/hacks</td>\n<td>2,321</td>\n<td>11%</td>\n<td>712</td>\n<td>10%</td>\n<td>829</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>1,544</td>\n<td>7%</td>\n<td>422</td>\n<td>6%</td>\n<td>508</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Nothing/I don&#8217;t know/can&#8217;t think of anything</td>\n<td>1,276</td>\n<td>6%</td>\n<td>344</td>\n<td>5%</td>\n<td>476</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Speed/performance/slow/heavy</td>\n<td>1,196</td>\n<td>6%</td>\n<td>644</td>\n<td>9%</td>\n<td>516</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not asked in the 2015 survey)</td>\n<td></td>\n<td></td>\n<td>8,672</td>\n<td></td>\n<td>9,059</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>7551</td>\n<td>87%</td>\n<td>7836</td>\n<td>87%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>754</td>\n<td>9%</td>\n<td>795</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>370</td>\n<td>4%</td>\n<td>428</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id="user">WordPress Users</h2>\n<h3>Which of the following describes how you use WordPress?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,169</td>\n<td></td>\n<td>5,043</td>\n<td></td>\n<td>5,521</td>\n<td></td>\n</tr>\n<tr>\n<td>My personal blog (or blogs) uses WordPress.</td>\n<td>9,395</td>\n<td>36%</td>\n<td>3,117</td>\n<td>36%</td>\n<td>3,424</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>My company or organization&#8217;s website is built with WordPress software.</td>\n<td>7,480</td>\n<td>29%</td>\n<td>2,519</td>\n<td>29%</td>\n<td>2,841</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>I have a hobby or side project that has a website built with WordPress.</td>\n<td>6,112</td>\n<td>23%</td>\n<td>1,973</td>\n<td>23%</td>\n<td>2,200</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>I write (or otherwise work) for an online publication that uses WordPress.</td>\n<td>2,329</td>\n<td>9%</td>\n<td>806</td>\n<td>9%</td>\n<td>821</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>872</td>\n<td>3%</td>\n<td>234</td>\n<td>3%</td>\n<td>288</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>Who installed your WordPress website?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,055</td>\n<td></td>\n<td>5,020</td>\n<td></td>\n<td>5,523</td>\n<td></td>\n</tr>\n<tr>\n<td>I did.</td>\n<td>11,216</td>\n<td>66%</td>\n<td>3,659</td>\n<td>73%</td>\n<td>4,129</td>\n<td>75%</td>\n</tr>\n<tr>\n<td>My hosting provider</td>\n<td>2,236</td>\n<td>13%</td>\n<td>667</td>\n<td>13%</td>\n<td>767</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>An external company</td>\n<td>909</td>\n<td>5%</td>\n<td>182</td>\n<td>4%</td>\n<td>178</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>An internal web person/team or a colleague</td>\n<td>874</td>\n<td>5%</td>\n<td>178</td>\n<td>4%</td>\n<td>191</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>A friend or family member</td>\n<td>787</td>\n<td>5%</td>\n<td>192</td>\n<td>4%</td>\n<td>172</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>I don&#8217;t know</td>\n<td>502</td>\n<td>3%</td>\n<td>145</td>\n<td>3%</td>\n<td>87</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>345</td>\n<td>2%</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n</tr>\n</tbody>\n</table>\n<h3>How much has the site been customized from the original WordPress installation?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,789</td>\n<td></td>\n<td>4,997</td>\n<td></td>\n<td>5,494</td>\n<td></td>\n</tr>\n<tr>\n<td>There&#8217;s a different theme and some plugins have been added.</td>\n<td>7,465</td>\n<td>50%</td>\n<td>2,337</td>\n<td>47%</td>\n<td>2,660</td>\n<td>48%</td>\n</tr>\n<tr>\n<td>A lot of work has been done, the site itself is unrecognizable from the original theme, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>4,715</td>\n<td>32%</td>\n<td>1,707</td>\n<td>34%</td>\n<td>1,872</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it&#8217;s still pretty much the same as it was when I started out.</td>\n<td>1,841</td>\n<td>12%</td>\n<td>635</td>\n<td>13%</td>\n<td>673</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>You&#8217;d never know this was a WordPress installation, everything has been customized.</td>\n<td>768</td>\n<td>5%</td>\n<td>321</td>\n<td>6%</td>\n<td>290</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>What&#8217;s the best thing about WordPress?<a href="#text">*</a></h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,328</td>\n<td></td>\n<td>4,613</td>\n<td></td>\n<td>5,076</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>7,391</td>\n<td>52%</td>\n<td>2,276</td>\n<td>49%</td>\n<td>2,511</td>\n<td>49%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>4,219</td>\n<td>29%</td>\n<td>1,569</td>\n<td>34%</td>\n<td>1,632</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>1,586</td>\n<td>11%</td>\n<td>493</td>\n<td>11%</td>\n<td>538</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>1,085</td>\n<td>8%</td>\n<td>388</td>\n<td>8%</td>\n<td>458</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>223</td>\n<td>2%</td>\n<td>74</td>\n<td>2%</td>\n<td>48</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>What&#8217;s the most frustrating thing about WordPress?<a href="#text">*</a></h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>13,681</td>\n<td></td>\n<td>4,287</td>\n<td></td>\n<td>4,758</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins &amp; themes (abandoned/conflicts/coding standards)</td>\n<td>2,531</td>\n<td>19%</td>\n<td>1,183</td>\n<td>28%</td>\n<td>1,300</td>\n<td>27%</td>\n</tr>\n<tr>\n<td>Customization/design/look/template</td>\n<td>1,273</td>\n<td>9%</td>\n<td>381</td>\n<td>9%</td>\n<td>408</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Code/coding/PHP</td>\n<td>931</td>\n<td>7%</td>\n<td>306</td>\n<td>7%</td>\n<td>277</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>926</td>\n<td>7%</td>\n<td>209</td>\n<td>5%</td>\n<td>296</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilites/hacks</td>\n<td>785</td>\n<td>6%</td>\n<td>255</td>\n<td>6%</td>\n<td>292</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="51" />\n<col width="47" />\n<col width="51" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,026</td>\n<td></td>\n<td>5,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>4,038</td>\n<td>80%</td>\n<td>4,462</td>\n<td>81%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>737</td>\n<td>15%</td>\n<td>782</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>5%</td>\n<td>255</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id="all">All Respondents</h2>\n<h3>Can you (truthfully!) say &#8220;I make my living from WordPress&#8221;?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,236</td>\n<td></td>\n<td>14,906</td>\n<td></td>\n<td>15,616</td>\n<td></td>\n</tr>\n<tr>\n<td>Not really, but I do get some or all of my income as a result of working with WordPress.</td>\n<td>16,607</td>\n<td>39%</td>\n<td>5,408</td>\n<td>36%</td>\n<td>5,702</td>\n<td>37%</td>\n</tr>\n<tr>\n<td>Yes.</td>\n<td>9,635</td>\n<td>23%</td>\n<td>4,791</td>\n<td>32%</td>\n<td>5,033</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>No.</td>\n<td>15,995</td>\n<td>38%</td>\n<td>4,713</td>\n<td>32%</td>\n<td>4,882</td>\n<td>31%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which devices do you access WordPress on?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,433</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Web</td>\n<td>40,503</td>\n<td>95%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android phone</td>\n<td>15,396</td>\n<td>36%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPhone</td>\n<td>12,353</td>\n<td>29%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPad</td>\n<td>11,748</td>\n<td>28%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android tablet</td>\n<td>9,223</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Desktop app, like MarsEdit</td>\n<td>6,018</td>\n<td>14%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1837</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not broken out by group in 2016-2017)</td>\n<td></td>\n<td></td>\n<td>14,840</td>\n<td></td>\n<td>15,597</td>\n<td></td>\n</tr>\n<tr>\n<td>Web browser on a desktop or laptop</td>\n<td></td>\n<td></td>\n<td>14,160</td>\n<td>54%</td>\n<td>15,052</td>\n<td>55%</td>\n</tr>\n<tr>\n<td>Web browser on a mobile device (tablet or phone)</td>\n<td></td>\n<td></td>\n<td>7,952</td>\n<td>30%</td>\n<td>8,248</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>An app on a mobile device (table or phone)</td>\n<td></td>\n<td></td>\n<td>3,309</td>\n<td>13%</td>\n<td>3,311</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>A desktop app like MarsEdit</td>\n<td></td>\n<td></td>\n<td>517</td>\n<td>2%</td>\n<td>498</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>282</td>\n<td>1%</td>\n<td>240</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress now updates minor &amp; security releases automatically for you. Check all that apply: (question not asked in 2016, 2017)</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="36" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups)</td>\n<td>39,726</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I love auto-updates.</td>\n<td>17,367</td>\n<td>44%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;d like to see auto-updates for plugins.</td>\n<td>12,796</td>\n<td>32%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Initially, I was nervous about auto updates.</td>\n<td>11,868</td>\n<td>30%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates still make me nervous.</td>\n<td>10,809</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates don&#8217;t make me nervous now.</td>\n<td>10,708</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;d like to see auto-updates for themes.</td>\n<td>10,449</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I&#8217;d like to see auto updates for major versions of WordPress.</td>\n<td>10,225</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>This is the first I&#8217;ve heard of auto-updates.</td>\n<td>8,660</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I hate auto-updates.</td>\n<td>3,293</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What is your gender?<a href="#text">*</a></h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="51" />\n<col width="47" />\n<col width="51" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>13,953</td>\n<td></td>\n<td>14,680</td>\n<td></td>\n</tr>\n<tr>\n<td>Male</td>\n<td></td>\n<td></td>\n<td>10,978</td>\n<td>78.68%</td>\n<td>11,570</td>\n<td>78.81%</td>\n</tr>\n<tr>\n<td>Female</td>\n<td></td>\n<td></td>\n<td>2,340</td>\n<td>16.77%</td>\n<td>2,511</td>\n<td>21.70%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>601</td>\n<td>4.31%</td>\n<td>562</td>\n<td>3.83%</td>\n</tr>\n<tr>\n<td>Transgender</td>\n<td></td>\n<td></td>\n<td>11</td>\n<td>0.08%</td>\n<td>8</td>\n<td>0.05%</td>\n</tr>\n<tr>\n<td>Nonbinary</td>\n<td></td>\n<td></td>\n<td>8</td>\n<td>0.06%</td>\n<td>17</td>\n<td>0.12%</td>\n</tr>\n<tr>\n<td>Genderqueer</td>\n<td></td>\n<td></td>\n<td>4</td>\n<td>0.03%</td>\n<td>3</td>\n<td>0.02%</td>\n</tr>\n<tr>\n<td>Androgynous</td>\n<td></td>\n<td></td>\n<td>6</td>\n<td>0.04%</td>\n<td>5</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Fluid</td>\n<td></td>\n<td></td>\n<td>3</td>\n<td>0.02%</td>\n<td>4</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Demimale</td>\n<td></td>\n<td></td>\n<td>2</td>\n<td>0.01%</td>\n<td>0</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n<h3>Where are you located?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="51" />\n<col width="47" />\n<col width="51" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>14,562</td>\n<td></td>\n<td>15,343</td>\n<td></td>\n</tr>\n<tr>\n<td>United States</td>\n<td></td>\n<td></td>\n<td>3,770</td>\n<td>25.89%</td>\n<td>4,067</td>\n<td>26.51%</td>\n</tr>\n<tr>\n<td>India</td>\n<td></td>\n<td></td>\n<td>1,456</td>\n<td>10.00%</td>\n<td>1,424</td>\n<td>9.28%</td>\n</tr>\n<tr>\n<td>United Kingdom</td>\n<td></td>\n<td></td>\n<td>810</td>\n<td>5.56%</td>\n<td>900</td>\n<td>5.87%</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td></td>\n<td></td>\n<td>555</td>\n<td>3.81%</td>\n<td>729</td>\n<td>4.75%</td>\n</tr>\n<tr>\n<td>Canada</td>\n<td></td>\n<td></td>\n<td>511</td>\n<td>3.51%</td>\n<td>599</td>\n<td>3.90%</td>\n</tr>\n<tr>\n<td>Australia</td>\n<td></td>\n<td></td>\n<td>389</td>\n<td>2.67%</td>\n<td>460</td>\n<td>3.00%</td>\n</tr>\n<tr>\n<td>Italy</td>\n<td></td>\n<td></td>\n<td>298</td>\n<td>2.05%</td>\n<td>356</td>\n<td>2.32%</td>\n</tr>\n<tr>\n<td>Netherlands</td>\n<td></td>\n<td></td>\n<td>343</td>\n<td>2.36%</td>\n<td>350</td>\n<td>2.28%</td>\n</tr>\n<tr>\n<td>France</td>\n<td></td>\n<td></td>\n<td>232</td>\n<td>1.59%</td>\n<td>283</td>\n<td>1.84%</td>\n</tr>\n<tr>\n<td>Bangladesh</td>\n<td></td>\n<td></td>\n<td>257</td>\n<td>1.76%</td>\n<td>263</td>\n<td>1.71%</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td></td>\n<td></td>\n<td>271</td>\n<td>1.86%</td>\n<td>252</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Brazil</td>\n<td></td>\n<td></td>\n<td>239</td>\n<td>1.64%</td>\n<td>251</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Pakistan</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>1.74%</td>\n<td>240</td>\n<td>1.56%</td>\n</tr>\n<tr>\n<td>Indonesia</td>\n<td></td>\n<td></td>\n<td>230</td>\n<td>1.58%</td>\n<td>226</td>\n<td>1.47%</td>\n</tr>\n<tr>\n<td>Iran, Islamic Republic of</td>\n<td></td>\n<td></td>\n<td>190</td>\n<td>1.30%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Sweden</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Nigeria</td>\n<td></td>\n<td></td>\n<td>196</td>\n<td>1.35%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>South Africa</td>\n<td></td>\n<td></td>\n<td>193</td>\n<td>1.33%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td></td>\n<td></td>\n<td>181</td>\n<td>1.24%</td>\n<td>151</td>\n<td>0.98%</td>\n</tr>\n<tr>\n<td>Poland</td>\n<td></td>\n<td></td>\n<td>129</td>\n<td>0.89%</td>\n<td>137</td>\n<td>0.89%</td>\n</tr>\n<tr>\n<td>Romania</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>132</td>\n<td>0.86%</td>\n</tr>\n<tr>\n<td>Switzerland</td>\n<td></td>\n<td></td>\n<td>122</td>\n<td>0.84%</td>\n<td>130</td>\n<td>0.85%</td>\n</tr>\n<tr>\n<td>Philippines</td>\n<td></td>\n<td></td>\n<td>92</td>\n<td>0.63%</td>\n<td>125</td>\n<td>0.81%</td>\n</tr>\n<tr>\n<td>China</td>\n<td></td>\n<td></td>\n<td>136</td>\n<td>0.93%</td>\n<td>123</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>122</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Ukraine</td>\n<td></td>\n<td></td>\n<td>105</td>\n<td>0.72%</td>\n<td>118</td>\n<td>0.77%</td>\n</tr>\n<tr>\n<td>Denmark</td>\n<td></td>\n<td></td>\n<td>107</td>\n<td>0.73%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Greece</td>\n<td></td>\n<td></td>\n<td>120</td>\n<td>0.82%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>109</td>\n<td>0.71%</td>\n</tr>\n<tr>\n<td>Vietnam</td>\n<td></td>\n<td></td>\n<td>101</td>\n<td>0.69%</td>\n<td>108</td>\n<td>0.70%</td>\n</tr>\n<tr>\n<td>Mexico</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>105</td>\n<td>0.68%</td>\n</tr>\n<tr>\n<td>Nepal</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>97</td>\n<td>0.63%</td>\n</tr>\n<tr>\n<td>Ireland</td>\n<td></td>\n<td></td>\n<td>72</td>\n<td>0.49%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>Israel</td>\n<td></td>\n<td></td>\n<td>78</td>\n<td>0.54%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>New Zealand</td>\n<td></td>\n<td></td>\n<td>77</td>\n<td>0.53%</td>\n<td>91</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Finland</td>\n<td></td>\n<td></td>\n<td>63</td>\n<td>0.43%</td>\n<td>90</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Turkey</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>86</td>\n<td>0.56%</td>\n</tr>\n<tr>\n<td>Malaysia</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>81</td>\n<td>0.53%</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td></td>\n<td></td>\n<td>84</td>\n<td>0.58%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Norway</td>\n<td></td>\n<td></td>\n<td>66</td>\n<td>0.45%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Argentina</td>\n<td></td>\n<td></td>\n<td>65</td>\n<td>0.45%</td>\n<td>76</td>\n<td>0.50%</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td></td>\n<td></td>\n<td>74</td>\n<td>0.51%</td>\n<td>72</td>\n<td>0.47%</td>\n</tr>\n<tr>\n<td>Japan</td>\n<td></td>\n<td></td>\n<td>61</td>\n<td>0.42%</td>\n<td>68</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Thailand</td>\n<td></td>\n<td></td>\n<td>69</td>\n<td>0.47%</td>\n<td>67</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Czech Republic</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>66</td>\n<td>0.43%</td>\n</tr>\n<tr>\n<td>Serbia</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>63</td>\n<td>0.41%</td>\n</tr>\n<tr>\n<td>Kenya</td>\n<td></td>\n<td></td>\n<td>58</td>\n<td>0.40%</td>\n<td>62</td>\n<td>0.40%</td>\n</tr>\n<tr>\n<td>Colombia</td>\n<td></td>\n<td></td>\n<td>39</td>\n<td>0.27%</td>\n<td>59</td>\n<td>0.38%</td>\n</tr>\n<tr>\n<td>Egypt</td>\n<td></td>\n<td></td>\n<td>40</td>\n<td>0.27%</td>\n<td>52</td>\n<td>0.34%</td>\n</tr>\n</tbody>\n</table>\n<h3>What is your age?</h3>\n<table dir="ltr" border="1" cellspacing="0" cellpadding="0">\n<colgroup>\n<col width="554" />\n<col width="47" />\n<col width="36" />\n<col width="47" />\n<col width="51" />\n<col width="47" />\n<col width="51" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2015</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2016</strong></td>\n<td style="text-align: center" colspan="2" rowspan="1"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (This question was not asked in 2015.)</td>\n<td></td>\n<td></td>\n<td>14,944</td>\n<td></td>\n<td>15,636</td>\n<td></td>\n</tr>\n<tr>\n<td>60 and over</td>\n<td></td>\n<td></td>\n<td>1,139</td>\n<td>8%</td>\n<td>1,641</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>50-59</td>\n<td></td>\n<td></td>\n<td>1,537</td>\n<td>10%</td>\n<td>1,996</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>40-49</td>\n<td></td>\n<td></td>\n<td>2,205</td>\n<td>15%</td>\n<td>2,643</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>30-39</td>\n<td></td>\n<td></td>\n<td>3,914</td>\n<td>26%</td>\n<td>3,972</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>20-29</td>\n<td></td>\n<td></td>\n<td>5,013</td>\n<td>34%</td>\n<td>4,444</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Under 20</td>\n<td></td>\n<td></td>\n<td>1142</td>\n<td>8%</td>\n<td>941</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<p>Thank you to everyone who made time to fill out the survey &#8212; we&#8217;re so happy you use WordPress, and we&#8217;re very grateful that you&#8217;re willing to share your experiences with us! Thanks also to everyone who spread the word about this survey, and to those of you who read all the way to the bottom of this post. <img src="https://s.w.org/images/core/emoji/2.4/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>\n<p><small><a id="text"></a>*Text Field Questions: Each survey included some questions that could be answered only by filling out a text field. In the case of the questions &#8220;What is the best thing about WordPress?&#8221; and &#8220;What is the most frustrating thing about WordPress?&#8221; we listed the five most common responses, aggregated when applicable. In the case of the question “What is your gender?” in the 2016 and 2017 surveys, we aggregated responses as best we could. Responses meant to obscure respondents’ gender entirely are aggregated in “prefer not to answer.”</small></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:"5310";s: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:33:"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"The Month in WordPress: November 2017";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2017/12/the-month-in-wordpress-november-2017/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 01 Dec 2017 11:00:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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=5290";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:354:"The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November. WordPress 4.9 “Tipton” On November 16, WordPress 4.9 was released with new features [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Hugh Lashbrooke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:4197:"<p>The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>WordPress 4.9 “Tipton”</h2>\n\n<p>On November 16, <a href="https://wordpress.org/news/2017/11/tipton/">WordPress 4.9 was released</a> with new features for publishers and developers alike. Release highlights include design locking, scheduling, and previews in the Customizer, an even more secure and usable code editing experience, a new gallery widget, and text widget improvements.</p>\n\n<p>The follow up security and maintenance, v4.9.1, <a href="https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/">has now been released</a> to tighten up the security of WordPress as a whole.</p>\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href="https://make.wordpress.org/chat/"> Making WordPress Slack group</a>, and follow<a href="https://make.wordpress.org/core/"> the Core team blog</a>.</p>\n\n<h2>Apply to Speak At WordCamp Europe 2018</h2>\n\n<p>The next edition of WordCamp Europe takes place in June, 2018. While the organizing team is still in the early stages of planning, <a href="https://2018.europe.wordcamp.org/2017/11/15/are-you-ready-to-speak-at-the-largest-wordpress-event-in-europe/">they are accepting speaker applications</a>.</p>\n\n<p>WordCamp Europe is the largest WordCamp in the world and, along with WordCamp US, one of the flagship events of the WordCamp program — speaking at this event is a great way to give back to the global WordPress community by sharing your knowledge and expertise with thousands of WordPress enthusiasts.</p>\n\n<h2>Diversity Outreach Speaker Training Initiative</h2>\n\n<p>To help WordPress community organizers offer diverse speaker lineups, <a href="https://make.wordpress.org/community/2017/11/13/call-for-volunteers-diversity-outreach-speaker-training/">a new community initiative has kicked off</a> to use existing <a href="https://make.wordpress.org/training/handbook/speaker-training/">speaker training workshops</a> to demystify speaking requirements and help participants gain confidence in their ability to share their WordPress knowledge in a WordCamp session.</p>\n\n<p>The working group behind this initiative will be meeting regularly to discuss and plan how they can help local communities to train speakers for WordCamps and other events.</p>\n\n<p>To get involved in this initiative, you can join the meetings at 5pm UTC every other Wednesday in the #community-team channel of the<a href="https://make.wordpress.org/chat/"> Making WordPress Slack group</a>.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li><a href="https://2017.us.wordcamp.org/">WordCamp US 2017</a> is happening on December 1-3 in Nashville, with the annual State of the Word talk happening on Saturday afternoon — <a href="https://2017.us.wordcamp.org/live-stream/">the live stream of the entire event is available to view for free</a>.</li>\n    <li><a href="https://xwp.co/tide-a-path-to-better-code-across-the-wordpress-ecosystem/">Tide</a>, a new service from XWP designed to help users make informed plugin choices, is due to launch at WordCamp US.</li>\n    <li>Gutenberg development is continuing rapidly, with <a href="https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/">a packed new release</a> and a focus on <a href="https://make.wordpress.org/test/2017/11/22/testing-flow-in-gutenberg/">usability testing</a>.</li>\n    <li>After some discussion among the community, <a href="https://make.wordpress.org/community/2017/11/10/discussion-micro-regional-wordcamps/">a new type of micro-regional WordCamp</a> is going to be introduced into the global WordCamp program.</li>\n</ul>\n\n<p><em></em></p>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href="https://make.wordpress.org/community/month-in-wordpress-submissions/">submit it here</a>.</em></p>\n\n<p><em></em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:4:"5290";s: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:36:"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WordPress 4.9.1 Security and Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Nov 2017 20:33:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=5215";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:359:"WordPress 4.9.1 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team&#x27;s [&#8230;]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"John Blackbourn";s: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:4268:"<p>WordPress 4.9.1 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n<p>WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team&#x27;s ongoing commitment to security hardening, the following fixes have been implemented in 4.9.1:</p>\n\n<ol>\n    <li>Use a properly generated hash for the <code>newbloguser</code> key instead of a determinate substring.</li>\n    <li>Add escaping to the language attributes used on <code>html</code> elements.</li>\n    <li>Ensure the attributes of enclosures are correctly escaped in RSS and Atom feeds.</li>\n    <li>Remove the ability to upload JavaScript files for users who do not have the <code>unfiltered_html</code> capability.</li>\n</ol>\n\n<p>Thank you to the reporters of these issues for practicing <a href="https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/">responsible security disclosure</a>: <a href="https://twitter.com/0x62626262">Rahul Pratap Singh</a> and John Blackbourn.</p>\n\n<p>Eleven other bugs were fixed in WordPress 4.9.1. Particularly of note were:</p>\n\n<ul>\n    <li>Issues relating to the caching of theme template files.</li>\n    <li>A MediaElement JavaScript error preventing users of certain languages from being able to upload media files.</li>\n    <li>The inability to edit theme and plugin files on Windows based servers.</li>\n</ul>\n\n<p><a href="https://make.wordpress.org/core/2017/11/28/wordpress-4-9-1-scheduled-for-november-29th/">This post has more information about all of the issues fixed in 4.9.1 if you&#x27;d like to learn more</a>.</p>\n\n<p><a href="https://wordpress.org/download/">Download WordPress 4.9.1</a> or venture over to Dashboard → Updates and click &quot;Update Now.&quot; Sites that support automatic background updates are already beginning to update automatically.</p>\n\n<p>Thank you to everyone who contributed to WordPress 4.9.1:</p>\n\n<p><a href="https://profiles.wordpress.org/schlessera/">Alain Schlesser</a>, <a href="https://profiles.wordpress.org/afercia/">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/la-geek/">Angelika Reisiger</a>, <a href="https://profiles.wordpress.org/blobfolio/">Blobfolio</a>, <a href="https://profiles.wordpress.org/bobbingwide/">bobbingwide</a>, <a href="https://profiles.wordpress.org/chetan200891/">Chetan Prajapati</a>, <a href="https://profiles.wordpress.org/dd32/">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90/">Dominik Schilling (ocean90)</a>, <a href="https://profiles.wordpress.org/edo888/">edo888</a>, <a href="https://profiles.wordpress.org/erich_k4wp/">Erich Munz</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/pento/">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/ibenic/">Igor Benic</a>, <a href="https://profiles.wordpress.org/jfarthing84/">Jeff Farthing</a>, <a href="https://profiles.wordpress.org/jbpaul17/">Jeffrey Paul</a>, <a href="https://profiles.wordpress.org/jeremyescott/">jeremyescott</a>, <a href="https://profiles.wordpress.org/joemcgill/">Joe McGill</a>, <a href="https://profiles.wordpress.org/johnbillion/">John Blackbourn</a>, <a href="https://profiles.wordpress.org/johnpgreen/">johnpgreen</a>, <a href="https://profiles.wordpress.org/ryelle/">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/lenasterg/">lenasterg</a>, <a href="https://profiles.wordpress.org/clorith/">Marius L. J.</a>, <a href="https://profiles.wordpress.org/melchoyce/">Mel Choyce</a>, <a href="https://profiles.wordpress.org/mariovalney/">Mário Valney</a>, <a href="https://profiles.wordpress.org/natacado/">natacado</a>, <a href="https://profiles.wordpress.org/odysseygate/">odyssey</a>, <a href="https://profiles.wordpress.org/precies/">precies</a>, <a href="https://profiles.wordpress.org/stodorovic/">Saša</a>, <a href="https://profiles.wordpress.org/sergeybiryukov/">Sergey Biryukov</a>, and <a href="https://profiles.wordpress.org/westonruter/">Weston Ruter</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:4:"5215";s: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:"Wed, 14 Mar 2018 23:12:24 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:"Thu, 01 Mar 2018 08:41:16 GMT";s:4:"link";s:63:"<https://wordpress.org/news/wp-json/>; rel="https://api.w.org/"";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:9:"HIT ord 1";}}s:5:"build";s:14:"20130911040210";}', 'no'),
 (818, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1521112345', 'no'),
 (819, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1521069145', 'no'),
 (820, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1521112346', 'no'),
 (821, '_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:11:"\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:63:"HeroPress: A look back: Tamsin Taylor, Freedom Through Blogging";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://heropress.com/?p=2484";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:167:"https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/#utm_source=rss&utm_medium=rss&utm_campaign=a-look-back-tamsin-taylor-freedom-through-blogging";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3461:"<img width="960" height="480" src="https://heropress.com/wp-content/uploads/2016/10/100516-2-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: We cannot know the end of any journey until we find ourselves there." /><p>In August of 2016 I saw <a href="https://wordpress.tv/2016/08/09/tamsin-taylor-a-heros-journey/">a WordCamp talk on WordPress.tv</a> called &#8220;A Hero&#8217;s Journey&#8221;, and I thought that seemed like something I should know a lot more about.  A short time later I was speaking with Tamsin Taylor on Slack.</p>\n<p><img class="aligncenter wp-image-2485 size-full" src="https://heropress.com/wp-content/uploads/2018/03/Screen-Shot-2018-03-14-at-8.46.22-AM.png" alt="A greeting conversation" width="356" height="201" /></p>\n<p>I love telling stories, but I love hearing them more. Tamsin told me a story grief and loss, and how WordPress provided an outlet for those feelings. I hope her story resonates with you as well.</p>\n<blockquote class="wp-embedded-content"><p><a href="https://heropress.com/essays/bumpy-journey-becoming/">The Bumpy Journey of Becoming</a></p></blockquote>\n<p></p>\n<div class="rtsocial-container rtsocial-container-align-right rtsocial-horizontal"><div class="rtsocial-twitter-horizontal"><div class="rtsocial-twitter-horizontal-button"><a title="Tweet: A look back: Tamsin Taylor, Freedom Through Blogging" class="rtsocial-twitter-button" href="https://twitter.com/share?text=A%20look%20back%3A%20Tamsin%20Taylor%2C%20Freedom%20Through%20Blogging&via=heropress&url=https%3A%2F%2Fheropress.com%2Fa-look-back-tamsin-taylor-freedom-through-blogging%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: A look back: Tamsin Taylor, Freedom Through Blogging" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fa-look-back-tamsin-taylor-freedom-through-blogging%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-linkedin-horizontal"><div class="rtsocial-linkedin-horizontal-button"><a class="rtsocial-linkedin-button" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fa-look-back-tamsin-taylor-freedom-through-blogging%2F&title=A+look+back%3A+Tamsin+Taylor%2C+Freedom+Through+Blogging" rel="nofollow" target="_blank" title="Share: A look back: Tamsin Taylor, Freedom Through Blogging"></a></div></div><div class="rtsocial-pinterest-horizontal"><div class="rtsocial-pinterest-horizontal-button"><a class="rtsocial-pinterest-button" href="https://pinterest.com/pin/create/button/?url=https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/&media=https://heropress.com/wp-content/uploads/2016/10/100516-2-150x150.jpg&description=A look back: Tamsin Taylor, Freedom Through Blogging" rel="nofollow" target="_blank" title="Pin: A look back: Tamsin Taylor, Freedom Through Blogging"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/" title="A look back: Tamsin Taylor, Freedom Through Blogging"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/">A look back: Tamsin Taylor, Freedom Through Blogging</a> appeared first on <a rel="nofollow" href="https://heropress.com">HeroPress</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 14 Mar 2018 12:46: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:"";}}}}}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:98:"WPTavern: Stack Overflow Survey Respondents Still Rank WordPress Among the Most Dreadful Platforms";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78278";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:109:"https://wptavern.com/stack-overflow-survey-respondents-still-rank-wordpress-among-the-most-dreadful-platforms";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2902:"<p><a href="https://stackoverflow.com/">Stack Overflow</a>, a Q&amp;A community for developers, has published the results of <a href="https://insights.stackoverflow.com/survey/2018/">its 2018 developer survey</a>. The survey was held between January 8th through the 28th and includes responses from 101,592 software developers from 183 countries across the world. This is nearly twice the amount of responses compared to <a href="https://insights.stackoverflow.com/survey/2017#methodology">last year&#8217;s survey</a>.</p>\n<p><a href="https://insights.stackoverflow.com/survey/2017#technology-most-loved-dreaded-and-wanted-platforms">Last year</a>, WordPress was the third most dreaded software platform behind Salesforce and SharePoint. This year, WordPress has improved in the rankings and is the sixth most dreaded platform. Respondents found Windows Phone, Mainframe, Salesforce, Drupal, and SharePoint to be more dreadful.</p>\n<img />WordPress is the sixth most dreaded software platform\n<p>Despite making headway, WordPress has <a href="https://wptavern.com/stack-overflow-developer-survey-ranks-wordpress-as-the-3rd-most-dreaded-technology">consistently ranked near the top</a> in Stack Overflow&#8217;s survey for most dreadful platform. Asking developers why is probably akin to opening <a href="https://en.wikipedia.org/wiki/Pandora%27s_box">Pandora&#8217;s box</a>.</p>\n<p>JavaScript was once again the <a href="https://insights.stackoverflow.com/survey/2018/#most-popular-technologies">most popular technology</a> with HTML, CSS, and SQL following closely behind. Among the various JavaScript frameworks and libraries that exist, <a href="https://insights.stackoverflow.com/survey/2018/#technology-frameworks-libraries-and-tools">Node.js is the most commonly used</a> followed by Angular and React.</p>\n<p>The survey introduced a few new topics this year, including questions about <a href="https://insights.stackoverflow.com/survey/2018/#technology-and-society">artificial intelligence</a> and ethics. When <a href="https://insights.stackoverflow.com/survey/2018/#work-what-would-developers-do-if-asked-to-write-code-for-an-unethical-purpose">posed with a hypothetical situation</a> in which a developer was asked if they would write code for unethical purposes, more than half of the respondents said no. Also of note is that <a href="https://insights.stackoverflow.com/survey/2018/#developer-profile-contributing-to-open-source">less than half</a> of the respondents say they contribute to open source.</p>\n<p>There are a lot of interesting data points in the survey. I encourage you to <a href="https://insights.stackoverflow.com/survey/2018/#overview">check out the results</a> and let me know in the comments what sticks out to you.</p>\n<p><strong>Updated 3/14/2018</strong> Corrected to say that WordPress has improved in the rankings and is therefor, less dreadful than before.</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, 14 Mar 2018 10:08:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"WPTavern: WPCampus Scheduled for July 12-14 in St. Louis, MO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78273";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/wpcampus-scheduled-for-july-12-14-in-st-louis-mo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1138:"<p><a href="https://2018.wpcampus.org/about/">WPCampus</a>, an in-person conference dedicated to WordPress in higher education <a href="https://2018.wpcampus.org/">has announced</a> its third annual event will be held July 12-14 at <a href="https://wustl.edu/">Washington University</a> in St. Louis, MO. The <a href="https://2018.wpcampus.org/call-for-speakers/application/">call for speakers</a> is open until April 7th. The event is two months after <a href="https://2018.stlouis.wordcamp.org/">WordCamp St. Louis </a>which will also be held at Washington University.</p>\n<p>WPCampus held its first event in 2016 in Sarasota, FL, and its second in 2017 in Buffalo, NY. The schedule is not yet finalized but to get an idea on what to expect, check out the <a href="http://wpcampus.org/videos/">video presentations</a> from previous events. Organizers expect about 200 attendees and are accepting <a href="https://2018.wpcampus.org/sponsors/">sponsorship inquiries</a>.</p>\n<p>Tickets are not yet available but those interested in attending can sign up to the WPCampus mailing list where ticket information will be distributed first.</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, 13 Mar 2018 00:12: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"Post Status: Network effects and WordPress — Draft podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=44341";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://poststatus.com/network-effects-wordpress-draft-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2200:"<p>Welcome to the Post Status <a href="https://poststatus.com/category/draft">Draft podcast</a>, which you can find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a>, <a href="https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast">Google Play</a>, <a href="http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast">Stitcher</a>, and <a href="http://simplecast.fm/podcasts/1061/rss">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian and Brian discuss the power of network effects and how they relate to WordPress’ increasing market share and maturity. WordPress has recently hit two major milestones, turning 15 years old and reaching 30% market share of the top 10 million websites, and we spend this episode reflecting on the innovations that brought us here and where innovations are likely to occur over the next 10 years.</p>\n<p>We’ve come quite a long way in these 15 years. From the famous 5-minute install to being entirely pre-installed. From a supportive band of volunteers and vast ecosystem of free software to the commercially supported and highly-polished products that exist today. There is a lot about WordPress to be thankful for, and a lot of great things that will exist in the future because of it. And you can hear a bit about all of that on this episode of the Post Status Draft podcast.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href="https://medium.com/evergreen-business-weekly/the-power-of-network-effects-why-they-make-such-valuable-companies-and-how-to-harness-them-5d3fbc3659f8">The Power of Network Effects</a></li>\n<li>Mel Choice&#8217;s LoopConf presentation on <a href="https://loopconf.com/talk/customizing-the-future/">Customizing the Future</a></li>\n</ul>\n<h3>Sponsor: Yoast</h3>\n<p>Yoast SEO Premium gives you 24/7 support from a great support team and extra features such as a redirect manager, recommended internal links, tutorial videos and integration with Google Webmaster Tools! Check out <a href="https://yoast.com/">Yoast SEO Premium</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 10 Mar 2018 20:18: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:14:"Katie Richards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:79:"WPTavern: Yoast Launches Fund to Increase Speaker Diversity at Tech Conferences";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78248";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:90:"https://wptavern.com/yoast-launches-fund-to-increase-speaker-diversity-at-tech-conferences";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1421:"<p>In an effort to increase speaker diversity at conferences worldwide, the team at Yoast SEO has <a href="https://yoast.com/yoast-diversity-fund/">launched</a> a diversity fund. The fund will pledge a minimum of €25,000 each year. Its purpose is to remove the financial burdens that can cause minorities or underrepresented groups to speak at conferences.</p>\n<p>&#8220;There are WordCamps throughout the world, these are conferences about, by and for the WordPress community,&#8221; Joost de Valk said.</p>\n<p>&#8220;While we already sponsor a lot of them, they tend to not have the budget to pay for speakers’ travel and accommodation cost. The same applies to other conferences about open source, certainly those that are not commercially run. We want to take away that particular reason for not having a diverse conference.&#8221;</p>\n<p>Eligible candidates will be reimbursed €1,000 for travel and accommodations per event. In order to qualify for the fund, speakers must meet the following requirements:</p>\n<ul>\n<li>Is a part of – or identifies as part of – a typically underrepresented group.</li>\n<li>The conference is not commercial.</li>\n<li>The conference targets either the WordPress, Magento, or TYPO3 community.</li>\n<li>Has been accepted as a speaker to the conference.</li>\n</ul>\n<p>To submit an application, email diversity-fund at yoast.com where applications are reviewed within a week.</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, 09 Mar 2018 03:20:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"WPTavern: WPWeekly Episode 307 – Thirty Percent of the Web";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wptavern.com?p=78242&preview=true&preview_id=78242";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wptavern.com/wpweekly-episode-307-thirty-percent-of-the-web";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2423:"<p>In this episode, <a href="http://jjj.me">John James Jacoby</a> and I start with a continued discussion of AMP from last week. We cover the big releases of the week including Jetpack, Genesis, Yoast SEO, and Gutenberg. We discuss a new project that aims to determine Gutenberg compatible plugins, debate the terminology used to describe WordPress&#8217; market share, and a new plugin that makes WordPress updates more secure.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://make.wordpress.org/core/2018/03/02/whats-new-in-gutenberg-2nd-march/">Gutenberg 2.3, Now With Nested Blocks</a><br />\n<a href="https://studiopress.blog/genesis-2-6/">Genesis 2.6</a><br />\n<a href="https://yoast.com/yoast-seo-7-0/">Yoast SEO 7.0</a><br />\n<a href="https://jetpack.com/category/releases/">Jetpack 5.9</a><br />\n<a href="https://wptavern.com/4500-plugins-need-your-help-in-determining-gutenberg-compatibility">4,500 Plugins Need Your Help in Determining Gutenberg Compatibility</a><br />\n<a href="https://wptavern.com/new-plugin-makes-wordpress-core-updates-more-secure-by-requiring-cryptographic-signature-verification">New Plugin Makes WordPress Core Updates More Secure by Requiring Cryptographic Signature Verification</a><br />\n<a href="https://wptavern.com/wordpress-now-used-on-30-of-the-top-10-million-sites">WordPress Now Used on 30% of the Top 10 Million Sites</a></p>\n<h2>Picks of the Week:</h2>\n<p>Mel Choyce&#8217;s presentation on <a href="https://wptavern.com/conceptual-ideas-on-how-the-customizer-could-integrate-with-gutenberg">Customizing the Future</a> at LoopConf.</p>\n<p>Felix Arntz&#8217;s presentation on a Global Admin, a <a href="https://www.youtube.com/watch?v=V085zCBdRfc">deep dive into multi-network organization</a> at LoopConf.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 14th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href="https://www.wptavern.com/feed/podcast">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href="https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #307:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 Mar 2018 03:39:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:22:"Matt: Back to Blogging";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=47991";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:39:"https://ma.tt/2018/03/back-to-blogging/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:134:"<p>I really enjoyed <a href="http://tomcritchlow.com/2018/02/23/small-b-blogging/">Tom Critchlow&#x27;s post Small b blogging</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, 07 Mar 2018 22:59: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: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: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: Conceptual Ideas on How the Customizer Could Integrate With Gutenberg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78232";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:90:"https://wptavern.com/conceptual-ideas-on-how-the-customizer-could-integrate-with-gutenberg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1598:"<p>While the initial focus of Gutenberg is the editor, the second focus is the Customization experience in WordPress. <a href="https://choycedesign.com/">Mel Choyce</a>, Product Designer at Automattic, recently spoke at <a href="https://loopconf.com/">LoopConf</a>, on the <a href="https://loopconf.com/talk/customizing-the-future/">past, present, and future</a> of the customizer.</p>\n<p>Choyce begins the presentation by describing when and how the customizer was added to WordPress. Fun fact, the customizer or what was known as the Theme Customizer at the time, was added to <a href="https://wordpress.org/news/2012/06/green/">WordPress 3.4 &#8220;Green&#8221;</a> in June 2012.</p>\n<p>The session continues with Choyce showcasing new features and enhancements that have been made to the customizer since 2012. Near the 23 minute mark, Choyce shows conceptual images of what the customization experience could be like when implemented with Gutenberg.</p>\n<p>In the experimental images, you can see options to choose page templates or layouts, live previewing changes to blocks, global site styles, and a standard set of user interface patterns. The ideas presented are concepts and likely to change.</p>\n<p>Because the session was recorded with a picture-in-picture, I&#8217;m not able to provide high quality screen captures of the conceptual images. To see those items in detail, I recommend viewing the video in full-screen 1080p. You can full all of the LoopConf sessions for free via <a href="https://www.youtube.com/channel/UCAwOVsWiMdlz6snWRF2HdSQ">their YouTube channel</a>.</p>\n<p></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Mar 2018 10:17:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:30:"HeroPress: Building A New Life";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:56:"https://heropress.com/?post_type=heropress-essays&p=2480";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:112:"https://heropress.com/essays/building-a-new-life/#utm_source=rss&utm_medium=rss&utm_campaign=building-a-new-life";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:12980:"<img width="960" height="480" src="https://heropress.com/wp-content/uploads/2018/03/030718-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: Plan your business around what matters to you/" /><p>This is the story of how I co-founded Barn2 Media with my husband Andy, and scaled it from a startup to one of the UK’s best known WordPress agencies &#8211; all while working part-time.</p>\n<p>I&#8217;ll tell you about the challenges I faced in building a WordPress business that is compatible with a good work-life balance. I&#8217;ll share what I did each time the growing business started to threaten my lifestyle, and how you can do the same.</p>\n<h2>The Beginning</h2>\n<p>I had a traditional full-time job throughout my 20’s. I enjoyed building my career and earning a regular salary, but didn’t like the lack of flexibility that came with it.</p>\n<p>I didn’t like having to arrive at work by a fixed time, or being unable to choose when I worked. As a hard-working person, it felt counter-productive to be forced to work set hours when I may not be at my best.</p>\n<p>My daily commute was anything from 25-50 minutes (which I realise is less than many people). It felt like a waste of time as I could work just as well from home, not to mention the environmental impact of driving so far just to sit in an office. Day-to-day tasks such as ordering items for home delivery became a big deal, as I wasn’t home during the day.</p>\n<p>As a result, I spent most of my 20’s simultaneously building my career in a traditional job, while dreaming about running my own business and working for myself. Andy felt the same about his own job as a senior software developer.</p>\n<blockquote><p>I think that most people want a better lifestyle, but not many actually do anything about it. I thought I was one of those people.</p></blockquote>\n<p>Andy and I would talk endlessly about different business ideas (most of them terrible!) and even experimented with building a few websites that were never launched. However, we didn’t have the drive to make it happen and launch a business in the real world.</p>\n<h2>Starting a Business</h2>\n<p>In late 2009, Andy had finally had enough of his job and we agreed that it was time for him to quit. We decided to start a web design business together. He would work solely on the new business, while I would support it alongside my main job (which I didn&#8217;t hate, even though I didn&#8217;t like the lifestyle).</p>\n<p>We started by building WordPress websites for small local businesses. Andy built the websites and I was responsible for copywriting and marketing. We approached local tradespeople who didn&#8217;t already have a website &#8211; back in 2010, there were still a lot of these! Our first clients were local plumbers, electricians, a washing machine repair shop, etc.</p>\n<p>These early projects were quite low budget. The average hourly rate was quite low because we were still learning and hadn&#8217;t perfected our processes yet. We wasted a lot of time on projects where we had under-quoted but were committed to honoring the agreed price.</p>\n<blockquote><p>We made a lot of mistakes, and learned from them all!</p></blockquote>\n<p>By Year 2, the business was making the equivalent of a fairly low salary for one person. However, we had to work a lot for a relatively small income. This encouraged us to work more hours, and it wasn&#8217;t bringing the lifestyle benefits I was looking for.</p>\n<h2>Lifestyle Tip #1: Learn to Specialize</h2>\n<p>In late 2010, it occurred to me that we were building all our websites in WordPress but not advertising ourself as a WordPress company. I wondered whether people were actually searching for WordPress experts and whether this could be a good way to advertise. That may seem obvious in 2018 now WordPress is the world&#8217;s biggest web platform &#8211; but it was a genuine question back in 2010.</p>\n<p>On a whim, I invested $100 in Google AdWords targeting keywords such as &#8216;WordPress web design&#8217; and &#8216;WordPress developer&#8217;. Amazingly, we were overwhelmed with enquiries and quickly brought in over $4,000 of business &#8211; not a bad return on investment! The work came from medium sized companies who had never used our services before, with higher budgets.</p>\n<blockquote><p>Positioning ourselves as WordPress specialists completely changed the profile of our client base, as well as the budgets we were working with.</p></blockquote>\n<p>This vastly increased our average hourly income, so we were making more money without having to work more hours. Finally, it felt like a proper business with a better work-life balance.</p>\n<h2>Lifestyle Tip #2: Build a (virtual) team</h2>\n<p>The business grew quickly under its new identity as a specialist WordPress agency. By mid-2011, we had more work than we could manage ourselves. I also had a baby and increased my hours on the business while on maternity leave &#8211; eventually not returning to my old job. We still needed to increase the company&#8217;s income, while working towards the lifestyle we wanted.</p>\n<p>We grew the business to the next level by building a virtual team.</p>\n<blockquote><p>I felt quite strongly that I didn&#8217;t want to become a traditional employer with a team of staff, all working together in an office. That would bring me back to the lifestyle I started with!</p></blockquote>\n<p>Instead, I decided to recruit a team of freelancers.</p>\n<p>It took time to find the right freelancers, but the good news is that you can try someone out on a single project with no further commitment. If it doesn&#8217;t work out, then you don&#8217;t have to work with them again. Through trial and error, I built a team of freelancers with different WordPress-related skills. This increased capacity and allowed us to take on more projects without having to work more hours.</p>\n<p>I was still managing all the projects, but could take a step back and wasn&#8217;t directly building the websites. Finally, it felt like a proper WordPress agency.</p>\n<h2>Lifestyle Tip #3: Selling WordPress products</h2>\n<p>By building a distributed team, the business became more and more successful. We were taking on more and more projects, and I was managing all of them. By the time we were running 20 projects at once, I had reached the limits of my capacity and was having to work a lot of hours.</p>\n<p>From 2014-15, I experimented with working with freelance project managers, but had to give up because quality was dropping and our clients were less happy. I realised that with the current business model, I could only continue growing the business by working more and more hours. This wasn&#8217;t what I had been working towards!</p>\n<p>It was time for Andy and I to pursue our other dream: selling WordPress products. We&#8217;d been talking about this since the early days of the business, but the client projects had kept us so busy that we&#8217;d never done anything about it.</p>\n<p>In early 2016, Andy stepped out of the client business and started writing WordPress and WooCommerce plugins to sell. I continued managing client projects for the next 6 months, until the plugins were making enough money to stop taking on new projects and I could spend all my time marketing and supporting the plugins.</p>\n<blockquote><p>Selling WordPress plugins has been very successful because we already knew the market inside out from our years of developing WordPress sites.</p></blockquote>\n<p>We knew where the gaps were and what plugin customers want. We knew where other plugin companies get it wrong, and could learn from their mistakes without making the same mistakes ourselves!</p>\n<p>By launching several plugins, we could listen to what our customers were asking for and build even more. In October 2016, we launched our <a href="https://barn2.co.uk/wordpress-plugins/woocommerce-product-table/">WooCommerce Product Table plugin</a> because so many people asked for a way to list products in a table with add to cart buttons. This immediately became our bestselling plugin and has sold more than all our other plugins combined. Since then, the plugin business has gone from strength to strength.</p>\n<blockquote><p>I have found that selling WordPress products brings a much better work-life balance than providing WordPress services.</p></blockquote>\n<p>We receive (many) plugin support requests every day, but each one takes relatively little time and is less pressured than fixing problems for web design clients. The whole business feels much more relaxed, and I don&#8217;t feel guilty about taking time off.</p>\n<p>Between the two of us, we spend a couple of hours a day on plugin support. We continue improving the plugins, marketing, adding features and building the business on top of that. However, all of this is optional and can easily be done while working part-time.</p>\n<h2>Snow Day! Putting It Into Practice</h2>\n<p>Before we finish, I&#8217;ll tell you about my week. Today is Friday. At 10.30am on Wednesday, I received a text that my daughter&#8217;s school had closed for the rest of the week because of the unusual snow here in the UK.</p>\n<p>The parents with traditional jobs panicked and had to quickly arrange childcare or time-off work. Some of them were stuck in cars on snowed-in roads as they tried to return to the village. No one could get to work the next day. A lot of people lost a lot of money.</p>\n<p>Andy and I simply stopped work, put on our snow gear, walked the 10 minutes to the school, and then went sledging. Since then, we&#8217;ve been sharing the childcare in between responding to plugin support requests (and writing this article!). We&#8217;ve had 37 plugin sales on our website since the school closed, even though we&#8217;ve been working less hours than usual. Now, that&#8217;s what I&#8217;ve been working towards!</p>\n<h2>Conclusion</h2>\n<p>I&#8217;ve worked hard and have been extremely committed to building Barn2 Media. However, this has always been on the condition that it wouldn&#8217;t sacrifice my lifestyle goals.</p>\n<blockquote><p>For me, the ideal business is measured against a combination of financial success and lifestyle benefits. If the founders are working 70 hours a week to keep the money coming in, then it&#8217;s not a successful business!</p></blockquote>\n<p>You can do the same. Design a WordPress business that will give you the lifestyle you want, as well as making money. If you love working with people, build a team and provide WordPress services (WordPress design and development are good for this). If you want to travel, choose work that you can do remotely from different time zones (WordPress products are good for this). Plan your business around what matters to you.</p>\n<p>WordPress is such a huge ecosystem that it comes with many opportunities to build a successful business. With a bit of extra thought and planning, you can build a WordPress business that is successful AND lets you life the lifestyle you&#8217;ve always wanted. That is the true measure of success.</p>\n<div class="rtsocial-container rtsocial-container-align-right rtsocial-horizontal"><div class="rtsocial-twitter-horizontal"><div class="rtsocial-twitter-horizontal-button"><a title="Tweet: Building A New Life" class="rtsocial-twitter-button" href="https://twitter.com/share?text=Building%20A%20New%20Life&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-new-life%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: Building A New Life" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-new-life%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-linkedin-horizontal"><div class="rtsocial-linkedin-horizontal-button"><a class="rtsocial-linkedin-button" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-new-life%2F&title=Building+A+New+Life" rel="nofollow" target="_blank" title="Share: Building A New Life"></a></div></div><div class="rtsocial-pinterest-horizontal"><div class="rtsocial-pinterest-horizontal-button"><a class="rtsocial-pinterest-button" href="https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/building-a-new-life/&media=https://heropress.com/wp-content/uploads/2018/03/030718-150x150.jpg&description=Building A New Life" rel="nofollow" target="_blank" title="Pin: Building A New Life"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/building-a-new-life/" title="Building A New Life"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/building-a-new-life/">Building A New Life</a> appeared first on <a rel="nofollow" href="https://heropress.com">HeroPress</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Mar 2018 08:00:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Katie Keith";s: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:63:"WPTavern: WordPress Now Used on 30% of the Top 10 Million Sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78214";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"https://wptavern.com/wordpress-now-used-on-30-of-the-top-10-million-sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2379:"<p><a href="https://w3techs.com/">W3Techs</a>, a survey company that monitors usage of various web technologies, <a href="https://w3techs.com/technologies/details/cm-wordpress/all/all">is reporting</a> that WordPress has reached 30% usage or 60.2% market share of all the websites whose content management systems it knows about. This represents a 0.6% increase since February 1st and 13.1% over the last seven years.</p>\n<p>Just five days ago, Matt Mullenweg, co-creator of WordPress, brought attention to the approaching milestone.</p>\n<blockquote class="twitter-tweet">\n<p lang="und" dir="ltr">29.9%&#8230;</p>\n<p>&mdash; Matt Mullenweg (@photomatt) <a href="https://twitter.com/photomatt/status/969378724305973249?ref_src=twsrc%5Etfw">March 2, 2018</a></p></blockquote>\n<p></p>\n<p>When it comes to WordPress&#8217; market share numbers, W3Techs is the most cited source. While some say that <a href="https://thenextweb.com/dd/2018/03/05/30-of-the-web-now-runs-on-wordpress/">WordPress now powers 30% of the web</a>, <a href="https://w3techs.com/technologies">technically</a>, it is used by 30% of the top 10 million sites based on traffic according to <a href="https://www.alexa.com/">Alexa</a>. All sub-domains on WordPress.com and WordPress.org count as one site.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">All the subdomains of <a href="https://t.co/37ETZ4JMFf">https://t.co/37ETZ4JMFf</a> and <a href="https://t.co/YtO6Msd90U">https://t.co/YtO6Msd90U</a> do indeed only count as one site. Sites that are hosted by Automattic under their own domain do count if they have significant traffic on that domain. These are 0.4%, 29.5% are hosted somewhere else.</p>\n<p>&mdash; W3Techs (@W3Techs) <a href="https://twitter.com/W3Techs/status/969523570530451456?ref_src=twsrc%5Etfw">March 2, 2018</a></p></blockquote>\n<p></p>\n<p>The internet is larger than the top 10 million sites. According to <a href="http://www.internetlivestats.com/total-number-of-websites/">Internet live stats</a>, there are close to 2 billion sites on the internet although a majority of them are inactive.</p>\n<p>W3Techs&#8217; numbers show that WordPress&#8217; use is growing on sites that receive a lot of traffic and shows no signs of slowing down as it makes <a href="https://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share">its way towards 50%</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, 06 Mar 2018 10:22: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:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:111:"WPTavern: New Plugin Makes WordPress Core Updates More Secure by Requiring Cryptographic Signature Verification";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78171";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:122:"https://wptavern.com/new-plugin-makes-wordpress-core-updates-more-secure-by-requiring-cryptographic-signature-verification";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4278:"<p>In 2016, WordFence <a href="https://www.wordfence.com/blog/2016/11/hacking-27-web-via-wordpress-auto-update/">published their findings</a> of a vulnerability that could have compromised the servers that are used to send out WordPress updates. It turned out to be a complex, obscure vulnerability that ignited a conversation surrounding the security of api.wordpress.org and what could happen if the servers were compromised.</p>\n<p>One idea that was brought forth is to digitally sign WordPress core, theme, and plugin updates. For at least five years, <a href="https://core.trac.wordpress.org/ticket/25052">a trac ticket</a> has laid semi-dormant with this idea in mind.</p>\n<p>Fifteen months ago, Scott Arciszewski, Chief Development Officer for Paragon Initiative Enterprises, who is most widely known for his <a href="https://paragonie.com/blog/2017/02/cryptographically-secure-php-development">cryptography engineering work</a>, <a href="https://web.archive.org/web/20170214062414/https://medium.com/@CiPHPerCoder/stopmullware-on-the-security-of-27-of-the-websites-on-the-internet-298a7e5b6871">published an article</a> that has since been taken down, expressing his strong desire for Matt Mullenweg to make secure cryptographic signatures a priority. Mullenweg responded to his post with <a href="https://medium.com/@photomatt/wordpress-and-update-signing-51501213e1">one of his own</a> stating that although WordPress update signing is important, it&#8217;s not a high priority.</p>\n<p>&#8220;We will at some point; as said above it’s a good idea — can’t hurt, might help,&#8221; Mullenweg responded when asked if WordPress was ever going to do update signing. &#8220;There are, however, some more important security issues in front of it, that impact millions of sites in the real world, so we are prioritizing those issues above a nice-to-have, defense in-depth effort.&#8221;</p>\n<h2>Eric Mann Launches Secure WordPress Updates Plugin</h2>\n<p>While WordPress does not digitally sign updates, Eric Mann, founder of <a href="https://displace.tech/">Displace Technologies, LLC</a>, has <a href="https://ttmm.io/tech/introducing-secure-updates-for-wordpress/">created and released</a> a new plugin that adds code signing to WordPress core updates. It&#8217;s called DGXPCO or <a href="https://wordpress.org/plugins/dgxpco/">Digital Guarantees for eXplicitly Permitted Core Operations</a>. You&#8217;ll find it on the plugin directory by searching for DGXPCO.</p>\n<p>When installed and activated, the plugin integrates with the core updater and requires that any core update must have a valid signature before it can be installed. The signature provides a secondary source of truth that confirms the integrity of the files. The signatures are created using a Ed25519 public/private keypair and <a href="https://github.com/jedisct1/libsodium">Libsodium</a> to sign the files’ contents.</p>\n<p>Mann keeps the private key offline and has published the public key online. The public key will not change and if a core update is signed by a different key, it is a red flag and the update should be avoided. In addition, commits made to the <a href="https://github.com/DisplaceTech/release-hashes">release hashes repository</a> on GitHub are signed with <a href="https://keybase.io/eamann">Mann&#8217;s PGP key</a> to verify that he is the one who added new code.</p>\n<p>Mann admits that the solution is not fool-proof and is working towards improving it. In future versions, the plugin will only notify the user of a WordPress core update if a digital signature is available. Plugins and themes are on the roadmap as well with the ability to opt-in.</p>\n<p>Although he is the only person allowed to digitally sign packages, the model is not sustainable.</p>\n<p>&#8220;As I prove out the update system, I’ll also begin adding sets of public keys that are scoped to specific sets of packages,&#8221; Mann said. &#8220;This will, for example, allow me to whitelist a small number of trusted developers to also sign core packages. It might also empower plugin developers to sign their own releases (but not anyone else’s).&#8221;</p>\n<p>Mann is seeking feedback and is hoping the project provides evidence that something like it can be added to WordPress core.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 03 Mar 2018 00:56:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:75:"Post Status: Marketing and positioning WordPress products — Draft podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=44157";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/marketing-positioning-wordpress-products-draft-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2776:"<p>Welcome to the Post Status <a href="https://poststatus.com/category/draft">Draft podcast</a>, which you can find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a>, <a href="https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast">Google Play</a>, <a href="http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast">Stitcher</a>, and <a href="http://simplecast.fm/podcasts/1061/rss">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>This week BK and BR discuss a number of different aspects surrounding marketing and selling WordPress products and services. The conversation flows from selling benefits vs features, to social proof, to marketing and conversion funnels, to understanding and reacting to the problem space, to customer support, and many things in between. Whether you’re already selling products or services, about to sell something, or routinely buy things, there’s likely something for you in this episode.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li>Krogs’ <a href="https://wordpress.tv/2015/12/13/brian-krogsgard-how-to-build-a-compelling-wordpress-product-or-service">WCUS funnel talk</a>: and <a href="https://cdn.poststatus.com/wp-content/uploads/2015/12/krogsgard-wc-us-2015-presentation.pdf">slides</a></li>\n<li><a href="https://wpsessions.com/sessions/understand-price-anchoring/">Price Anchoring session</a> on WPS</li>\n<li><a href="https://poststatus.com/marketing-wordpress-products/">Tips for marketing WordPress products</a></li>\n<li><a href="https://poststatus.com/resources/marketing-success-wordpress-case-study-siteground/">SiteGround’s Publish presentation</a></li>\n<li><a href="https://www.ted.com/talks/barry_schwartz_on_the_paradox_of_choice">TED talk on decision fatigue and the paradox of choice</a> (also good “<a href="https://www.ted.com/talks/dan_gilbert_researches_happiness">Why we make bad decisions</a>”)</li>\n<li><a href="https://stripe.com/atlas/guides/saas-pricing">Stripe Atlas guide to SaaS pricing</a></li>\n</ul>\n<h3>Sponsor: SiteGround</h3>\n<p><a href="https://www.siteground.com/wordpress-hosting.htm/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads">SiteGround</a> is engineered for speed, built for security, and crafted for WordPress. They offer feature-rich managed WordPress hosting with premium support, and are officially recommended by WordPress.org. Check out <a href="https://siteground.com/poststatus/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads">SiteGround&#8217;s website</a> for a special deal for Post Status listeners, and thanks to SiteGround for being a Post Status partner.</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, 02 Mar 2018 20:24: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:"Katie Richards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:77:"WPTavern: 4,500 Plugins Need Your Help in Determining Gutenberg Compatibility";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78194";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:87:"https://wptavern.com/4500-plugins-need-your-help-in-determining-gutenberg-compatibility";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2608:"<p>One of the keys to a successful roll out of Gutenberg is plugin compatibility. Without it, users will experience unnecessary frustration and hamper enthusiasm of the new editor. In an effort to figure out what plugins are already compatible with Gutenberg, Daniel Bachhuber <a href="https://make.wordpress.org/core/2018/03/01/introducing-the-gutenberg-plugin-compatibility-database/">has created</a> a <a href="https://plugincompat.danielbachhuber.com/">Gutenberg Plugin Compatibility Database</a>.</p>\n<img />Gutenberg Plugin Compatibility Database\n<p>The database contains 5,000 plugins that represent more than 90% of the total active install count. Plugins are compatible with Gutenberg if they meet the following two requirements.</p>\n<ul>\n<li>A WordPress user can perform the same functional task with Gutenberg active. For instance, if the plugin includes an &#8216;Add Media&#8217; button, it&#8217;s considered Gutenberg-compatible when it has a block registered for the Gutenberg inserter.</li>\n<li>There are no (obvious) errors when the WordPress plugin is active alongside Gutenberg.</li>\n</ul>\n<p>In order to participate in the testing process, you&#8217;ll need to <a href="https://plugincompat.danielbachhuber.com/#account-details/">register an account</a> on the site. Once approved, testers will be able to create a fresh sandboxed WordPress install on the site and test randomly selected plugins. After a manual review is complete, plugins will be marked as <code>is_compatible=yes</code> or <code>is_compatible=no</code>.</p>\n<p>Some plugins are already classified with <code>is_compatible=likely_yes</code> or <code>is_compatible=likely_</code>. As reports are completed, two pie charts that display compatibility results at the bottom of the site update automatically.</p>\n<p>Bachhuber estimates that if each plugin takes about a minute to test, they&#8217;ll need roughly 75 person-hours to get through the remaining 4,500 plugins in the database. This project is a great opportunity for individuals and businesses to contribute back to WordPress via the <a href="https://ma.tt/2014/09/five-for-the-future/">Five for The Future initiative</a>.</p>\n<p>Ideal testers are those who can review dozens of plugins, but even reviewing a few will help the project. If you&#8217;re interested in contributing, check out the project&#8217;s <a href="https://github.com/danielbachhuber/gutenberg-plugin-compatibility#gutenberg-plugin-compatibility">GitHub page</a> to learn what&#8217;s involved in the testing process. Alternatively, visitors can watch the following YouTube video.</p>\n<p></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 02 Mar 2018 00:57:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:47:"Dev Blog: The Month in WordPress: February 2018";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=5613";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2018/03/the-month-in-wordpress-february-2018/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5935:"<p>Judging by the flurry of activity across the WordPress project throughout February, it looks like everyone is really getting into the swing of things for 2018. There have been a lot of interesting new developments, so read on to see what the community has been up to for the past month.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>WordPress 4.9.3 &amp; 4.9.4</h2>\n\n<p>Early in the month, <a href="https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/">version 4.9.3 of WordPress was released</a>, including a number of important bug fixes. Unfortunately it introduced a bug that prevented many sites from automatically updating to future releases. To remedy this issue, <a href="https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/">version 4.9.4 was released</a> the following day requiring many people to manually update their sites.</p>\n\n<p>While this kind of issue is always regrettable, the good thing is that it was fixed quickly, and that not all sites had updated to 4.9.3 yet, which meant they bypassed the bug in that version.</p>\n\n<p>You can find out more technical information about this issue <a href="https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/">on the Core development blog</a>.</p>\n\n<h2>The WordCamp Incubator is Back</h2>\n\n<p>In 2016, the Global Community Team ran an experimental program to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event. This program was dubbed the WordCamp Incubator, and it was so successful in the three cities where it ran that <a href="https://wordpress.org/news/2018/02/wordcamp-incubator-2-0/">the program is back for 2018</a>.</p>\n\n<p>Right now, the Community Team is looking for cities to be a part of this year’s incubator by <a href="https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application">taking applications</a>. Additionally, each incubator community will need an experienced WordCamp organizer to assist them as a co-lead organizer for their event — if that sounds interesting to you, then you can <a href="https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-co-lead-application">fill in the application form for co-leads</a>.</p>\n\n<p>You can find out further information about the WordCamp Incubator <a href="https://make.wordpress.org/community/2018/02/19/wordcamp-incubator-program-2018-announcement/">on the Community Team blog</a>.</p>\n\n<h2>WordPress Meetup Roundtables scheduled for March</h2>\n\n<p>In order to assist local WordPress meetup organizers with running their meetup groups, some members of the Community Team have organized <a href="https://make.wordpress.org/community/2018/02/23/wordpress-meetup-roundtables-scheduled-for-march/">weekly meetup roundtable discussions through the month of March</a>.</p>\n\n<p>These will be run as video chats at 16:00 UTC every Wednesday this month and will be a great place for meetup organizers to come together and help each other out with practical ideas and advice.</p>\n\n<p>If you are not already in the WordPress meetup program and would like to join, you can find out more information in <a href="https://make.wordpress.org/community/handbook/meetup-organizer/welcome/">the WordPress Meetup Organizer Handbook</a>.</p>\n\n<h2>GDPR Compliance in WordPress Core</h2>\n\n<p>The General Data Protection Regulation (GDPR) is an upcoming regulation that will affect all online services across Europe. In order to prepare for this, a working group has been formed to make sure that WordPress is compliant with the GDPR regulations.</p>\n\n<p>Aside from the fact that this will be a requirement for the project going forward, it will also have an important and significant impact on the privacy and security of WordPress as a whole. The working group has posted <a href="https://make.wordpress.org/core/2018/02/19/proposed-roadmap-tools-for-gdpr-compliance/">their proposed roadmap</a> for this project and it looks very promising.</p>\n\n<p>To get involved in building WordPress Core, jump into the #gdpr-compliance channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>, and follow <a href="https://make.wordpress.org/core/">the Core team blog</a>.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li>WPShout published <a href="https://wpshout.com/complete-guide-wordpress-security/">a thorough guide to WordPress security</a>.</li>\n    <li>The Community Team has published interesting statistics from the WordCamp program in <a href="https://make.wordpress.org/community/2018/02/27/wordcamps-in-2016/">2016</a> and <a href="https://make.wordpress.org/community/2018/02/28/wordcamps-in-2017/">2017</a>.</li>\n    <li><a href="https://make.wordpress.org/community/2018/02/15/potential-addition-of-a-new-onboarding-team/">An intriguing proposal has been made</a> for a new ‘Onboarding’ team to be started in the WordPress project.</li>\n    <li>The new editing experience for WordPress, named Gutenberg, continues to be actively developed with <a href="https://make.wordpress.org/core/2018/02/16/whats-new-in-gutenberg-16th-february/">a feature-packed release</a> this past month.</li>\n    <li>The Advanced WordPress Facebook group <a href="https://www.youtube.com/watch?v=4vS_jR5-nIo">held an interview with WordPress co-founder, Matt Mullenweg</a> about the Gutenberg project.</li>\n    <li><a href="https://make.wordpress.org/meta/2018/02/27/two-factor-authentication-on-wp-org/">Two factor authentication is on its way to the WordPress.org network</a> — this will be a great improvement to the overall security of the project.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href="https://make.wordpress.org/community/month-in-wordpress-submissions/">submit it here</a>.</em></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Mar 2018 08:41:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Hugh Lashbrooke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:83:"WPTavern: WPWeekly Episode 306 – AMP, GDPR, and Brewing Beer At The Boss’ House";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wptavern.com?p=78185&preview=true&preview_id=78185";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"https://wptavern.com/wpweekly-episode-306-amp-gdpr-and-brewing-beer-at-the-boss-house";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1707:"<p>In this episode, <a href="http://jjj.me">John James Jacoby</a> joins me live from Hutchinson, KS, to talk about the news of the week. We started off the show discussing the GDPR and the number of things that need to be considered surrounding the right to be forgotten.</p>\n<p>We also have a lengthy conversation about AMP, the open web, and Automattic&#8217;s relationship with Google. Last but not least, we discussed Automattic&#8217;s recent hiring of Kinsey Wilson to be president of the company.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://wptavern.com/matt-cromwell-hosts-matt-mullenweg-in-qa-gutenberg-interview">Matt Cromwell Hosts Matt Mullenweg in Q&amp;A Gutenberg Interview</a><br />\n<a href="https://wptavern.com/new-team-forms-to-facilitate-gdpr-compliance-in-wordpress-core">New Team Forms to Facilitate GDPR Compliance in WordPress Core</a><br />\n<a href="https://www.poynter.org/news/one-time-npr-and-nyt-digital-chief-new-adventure-wordpress">For one-time NPR and NYT digital chief, a new adventure: WordPress</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 7th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href="https://www.wptavern.com/feed/podcast">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href="https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #306:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Mar 2018 02:19: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:15;a:6:{s:4:"data";s:11:"\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"HeroPress: Changes Coming To 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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://heropress.com/?p=2471";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:115:"https://heropress.com/changes-coming-heropress/#utm_source=rss&utm_medium=rss&utm_campaign=changes-coming-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:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4198:"<p>Over the last few months, I’ve been having some deep talks with my <a href="https://twitter.com/mysweetcate">HeroPress partner</a> about what the future of HeroPress looks like. We came up with some changes that feel deeply satisfying. Changes we think should help HeroPress, help readers, and help us as content producers. So here we go.</p>\n<h3>Financial Changes</h3>\n<p>At various times in the past people have told me that the time I spend on HeroPress is worth compensation. When I first started it as a blog, I had no intention of getting money from it. However, being compensated for my time helped ease the burden on my family.</p>\n<blockquote><p>With that in mind, last fall I test-drove a donation page based on interest from some in the community.</p></blockquote>\n<p>It was a good idea, and I’m thankful for the support I received, but for now it’s not the right path.</p>\n<p>So, I’ve pulled the donation page from the site and am no longer accepting site sponsors. You’ll notice I do have a Sponsorship page, but it lists organizations that have made material contributions like hosting, plugins, etc.</p>\n<h3>Content Changes</h3>\n<p>We’ve been publishing every Wednesday for several years now. Over time, readership has climbed quite a bit. That’s great, but it means that many current readers have never seen the earlier content, which remains quite evergreen.</p>\n<blockquote><p>To address this, we’re going to do new HeroPress essays once a month. The other weeks of the month will be replays of earlier essays.</p></blockquote>\n<p>This allows for some breathing room in gathering new contributors and brings back some really great content that shouldn’t be forgotten.</p>\n<p>It also opens up my time to explore the community more. To see if there are new ways that people, particularly on the fringe, can be helped. Sharing stories is useful, but are there other opportunities and needs we’re missing?</p>\n<h3>The Future</h3>\n<p>So HeroPress will continue. I still love doing it. At various times we’ve discussed making it bigger, doing grand things. But not now. For now we’re going to let it grow organically and continue letting it serve its purpose: to give voice to WordPress stories, to make them known, to inspire.</p>\n<div class="rtsocial-container rtsocial-container-align-right rtsocial-horizontal"><div class="rtsocial-twitter-horizontal"><div class="rtsocial-twitter-horizontal-button"><a title="Tweet: Changes Coming To HeroPress" class="rtsocial-twitter-button" href="https://twitter.com/share?text=Changes%20Coming%20To%20HeroPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fchanges-coming-heropress%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: Changes Coming To HeroPress" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fchanges-coming-heropress%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-linkedin-horizontal"><div class="rtsocial-linkedin-horizontal-button"><a class="rtsocial-linkedin-button" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fchanges-coming-heropress%2F&title=Changes+Coming+To+HeroPress" rel="nofollow" target="_blank" title="Share: Changes Coming To HeroPress"></a></div></div><div class="rtsocial-pinterest-horizontal"><div class="rtsocial-pinterest-horizontal-button"><a class="rtsocial-pinterest-button" href="https://pinterest.com/pin/create/button/?url=https://heropress.com/changes-coming-heropress/&media=https://heropress.com/wp-content/plugins/rtsocial/images/default-pinterest.png&description=Changes Coming To HeroPress" rel="nofollow" target="_blank" title="Pin: Changes Coming To HeroPress"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/changes-coming-heropress/" title="Changes Coming To HeroPress"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/changes-coming-heropress/">Changes Coming To HeroPress</a> appeared first on <a rel="nofollow" href="https://heropress.com">HeroPress</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 28 Feb 2018 12:00:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:72:"WPTavern: New Team Forms to Facilitate GDPR Compliance in WordPress Core";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78149";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"https://wptavern.com/new-team-forms-to-facilitate-gdpr-compliance-in-wordpress-core";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6200:"<p>As May 25th, the enforcement date for the <a href="https://www.eugdpr.org/">General Data Protection Regulation</a> (GDPR) draws near, individuals and businesses are scrambling to make sure they&#8217;re compliant. I&#8217;ve read a number of blog posts throughout the WordPress community explaining the GDPR and what needs to be done for compliance and it&#8217;s a tough thing to grasp.</p>\n<p>The EU GDPR was designed to harmonize data privacy laws across Europe, protect and empower European citizens data privacy, and reshape the way organizations across the region approach data privacy. In reading the regulation and various blog posts, the terminology makes it appear that the changes are geared towards large, international businesses that process personal data.</p>\n<p>However, <a href="https://www.smashingmagazine.com/2018/02/gdpr-for-web-developers/">according to Heather Burns</a>, a digital law specialist in Glasgow, Scotland, the GDPR affects sites large and small.</p>\n<blockquote><p>GDPR applies to all businesses, organizations, sectors, situations, and scenarios, regardless of a business’s size, head count, or financial turnover. A small app studio is every bit as beholden to these rules as a large corporation.</p></blockquote>\n<p>Determining if your site needs to be compliant and how to accomplish it can be overwhelming. If you do business in Europe or collect data from European users, you must protect that data in accordance with the GDPR as if you were in Europe. For example, if you operate a blog with a contact form that saves entries to the database from people who live in Europe, you must make your site GDPR compliant.</p>\n<p>There are a lot of aspects to the GDPR and while an excerpt can not fully explain it at a glance, there are a few themes that stick out to me.</p>\n<ul>\n<li>Be upfront and concise about what data is stored, sent, and used on the site or form.</li>\n<li>Give the user a chance to consent without automatically opting them in.</li>\n<li>Collect the least amount of data possible for legitimate business purposes.</li>\n<li>Provide a way for users to download or access their data and remove it.</li>\n</ul>\n<p>Many of these are common sense practices that are not implemented on many sites, WP Tavern included. How often do you visit a <a href="https://wptavern.com/contact-me">site&#8217;s contact form</a> and see an explanation as to why those fields are required, where the data is stored, where it goes, and what is done with it? This is something I&#8217;ll be working on in the next few weeks.</p>\n<h2>Making WordPress Core GDPR Compliant</h2>\n<p>Earlier <a href="https://make.wordpress.org/core/2018/02/13/gdpr-compliance-agenda-february-14/">this month</a>, a number of volunteers gathered to discuss GDPR compliance in WordPress core. The meeting took place in a newly created channel #gdpr-compliance that&#8217;s accessible to anyone with a <a href="https://make.wordpress.org/chat/">SlackHQ account</a>.</p>\n<p>The team created a <a href="https://make.wordpress.org/core/2018/02/19/proposed-roadmap-tools-for-gdpr-compliance/">proposed roadmap</a> to add privacy tools to core. The plan includes the following ideas:</p>\n<ul>\n<li>Add notices for registered users and commenters on what data is collected in core by default and explain why.</li>\n<li>Create guidelines for plugins on how to become GDPR compliant.</li>\n<li>Create and add tools to facilitate compliance and privacy in general.</li>\n<li>Add documentation and help for site owners to learn how to use these tools.</li>\n</ul>\n<p><a href="https://wordpress.slack.com/archives/C9695RJBW/p1519227959000760">Earlier today</a>, <a href="https://make.wordpress.org/core/2018/02/27/gdpr-compliance-chat-recap-february-21st/">the team met</a> and created a <a href="https://github.com/gdpr-compliance/info">GitHub folder</a> that houses the roadmap, knowledge base, trac ticket list, and other items associated with the project. There was also some discussion on whether the interface provided by the <a href="https://www.gdprwp.com/">GDPR for WordPress project</a> is a good foundation for core and plugins to report personal data. The GDPR Compliance Slack channel is also a good place to ask questions and discuss data privacy in general.</p>\n<p>Popular form plugins such as <a href="https://docs.gravityforms.com/wordpress-gravity-forms-and-gdpr-compliance/">GravityForms</a> and <a href="https://ninjaforms.com/gdpr-compliance-wordpress-forms/">NinjaForms</a> have documentation available that explains GDPR compliance and how it applies to their products. For those who use the Contact Form module in Jetpack which <a href="https://github.com/Automattic/jetpack/issues/8430">saves entries to the database by default</a>, you&#8217;ll need to wait for further updates. <a href="https://woocommerce.com/2017/12/gdpr-compliance-woocommerce/">WooCommerce</a> and <a href="https://en.support.wordpress.com/automattic-gdpr/">Automattic</a> have announced that they expect their products will be GDPR compliant by the time it goes into effect later this year.</p>\n<h2>GDPR Resources</h2>\n<p>If you&#8217;re like me, reading about the GDPR and its policies can make your head spin. It&#8217;s important to keep in mind that at the heart of the GDPR are common sense behaviors for handling personal data. If you&#8217;d like to learn more about the GDPR, check out the following resources.</p>\n<ul>\n<li><a href="https://www.smashingmagazine.com/2018/02/gdpr-for-web-developers/">How GDPR Will Change The Way You Develop</a></li>\n<li><a href="https://wordpress.tv/2016/11/01/heather-burns-get-to-grips-with-gdpr/">Heather Burns: Get To Grips With GDPR</a></li>\n<li><a href="https://webdevlaw.uk/data-protection-gdpr/">Data protection (GDPR)</a></li>\n<li><a href="https://wptavern.com/wpweekly-episode-298-gdpr-user-privacy-and-more-with-heather-burns">WPWeekly Episode 298 – GDPR, User Privacy, and More With Heather Burns</a></li>\n<li><a href="https://www.eugdpr.org/gdpr-faqs.html">GDPR FAQs</a></li>\n<li><a href="https://premium.wpmudev.org/blog/gdpr-compliance/">Is Your Website GDPR Compliant? How to Get Ready for the General Data Protection Regulations</a></li>\n</ul>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 27 Feb 2018 23:20: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:75:"WPTavern: Matt Cromwell Hosts Matt Mullenweg in Q&amp;A Gutenberg Interview";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78166";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:81:"https://wptavern.com/matt-cromwell-hosts-matt-mullenweg-in-qa-gutenberg-interview";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2903:"<p>Matt Cromwell, Head of Support and Community Outreach for <a href="https://givewp.com/">GiveWP</a> and an administrator for the <a href="https://www.facebook.com/groups/advancedwp/">Advanced WordPress Facebook group</a>, hosted a question and answer session about Gutenberg with Matt Mullenweg earlier today. The interview concludes the <a href="http://www.advancedwp.org/awp-gutenberg-interview-series/">Advanced WordPress Gutenberg interview series</a> that includes, <a href="https://wordpress.tv/2018/02/06/awp-gutenberg-interview-series-with-joost-de-valk/">Joost de Valk</a>, <a href="https://wordpress.tv/2018/02/18/awp-gutenberg-interview-series-with-ahmad-awais/">Ahmad Awais</a>, and <a href="https://youtu.be/ic_du_lsbLE">Tammie Lister</a>.</p>\n<p>Mullenweg began the session by explaining why there is a concerted effort to improve the editor. &#8220;It&#8217;s really almost any user test that you watch,&#8221; he said. &#8220;Both watching people brand new to WordPress and those with years of experience on how they used the editor. It became obvious that we could make something more accessible to new users, but also, a lot more powerful for developers.&#8221;</p>\n<p>With regards to a release date, Mullenweg confirmed that Gutenberg will ship when it&#8217;s ready. Later in the interview, Mullenweg was asked if he could provide a more concrete answer.</p>\n<p>&#8220;For those who want a concrete date, we will have one or two orders of magnitude more users of Gutenberg in April,&#8221; he responded. &#8220;That doesn&#8217;t mean necessarily a 5.0 release, but it does mean that if you&#8217;re planning on aiming for something where a lot of users will be interacting with Gutenberg, aim for April.&#8221;</p>\n<p>While the project&#8217;s name is Gutenberg, some developers have <a href="https://github.com/WordPress/gutenberg/issues/4681">expressed concerns</a> on how the name will be deprecated if at all once it&#8217;s merged into core. There are a number of educational resources, products, and tool kits referencing Gutenberg that could be a source of confusion once it&#8217;s merged into core and referred to as the editor.</p>\n<p>Mullenweg was asked if the Gutenberg name will be deprecated. &#8220;We&#8217;ll see,&#8221; he replied. &#8220;I don&#8217;t think it&#8217;s the most important thing to figure out right now. We&#8217;re tackling some much bigger issues. If the plugin is useful, we&#8217;ll keep it around for beta testing, if not, we&#8217;ll have it turn itself off.&#8221;</p>\n<p>Mullenweg concluded the interview thanking the <a href="https://www.facebook.com/groups/advancedwp/">Advanced WordPress Facebook</a> group for the passion and discussions shared by members. The group has more than 30K members, is free to join, well maintained, and often filled with interesting topics. You can watch the interview in its entirety below.</p>\n<p></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 26 Feb 2018 23:32:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:67:"Post Status: Observations on a maturing ecosystem — Draft podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=43914";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://poststatus.com/observations-maturing-ecosystem-draft-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1743:"<p>Welcome to the Post Status <a href="https://poststatus.com/category/draft">Draft podcast</a>, which you can find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a>, <a href="https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast">Google Play</a>, <a href="http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast">Stitcher</a>, and <a href="http://simplecast.fm/podcasts/1061/rss">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, the Brians chat about the steady change that has played out in the WordPress ecosystem throughout the past decade and speculate about what is still to come. One aspect they explore rather deeply is the future trajectory of a website’s purpose and the role WordPress has to play in this transition. Plus, don’t miss their conversation about the new WordPress.com president and Google’s move to hire WordPress talent.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href="https://memos.blog/2018/02/15/kinsey-wilson-named-president-of-wordpress-com/">New WordPress.com President announcement</a></li>\n<li><a href="https://medinathoughts.com/2018/01/29/wordpress-google/">Google&#8217;s WordPress job opportunity</a></li>\n<li><a href="https://micro.blog/">micro.blog</a></li>\n</ul>\n<h3>Sponsor: SearchWP</h3>\n<p>SearchWP makes WordPress search better. Instantly improve your site search without writing a line of code! SearchWP enables custom algorithms, searching custom fields, product data, and much more. Improve your site’s search today with our partner, <a href="https://searchwp.com">SearchWP</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 25 Feb 2018 12:59:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Katie Richards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:77:"WPTavern: WordCamp Orange County Plugin-A-Palooza First Place Prize is $3,000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78153";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:86:"https://wptavern.com/wordcamp-orange-county-plugin-a-palooza-first-place-prize-is-3000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2009:"<p><a href="https://2018.oc.wordcamp.org/">WordCamp Orange County</a>, CA, 2018 will take place June 9-10. In addition to the regular WordCamp format of speakers sharing their knowledge, there is also a mini-event called Plugin-A-Palooza. This year marks the fourth contest where plugin authors will compete for one of three prizes.</p>\n<ul>\n<li>First Place – <strong>$3,000</strong> cash and 1 Sucuri Business (VIP) license</li>\n<li>Second Place – <strong>$1,500</strong> cash and 1 Sucuri Business (VIP) license</li>\n<li>Third Place – <strong>$500</strong> cash</li>\n</ul>\n<p>Teams will be judged live based on the following criteria:</p>\n<ul>\n<li>Originality</li>\n<li>User Experience/User Interface</li>\n<li>Code Quality</li>\n<li>Presentation of the plugin on WordPress.org.</li>\n</ul>\n<p>Teams can have up to three participants, are required to build their own plugin, and upload it to the WordPress plugin directory by May 18th. Teams will present their plugins to the judges and audience on June 10th.</p>\n<p>Previous winners and plugins include:</p>\n<ul>\n<li>2015 Devin Walker- <a href="https://wordpress.org/plugins/wp-rollback/">WP Rollback</a></li>\n<li>2016 Robert Gillmer &#8211; <a href="https://wordpress.org/plugins/wp-documentor/">WP Documentor</a></li>\n<li>2017 Natalie MacLees &#8211; <a href="https://wordpress.org/plugins/simple-event-listing/">Simple Event Listing</a></li>\n</ul>\n<p>Bridget Willard, WordCamp Orange County organizer, says the event encourages innovation and personal development which are important parts of WordCamps. &#8220;The first plugin that won was WPRollback by WordImpress,&#8221; she said. &#8220;It&#8217;s widely used in the community now. We&#8217;d love to see other camps doing this.&#8221;</p>\n<p>If you&#8217;re interested in participating in Plugin-A-Palooza at WordCamp Orange County this year, you&#8217;ll need to fill out this <a href="https://goo.gl/forms/CpDCsXQRqNI0cil23">entry form</a>. The deadline for submissions is March 5th.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 23 Feb 2018 22:46: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:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"Dev Blog: WordCamp Incubator 2.0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=5577";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wordpress.org/news/2018/02/wordcamp-incubator-2-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:2449:"<p><a href="https://central.wordcamp.org/">WordCamps</a> are informal, community-organized events that are put together by a team of local WordPress users who have a passion for growing their communities. They are born out of active WordPress meetup groups that meet regularly and are able to host an annual WordCamp event. This has worked very well in many communities, with over 120 WordCamps being hosted around the world in 2017.<br /></p>\n\n<p>Sometimes though, passionate and enthusiastic community members can’t pull together enough people in their community to make a WordCamp happen. To address this, we introduced <a href="https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/">the WordCamp Incubator program</a> in 2016.<br /></p>\n\n<p>The goal of the incubator program is <strong>to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event.</strong> In 2016, members of <a href="https://make.wordpress.org/community/">the global community team</a> worked with volunteers in three cities — Denpasar, Harare and Medellín — giving direct, hands-on assistance in making local WordCamps possible. All three of these WordCamp incubators <a href="https://make.wordpress.org/community/2017/06/30/wordcamp-incubator-report/">were a great success</a>, so we&#x27;re bringing the incubator program back for 2018.<br /></p>\n\n<p>Where should the next WordCamp incubators be? If you have always wanted a WordCamp in your city but haven’t been able to get a community started, this is a great opportunity. We will be taking applications for the next few weeks, then will get in touch with everyone who applied to discuss the possibilities. We will announce the chosen cities by the end of March.<br /></p>\n\n<p><strong>To apply, </strong><a href="https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application"><strong>fill in the application</strong></a><strong> by March 15, 2018.</strong> You don’t need to have any specific information handy, it’s just a form to let us know you’re interested. You can apply to nominate your city even if you don’t want to be the main organizer, but for this to work well we will need local liaisons and volunteers, so please only nominate cities where you live or work so that we have at least one local connection to begin.<br /></p>\n\n<p>We&#x27;re looking forward to hearing from you!<br /></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 21 Feb 2018 22:53:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Hugh Lashbrooke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:48:"HeroPress: How To Build A Company With WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:56:"https://heropress.com/?post_type=heropress-essays&p=2465";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:120:"https://heropress.com/essays/build-company-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=build-company-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:16946:"<img width="960" height="480" src="https://heropress.com/wp-content/uploads/2018/02/022118-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: If you keep showing up, you\'d be surprised what happens." />.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }\n<div class="embed-container"></div>\n<p>&nbsp;</p>\n<h4>Full text of the above video</h4>\n<p>Hey, y&#8217;all! Thanks for inviting me to come share my story on HeroPress. I&#8217;m so excited to be able to talk a little bit to the HeroPress community.</p>\n<p>So, and I&#8217;m doing a video blog or vlog because this is what I do; I&#8217;m a YouTube person. I create YouTube videos every single Wednesday for what I call WordPress Wednesday to help you improve your online marketing inside of the WordPress world. So I&#8217;m used to doing videos, and I asked if I could do my HeroPress story in this format; and they said go for it, so I&#8217;m excited to talk to you at least in a face-to-face scenario.</p>\n<p>I&#8217;m going to  share a little bit of my story and tell you how WordPress basically became my avenue for becoming a millionaire in just five short years.</p>\n<h3>The Beginning</h3>\n<p>So in 1998, I created my very first ever HTML website. My dad was actually doing websites at the time, and I needed a website for my band because that&#8217;s what I wanted to be is a rockstar; so I learned how to build a website, kind of, under his training and a little bit of self-taught stuff and had a lot of fun doing it that way in 1998.</p>\n<p>And then in 2005, I started hearing about WordPress; but in 2008, as I was freelancing around, a client asked me to build him a website. And they said, &#8220;hey, Kori, can you, can you build me a website, but we absolutely have to have it on WordPress?&#8221; I was like, sure, no problem; straight to Google, &#8220;how do you build a WordPress website&#8221;, you know. And over the weekend I pretty much taught myself how to build out a WordPress website, and I loved it.</p>\n<p>My mind was absolutely blown when I saw the drag and drop options inside of menus to create dropdowns, and a form builder; I was just blown away. So those of you who have struggled in the HTML CSS world, you know the magic or the majesty, if you will even, of WordPress and those environments and how easy it makes it. So when I saw that, I really just thought, oh my goodness, this is a full-circle moment for me.</p>\n<blockquote><p>I really want to use WordPress now from here on forward.</p></blockquote>\n<p>So I reached back out to my dad and said, &#8220;hey, dad, you know, this is a tool that our customers, all of our clients, have been asking us for&#8221;. They&#8217;ve been wanting access to their websites, and we&#8217;ve not been able to give it to them because, in the past, they had to download Dreamweaver, you know, Photoshop and an FTP program; and that was just too much nerd code for them. So we wanted to be able to give them something like this, and WordPress definitely was that solution.</p>\n<p>So he and I worked back and forth for a few years learning, really truly learning, WordPress; and then in 2012, we decided to launch together, my mom, my dad and I, decided to launch WebTegrity in San Antonio, Texas. And it was a very small concept initially; you know, we just me, literally, the three of us, and me and my folks. And then we hired on a subcontractor who is a great graphic designer here in town to try to help us with the creative side of things, and we started to grow our team.</p>\n<h3>Going Big Time</h3>\n<p>So how did we, in five years, build it up in such a way that we were able to sell it for a deal of a million dollars&#8217; worth of shares, which ultimately is a $20 million value deal? How did we do that? I&#8217;m going to give you a little bit of insight on how we were able to accomplish that in such a short time.</p>\n<p>So the very first thing I want you to realize is we did this in a saturated industry in San Antonio, Texas. When I did a search for web developer or web design firms back in 2012, I had over 700 results of different either freelancers or agencies or ad agencies or some solution out there that was either in the general area, or in the nearby area, that provided that service. So how did we, in six years, end up becoming number six in the entire city? We ranked in the top 10; how did we do that?</p>\n<blockquote><p>One of the very first things we did, was we niched ourselves; and, thankfully, WordPress was that solution.</p></blockquote>\n<p>In 2012, there was not an agency directly in San Antonio that was trying to be the go-to place for WordPress; and we purposely started stepping up and saying we are WordPress only, WordPress only, WordPress only. So if you were looking for a different type of CMS solution, we were not the right fit for you. And very, very quickly, we also started teaching it in the city; so we would teach other agencies. We provided on-site training; we provided weekend workshops. All for a price tag, of course; but that was one of our revenue streams. And, again, it set us as the authority in the city for WordPress; so really important that you understand how to niche yourselves and not try to be all things to all people.</p>\n<blockquote><p>The second thing we tried to do was really build a culture.</p></blockquote>\n<p>And you can see, I don&#8217;t work around boring walls. Everything that I do has to have creative juices flowing around me, right. We just want to create a great culture, a great environment. So we had to hire the right people. So that&#8217;s my next tip to you is be very, very careful on who you allow into your culture of your business, who you hire on, and certainly who you bring on as a leader in your culture in your community. So one of the things that we did right away was realize that we can&#8217;t teach passion, so you gotta find people that have a passion to nerd out on stuff like this.</p>\n<p>And you have to find people who have great integrity to just do their best at all times, and you have to find people who love to be creative and love to solve problems for clients, right, who aren&#8217;t just salespeople, right? So if you can find those things, you can teach nerd code all day long; so be sure to just find people with the right hearts to join your community and then train them up the right way, be sure that you just grow and grow and grow your culture in a healthy way, right.</p>\n<blockquote><p>And another thing that we did, so this is another tip, was understand how to really build a revenue stream that was going to be sustainable.</p></blockquote>\n<p>All right, so wrap your heads around this one because this one&#8217;s key. Very early on in our model as we were selling WordPress websites, part of my pitch was, oh, it&#8217;s just five grand and no more after that. It&#8217;s a one-time fee and you&#8217;re done. That&#8217;s a horrible business strategy. We learned very early on, inside of WordPress world, that you have rain or shine, right; so there&#8217;s a lot of clients coming or there are no clients.</p>\n<p>You&#8217;re either slammed working from home even in the evening trying to catch up, or you&#8217;re out on the golf course wondering if you&#8217;re going to get a paycheck next week. It&#8217;s really rain or shine. So how do you create a sustainable model in your business, in your small agency, in your startup; how do you do that, so that when those slow seasons come, you can still pay your team members, you can still keep your lights on?</p>\n<p>Well, we were sitting at a WordCamp; and Jason Cohen from WP Engine was keynoting; and one of the things he said right away is, if you don&#8217;t understand how to create a reoccurring revenue stream in your small agency, you will turn your sign to closed in the next year or two. And he was so right; and it was such a light bulb moment for me that I went back straightaway from that weekend WordCamp up in Austin and I started writing out, okay, how can we create a reoccurring revenue stream? What would that look like inside of our industry?</p>\n<p>And, of course, it was support packages. We didn&#8217;t call them maintenance plans. We certainly didn&#8217;t use retainer, which can have a sense of a negative connotation, right, because of lawyers; sorry! But, still, we didn&#8217;t want to use those words because we&#8217;re already almost creating a, uh, I don&#8217;t think I want to sign up for that type of attitude.</p>\n<p>What we did is we called it support, and very easily, clients were signing up saying, oh, goodness, yes, I need that ongoing support. So use that phrasing, create a model structure where it&#8217;s required, at least for the first 12 months out of the gate as they launch that you are charging them something even as small as $99 a month. And don&#8217;t shortchange yourself on that; put together a great package that you give them that type of value.</p>\n<p>If you were to check out WebTegrity.com, you would see our support plans and what they consist of and the pricing. We&#8217;re very transparent with that. That&#8217;s the way our revenue stream almost doubled our sales in one year and allowed us to keep our lights on when June and July roll around and nobody cares about their websites because they&#8217;re on the beach.</p>\n<blockquote><p>All right, reputation was another huge part of it.</p></blockquote>\n<p>That&#8217;s one of the reasons why we named ourselves WebTegrity, but reputation, understanding that that every client that signs up, whether they&#8217;re a $5,000 website or a $50,000 website gets the same type of boutique-style, white glove, handholding relationship, right? Every single project that you launch, you want to produce the absolute, absolute best. You&#8217;re not shortchanging them; you&#8217;re not, you&#8217;re not wiring something that you hand off to the client and hope to God it doesn&#8217;t break. You really are trying to find the absolute best solution.</p>\n<p>One of the things that also kept us in high standing with our reputation, of course, was offering that training because what we don&#8217;t want to do is keep the veil covered where nobody can see what we&#8217;re doing, right. We really want to be transparent and train our clients the nerd lingo, train the clients what SEO is and what expectations should be. Having that type of open communication really just started to build together a relationship with our clients that they trusted us; and we met their expectation, right. So be sure to hold strongly to your core values for your reputation. Be sure that you&#8217;re asking people to give you great reviews because that&#8217;ll make a difference.</p>\n<blockquote><p>And the last thing I want to talk about is give back.</p></blockquote>\n<p>So at one of the WordCamp US&#8217;s that I went to, Matt himself said, listen, if you&#8217;re making a living with WordPress, you really need to try to figure out how to give back 5% of your time, just 5% of your time a week. How can you do that to give back to the community? Can you start a meet-up group, teach a meetup group; can you facilitate a meetup group where maybe you&#8217;re just the organizer and you never have to speak because you&#8217;re not a fan of speaking?</p>\n<p>Can you organize a WordCamp, volunteer at a WordCamp? Can you write a tutorial and tell people how to do things? Can you teach a workshop; can you make a video?</p>\n<p>And, again, I had a light bulb moment. Of course, I can make videos. So my giveback to the WordPress community is my YouTube channel; every single Wednesday, I&#8217;m creating a video and putting it out there for free to the WordPress world of how to improve your online marketing. That&#8217;s made a huge impact not only, thankfully, inside the WordPress community, but also in my own business model.</p>\n<p>I actually go into WordCamps around the US and people are like, hey, aren&#8217;t you that WordPress girl; don&#8217;t you do videos? It&#8217;s a really cool feeling to be able to give back to the community because I&#8217;ve made my living using WordPress.</p>\n<h3>Understanding</h3>\n<p>So ultimately how did I turn five years into a multi-million dollar buyout? Because we have just recently sold; how did we do that? Ultimately, it was understanding that you have to be able to grow something of value. So as soon as you start your business, you should also be thinking about your exit strategy, right, even in how you name your company.</p>\n<p>If I were to name this Ashton Agency, do you think that I could&#8217;ve just walked away and handed the keys to somebody else named Johnson; it wouldn&#8217;t have worked. Think even about your name; will it stand alone? Can that become a brand that you can hand off and sell as a holistic entity?</p>\n<p>You also want to think about that revenue stream, right, and watch those sales margins. Be sure that your margins are healthy. Don&#8217;t hire until it hurts, until it absolutely hurts. Be sure that you&#8217;re structuring your offerings in such a way that you&#8217;re actually recouping your value. What does that mean? Just understand business better; watch Shark Tank, read more tutorials like this, watch more videos.</p>\n<p>Get a hold of the WordPress community, the core leaders, the speakers that travel around to all the WordCamps. Start following them on Twitter and trying to understand what it is that they&#8217;re training and teaching. There&#8217;s a lot of resources out there for you to gain some ideas from, but ultimately it was me stepping out in the San Antonio community because it was a larger firm here in San Antonio who purchased us.</p>\n<p>So we just kept hammering on the fact that we were the go-to place here in San Antonio for WordPress. We kept training; we kept doing free opportunities, going out and speaking at different events; and people kept seeing us. We kept showing up, so you&#8217;d be surprised what happens. If you keep giving back and you keep showing up to places, you keep establishing yourself as the authority, you keep learning and training and growing your own skill set and growing your team, before you know it, it can happen for you.</p>\n<p>I hope this has been helpful. If you have questions about some of this though, if you&#8217;re trying to grow up your startup, or if you&#8217;re trying to learn how to improve your revenue margins, I&#8217;m always open to a quick twitter conversation or send me an email. I&#8217;d love to connect with you.</p>\n<p>Thanks again for the opportunity to share this on HeroPress.</p>\n<p>Bye, y&#8217;all; catch me over on YouTube. Bye!</p>\n<div class="rtsocial-container rtsocial-container-align-right rtsocial-horizontal"><div class="rtsocial-twitter-horizontal"><div class="rtsocial-twitter-horizontal-button"><a title="Tweet: How To Build A Company With WordPress" class="rtsocial-twitter-button" href="https://twitter.com/share?text=How%20To%20Build%20A%20Company%20With%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuild-company-wordpress%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: How To Build A Company With WordPress" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuild-company-wordpress%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-linkedin-horizontal"><div class="rtsocial-linkedin-horizontal-button"><a class="rtsocial-linkedin-button" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuild-company-wordpress%2F&title=How+To+Build+A+Company+With+WordPress" rel="nofollow" target="_blank" title="Share: How To Build A Company With WordPress"></a></div></div><div class="rtsocial-pinterest-horizontal"><div class="rtsocial-pinterest-horizontal-button"><a class="rtsocial-pinterest-button" href="https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/build-company-wordpress/&media=https://heropress.com/wp-content/uploads/2018/02/022118-150x150.jpg&description=How To Build A Company With WordPress" rel="nofollow" target="_blank" title="Pin: How To Build A Company With WordPress"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/build-company-wordpress/" title="How To Build A Company With WordPress"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/build-company-wordpress/">How To Build A Company With WordPress</a> appeared first on <a rel="nofollow" href="https://heropress.com">HeroPress</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 21 Feb 2018 14:00:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Kori Ashton";s: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:26:"Matt: Commuting Time Saved";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=47970";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"https://ma.tt/2018/02/commuting-time-saved/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:344:"<p>On <a href="https://automattic.com/">Automattic&#x27;s</a> internal <a href="https://buddypress.org/">BuddyPress</a>-powered company directory, we allow people to fill out a field saying how far their previous daily commute was. 509 people have filled that out so far, and they are saving 12,324 kilometers of travel every work day. Wow!</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, 19 Feb 2018 18:14:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:71:"Akismet: Version 4.0.3 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=1985";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2018/02/19/version-4-0-3-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:867:"<p>Version 4.0.3 of <a href="http://wordpress.org/plugins/akismet/">the Akismet plugin for WordPress</a> is now available.</p>\n<p>4.0.3 contains a few helpful changes:</p>\n<ul>\n<li>Adds a new scheduled task to clear out old Akismet entries in the <code>wp_commentmeta</code> table that no longer have corresponding comments in <code>wp_comments</code>.  This should help reduce Akismet&#8217;s database usage for some users.</li>\n<li>Adds a new <code>akismet_batch_delete_count</code> action so developers can optionally take action when Akismet comment data is cleaned up.</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:"Mon, 19 Feb 2018 15:58: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:10:"Josh Smith";s: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:68:"Mark Jaquith: Handling old WordPress and PHP versions in your 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:40:"http://markjaquith.wordpress.com/?p=5544";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:100:"https://markjaquith.wordpress.com/2018/02/19/handling-old-wordpress-and-php-versions-in-your-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:3563:"<p>New versions of WordPress are released about three times a year, and WordPress itself supports PHP versions all the way back to 5.2.4.</p>\n<p>What does this mean for you as a plugin developer?</p>\n<p>Honestly, many plugin developers spend too much time supporting old versions of WordPress and <strong>really</strong> old versions of PHP.</p>\n<p>It doesn&#8217;t have to be this way. You don&#8217;t need to support every version of WordPress, and you don&#8217;t have to support every version of PHP. Feel free to do this for seemingly selfish reasons. Supporting old versions is hard. You have to &#8220;unlearn&#8221; new WordPress and PHP features and use their older equivalents, or even have code branches that do version/feature checks. It increases your development and testing time. It increases your support burden.</p>\n<p>Economics might force your hand here&#8230; a bit. You can&#8217;t very well, even in 2018, require that everyone be running PHP 7.1 and the latest version of WordPress. But consider the following:</p>\n<p>97% of WordPress installs are running PHP 5.3 or higher. This gives you namespaces, late static binding, closures, Nowdoc, <strong>__DIR</strong><strong>__</strong>, and more.</p>\n<p>88% of WordPress installs are running PHP 5.4 or higher. This gives you short array syntax, traits, function-array dereferencing, guaranteed <strong>&lt;?=</strong> echo syntax availability, <strong>$this</strong> access in closures, and more.</p>\n<p>You get even more things with PHP 5.5 and 5.6 (64% of installs are running 5.6 or higher), but a lot of the syntactic goodness came in 5.3 and 5.4, with very few people running versions less than 5.4. So stop typing <strong>array()</strong>, stop writing named function handlers for simple <strong>array_map()</strong> uses, and start using namespaces to organize and simplify your code.</p>\n<p>Okay, so&#8230; how?</p>\n<p>I recommend that your main plugin file just be a simple bootstrapper, where you define your autoloader, do a few checks, and then call a method that initializes your plugin code. I also recommend that this main plugin file be PHP 5.2 compatible. This should be easy to do (just be careful not to use <strong>__DIR__</strong>).</p>\n<p>In this file, you should check the minimum PHP and WordPress versions that you are going to support. And if the minimums are not reached, have the plugin:</p>\n<ol>\n<li>Not initialize (you don&#8217;t want syntax errors).</li>\n<li>Display an admin notice saying which minimum version was not met.</li>\n<li>Deactivate itself (optional).</li>\n</ol>\n<p>Do not <strong>die()</strong> or <strong>wp_die()</strong>. That&#8217;s &#8220;rude&#8221;, and a bad user experience. Your goal here is for them to update WordPress or ask their host to move them off an ancient version of PHP, so be kind.</p>\n<p>Here is what I use:</p>\n<p><a href="https://gist.github.com/markjaquith/a08623974b37c2cf0207ee2b120b54da">View code on GitHub</a></p>\n<p></p>\n<p><a href="https://twitter.com/markjaquith/status/965605448408813569">Reach out on Twitter</a> and let me know what methods you use to manage PHP and WordPress versions in your plugin!</p>\n<hr />\n<p><b>Do you need <a href="https://coveredwebservices.com/">WordPress services?</a></b></p>\n<p>Mark runs <a href="https://coveredwebservices.com/">Covered Web Services</a> which specializes in custom WordPress solutions with focuses on security, speed optimization, plugin development and customization, and complex migrations.</p>\n<p>Please reach out to start a conversation!</p>\n[contact-form]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 19 Feb 2018 15:14:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Mark Jaquith";s: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:85:"Post Status: How WebDevStudios is serving different market segments — Draft podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=43724";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"https://poststatus.com/webdevstudios-serving-different-market-segments-draft-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2637:"<p>Welcome to the Post Status <a href="https://poststatus.com/category/draft">Draft podcast</a>, which you can find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a>, <a href="https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast">Google Play</a>, <a href="http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast">Stitcher</a>, and <a href="http://simplecast.fm/podcasts/1061/rss">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Lisa Sabin-Wilson shares about the entangled history of WebDevStudios and eWebscapes and how she and team are targeting every level of the market. WebDevStudios focuses heavily on the upper and enterprise market segments, providing a high degree of attention and support to those clients.</p>\n<p>Sometime in 2017 Lisa did the math on all the lower-end projects that they were referring away and realized that WDS had a prime opportunity to re-introduce her former web studio, eWebscapes, as a way to serve these smaller-scope projects. This rebirth, so to speak, has positioned them to better target local communities, provide staff with more variety of work, and bring simplified processes alongside those they use for larger projects.</p>\n<p></p>\n<h3></h3>\n<h3>Key take-aways</h3>\n<ul>\n<li>Lisa observed a market opportunity and did the math first</li>\n<li>Relaunching started with a solid content strategy</li>\n<li>Simplified processes for managing a project</li>\n<li>Utilized talent already on staff</li>\n<li>Lots of opportunity to target local communities</li>\n<li>Evaluating the success of this strategy after 6 months</li>\n</ul>\n<h3>Links</h3>\n<ul>\n<li><a href="https://webdevstudios.com/">WebDevStudios</a></li>\n<li><a href="https://ewebscapes.com/">eWebscapes</a></li>\n<li><a href="https://jenniferbourn.com/profitable-project-plan/">Profitable Project Plan</a></li>\n<li><a href="https://twitter.com/@lisasabinwilson">Lisa Sabin-Wilson on Twitter</a></li>\n</ul>\n<p><a href="https://webdevstudios.com/about/"><em>Photo Credit</em></a></p>\n<h3>Sponsor: Prospress</h3>\n<p><a href="https://prospress.com/">Prospress</a> makes the WooCommerce Subscriptions plugin, that enables you to turn your online business into a recurring revenue business. Whether you want to ship a box or setup digital subscriptions like I have on Post Status, Prospress has you covered. Check out <a href="https://prospress.com/">Prospress.com</a> for more, and thanks to Prospress for being a Post Status partner.</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, 16 Feb 2018 22:38: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:"Katie Richards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:25:"Matt: No Office Workstyle";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=47949";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2018/02/no-office-workstyle/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3938:"<p>Reed Albergotti has a great article titled <a href="https://www.theinformation.com/articles/latest-amenity-for-startups-no-office">Latest Amenity for Startups: No Office</a>. You can put in your email to read I believe but it&#x27;s behind a paywall otherwise. <a href="https://www.theinformation.com/">The Information</a> is a pretty excellent site that alongside (former Automattician) <a href="https://stratechery.com/">Ben Thompson&#x27;s Stratechery</a> I recommend subscribing to. Here are some quotes from the parts of the article that quote me or talk about <a href="https://automattic.com/">Automattic</a>:</p>\n\n<blockquote class="wp-block-quote">\n    <p>So it’s no coincidence that one of the first companies to operate with a distributed workforce has roots in the open source movement. Automattic, the company behind open source software tools like WordPress, was founded in 2005 and has always allowed its employees to work from anywhere. The company’s 680 employees are based in 63 countries and speak 79 languages. Last year, it closed its San Francisco office, a converted warehouse — because so few employees were using it. It still has a few coworking spaces scattered around the globe.</p>\n    <p>Matt Mullenweg, Automattic’s founder and CEO, said that when the company first started, its employees communicated via IRC, an early form of instant messaging. Now it uses a whole host of software that’s tailor-made for remote work, and as the technology evolves, Automattic adopts what they need.</p>\n    <p>Mr. Mullenweg said Automattic only started having regular meetings, for instance, after it started using Zoom, a video conferencing tool that works even on slow internet connections.</p>\n    <p>He’s become a proponent of office-less companies and shares what he’s learned with other founders who are attempting it. Mr. Mullenweg said he believes the distributed approach has led to employees who are even more loyal to the company and that his employees especially appreciate that they don’t need to spend a chunk of their day on a commute.</p>\n    <p>“Our retention is off the charts,” he said.</p>\n</blockquote>\n\n<p>And:</p>\n\n<blockquote class="wp-block-quote">\n    <p>“Where it goes wrong is if they don’t have a strong network outside of work—they can become isolated and fall into bad habits,” Mr. Mullenweg said. He said he encourages employees to join groups, play sports and have friends outside of work. That kind of thing wouldn’t be a risk at big tech companies, where employees are encouraged to socialize and spend a lot of time with colleagues.</p>\n    <p>But for those who ask him about the negatives, Mr. Mullenweg offers anecdotal proof of a workaround.</p>\n    <p>For example, he said he has 14 employees in Seattle who wanted to beat the isolation by meeting up for work once a week. So they found a local bar that didn’t open until 5 p.m., pooled together the $250 per month co-working stipends that Automattic provides and convinced the bar’s owner to let them rent out the place every Friday.</p>\n</blockquote>\n\n<p>They didn&#x27;t need to pool all their co-working allowance to get the bar, I recall it was pretty cheap! Finally:</p>\n\n<blockquote class="wp-block-quote">\n    <p>For Automattic, flying 700 employees to places like Whistler, British Columbia or Orlando, Florida, has turned into a seven-figure expense.</p>\n    <p>“I used to joke that we save it on office space and blow it on travel. But the reality is that in-person is really important. That’s a worthwhile investment,” Mr. Mullenweg said.It might take a while, but some people are convinced that a distributed workforce is the way of the future.</p>\n    <p>“Facebook is never going to work like this. Google is never going to work like this. But whatever replaces them will look more like a distributed company than a centralized one,” Mr. Mullenweg said.</p>\n</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:"Fri, 16 Feb 2018 18:44:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:29:"Matt: Kinsey Joins 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=47931";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:46:"https://ma.tt/2018/02/kinsey-joins-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:229:"<p>Kinsey Wilson is joining Automattic to run WordPress.com. <a href="https://www.poynter.org/news/one-time-npr-and-nyt-digital-chief-new-adventure-wordpress">Poynter covers the news and has a great interview with Kinsey.</a></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 15 Feb 2018 18:56:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:93:"WPTavern: WPWeekly Episode 305 – 10up, JavaScript for WordPress Conference, and Jetpack 5.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:58:"https://wptavern.com?p=78136&preview=true&preview_id=78136";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:98:"https://wptavern.com/wpweekly-episode-305-10up-javascript-for-wordpress-conference-and-jetpack-5-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:1599:"<p>In this episode, <a href="http://jjj.me">John James Jacoby</a> and I discuss the news of the week. We also chat about the Winter Olympics, crypto mining in order to access content on the web, and the joys of taking care of a puppy. Last but not least, we talk about Elasticsearch in Jetpack 5.8 and whether or not improving WordPress&#8217; native search functionality through a service is the way to go.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://wptavern.com/jetpack-5-8-adds-lazy-loading-for-images-module">Jetpack 5.8 Adds Lazy Loading for Images Module</a><br />\n<a href="https://wptavern.com/free-virtual-wordpress-for-javascript-conference-june-29th">Free Virtual WordPress for JavaScript Conference June 29th</a><br />\n<a href="https://wptavern.com/10up-turns-seven">10up Turns Seven</a><br />\n<a href="https://make.wordpress.org/plugins/2018/02/13/not-updated-in-warning/">“Not Updated In …” Warning</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 21st 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href="https://www.wptavern.com/feed/podcast">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href="https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #305:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 15 Feb 2018 02:14:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:26:"WPTavern: 10up Turns Seven";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"https://wptavern.com/10up-turns-seven";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2986:"<p><a href="https://10up.com/">10up</a>, a web development agency founded by Jake Goldman in 2011, has turned seven years old. In a <a href="https://10up.com/blog/2018/10up-seven-year-anniversary/">blog post celebrating the occasion</a>, Goldman reviews the previous year and highlights some notable events for the company.</p>\n<p>&#8220;We welcomed more than 30 new clients to our portfolio in another record sales year,&#8221; Goldman said. &#8220;We launched new websites along with web and mobile apps for major brands across verticals as diverse as finance, healthcare, academia, high-tech, big media, consumer packaged goods, food and beverage, and fitness… to name a few.&#8221;</p>\n<p>He also highlighted the company&#8217;s commitment to open source and giving back to WordPress. Throughout the past year, the company has released a number of WordPress plugins and developer tools including, <a href="https://10up.com/blog/2017/distributor-plugin/">Distributor</a>, <a href="https://10up.com/blog/2017/wp-snapshots-share-wordpress-setup/">WP Snapshots</a>, <a href="https://10up.com/blog/2017/wp-docker/">WP Local Docker</a>, <a href="https://10up.com/blog/2018/improving-wordpress-transients/">Async Transients</a>, and more.</p>\n<p>Goldman describes three trends he&#8217;s noticed in the past few years.</p>\n<ol>\n<li>Integrations with innovation happening in other projects and platforms has become increasingly important as the web matures. You see it in React.js and Vue.js emerging as popular front end standards, in the rise of Elasticsearch and NoSQL platforms, with two factor authentication and Google single sign on, with the rise of modern Asset Management Systems.</li>\n<li>For publishers, it’s increasingly becoming about distribution to multiple platforms, more so than<em> just</em> building a website. Google AMP, Facebook Articles, Apple News, Alexa, YouTube channels to name a few.</li>\n<li>If you need any more evidence of WordPress dominance, look no further than how highly in demand top-tier engineering talent is. It’s probably &#8211; literally &#8211; around a factor of 1.5x &#8211; 2x what great engineers were earning 3-4 years ago.</li>\n</ol>\n<p>With seven years of experience under his belt, Goldman offers the following advice for those who are in their first or second year of running an agency or in a leadership position.</p>\n<ol>\n<li> Don’t be quite so hard on yourself &#8211; when you run a business &#8211; when you’re a lease &#8211; there will always be highs and lows &#8211; don’t dwell on the lows.</li>\n<li>Put more emphasis on building systems, routines, and check-ins that offer a better pulse on the collective and individual fulfillment, engagement, and health of the team, rather than relying on transparent upwards communication.</li>\n</ol>\n<p>Congrats to 10up on seven years in business. To learn more about the company and employment opportunities, visit their <a href="https://10up.com/">official site</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, 14 Feb 2018 19:16:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"HeroPress: My WordPress Anniversaries";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:56:"https://heropress.com/?post_type=heropress-essays&p=2452";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:126:"https://heropress.com/essays/my-wordpress-anniversaries/#utm_source=rss&utm_medium=rss&utm_campaign=my-wordpress-anniversaries";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:13243:"<img width="960" height="480" src="https://heropress.com/wp-content/uploads/2018/02/021418-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: I feel that I am responsible to be on stage for all the women who haven’t found the courage yet to share their stories." /><p>I never remember dates. I know the birthday of more or less five people. I insist on saying that my son was born on May 11. Incorrect, I was born on May 11, he on May 17. But for some reason, my WordPress dates are permanently etched into my brain. I think it’s because meeting the global WordPress community and helping restart the Italian community are very meaningful moments in my adult life. Please join me in a walk down memory lane <img src="https://s.w.org/images/core/emoji/2.4/72x72/1f642.png" alt="🙂" class="wp-smiley" /></p>\n<h3>May 15, 2015</h3>\n<p>I started building websites with WordPress in 2010: my first website was my own blog, whose only purpose was to publish photos of my son so all the grandparents could enjoy seeing him grow. I enjoyed tinkering around with it, and to my surprise someone wrote asking me to build something similar for them. And they wanted to pay me for it!</p>\n<p>For a few years I worked as an administrative manager during the day and as a web designer at night until I decided to make the jump and become a freelancer.</p>\n<p>I never thought about contributing to WordPress because I wasn’t a back end developer and I didn’t think the project needed people that were not code wizards. Heck, I didn’t even know how WordPress was made or how open source worked exactly!</p>\n<blockquote><p>And then I went to a Freelancers conference in Italy and on May 15 I gave my first talk ever.</p></blockquote>\n<p>Up until that moment I taught small classes, but I never talked in front of more than ten people. I was terrified: in the audience there were more than a hundred people. Some of my friends, but also a lot of seasoned professionals that I respected and admired, and here I was talking about how they should and shouldn’t build a website. I was so nervous, when I grabbed the mic I did such a wide gesture with my arms that the bracelet I was wearing flew through the air to the other side of the room.</p>\n<p>After my talk a guy came to compliment my talk, and I realised that he was one of those people that I respected and admired from afar: <a href="https://twitter.com/lucasartoni">Luca Sartoni</a>, an Automattician whose blog I have been following for a while.</p>\n<p>For the three days of the event we kept chatting about websites, WordPress, entrepreneurship, open source until he convinced me to start a WordPress meetup in my hometown of Torino, Italy. He put me in contact with other people that he knew wanted to do something similar and in less than a month from that conversation we started a meetup. The group now has more than one thousand members, and in March we will celebrate thirty events.</p>\n<h3>November 7, 2015</h3>\n<p>Luca didn’t stop his proselytism in Torino <img src="https://s.w.org/images/core/emoji/2.4/72x72/1f642.png" alt="🙂" class="wp-smiley" /> That same year, WordCamp Europe was held in Seville and at the Polyglots table a revolution was started. A small group of Italians, used to travelling abroad to attend WordCamps, met there and decided that it was time to organise the Italian community.</p>\n<p>The first step was to revive the blog on the Italian WordPress website: it was dormant for seven years and the first thing we did was publish the dates of meetups that were slowly but surely appearing in the whole country. At the beginning of 2015 there were two meetups in Italy, by August there were eight and their number kept growing.</p>\n<p>Now, if you have met Italians, you know we talk a lot. The two Francescos from Apulia, <a href="https://twitter.com/franzvitulli">Franz Vitulli</a> and <a href="https://twitter.com/fra83">Francesco Di Candia</a>, took the second initiative that was crucial to bringing us together: they opened a Slack workspace for the Italians, modeled after the UK workspace. For the whole summer we chatted every single day: about WordPress, about how to grow and manage the community that was forming in front of our eyes, how to communicate, how to contribute.</p>\n<p>And then chatting wasn’t enough, we wanted to meet in person. We wanted to put a face and a voice to the avatars. With the help of <a href="https://twitter.com/rosso">Sara Rosso</a> and <a href="https://twitter.com/miss_jwo">Jenny Wong</a> we carried out a bizarre plan, almost unheard of: a <a href="https://wordpress.tv/2017/12/10/francesca-marano-standalone-contributor-days-help-make-wordpress-with-your-community/">stand alone WordPress Contributor Day</a>. We would meet in Milano for a day to get to know each other and to learn how to Contribute to WordPress.</p>\n<blockquote><p>I like to think that November 7 2015 is the day we became a community: we were not an abstract idea anymore, we were people, meeting in person to make WordPress in Italy.</p></blockquote>\n<p>&nbsp;</p>\n<h3>April 10, 2016</h3>\n<p>The next few months went by in a blur of activities: the meetup organisers in Torino applied to host the first WordCamp in Italy in three years and I lead the organising team, I applied to attend the Community Summit in Philadelphia and I got accepted, I attended the first WordCamp US, my first WordCamp, and volunteered at it. I met a lot of people that helped me become more active and more focused: as a new contributor it’s easy to get overwhelmed by the abundance of amazing projects and tasks you can be part of, but it’s important to keep your focus to be more effective.</p>\n<blockquote><p>After meeting people from all over the world and sharing our experiences I realised the story of the Italian community could be inspiring for other communities and it was worth telling it to a wider audience, so I got completely out of my comfort zone and submitted a talk to WordCamp London.</p></blockquote>\n<p>On April 10th 2016 I gave <a href="https://wordpress.tv/2016/05/30/francesca-marano-rebirth-italian-community/">my first talk at a WordCamp</a> and my first talk in English. I think I didn’t sleep for days before and after the event. It was nerve wracking, but I did it without throwing any bracelet in the air this time.</p>\n<a href="https://heropress.com/wp-content/uploads/2018/02/WCEU2016.jpg"><img class="wp-image-2457 size-large" src="https://heropress.com/wp-content/uploads/2018/02/WCEU2016-1024x684.jpg" alt="" width="960" height="641" /></a>I gave the same talk at WordCamp Europe in 2016 and realised the story was relatable to many communities. Photographer unknown, sorry <img src="https://s.w.org/images/core/emoji/2.4/72x72/1f641.png" alt="🙁" class="wp-smiley" />\n<h3>September 17, 2017</h3>\n<p>Over the following year I kept contributing to WordPress, mostly in the Community team. I participated in the Polyglots activities for a while but then I had to pick and focus my attention. The more I interacted with people from all over the world as a hobby, the more I wanted that to become my job. Although my business as a web designer in Italy was doing good, I felt I wanted to be able to reach more people and find a way to be more involved with the community.<br />\nSo I started looking for a job. I was hesitant at first: all the insecurities I had about myself came back to haunt me. The voice in my head was telling me: you are too old, you don’t have enough technical expertise, you have been contributing for a very short time, English is not your native language, you are a single mom from Italy for crying out loud, who would want to employ you?</p>\n<blockquote><p>Well, it turns out that if you actually look for a job instead of just telling yourself that you really would like a job, chances are you might get one.</p></blockquote>\n<p>Last September I started a new chapter in my career as the <a href="https://www.siteground.com/blog/francesca-marano/">WordPress Community Manager</a> at SiteGround and I couldn’t be happier.</p>\n<p>The past 33 months have completely changed my life, personally and professionally: along the way I learned a number of lessons that I know will stay with me forever.</p>\n<h3>Step Up</h3>\n<p>If you want to achieve something, start today. Just start. Start a meetup, leave a comment to encourage someone else, volunteer to take notes of a meeting, participate in the discussion, bring your own ideas to the table. Be a fire starter, for yourself and for the people around you.</p>\n<h3>Step Back</h3>\n<p>None of the above is about you: the community is bigger than you, you are here to build a path for the future. Once you started something, don’t become too attached, let it go and let other people step up and shine. Mentor them, if they ask and if you can.</p>\n<h3>If you want to go faster go alone, if you want to go further go together</h3>\n<p>I am not a huge fan of motivational quotes, but this one is very dear to my heart and it’s one I have to remind myself quite often. I am a perfectionist and a quick learner: this is ok when you start your own business (and it’s ok only at the beginning, but this is a topic for another article!), but when you are part of a team, you are part of something bigger. It might move slower, but its impact is immensely more powerful than anything you’ll be able to achieve on your own.</p>\n<h3>Representation matters</h3>\n<p>I dislike speaking in public. When I say this people tend to laugh it off because I am good on stage. It doesn’t mean that I like it. I am much more at ease when I am behind the scenes, making things happen.</p>\n<p><img class="aligncenter wp-image-2454 size-full" src="https://heropress.com/wp-content/uploads/2018/02/slack-imgs.jpg" alt="Four women seated on a low wall at a WordPress meetup." width="600" height="400" /></p>\n<blockquote><p>But representation matters: I feel that I am responsible to be on stage for all the women who haven’t found the courage yet to share their stories.</p></blockquote>\n<p>I am responsible for the young ones, so they can see that it’s possible to create a life when you can be both a good, albeit a bit absent mom, and a kick ass professional. I am responsible for the older ones, so they can see that we are represented, that this industry accepts us and recognizes our contributions. I am responsible to show my eleven year old son that women can do whatever they set out to do.</p>\n<h3>Make it better, give it back</h3>\n<p>I wish I came up with this, because it’s an incredibly powerful sentence. <a href="https://heropress.com/essays/make-better-give-back/">John did</a> and I am grateful every day that I get to share my life with him and his wisdom.</p>\n<p>Contributing to open source can be very frustrating: things go slow, sometimes things don’t go at all (there are numerous tickets in the WordPress bug tracker that are five or more years old), sometimes you might disagree with that will be decided, sometimes you might work alongside people that you dislike.</p>\n<p>When this happens, remind yourself that you are working on a brilliant piece of software that is helping the lives and the businesses of millions of people.</p>\n<div class="rtsocial-container rtsocial-container-align-right rtsocial-horizontal"><div class="rtsocial-twitter-horizontal"><div class="rtsocial-twitter-horizontal-button"><a title="Tweet: My WordPress Anniversaries" class="rtsocial-twitter-button" href="https://twitter.com/share?text=My%20WordPress%20Anniversaries&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fmy-wordpress-anniversaries%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: My WordPress Anniversaries" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fmy-wordpress-anniversaries%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-linkedin-horizontal"><div class="rtsocial-linkedin-horizontal-button"><a class="rtsocial-linkedin-button" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fmy-wordpress-anniversaries%2F&title=My+WordPress+Anniversaries" rel="nofollow" target="_blank" title="Share: My WordPress Anniversaries"></a></div></div><div class="rtsocial-pinterest-horizontal"><div class="rtsocial-pinterest-horizontal-button"><a class="rtsocial-pinterest-button" href="https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/my-wordpress-anniversaries/&media=https://heropress.com/wp-content/uploads/2018/02/021418-150x150.jpg&description=My WordPress Anniversaries" rel="nofollow" target="_blank" title="Pin: My WordPress Anniversaries"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/my-wordpress-anniversaries/" title="My WordPress Anniversaries"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/my-wordpress-anniversaries/">My WordPress Anniversaries</a> appeared first on <a rel="nofollow" href="https://heropress.com">HeroPress</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 14 Feb 2018 07:00: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:16:"Francesca Marano";s: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:68:"WPTavern: Free Virtual WordPress for JavaScript Conference June 29th";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78116";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"https://wptavern.com/free-virtual-wordpress-for-javascript-conference-june-29th";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1714:"<p>Zac Gordon, who <a href="https://wptavern.com/zac-gordon-launches-gutenberg-development-course-includes-more-than-30-videos">launched his Gutenberg development course</a> earlier this year, is organizing a virtual conference called <a href="https://javascriptforwp.com/conference/">JavaScript for WordPress.</a> The conference will take place June 29th and is free to watch.</p>\n<p>&#8220;Making the event free and online was really important for me so we could have as few barriers to entry for folks wanting to learn,&#8221; Gordon said. &#8220;I have a feeling a lot of folks who can&#8217;t tune live will still appreciate having all the talks available on YouTube for free.&#8221;</p>\n<p>So far, 15 speakers have been confirmed with more to be announced soon. The speakers include WordPress core developers, theme and plugin developers, agency owners, and educators. Some of the talks will be from designers allowing user experience and usability to be part of the conversation.</p>\n<p>Gordon says he&#8217;s been wanting to an in-person event for a while but considering the challenges involved, a virtual conference was the next best thing.</p>\n<p>&#8220;I used to run in-person workshops in the Washington DC area, which I miss, and have wanted to do an event for a while,&#8221; he said. &#8220;But doing in-person events is so difficult, so the online format seemed like the best option to go with. I got some good advice from Human Made and WP Campus, who both have experience doing online events, so hopefully everything will go smooth.&#8221;</p>\n<p>To reserve a seat and receive updates, visit the <a href="https://javascriptforwp.com/conference/">JavaScript for WordPress conference site</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, 13 Feb 2018 01:30:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:51:"Mark Jaquith: Updating plugins using Git and WP-CLI";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"http://markjaquith.wordpress.com/?p=5552";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"https://markjaquith.wordpress.com/2018/02/12/updating-plugins-using-git-and-wp-cli/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4007:"<p>Now that you know <a href="https://markjaquith.wordpress.com/2018/01/30/simple-wordpress-deploys-using-git/">how I deploy WordPress sites</a> and <a href="https://markjaquith.wordpress.com/2018/02/05/tips-for-configuring-wordpress-environments/">how I configure WordPress environments</a>, what about the maintenance of keeping a WordPress site&#8217;s plugins up-to-date?</p>\n<p>Since I&#8217;m using Git, I cannot use WordPress built-in plugin updater on the live site (and I wouldn&#8217;t want to — if a plugin update goes wrong, my live site could be in trouble!)</p>\n<p>The simple way to update all your plugins from a staging or local development site is to use WP-CLI:</p>\n<pre class="brush: bash; title: ; notranslate">wp plugin update-all\ngit commit -am \'update all plugins\' wp-content/plugins</pre>\n<p>That works. I used to do that.</p>\n<p>I don&#8217;t do that anymore.</p>\n<p>Why? <strong>Granularity</strong>.</p>\n<p>One of the benefits of using version control like Git is that when things go wrong, you can pinpoint when they went wrong, and identify what code caused the issue.</p>\n<p>Git has a great tool called <strong>bisect</strong> that takes a known good state in the past and a current broken state, and then jumps around between revisions, efficiently, asking you to report whether that revision is <strong>good</strong> or <strong>bad</strong>. Then it tells you what revision broke your site.</p>\n<p>If you lump all your plugin updates into one commit, you won&#8217;t get that granularity. You&#8217;ll likely get the <strong>git bisect</strong> result of &#8220;great&#8230; one of EIGHTEEN PLUGINS I updated was the issue&#8221;. That doesn&#8217;t help.</p>\n<p>Here&#8217;s how you do it with granularity:</p>\n<pre class="brush: bash; title: ; notranslate">for plugin in $(wp plugin list --update=available --field=name);\ndo\n    wp plugin update $plugin &amp;&amp;\n    git add -A wp-content/plugins/$plugin &amp;&amp;\n    git commit -m \'update $plugin plugin\'\ndone;</pre>\n<p>This code loops through plugins with updates available, updates each one, and commits it with a message that references the plugin being updated. Great! Now <strong>git bisect</strong> will be able to tell you <strong>which</strong> plugin update broke your site.</p>\n<p>And what if you can only run WP-CLI commands from within a VM, and Git commands from your local machine? For instance, if you&#8217;re using my favorite tool, <a href="https://local.getflywheel.com/">Local by Flywheel</a>, you have to SSH into the site&#8217;s container to issue WP-CLI commands, but from within that container, you might not have Git configured like it is on your host machine.</p>\n<p>So what you can do is break the process into two steps.</p>\n<p>On the VM, run this:</p>\n<pre class="brush: bash; title: ; notranslate">wp plugin list --update=available --field=name &gt; plugins.txt\nwp plugin update-all</pre>\n<p>That grabs a list of plugins with updates and writes them to a file <strong>plugins.txt</strong>, and then updates all the plugins.</p>\n<p>And then on your local machine, run this:</p>\n<pre class="brush: bash; title: ; notranslate">while read plugin;\ndo\n    git add -A wp-content/plugins/$plugin &amp;&amp;\n    git commit -m \'update $plugin plugin\'\ndone; &lt; plugins.txt</pre>\n<p>That slurps in that list of updated plugins and does a distinct <strong>git add</strong> and <strong>git commit</strong> for each.</p>\n<p>When that&#8217;s done, remove <b>plugins.txt</b>.</p>\n<p>All your plugins are quickly updated with WP-CLI, but you get nice granular Git commits and messages.</p>\n<hr />\n<p><b>Do you need <a href="https://coveredwebservices.com/">WordPress services?</a></b></p>\n<p>Mark runs <a href="https://coveredwebservices.com/">Covered Web Services</a> which specializes in custom WordPress solutions with focuses on security, speed optimization, plugin development and customization, and complex migrations.</p>\n<p>Please reach out to start a conversation!</p>\n[contact-form]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 12 Feb 2018 14:42: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:12:"Mark Jaquith";s: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:79:"Post Status: WordPress market opportunities: Upmarket edition — Draft podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=42360";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"https://poststatus.com/wordpress-market-opportunities-upmarket-edition-draft-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2284:"<p>Welcome to the Post Status <a href="https://poststatus.com/category/draft">Draft podcast</a>, which you can find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a>, <a href="https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast">Google Play</a>, <a href="http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast">Stitcher</a>, and <a href="http://simplecast.fm/podcasts/1061/rss">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian and Brian continue their discussion on WordPress market opportunities with a focus on the upper-market and enterprise clients. They take a look at discovery projects, pitching WordPress against competing platforms, and considerations to make before pitching on these high-budget projects. There are plenty of positives and negatives when working on long-term projects that may have a dramatic impact on your company in many ways.</p>\n<p>In addition to these market opportunities, the boys also discuss recent news including iThemes acquisition by Liquid Web, a welcome change to the WordPress.org plugin directory, and an unfortunate and far-reaching bug that shipped with the 4.9.3 release last week.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href="https://poststatus.com/liquid-web-acquired-ithemes/">Liquid Web acquires iThemes</a></li>\n<li><a href="https://generatewp.com/new-policy-changes-wordpress-plugin-directory/">Plugin directory notice changes</a></li>\n<li><a href="https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/">4.9.4 technical details</a></li>\n<li><a href="https://wpsessions.com/sessions/infusing-websites-brand-voice/">Infusing Websites with Brand Voice</a><a href="https://wpsessions.com/teams">WPS Team Training</a></li>\n</ul>\n<h3>Sponsor: WooCommerce</h3>\n<p><a href="https://woocommerce.com/">WooCommerce</a> makes the most customizable eCommerce software on the planet, and it’s the most popular too. You can build just about anything with WooCommerce. <a href="https://woocommerce.com/">Try it today</a>, and thanks to the team at WooCommerce being a Post Status partner</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, 09 Feb 2018 20:43: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:14:"Katie Richards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:57:"WPTavern: Jetpack 5.8 Adds Lazy Loading for Images Module";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78112";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"https://wptavern.com/jetpack-5-8-adds-lazy-loading-for-images-module";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2079:"<p>Jetpack 5.8 <a href="https://jetpack.com/2018/02/06/jetpack-5-8-release/">is available</a> for download and includes a handful of new features for Professional, Premium, and Personal plan users. In <a href="https://wptavern.com/jetpack-5-4-introduces-beta-version-of-new-search-module-powered-by-elasticsearch-for-professional-plan-users">October of last year</a>, Jetpack 5.4 began beta testing a new <a href="https://jetpack.com/support/search/">search module</a> based on <a href="https://www.elastic.co/">Elasticsearch</a>. Jetpack 5.8 concludes the beta and the new search service is available to Professional plan customers.</p>\n<p>The new search module replaces the native search functionality in WordPress and Jetpack developers claim sites with a large amount of content, images, or products will see significant speed improvements and more relevant results. Developers can fine-tune the user experience by using custom queries and template tags. Users can sort results by categories, tags, month/year, post type, or any taxonomy.</p>\n<p>In addition to the Content Delivery Network, users have another method to optimize their sites with a new module named Lazy Load Images. When activated, Jetpack will display a page&#8217;s textual content first. When a user scrolls down the page, Jetpack will request and download images so they appear when that section of the page comes into view. Sites with a large amount of images will benefit most from having this module activated.</p>\n<p>Premium plan customers can now perform security scans on their sites at any time, upload an unlimited amount of videos, and access SEO tools that were once restricted to Business plan customers.</p>\n<p>Other notable improvements include:</p>\n<ul>\n<li>Support for timezone and site language settings</li>\n<li>Improved display of notices</li>\n<li>The GettyImages shortcode now uses the new format required by GettyImages</li>\n</ul>\n<p>To view all of the additions in this release, check out the <a href="https://wordpress.org/plugins/jetpack/#developers">Jetpack 5.8 changelog</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Feb 2018 07:54:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:35;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:15:"Matt: The Laity";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=47918";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:32:"https://ma.tt/2018/02/the-laity/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:310:"<blockquote class="wp-block-quote">\n    <p>In the last analysis, every profession is a conspiracy against the laity.</p><cite>The Sir Patrick Cullen character in George Bernard Shaw’s play <a href="https://en.m.wikipedia.org/wiki/The_Doctor%27s_Dilemma_(play)">The Doctor’s Dilemma</a></cite></blockquote>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 Feb 2018 21:48:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:36;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:86:"WPTavern: WPWeekly Episode 304 – DesktopServer, Life, and Health with Marc Benzakein";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wptavern.com?p=78105&preview=true&preview_id=78105";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"https://wptavern.com/wpweekly-episode-304-desktopserver-life-and-health-with-marc-benzakein";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1931:"<p>In this episode, <a href="http://jjj.me">John James Jacoby</a> and I are joined by <a href="https://twitter.com/MarcBenzak">Marc Benzakein</a>, Operations Manager for ServerPress, LLC. We discussed recent updates to DesktopServer and received a progress report on 4.0. Marc also shared some of the struggles the team encountered throughout 2017.</p>\n<p>We learned what&#8217;s new with <a href="https://wpsitesync.com/">WP SiteSync</a> and what customers can look forward too later this year. We also talked about <a href="https://wordpress.tv/2017/12/08/marc-benzakein-fat-happy-and-fifty/">Marc&#8217;s journey</a> of becoming a healthier person both physically and mentally. He recalls the issues he had to overcome and shares advice on how others can improve their health.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://wptavern.com/woocommerce-3-3-1-released-addresses-template-conflicts">WooCommerce 3.3.1 Released, Addresses Template Conflicts</a><br />\n<a href="https://wptavern.com/wordpress-4-9-4-fixes-critical-auto-update-bug-in-4-9-3">WordPress 4.9.4 Fixes Critical Auto Update Bug in 4.9.3</a><br />\n<a href="https://thehackernews.com/2018/02/wordpress-dos-exploit.html">Unpatched DoS Flaw Could Help Anyone Take Down WordPress Websites</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 14th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href="https://www.wptavern.com/feed/podcast">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href="https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #304:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 Feb 2018 01:48:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:37;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:55:"HeroPress: Becoming a Better Designer Through WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:56:"https://heropress.com/?post_type=heropress-essays&p=2441";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:142:"https://heropress.com/essays/becoming-better-designer-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=becoming-better-designer-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:19189:"<img width="960" height="480" src="https://heropress.com/wp-content/uploads/2018/02/020718-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: The connections I\'ve made, the skills I\'ve honed, and the mentorship I\'ve received have all contributed to making me the designer I am today." /><h3>The early years</h3>\n<p>I’ve always been an art kid. One of my first school memories is of drawing a clown and my art teacher being so enamored with it, she hung it up on her door for the whole year.</p>\n<p>The first time in my educational life I didn’t take an art class was my first year of college. By the end of the year, my fingers were itching and I was ready to scream — I had to take art. It didn’t take long for me to declare a Studio Art minor, which eventually became an Arts and Technology minor my senior year.</p>\n<p>I’ve also always been an internet kid. We received our first internet-connected Windows desktop in 1997. I’ll never forget the sound of dial-up as I signed into AOL, day after day for years to come. When my older brother started working for an ISP, we were able to go beyond just using AOL to connect, and I started spending more time exploring websites (rather than just AOL’s apps and chat rooms). I wanted to be like my older brother and learn how to make sites. I taught myself basic HTML by using View Source on existing sites — even back then, I was benefiting from the open web!</p>\n<p>Angelfire was my earliest web canvas. A couple of my friends eventually got into making websites, but I was always a little disdainful of them for using Homestead’s GUI builder, while I was making my sites from scratch. I had a blast making image-rich personal and fan sites with tables and HTML styles. Landing a copy of Photoshop Elements in high school only intensified my enjoyment of web design. I kept that passion up through college, when I found my first design gig.</p>\n<p><a href="https://heropress.com/wp-content/uploads/2018/02/old_web_site.jpg"><img class="size-large wp-image-2442 aligncenter" src="https://heropress.com/wp-content/uploads/2018/02/old_web_site-1024x479.jpg" alt="Old Website, best viewed on AOL" width="960" height="449" /></a></p>\n<h3>Could this be a career?</h3>\n<p>My first year of college got off to a bit of a rough financial start. By the time my financial aid was finalized and I was finally able to pick a work study job, my options were pretty limited. A dance professor needed an assistant to help her with some photocopying and organization tasks, along with helping her build out a print and web portfolio.</p>\n<p>I was honestly a terrible assistant, but I did a pretty good job with the design work. I continued to refine my skills working in the computers labs in subsequent years, and in my Junior year of college (ten years ago!) I landed an internship at a local web design agency. That internship turned into a part-time job, which opened up doors to more local web design opportunities, and soon I was graduating college and pretty well situated into the start of my career.</p>\n<p><a href="https://heropress.com/wp-content/uploads/2018/02/early-site.jpg"><img class="aligncenter size-large wp-image-2443" src="https://heropress.com/wp-content/uploads/2018/02/early-site-1024x666.jpg" alt="Skeumorphic website design that looks like a notepad with pen ink all over it." width="960" height="624" /></a></p>\n<p>It was at these agencies that I started learning how to build WordPress websites. I’d used WordPress a couple times in college and felt comfortable with it, but now I was focusing a lot more on building my skills as a designer and front-end developer. My girlfriend (who was working at the same web agency) and I managed to convince our boss to start letting us create totally custom websites, rather than customizing existing themes, and that opened up a whole new world of design opportunities.</p>\n<h3>My first WordCamp</h3>\n<p>It was around then that my girlfriend, who attended WordCamp NYC the previous year, noticed the conference organizers were <a href="https://2010.nyc.wordcamp.org/volunteer-designer-needed/">looking for some volunteer designers</a> to help create some graphics. She passed along the information, and I got in touch.</p>\n<p>I collaborated with a few other designers to create the WordCamp branding, which was used across the website, t-shirt, signage, and stickers:</p>\n<p><a href="https://heropress.com/wp-content/uploads/2018/02/wcnyc.png"><img class="aligncenter size-full wp-image-2444" src="https://heropress.com/wp-content/uploads/2018/02/wcnyc.png" alt="WCNYC Banner" width="429" height="286" /></a></p>\n<p>It was amazing to see it everywhere at the WordCamp. It felt really special. Though I didn’t get “props” for this, I still consider it my first contribution to WordPress.</p>\n<p>WordCamp NYC was a ton of fun. I met interesting people, learned a lot about WordPress, and started to get a feel for the community. I left with a desire to get more involved. I browsed through WordPress.org, stumbling upon the “Make” section. I was stoked to see that there was a design group. I couldn’t write much code beyond CSS, but I could contribute my design skills. I joined a couple of the core channels on IRC, including the design channel (#wordpress-ui), and observed for while. I watched how the other designers in the project communicated, what they worked on, where they presented their work, etc. By observing before participating, I could learn the social queues and mores of the community. I didn’t want to embarass myself — I wanted to do things the established way based on community standards.</p>\n<p>What I found to be one of the most difficult parts of contributing was adapting to the technology used to build WordPress. I had to learn how to use command line and SVN. Getting set up in SVN and terminal was probably the biggest thing that stopped me from contributing code during my early years.</p>\n<p>But most of all, it came down to conquering fear. Fear that my design skills would be unwanted and unwelcome; fear that other contributors would look down on me or ignore me, or that they’d find me irritating; fear that I just wasn’t good enough to contribute. Some of this fear persists today, albeit greatly reduced.</p>\n<p>There’s a point at which I managed to conquer a little bit of that fear, stop observing, and really start to pitch in. Slowly, I started chiming in and volunteering for design tasks in IRC and the Make Design p2. I ended up doing a lot of small projects on the community side (rather than the core side) at first — some new landing pages and redesigns of sections on WordPress.org, graphics, and design for my own local meetups. I started feeling more and more confident with my contributions.</p>\n<h3>Core Props</h3>\n<p>By this point, I had done some wireframes and mockups for the core WordPress software — I’d even spoken at a WordCamp! — but I hadn’t actually gotten any code committed. Which meant, at this point in time, I didn’t have any “core props.” I was still really intimidated by Trac and SVN. I was a designer, and most design conversations happened in explicitly design space. But I really wanted to get some code committed into core, so I needed to find a CSS bug I felt qualified to fix.</p>\n<p>At WordCamp Philly in 2012, I finally got a chance. Sunday was devoted to contributing to WordPress. There were experienced core contributors present who could teach people how to make a patch, how to submit a ticket, and suggest tickets for people to work on.</p>\n<p>Aaron Jorbin, a core contributor and fellow speaker (and, now a friend), found a CSS issue I could work on: bringing the alternate “blue” color scheme into sync with the default “grey” scheme. He helped me get set up, helped me through saving my changes as a patch, and then helped me submit that patch to Trac. Andy Nacin, another core contributor (and future friend!) subsequently committed that patch, and I received my first core props.</p>\n<p><a href="https://heropress.com/wp-content/uploads/2018/02/first-props2.png"><img class="aligncenter size-large wp-image-2445" src="https://heropress.com/wp-content/uploads/2018/02/first-props2-1024x370.png" alt="Screenshot of ticket giving Mel props" width="960" height="347" /></a></p>\n<p>After creating my first patch, contributing became easier and easier. My confidence grew, and I spent more time participating in IRC, p2s, and Trac discussions. Then, in January of 2013, major design changes started coming to WordPress.</p>\n<h3>My WordPress apprenticeship</h3>\n<p>It started with icons.</p>\n<p>Ben Dunkle, WordPress’s official icon designer, proposed some shiny new icons for the WordPress dashboard. They were “flat” — one color, not a ton of details. The icons were awesome, but they didn’t really fit stylistically with the rest of the admin. The flat styles clashed with WordPress’ heavy use of gradients.</p>\n<p>So, I helped imagine what the admin could look like totally flat. We tried out a couple ideas, got them committed, and refined in code. The stark styles looked really fresh after years of gradients!</p>\n<p>Unfortunately, flattening the admin unearthed a whole lot of other issues. There wasn’t enough time to flesh out the new design before the next version of WordPress launched, so the flat styles got reverted and tabled for another time.</p>\n<p>Pretty soon after, I received an email via my site’s contact form:</p>\n<p><em><strong>Name</strong>: Matt</em><br />\n<em><strong> Comment</strong>: Add me on Skype when you get a chance.</em></p>\n<p>I think my heart stopped when I realized I had been emailed by the co-founder of WordPress, Matt Mullenweg. Matt invited me to come join a group that would take a broader look at redesigning the admin (codenamed “MP6”). It meant a lot for someone as important as Matt to recognize my skills. I spent a lot of my early years as a designer plagued with self-doubt, and suddenly I had someone pointing at me, going “I believe in you!”</p>\n<p>I leapt at the chance.</p>\n<p>Our group worked together on Skype. We quickly scoped the goal of MP6 to only update CSS and a little bit of JS. I helped Ben make some new vector icons, gave feedback and critiqued design proposals, and made some design proposals of my own. It was an intimate group where we all felt free to safely share and critique each other’s work. The mentorship I received from more experienced WordPress designers was invaluable to my growth. Working with these veterans of WordPress really helped me to grow into my fledgling wings.</p>\n<p><a href="https://make.wordpress.org/core/2013/10/23/mp6-3-8-proposal/">WordPress 3.8 shipped with the updated admin interface</a>, and I knew it was time to take my design career to a new level.</p>\n<p><a href="https://heropress.com/wp-content/uploads/2018/02/4-8-credits-smaller.jpg"><img class="aligncenter size-large wp-image-2446" src="https://heropress.com/wp-content/uploads/2018/02/4-8-credits-smaller-1024x895.jpg" alt="WordPress 4.8 Credits" width="960" height="839" /></a></p>\n<h3>Leaving the nest</h3>\n<p>I’d had my eye on Automattic, the makers of WordPress.com, the Jetpack plugin, and many other products, for most of my time contributing to WordPress. A couple of the designers I worked with on MP6 were Automattic designers, and it was an absolute joy to collaborate with them. At this point I’d spent so much of my career as either a lone designer, or in a competitive environment, that having a supportive, collaborative group of people helping me improve my work was a revelation.</p>\n<p>I desperately wanted to work at Automattic.</p>\n<p>While MP6 was in the works, I participated in a three month long design apprenticeship at a local agency. I worked alongside experienced mentors and fellow apprentices to hone my interface and user experience design skills. It was challenging and thrilling and totally complemented the mentorship I was receiving from WordPress folks. Plus, working in a positive environment reinforced my desire to work somewhere similar.</p>\n<p>After the apprenticeship, I finally felt like I had the skills and confidence to apply. I spent a lot of time writing my cover letter, and redesigning my portfolio to use in-depth case studies on a small number of recent projects. I finally sent off my application and crossed my fingers.</p>\n<p>A couple weeks later, I received a reply back asking to schedule an interview. I was terrified, but luckily, Automattic conducts interviews via text, so I was able to hide my fear behind my keyboard and hopefully try to project confidence. (Aside: I also show all my emotions on my face, so online communication is the best.)</p>\n<p>It must have worked, because I was moved on to the next phase of the application, doing a self-contained trial project, which was a whole ton of fun. I was able to put my recently refined research, interviewing, and user testing skills to use. I loved being given a real challenge to tackle. My trial went well, so I was moved along to the final interview with Matt Mullenweg. We spent a couple hours chatting on Skype, and at the end of our conversation I was given an offer. Welcome to Automattic!</p>\n<p>After working so hard on my apprenticeship, and on MP6, joining Automattic felt incredibly validating. The work I put in, the mentorship I received, all of the collaboration, led to this moment. I felt like I had graduated from apprentice and was now embarking on my adventure as a design journeyman. And boy, has it been an adventure!</p>\n<h3><a href="https://heropress.com/wp-content/uploads/2018/02/automattic-2-smaller.jpg"><img class="aligncenter size-large wp-image-2447" src="https://heropress.com/wp-content/uploads/2018/02/automattic-2-smaller-1024x678.jpg" alt="Automattic Group Photo" width="960" height="636" /></a></h3>\n<h3>Design leadership</h3>\n<p>The past four and a half years at Automattic have been fantastic. I have the best coworkers anyone can ask for. I’ve worked with some incredibly talented and empathetic designers, whose guidance and feedback constantly encourage me to improve my skills.</p>\n<p>I’ve continued to contribute to WordPress, slowly gaining more responsibility in the project the longer I stuck around. That’s the secret to becoming an open source leader, I discovered — <strong>decisions are made by the people who show up</strong>.</p>\n<p>In 2016, I was asked to by the Release Design Lead for <a href="https://wordpress.org/news/2016/04/coleman/">WordPress 4.5 “Coleman.”</a> I worked alongside the other release leads to make design-related decisions that impacted the release. This was the first release we experimented with having a Design Lead. I felt like design finally had a seat at the table.</p>\n<p>This continued to be the case last year, when Matt Mullenweg announced core focuses for the year: Editing, Customization, and the API. Both Editing and Customization had designers co-leading their focus. I was named the Customization co-lead. I’d been working on customization and site building on WordPress.com for over a year, so I had relevant experience.</p>\n<p>I worked with my developer co-lead, Weston Ruter, on low-hanging fruit, most of which we released in WordPress 4.8. The release was smaller, focused more on improvements than new features. We made a lot of updates to widgets, which had been long neglected.</p>\n<p>After that, we turned our sights to some more ambitious projects: drafting and scheduling changes in the Customizer, improvements to code editing in the WordPress admin, even more widget updates, and upgrades around the flow of changing themes and building menus for your site. We took a design-first approach to building out these new features, and I think it really shows in the work that we produced during the 4.9 release cycle, which Weston and I co-led.</p>\n<p><a href="https://wordpress.org/news/2017/11/tipton/">WordPress 4.9 “Tipton”</a> launched in November. Since then, I’ve pivoted to work on <a href="https://wordpress.org/gutenberg/">Gutenberg</a>, the new editing experience for WordPress which should be released in 5.0. Once the editing experience wraps up, we’re going to start looking at how we can extend Gutenberg to cover site building and customization. It’s a big, audacious goal that I hope to pursue with caution, humility, and a spirit of adventure.</p>\n<p>I owe WordPress a great deal. The connections I’ve made, the skills I’ve honed, and the mentorship I’ve received have all contributed to making me the designer I am today. I hope to give back for years to come!</p>\n<p><a href="https://heropress.com/wp-content/uploads/2018/02/community-summit-smaller.jpg"><img class="aligncenter size-full wp-image-2448" src="https://heropress.com/wp-content/uploads/2018/02/community-summit-smaller.jpg" alt="Community Summit Group Photo" width="960" height="556" /></a></p>\n<div class="rtsocial-container rtsocial-container-align-right rtsocial-horizontal"><div class="rtsocial-twitter-horizontal"><div class="rtsocial-twitter-horizontal-button"><a title="Tweet: Becoming a Better Designer Through WordPress" class="rtsocial-twitter-button" href="https://twitter.com/share?text=Becoming%20a%20Better%20Designer%20Through%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-better-designer-wordpress%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: Becoming a Better Designer Through WordPress" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-better-designer-wordpress%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-linkedin-horizontal"><div class="rtsocial-linkedin-horizontal-button"><a class="rtsocial-linkedin-button" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-better-designer-wordpress%2F&title=Becoming+a+Better+Designer+Through+WordPress" rel="nofollow" target="_blank" title="Share: Becoming a Better Designer Through WordPress"></a></div></div><div class="rtsocial-pinterest-horizontal"><div class="rtsocial-pinterest-horizontal-button"><a class="rtsocial-pinterest-button" href="https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/becoming-better-designer-wordpress/&media=https://heropress.com/wp-content/uploads/2018/02/020718-150x150.jpg&description=Becoming a Better Designer Through WordPress" rel="nofollow" target="_blank" title="Pin: Becoming a Better Designer Through WordPress"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/becoming-better-designer-wordpress/" title="Becoming a Better Designer Through WordPress"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/becoming-better-designer-wordpress/">Becoming a Better Designer Through WordPress</a> appeared first on <a rel="nofollow" href="https://heropress.com">HeroPress</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Feb 2018 12:00:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Mel Choyce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:66:"WPTavern: WooCommerce 3.3.1 Released, Addresses Template Conflicts";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78089";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wptavern.com/woocommerce-3-3-1-released-addresses-template-conflicts";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1330:"<p>WooCommerce 3.3.1 <a href="https://woocommerce.wordpress.com/2018/02/06/woocommerce-3-3-1-fix-release-notes/">is available</a> and fixes template conflicts discovered in a handful of WordPress themes that forced the team to <a href="https://wptavern.com/woocommerce-3-3-removed-from-plugin-directory-due-to-theme-conflicts">revert WooCommerce 3.3</a>. The team reviewed handful of the most common themes running WooCommerce and tested them for compatibility with 3.3.1.</p>\n<p><a href="https://github.com/woocommerce/woocommerce/wiki/Template-File-Guidelines-for-Devs-and-Theme-Authors#hook-vs-override---when-to-use-what">WooCommerce developers recommend</a> that theme authors use hooks instead of template overrides to ensure maximum compatibility.</p>\n<p>According to Mike Jolley, WooCommerce lead developer, this release highlighted issues with the template system&#8217;s extensibility and a disconnect between theme authors on external marketplaces. &#8220;We hope to find solutions to these problems in the near future,&#8221; Jolley said.</p>\n<p>WooCommerce 3.3.1 has at least <a href="https://github.com/woocommerce/woocommerce/compare/3.3.0...3.3.1">90 commits</a>. Users are encouraged to create a full-backup of their sites and then browse to Dashboard &gt; Updates to update WooCommerce from within WordPress.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Feb 2018 09:46:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:39;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"WPTavern: WordPress 4.9.4 Fixes Critical Auto Update Bug in 4.9.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:29:"https://wptavern.com/?p=78087";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wptavern.com/wordpress-4-9-4-fixes-critical-auto-update-bug-in-4-9-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:1984:"<p>Hours after <a href="https://wptavern.com/wordpress-4-9-3-released-fixes-34-bugs">WordPress 4.9.3 was released</a>, the WordPress development team followed it up <a href="https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/">with 4.9.4</a> to fix a critical bug with the auto update process. The bug generates a fatal PHP error when WordPress attempts to update itself.</p>\n<p>This error requires WordPress site owners and administrators to manually update to WordPress 4.9.4 by visiting your Dashboard and clicking the Update Now button on the Updates page. Alternatively, you can update by uploading the files via SFTP or by using WP-CLI.</p>\n<p>Dion Hulse, WordPress lead developer, says managed hosts that apply updates automatically for their customers will be able to update sites as they normally do. This may explain why some users have reported that sites running 4.9.3 have automatically updated to 4.9.4 without issue.</p>\n<p>The bug stems from an attempt to <a href="https://core.trac.wordpress.org/ticket/43103">reduce the number of API calls</a> made when the auto update cron job is run. Unfortunately, the code committed had unintended consequences. &#8220;It triggers a fatal error as not all of the dependencies of <code>find_core_auto_update()</code> are met,&#8221; Hulse said.</p>\n<p>A postmortem will be published once the team determines how to prevent this mistake from happening in the future. &#8220;We don’t like bugs in WordPress any more than you do, and we’ll be taking steps to both increase automated coverage of our updates and improve tools to aid in the detection of similar bugs before they become an issue in the future,&#8221; Hulse said.</p>\n<p>While WordPress 4.9.3 and 4.9.4 do not include any security fixes, it&#8217;s important to note that in order to receive automatic security updates in the future, sites using the 4.9 branch must be running at least 4.9.4. Older branches are unaffected.</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, 07 Feb 2018 09:19:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:40;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:45:"Dev Blog: WordPress 4.9.4 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=5559";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/news/2018/02/wordpress-4-9-4-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:1814:"<p>WordPress 4.9.4 is now available.</p>\n<p>This maintenance release fixes a severe bug in 4.9.3, which will cause sites that support automatic background updates to fail to update automatically, and will require action from you (or your host) for it to be updated to 4.9.4.</p>\n<p>Four years ago with <a href="https://wordpress.org/news/2013/10/basie/">WordPress 3.7 &#8220;Basie&#8221;</a>, we added the ability for WordPress to self-update, keeping your website secure and bug-free, even when you weren&#8217;t available to do it yourself. For four years it&#8217;s helped keep millions of installs updated with very few issues over that time. Unfortunately <a href="https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/">yesterdays 4.9.3 release</a> contained a severe bug which was only discovered after release. The bug will cause WordPress to encounter an error when it attempts to update itself to WordPress 4.9.4, and will require an update to be performed through the WordPress dashboard or hosts update tools.</p>\n<p>WordPress managed hosting companies who install updates automatically for their customers can install the update as normal, and we&#8217;ll be working with other hosts to ensure that as many customers of theirs who can be automatically updated to WordPress 4.9.4 can be.</p>\n<p>For more technical details of the issue, we&#8217;ve <a href="https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/">posted on our Core Development blog</a>. For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?status=closed&milestone=4.9.4&group=component">list of tickets</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.9.4</a> or visit Dashboard → Updates and click “Update 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:"Tue, 06 Feb 2018 16:17: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:10:"Dion Hulse";s: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:49:"WPTavern: WordPress 4.9.3 Released, Fixes 34 Bugs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78081";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://wptavern.com/wordpress-4-9-3-released-fixes-34-bugs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:681:"<p>WordPress 4.9.3 <a href="https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/">is available</a> and fixes 34 bugs. Customizer changesets, the visual editor, widgets, and compatibility for PHP 7.2 highlight this release. You can view all of the changes via the <a href="https://core.trac.wordpress.org/log/branches/4.9?rev=42630&stop_rev=42521">changelog</a> or <a href="https://core.trac.wordpress.org/query?status=closed&milestone=4.9.3&group=component">trac tickets</a>. Most sites will update automatically. However, if you want to trigger the update ahead of time or manually update, visit your Dashboard, click the Updates link, and click Update 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:"Tue, 06 Feb 2018 08:35: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:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:66:"WPTavern: Liquid Web Acquires iThemes in Multi-Million Dollar Deal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=77907";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"https://wptavern.com/liquid-web-acquires-ithemes-in-multi-million-dollar-deal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4149:"<p>Liquid Web, a managed hosting service founded in 1997, <a href="https://www.liquidweb.com/blog/liquid-web-acquires-ithemes/">has acquired</a> <a href="https://ithemes.com/">iThemes</a>. iThemes recently <a href="https://ithemes.com/10-years-in-wordpress/">celebrated its 10th year</a> in business. <a href="https://poststatus.com/liquid-web-acquired-ithemes/">PostStatus reports</a> that it was an all cash deal and sources confirmed to the Tavern that it was a multi-million dollar acquisition.</p>\n<p>iThemes will continue to operate as an independent unit within Liquid Web. Cory Miller will remain as General Manager of iThemes and the company will keep its office and employees in Oklahoma City, OK.</p>\n<p>iThemes was founded in 2008 and is part of a group of WordPress focused companies that started <a href="https://medium.com/@jasonpatricksc/a-brief-history-of-a-wordpress-theme-business-3847e16fcba4">around the same time</a>. The group includes WooThemes, Revolution Themes now known as StudioPress, Press75, WPZoom, and others.</p>\n<p>WooThemes was <a href="https://wptavern.com/automattic-acquires-woocommerce">acquired by Automattic</a>. StudioPress has branched off into content marketing with CopyBlogger and hosting via StudioPress sites. Press75 was acquired by Westwerk in 2014 and WPZoom continues to operate independently.</p>\n<p>iThemes diversified its business a number of times over the years, adding plugins and services to its portfolio. Some of the most notable products include, FlexxTheme, BackupBuddy, Builder, iThemes Sync, and iThemes Security. In 2013, the company branched off into the e-commerce space <a href="https://wptavern.com/ithemes-launches-e-commerce-plugin-exchange">with Exchange</a>. In 2017, <a href="https://ithemes.com/2017/07/13/ithemes-exchange-new-home-exchangewpcom/">Exchange was acquired</a> by AJ Morris allowing the company to focus on iThemes Sales Accelerator, a new product that works exclusively with WooCommerce.</p>\n<p>Considering Liquid Web recently launched <a href="https://www.liquidweb.com/products/managed-woocommerce-hosting/">its managed WooCommerce hosting</a>, iThemes Sales Accelerator should pair nicely with its services.</p>\n<p>This isn&#8217;t the first time a large webhosting company has acquired a WordPress business. In the last two years, GoDaddy has acquired three companies with a presence in the WordPress ecosystem.</p>\n<ul>\n<li><strong>April 2013</strong> EIG Acquires MOJO-Themes</li>\n<li><strong>September 2016</strong> GoDaddy Acquires ManageWP</li>\n<li><strong>December 2016</strong> GoDaddy Acquires WP Curve</li>\n<li><strong>March 2017</strong> GoDaddy Acquires Sucuri</li>\n</ul>\n<h2>After 10 Years, Cory Miller Lets Go</h2>\n<p>Miller founded iThemes 10 years ago and helped navigate it through the ups and downs that come with running a business. Although Miller no longer owns the company he founded, he&#8217;s excited about the next chapter and the opportunities it presents to him and his team.</p>\n<p>&#8220;One of the keys that has contributed greatly to our success over the last 10 years is being willing to adapt and to innovate and to try new things,&#8221; Miller said. &#8220;For instance, If we’d kept focusing solely on WordPress themes, which was our primary business for the early years, we wouldn’t be around today.</p>\n<p>&#8220;As we surveyed the landscape in WordPress, one thing was very obvious to us: hosting is the future. As a bootstrapped company from the beginning, with our DNA as a software company, and seeing where Liquid Web is going, it just made sense for us to join forces.</p>\n<p>&#8220;We view this is as another chapter in our story of our willingness to adapt and try new things so we can keep doing what we do best — Make People’s Lives Awesome. So we&#8217;re tremendously excited about our future with Liquid Web, and what we’re going to be able to do for the WordPress community together.&#8221;</p>\n<p>Miller says they&#8217;re in the middle of the transition process and are working towards tighter integration between iThemes&#8217; products and Liquid Web&#8217;s managed hosting services.</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, 06 Feb 2018 00:33:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:43;a:6:{s:4:"data";s:13:"\n	\n	\n	\n	\n	\n	\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:45:"Dev Blog: WordPress 4.9.3 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=5545";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3408:"<p>WordPress 4.9.3 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 4.9, including fixes for Customizer changesets, widgets, visual editor, and PHP 7.2 compatibility. For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?status=closed&milestone=4.9.3&group=component">list of tickets</a> and the <a href="https://core.trac.wordpress.org/log/branches/4.9?rev=42630&stop_rev=42521">changelog</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.9.3</a> or visit Dashboard → Updates and click “Update Now.” Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.3:</p>\n<p><a href="https://profiles.wordpress.org/jorbin/">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/abdullahramzan/">abdullahramzan</a>, <a href="https://profiles.wordpress.org/adamsilverstein/">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/afercia/">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/andreiglingeanu/">andreiglingeanu</a>, <a href="https://profiles.wordpress.org/azaozz/">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/bpayton/">Brandon Payton</a>, <a href="https://profiles.wordpress.org/chetan200891/">Chetan Prajapati</a>, <a href="https://profiles.wordpress.org/coleh/">coleh</a>, <a href="https://profiles.wordpress.org/darko-a7/">Darko A7</a>, <a href="https://profiles.wordpress.org/desertsnowman/">David Cramer</a>, <a href="https://profiles.wordpress.org/dlh/">David Herrera</a>, <a href="https://profiles.wordpress.org/dd32/">Dion Hulse</a>, <a href="https://profiles.wordpress.org/flixos90/">Felix Arntz</a>, <a href="https://profiles.wordpress.org/frank-klein/">Frank Klein</a>, <a href="https://profiles.wordpress.org/pento/">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/audrasjb/">Jb Audras</a>, <a href="https://profiles.wordpress.org/jbpaul17/">Jeffrey Paul</a>, <a href="https://profiles.wordpress.org/lizkarkoski/">lizkarkoski</a>, <a href="https://profiles.wordpress.org/clorith/">Marius L. J.</a>, <a href="https://profiles.wordpress.org/mattyrob/">mattyrob</a>, <a href="https://profiles.wordpress.org/monikarao/">Monika Rao</a>, <a href="https://profiles.wordpress.org/munyagu/">munyagu</a>, <a href="https://profiles.wordpress.org/ndavison/">ndavison</a>, <a href="https://profiles.wordpress.org/nickmomrik/">Nick Momrik</a>, <a href="https://profiles.wordpress.org/peterwilsoncc/">Peter Wilson</a>, <a href="https://profiles.wordpress.org/rachelbaker/">Rachel Baker</a>, <a href="https://profiles.wordpress.org/rishishah/">rishishah</a>, <a href="https://profiles.wordpress.org/othellobloke/">Ryan Paul</a>, <a href="https://profiles.wordpress.org/sasiddiqui/">Sami Ahmed Siddiqui</a>, <a href="https://profiles.wordpress.org/sayedwp/">Sayed Taqui</a>, <a href="https://profiles.wordpress.org/seanchayes/">Sean Hayes</a>, <a href="https://profiles.wordpress.org/sergeybiryukov/">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shooper/">Shawn Hooper</a>, <a href="https://profiles.wordpress.org/netweb/">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/manikmist09/">Sultan Nasir Uddin</a>, <a href="https://profiles.wordpress.org/tigertech/">tigertech</a>, and <a href="https://profiles.wordpress.org/westonruter/">Weston Ruter</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, 05 Feb 2018 19:47: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:15:"Sergey Biryukov";s: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:57:"Mark Jaquith: Tips for configuring WordPress environments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"http://markjaquith.wordpress.com/?p=5476";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:89:"https://markjaquith.wordpress.com/2018/02/05/tips-for-configuring-wordpress-environments/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4626:"<p>Many WordPress hosts will give your site a &#8220;staging&#8221; environment. You can also use tools like <a href="https://local.getflywheel.com/">Local by Flywheel</a>, or <a href="https://www.mamp.info/">MAMP Pro</a> to run a local &#8220;dev&#8221; version of your site. These are great ways of testing code changes, playing with new plugins, or making theme tweaks, without risking breaking your live &#8220;production&#8221; site.</p>\n<p>Here is my advice for working with different WordPress environments.</p>\n<h2>Handling Credentials</h2>\n<p>The live (&#8220;production&#8221;) version of your site should be opt-in. That is, your site&#8217;s Git repo should <strong>not</strong> store production credentials in <strong>wp-config.php</strong>. You don&#8217;t want something to happen like <a href="https://www.reddit.com/r/cscareerquestions/comments/6ez8ag/accidentally_destroyed_production_database_on/">when this developer accidentally connected to the production database</a> and destroyed all the company data on his first day.</p>\n<p>Instead of keeping database credentials in <strong>wp-config.php</strong>, have <strong>wp-config.php</strong> look for a <strong>local-config.php</strong> file. Replace the section that defines the database credentials with something like this:</p>\n<pre class="brush: php; title: ; notranslate">if ( file_exists( __DIR__ . \'/local-config.php\' ) ) {\n    include( __DIR__ . \'/local-config.php\' );\n} else {\n    die( \'local-config.php not found\' );\n}</pre>\n<p>Make sure you add <strong>local-config.php</strong> to your <strong>.gitignore</strong> so that no one commits their local version to the repo.</p>\n<p>On production, you&#8217;ll create a <strong>local-config.php</strong> with production credentials. On staging or development environments, you&#8217;ll create a <strong>local-config.php</strong> with the credentials for those environments.</p>\n<h2>Production is a Choice</h2>\n<p>Right after the section that calls out <strong>local-config.php</strong>, put something like this:</p>\n<pre class="brush: php; title: ; notranslate">if ( ! defined( \'WP_ENVIRONMENT\' ) ) {\n    define( \'WP_ENVIRONMENT\', \'development\' );\n}</pre>\n<p>The idea here is that there will always be a <strong>WP_ENVIRONMENT</strong> constant available to you that tells you what kind of environment your site is being run in. In production, you will put this in <strong>local-config.php</strong> along with the database credentials:</p>\n<pre class="brush: php; title: ; notranslate">define( \'WP_ENVIRONMENT\', \'production\' );</pre>\n<p>Now, in your theme, or your custom plugins, or other code, you can do things like this:</p>\n<pre class="brush: php; title: ; notranslate">if ( \'production\' === WP_ENVIRONMENT ) {\n    add_filter( \'option_gravityformsaddon_gravityformsstripe_settings\', function( $stripe_settings ) {\n        $stripe_settings[\'api_mode\'] = \'live\';\n        return $stripe_settings;\n    });\n} else {\n    add_filter( \'option_gravityformsaddon_gravityformsstripe_settings\', function( $stripe_settings ) {\n        $stripe_settings[\'api_mode\'] = \'test\';\n        return $stripe_settings;\n    });\n}</pre>\n<p>This bit of code is for the Easy Digital Downloads Stripe gateway plugin. It makes sure that on the production environment, the payment gateway is always in <strong>live</strong> mode, and the anywhere else, it is always in <strong>test</strong> mode. This protects against two very bad situations: connecting to live services from a test environment (which could result in customers being charged for test transactions) and connecting to test services from a live environment (which could prevent customers from purchasing products on your site).</p>\n<p>You can also use this pattern to do things like hide Google Analytics on your test sites, or make sure debug plugins are only active on development sites (more on that, in a future post!)</p>\n<p>Don&#8217;t rely on complicated procedures (&#8220;step 34: make sure you go into the Stripe settings and switch the site to test mode on your local test site&#8221;) — make these things explicit in code. Make it impossible to screw it up, and working on your sites will become faster and less stressful.</p>\n<hr />\n<p><b>Do you need <a href="https://coveredwebservices.com/">WordPress services?</a></b></p>\n<p>Mark runs <a href="https://coveredwebservices.com/">Covered Web Services</a> which specializes in custom WordPress solutions with focuses on security, speed optimization, plugin development and customization, and complex migrations.</p>\n<p>Please reach out to start a conversation!</p>\n[contact-form]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Feb 2018 14:59:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Mark Jaquith";s: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:40:"Matt: National Magazine Award Nomination";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=47900";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"https://ma.tt/2018/02/national-magazine-award-nomination/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:761:"<p>Longreads <a href="http://www.magazine.org/asme/about-asme/pressroom/asme-press-releases/ellies-2018-finalists-announced">was nominated today</a> for its first-ever <a href="https://en.wikipedia.org/wiki/National_Magazine_Awards">National Magazine Award</a>, in the category of columns and commentary, alongside ESPN The Magazine, BuzzFeed News, Pitchfork, and New York magazine. Laurie Penny&#x27;s Longreads columns <a href="https://longreads.com/tag/metoo-and-consent/">explore important questions of consent and female desire</a> that have strongly resonated in our current moment. In addition to this nomination, Penny&#x27;s columns have been translated and republished in Italian and German newspapers, and will be collected in a forthcoming book.</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, 02 Feb 2018 21:37: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: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:46:"Dev Blog: The Month in WordPress: January 2018";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=5541";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/news/2018/02/the-month-in-wordpress-january-2018/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3839:"<p>Things got off to a gradual start in 2018 with momentum starting to pick up over the course of the month. There were some notable developments in January, including a new point release and work being done on other important areas of the WordPress project.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>WordPress 4.9.2 Security and Maintenance Release</h2>\n\n<p>On January 16, <a href="https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/">WordPress 4.9.2 was released</a> to fix an important security issue with the media player, as well as a number of other smaller bugs. This release goes a long way to smoothing out the 4.9 release cycle with the next point release, v4.9.3, <a href="https://make.wordpress.org/core/2018/01/31/wordpress-4-9-3-release-pushed-to-february-5th/">due in early February</a>.</p>\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href="https://make.wordpress.org/chat/"> Making WordPress Slack group</a>, and follow<a href="https://make.wordpress.org/core/"> the Core team blog</a>.</p>\n\n<h2>Updated Plugin Directory Guidelines</h2>\n\n<p>At the end of 2017, <a href="https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/">the guidelines for the Plugin Directory</a> received a significant update to make them clearer and expanded to address certain situations. This does not necessarily make these guidelines complete, but rather more user-friendly and practical; they govern how developers build plugins for the Plugin Directory, so they need to evolve with the global community that the Directory serves.</p>\n\n<p>If you would like to contribute to these guidelines, you can make a pull request to <a href="https://github.com/WordPress/wporg-plugin-guidelines">the GitHub repository</a> or email <a href="mailto:plugins@wordpress.org">plugins@wordpress.org</a>. You can also jump into the #pluginreview channel in the<a href="https://make.wordpress.org/chat/"> Making WordPress Slack group</a>.</p>\n\n<hr class="wp-block-separator" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li>Near the end of last year a lot of work was put into improving the standards in the WordPress core codebase and now <a href="https://make.wordpress.org/core/2017/11/30/wordpress-php-now-mostly-conforms-to-wordpress-coding-standards/">the entire platform is at nearly 100% compliance with the WordPress coding standards</a>.</li>\n    <li>Gutenberg, the new editor coming to WordPress core in the next major release, <a href="https://make.wordpress.org/core/2018/01/25/whats-new-in-gutenberg-25th-january/">was updated to v2.1 this month</a> with some great usability and technical improvements.</li>\n    <li>The Global Community Team is <a href="https://make.wordpress.org/community/2018/01/16/2018-goals-for-the-global-community-team-suggestions-time/">taking suggestions for the goals of the Community program in 2018</a>.</li>\n    <li><a href="https://online.wpcampus.org/">WPCampus Online</a>, a digital conference focused on WordPress in higher education, took place on January 30. The videos of the event sessions will be online soon.</li>\n    <li>A WordPress community member <a href="https://wptavern.com/new-toolkit-simplifies-the-process-of-creating-gutenberg-blocks">has released a toolkit</a> to help developers build blocks for Gutenberg.</li>\n    <li>The community team that works to improve the WordPress hosting experience is relatively young, but <a href="https://make.wordpress.org/hosting/2018/01/25/hosting-meeting-notes-january-10-2018/">they have been making some great progress recently</a>.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href="https://make.wordpress.org/community/month-in-wordpress-submissions/">submit it here</a>.</em></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 02 Feb 2018 08:10: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:15:"Hugh Lashbrooke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:54:"WPTavern: WordPress 4.9.3 Rescheduled for February 5th";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=78058";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wptavern.com/wordpress-4-9-3-rescheduled-for-february-5th";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1336:"<p>WordPress 4.9.3 is a maintenance release and was originally scheduled to be available on January 30th. However, due to ongoing tickets and a short time frame to test the <a href="https://make.wordpress.org/core/2018/02/01/wordpress-4-9-3-rc/">release candidate</a>, it has <a href="https://make.wordpress.org/core/2018/01/31/wordpress-4-9-3-release-pushed-to-february-5th/">been pushed back</a> to February 5th.</p>\n<p><a href="https://make.wordpress.org/core/2018/02/01/wordpress-4-9-3-rc/">WordPress 4.9.3 RC 1</a> is available for testing. This release <a href="https://make.wordpress.org/core/2018/01/24/jshint-removed-from-codemirror-in-4-9-3/">removes JSHint from the code editors</a> due to conflicts with the GPL License. If your code relies on JSHint from Core, <a href="https://core.trac.wordpress.org/ticket/42850">developers encourage</a> you to update it to use a copy of JSHint.</p>\n<p>Other changes in 4.9.3 include, avoiding page scrolling when navigating the media modal, a handful of improvements to the customizer, <a href="https://make.wordpress.org/core/2018/01/26/wordpress-4-9-3-beta/">and more</a>. Please test WordPress 4.9.3 on a staging site and if you encounter any bugs, you can report them on the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta section</a> of the support forums.</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, 02 Feb 2018 08:09:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:78:"WPTavern: WooCommerce 3.3 Removed From Plugin Directory Due to Theme Conflicts";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=77962";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:89:"https://wptavern.com/woocommerce-3-3-removed-from-plugin-directory-due-to-theme-conflicts";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3081:"<p>Earlier this week, WooCommerce 3.3 <a href="https://wptavern.com/woocommerce-3-3-increases-theme-compatibility-auto-regenerates-thumbnails">was released</a> and among the features was increased theme compatibility. However, soon after release, users of third-party themes <a href="https://wordpress.org/support/topic/wc-3-3-issues-with-categories-displaying-in-shop/">reported issues</a> with categories displaying improperly.</p>\n<p>Despite it being a minor release that should be fully backwards compatible with previous releases up to 3.0, WooCommerce has removed 3.3 from the plugin directory and replaced it with 3.2.6.</p>\n<p>According <a href="https://woocommerce.wordpress.com/2018/02/01/woocommerce-3-3-1-status-update/">to a post</a> on the project&#8217;s official blog, WooCommerce 3.3.1 will take the place of 3.3 and will include a fix for the category display issue.</p>\n<blockquote class="wp-block-quote"><p>The issue affected themes with template overrides from 3.2.x which hadn’t been made compatible with 3.3. In general, <a href="https://github.com/woocommerce/woocommerce/wiki/Template-File-Guidelines-for-Devs-and-Theme-Authors#hook-vs-override---when-to-use-what">we recommend that themes use hooks instead of template overrides.</a> Themes such as <a href="https://en-gb.wordpress.org/themes/storefront/">Storefront</a> (which does not use template overrides) were compatible at launch.</p>\n<p><cite>WooCommerce Blog</cite></p></blockquote>\n<p>If you&#8217;ve already updated to WooCommerce 3.3 and your theme is compatible, you don&#8217;t need to make any changes. If your theme is not compatible, WooCommerce recommends checking with your theme&#8217;s author to see if a compatibility fix has been released.</p>\n<p>Users can also wait for the release of 3.3.1, update to the <a href="https://github.com/woocommerce/woocommerce/releases/tag/3.3.1-rc.1">pre-release version</a> of 3.3.1, or use the <a href="https://wordpress.org/plugins/wp-rollback/">WP-Rollback plugin</a> and revert back to 3.2.6. WooCommerce developers suggest only going the WP-Rollback route if you&#8217;re not comfortable installing pre-release software.</p>\n<p>Coen Jacobs, a former member of the WooCommerce development team, commented on Twitter that this was the first time he can remember that a release was reverted.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">Fun fact: As far as I recall, there has never been a release of WooCommerce that has been withdrawn before. During my time on the development team we have pushed fix releases on the same day as a big releases, but never was it reverted like this.</p>\n<p>&mdash; Coen Jacobs (@CoenJacobs) <a href="https://twitter.com/CoenJacobs/status/958768816808497152?ref_src=twsrc%5Etfw">January 31, 2018</a></p></blockquote>\n<p></p>\n<p>The development team has tested 3.3.1 with more than 40 different themes and believe it is stable. However, they are exercising caution and thoroughly testing the fixes with more themes. Users can expect to see 3.3.1 officially released the week of February 5th.</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, 02 Feb 2018 07:06:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:81:"WPTavern: WPWeekly Episode 303 – Interview With Zac Gordon, Technology Educator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wptavern.com?p=77901&preview=true&preview_id=77901";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:87:"https://wptavern.com/wpweekly-episode-303-interview-with-zac-gordon-technology-educator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1902:"<p>In this episode, <a href="http://jjj.me">John James Jacoby</a> and I are joined by <a href="http://zacgordon.com/">Zac Gordon</a>. We discussed a wide range of topics including, balancing freelance work with educating, an overview of Gutenberg from an educator&#8217;s perspective, and potential brand issues if the Gutenberg name <a href="githubhttps://github.com/WordPress/gutenberg/issues/4681">was deprecated</a>. We also talked about some of the difficulties involved with <a href="https://gutenberg.courses/">creating a course</a> around a feature that&#8217;s not yet part of WordPress core.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://ithemes.com/2018/01/31/ithemes-joining-the-liquid-web-family/">iThemes Acquired by LiquidWeb</a><br />\n<a href="https://woocommerce.com/2018/01/whats-new-woocommerce-3-3/">WooCommerce 3.3 Released</a><br />\n<a href="https://wptavern.com/updraftplus-acquires-easy-updates-manager-plugin">Easy Updates Manager Acquired by UpdraftPlus</a></p>\n<h2>Picks of the Week:</h2>\n<p>John James Jacoby suggested <a href="https://www.beamauthentic.com/">Beam Authentic</a>. Beam Authentic is a wearable, connected, smart button that can be programmed to display different images through an app.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 7th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href="https://www.wptavern.com/feed/podcast">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href="https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #303:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Feb 2018 02:12:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}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:"Wed, 14 Mar 2018 23:12:26 GMT";s:12:"content-type";s:8:"text/xml";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Wed, 14 Mar 2018 23:00:27 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:9:"HIT ord 1";s:16:"content-encoding";s:4:"gzip";}}s:5:"build";s:14:"20130911040210";}', 'no'),
 (822, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1521112346', 'no'),
 (823, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1521069146', 'no'),
 (824, '_transient_timeout_dash_v2_fe2922e4dab38d163882ac0453e47f7b', '1521112346', 'no'),
 (825, '_transient_dash_v2_fe2922e4dab38d163882ac0453e47f7b', '<div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/03/the-month-in-wordpress-february-2018/\'>The Month in WordPress: February 2018</a></li></ul></div><div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-look-back-tamsin-taylor-freedom-through-blogging\'>HeroPress: A look back: Tamsin Taylor, Freedom Through Blogging</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/stack-overflow-survey-respondents-still-rank-wordpress-among-the-most-dreadful-platforms\'>WPTavern: Stack Overflow Survey Respondents Still Rank WordPress Among the Most Dreadful Platforms</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpcampus-scheduled-for-july-12-14-in-st-louis-mo\'>WPTavern: WPCampus Scheduled for July 12-14 in St. Louis, MO</a></li></ul></div>', 'no'),
 (826, '848b42624443bf10792e7a14c823b502', 'a:2:{s:7:"timeout";i:1521127729;s:5:"value";s:33270:"{"new_version":"3.3.3","stable_version":"3.3.3","name":"The Post Grid Pro for WordPress","slug":"the-post-grid-pro","url":"https:\\/\\/www.radiustheme.com\\/downloads\\/the-post-grid-pro-for-wordpress\\/?changelog=1","last_updated":"2018-03-01 11:39:30","homepage":"https:\\/\\/www.radiustheme.com\\/downloads\\/the-post-grid-pro-for-wordpress\\/","package":"https:\\/\\/www.radiustheme.com\\/edd-sl\\/package_download\\/MTUyMTE2NzMyOTo5YTUzMmNjMTkxZDQ1NDg3ODk4OWI0NjQyZTFhNWUwNzozMjY1OmM4Njg5Njg2NDFjZjMwNDg0OTg5ODk1NjEzNmE3ODY5Omh0dHBALy93d3cudG9vd29vbWJhcmVnaW9uYWxjb3VuY2lsLmNvbS5hdS90Y29mOjA=","download_link":"https:\\/\\/www.radiustheme.com\\/edd-sl\\/package_download\\/MTUyMTE2NzMyOTo5YTUzMmNjMTkxZDQ1NDg3ODk4OWI0NjQyZTFhNWUwNzozMjY1OmM4Njg5Njg2NDFjZjMwNDg0OTg5ODk1NjEzNmE3ODY5Omh0dHBALy93d3cudG9vd29vbWJhcmVnaW9uYWxjb3VuY2lsLmNvbS5hdS90Y29mOjA=","sections":{"description":"<p>[vc_row][vc_column][vc_column_text]The Post Grid is a fully Responsive &amp; Mobile friendly plugin to display your page\\/post\\/ custom post type in Grid, List, Carousel Slider and Isotope View without any line of coding. It is fast and easy to generate grid from admin end and insert into page\\/post. You can Display posts by any category(s), tag(s), author(s), keyword(s) also Order posts by Id, Title, Created date, Modified date, Date Range and Menu order.<\\/p>\\n<p>[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_custom_heading text=\\"Features\\" font_container=\\"tag:h2|text_align:left|color:%2381d742\\" use_theme_fonts=\\"yes\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/2\\"][vc_column_text el_class=\\"cp-features\\"]<\\/p>\\n<ul>\\n<li> Fully responsive and mobile friendly.<\\/li>\\n<li> 55 Amazing Layouts with Masonry, Google, <strong>Pinterest<\\/strong> and others.<\\/li>\\n<li> Even and <strong>Masonry<\\/strong> Grid for all Grid.<\\/li>\\n<li> Generate Unlimited grid.<\\/li>\\n<li> Layout Preview in Shortcode Settings.<\\/li>\\n<li> Custom number of post per page.<\\/li>\\n<li> Use posts, pages, <strong>Custom Post Type<\\/strong> as the source (<strong>don\'t support multiple post type in a single shortcode<\\/strong>).<\\/li>\\n<li> Display posts by any Taxonomy like category(s), tag(s), author(s), keyword(s), Status and <strong>Date Range<\\/strong><\\/li>\\n<li> Order by Id, Title, Created date, Modified date, <strong>Random<\\/strong>, <strong>Comments Count<\\/strong> and Menu order.<\\/li>\\n<li> Display image size (thumbnail, medium, large, full and <strong>Custom Image Size<\\/strong>)<\\/li>\\n<li> Custom Image Re-size option.<\\/li>\\n<li> Enable Sticky Post.<\\/li>\\n<li> Category, Search and Tags Layout .<\\/li>\\n<li> Add Visual Composer Addone .<\\/li>\\n<li> <strong>All 16 layouts now can turn as Grid or Filter.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Improve Code &amp; AJAX functionality.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Now Filter as Button or Drop down.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Count on Filter button.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Short by &amp; Ordering option.\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Gutter or Padding Control.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Search option added <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<\\/ul>\\n<p>[\\/vc_column_text][\\/vc_column][vc_column width=\\"1\\/2\\"][vc_column_text el_class=\\"cp-features\\"]<\\/p>\\n<ul>\\n<li> Isotope filter for any taxonomy ie. categories, tags...<\\/li>\\n<li> <strong>Search field on Isotope<\\/strong>.<\\/li>\\n<li> Set Default Isotop Filter Button.<\\/li>\\n<li> Disable Show All Button for Isotope Filter.<\\/li>\\n<li> Query Post with Relation.<\\/li>\\n<li> All Fields Control.<\\/li>\\n<li> All Text color, size and Button Color control.<\\/li>\\n<li> Overlay color and opacity control.<\\/li>\\n<li> Default image set option in Shortcode generator settings.<\\/li>\\n<li> Enable\\/Disable Pagination.<\\/li>\\n<li> Number Pagination Supported.<\\/li>\\n<li> <strong>Ajax Pagination: Load more, Load on scroll and AJAX Number Pagination<\\/strong><\\/li>\\n<li> <strong>AJAX Number Pagination (only for Grid layouts)<\\/strong> .<\\/li>\\n<li> <strong>Single popup and Popup with next preview<\\/strong>.<\\/li>\\n<li> Social Share on popup.<\\/li>\\n<li> Social Share on Grid View.<\\/li>\\n<li> <strong>4 Offset Layouts Added.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Gallery Layout Added.\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Desktop, Tab &amp; Mobile Display Control.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Excerpt Limit in Words.<\\/strong>\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Some new styling control added. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Taxonomy ie Category Ordering. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Layout 2 image Grid width Control. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Auto update by activate license key<\\/strong><\\/span><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Add Advanced Custom field integration for custom field (V 3.3)<\\/strong><\\/span><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Add Sub-Category Filtering (V 3.3)<\\/strong><\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_column_text][\\/vc_column_text][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3332\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nFully Responsive &amp; Mobile Friendly<br \\/>\\nAll 55 Layouts are fully responsive and mobile and perfect for all devices like Desktop, Laptop, iPad, iPhone and Android Devices.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTotal 55 Layouts with grid, Isotope, Slider, Offset &amp; Gallery<br \\/>\\n<strong>Grid:<\\/strong> 20 Grid Layout with Woo Commerce.<\\/p>\\n<p><strong>Isotope:<\\/strong> 16 Isotope Filter Layout with Category\\/ Tag Filter button.<\\/p>\\n<p><strong>Slider:<\\/strong> 12 Carousel Slider Layouts<\\/p>\\n<p><strong>Offset:<\\/strong> 4 Offset Layouts<\\/p>\\n<p><strong>Gallery:<\\/strong> 1 Gallery Layout[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3333\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3316\\" img_size=\\"full\\" onclick=\\"link_image\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nAdvance Filter by Query Post<br \\/>\\nYou can filter by Category(s), Tag(s)<\\/p>\\n<p>Set order by id, title, post date, modify date, random and comments count.<\\/p>\\n<p>Can set specific user post.<\\/p>\\n<p>And set specific date range post[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTurn Grid Layout to Filterable Grid<br \\/>\\nYou can set\\u00a0all layout normal Grid or Filterable grid with two types of filter buttons dropdown or normal buttons[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9192\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9191\\" img_size=\\"full\\" onclick=\\"link_image\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\n4 New offset layouts<br \\/>\\nYou can set offset layouts in Version 2.0 we added 4 new layouts for offset.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\n4 Types of Pagination<br \\/>\\nNormal Number Pagination, Ajax Number Pagination, Load More and Load on Scrolling. You can control the number how many load per click.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3807\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3323\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nEven &amp; Masonry Grid<br \\/>\\nYou can set Even or Masonry grid also can set margin or no margin.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSingle Popup &amp; Multi Pop up<br \\/>\\nYou can set single item popup it will show with social share button[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3325\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9195\\" img_size=\\"full\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nGallery Layout<br \\/>\\nYou can Make Gallery in V 2.0 we added this feature.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTaxonomy Ordering<br \\/>\\nYou can\\u00a0order category for Filtering button.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9194\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9197\\" img_size=\\"full\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nMulti Popup with next preview button<br \\/>\\nYou can set multi popup it has\\u00a0control of next and preview button[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nDetail popup Page field control<br \\/>\\nYou can select which fields will show in single &amp; multi popup page.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3328\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3327\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nField Selection in Grid View<br \\/>\\nYou can select which fields you want to display in Grid View.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nAll Color and font size control<br \\/>\\nFrom Short Code Generator Style Tab you can set all font size and color control.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3330\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nLayout Preview in Admin<br \\/>\\nUnder Short Code Generator you can view the layout how it will look.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9184\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3808\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSupport Sticky Post<br \\/>\\nYou can add Sticky Post (added V 1.1) Just select Yes. Then that post will show first of grid.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSocial Share on Grid View<br \\/>\\nYou can set social share on Grid view[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3810\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_column_text]<br \\/>\\nTemplate Override<br \\/>\\nCategory Archive, Search and Tags template can override by Grid Layout.[\\/vc_column_text][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_single_image image=\\"3809\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row]<\\/p>\\n","changelog":"<p><strong>Version 3.3 (Jan 25, 2018)<\\/strong><\\/p>\\n<p>1) Add\\u00a0Advanced Custom field integration for custom field<br \\/>\\n2) Added Sub-category Filter Option<\\/p>\\n<p><strong>Version 3.2 (Dec 21, 2017)<\\/strong><\\/p>\\n<p>1) Fixed Archive page bug<\\/p>\\n<p><strong>Version 3.1 (Dec 12, 2017)<\\/strong><\\/p>\\n<p>1) Add Read More dynamic Text.<br \\/>\\n2) Title color forcefully added.<\\/p>\\n<p><strong>Version 3.0 (Dec 06, 2017)<\\/strong><\\/p>\\n<p>1) Add auto update feature with license activation<br \\/>\\n2) iPhone isotope button click issue fixed.<\\/p>\\n<p><strong>Version 2.9 (Dec 01, 2017)<\\/strong><\\/p>\\n<p>1) New: Specific Archive page Layout Select Option Category, Search, Author &amp; Tags.<br \\/>\\n2) Add a class option for archive page container<\\/p>\\n<p><strong>Version 2.8 (Nov 24, 2017)<\\/strong><\\/p>\\n<p>Remove admin notification from V 2.7<\\/p>\\n<p><strong>Version 2.7 (Nov 23, 2017)<\\/strong><\\/p>\\n<p>Add: Image Disable Option added.<\\/p>\\n<p><strong>Version 2.6 ( Sep 26, 2017)<\\/strong><br \\/>\\nBug Fix: Multi Popup and Deprecated removed.<\\/p>\\n<p><strong>Version 2.3.4 (July 15, 2017)<\\/strong><br \\/>\\n1) Fixed Excerpt issue<\\/p>\\n<p>Version 2.3.3 (July 08, 2017)<br \\/>\\n1) Fixed VC addon issue for 5.2.2<\\/p>\\n<p>Version 2.3.2 (June 21 06, 2017)<br \\/>\\n1) Isotope Filtering issue fixed.<\\/p>\\n<p>Version 2.3.1 (June 06, 2017)<br \\/>\\n1) Tag filtering fixed.<br \\/>\\n2) Popup field auto selected<\\/p>\\n<p>Version 2.3 (May 02, 2017)<br \\/>\\n1) Add: Order by Meta Key<br \\/>\\n2) Add: Carousel Speed control<br \\/>\\n3) Add: 5 Per row<br \\/>\\n4) Fix: Excerpt ending<br \\/>\\n5) Fix: Filter Button Responsive<br \\/>\\n6) Fix: Translation<br \\/>\\n7) Fix: Taxonomy Filtering issue<br \\/>\\n8) Fix: Post source page<\\/p>\\n<p>Version 2.2 May 16, 2017<br \\/>\\n1)\\u00a0Added Widget.<\\/p>\\n<p>Version 2.1 May 10, 2017<br \\/>\\n1) Bug fix: Tab &amp; mobile device item view control<\\/p>\\n<p>Version 2.0 April 24, 2017<br \\/>\\n1) All 16 layouts now can turn as Grid or Filter.<br \\/>\\n2) Improve Code &amp; AJAX functionality.<br \\/>\\n3) Now Filter as Button or Drop down.<br \\/>\\n4) Count on Filter button.<br \\/>\\n5) Short by &amp; Ordering option.<br \\/>\\n6) Gutter or Padding Control.<br \\/>\\n7) Search option added<br \\/>\\n8) 4 Offset Layouts Added.<br \\/>\\n9) Gallery Layout Added.<br \\/>\\n10) Desktop, Tab &amp; Mobile Display Control.<br \\/>\\n11) Excerpt Limit in Words.<br \\/>\\n12) Some new styling control added<br \\/>\\n13) Layout 2 image Grid width Control<br \\/>\\n14) Fix some bug.<\\/p>\\n<p>Pro Released: July 27, 2016<br \\/>\\nNov 29, 2016: Version 1.3 Released<br \\/>\\n1) Ajax Load More &amp; Auto Scrolling bug fix<br \\/>\\n2) Also some PHP code updated.<\\/p>\\n<p>Nov 3, 2016: Version 1.2 Released<br \\/>\\n1) Ajax Pagination bug fix<br \\/>\\n2) Fix admin css conflict<br \\/>\\n3) Also some PHP code updated.<\\/p>\\n<p>Aug 27, 2016: Version 1.1 Released<br \\/>\\nOct 14, 2016, Fix Layout 13<\\/p>\\n"},"banners":{"high":"","low":""},"description":["<p>[vc_row][vc_column][vc_column_text]The Post Grid is a fully Responsive &amp; Mobile friendly plugin to display your page\\/post\\/ custom post type in Grid, List, Carousel Slider and Isotope View without any line of coding. It is fast and easy to generate grid from admin end and insert into page\\/post. You can Display posts by any category(s), tag(s), author(s), keyword(s) also Order posts by Id, Title, Created date, Modified date, Date Range and Menu order.<\\/p>\\n<p>[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_custom_heading text=\\"Features\\" font_container=\\"tag:h2|text_align:left|color:%2381d742\\" use_theme_fonts=\\"yes\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/2\\"][vc_column_text el_class=\\"cp-features\\"]<\\/p>\\n<ul>\\n<li> Fully responsive and mobile friendly.<\\/li>\\n<li> 55 Amazing Layouts with Masonry, Google, <strong>Pinterest<\\/strong> and others.<\\/li>\\n<li> Even and <strong>Masonry<\\/strong> Grid for all Grid.<\\/li>\\n<li> Generate Unlimited grid.<\\/li>\\n<li> Layout Preview in Shortcode Settings.<\\/li>\\n<li> Custom number of post per page.<\\/li>\\n<li> Use posts, pages, <strong>Custom Post Type<\\/strong> as the source (<strong>don\'t support multiple post type in a single shortcode<\\/strong>).<\\/li>\\n<li> Display posts by any Taxonomy like category(s), tag(s), author(s), keyword(s), Status and <strong>Date Range<\\/strong><\\/li>\\n<li> Order by Id, Title, Created date, Modified date, <strong>Random<\\/strong>, <strong>Comments Count<\\/strong> and Menu order.<\\/li>\\n<li> Display image size (thumbnail, medium, large, full and <strong>Custom Image Size<\\/strong>)<\\/li>\\n<li> Custom Image Re-size option.<\\/li>\\n<li> Enable Sticky Post.<\\/li>\\n<li> Category, Search and Tags Layout .<\\/li>\\n<li> Add Visual Composer Addone .<\\/li>\\n<li> <strong>All 16 layouts now can turn as Grid or Filter.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Improve Code &amp; AJAX functionality.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Now Filter as Button or Drop down.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Count on Filter button.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Short by &amp; Ordering option.\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Gutter or Padding Control.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Search option added <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<\\/ul>\\n<p>[\\/vc_column_text][\\/vc_column][vc_column width=\\"1\\/2\\"][vc_column_text el_class=\\"cp-features\\"]<\\/p>\\n<ul>\\n<li> Isotope filter for any taxonomy ie. categories, tags...<\\/li>\\n<li> <strong>Search field on Isotope<\\/strong>.<\\/li>\\n<li> Set Default Isotop Filter Button.<\\/li>\\n<li> Disable Show All Button for Isotope Filter.<\\/li>\\n<li> Query Post with Relation.<\\/li>\\n<li> All Fields Control.<\\/li>\\n<li> All Text color, size and Button Color control.<\\/li>\\n<li> Overlay color and opacity control.<\\/li>\\n<li> Default image set option in Shortcode generator settings.<\\/li>\\n<li> Enable\\/Disable Pagination.<\\/li>\\n<li> Number Pagination Supported.<\\/li>\\n<li> <strong>Ajax Pagination: Load more, Load on scroll and AJAX Number Pagination<\\/strong><\\/li>\\n<li> <strong>AJAX Number Pagination (only for Grid layouts)<\\/strong> .<\\/li>\\n<li> <strong>Single popup and Popup with next preview<\\/strong>.<\\/li>\\n<li> Social Share on popup.<\\/li>\\n<li> Social Share on Grid View.<\\/li>\\n<li> <strong>4 Offset Layouts Added.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Gallery Layout Added.\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Desktop, Tab &amp; Mobile Display Control.<\\/strong> <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <strong>Excerpt Limit in Words.<\\/strong>\\u00a0<strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Some new styling control added. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Taxonomy ie Category Ordering. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> Layout 2 image Grid width Control. <strong><span style=\\"color: #ff0000;\\">(New V2.0)<\\/span><\\/strong><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Auto update by activate license key<\\/strong><\\/span><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Add Advanced Custom field integration for custom field (V 3.3)<\\/strong><\\/span><\\/li>\\n<li> <span style=\\"color: #ff0000;\\"><strong>Add Sub-Category Filtering (V 3.3)<\\/strong><\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_column_text][\\/vc_column_text][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3332\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nFully Responsive &amp; Mobile Friendly<br \\/>\\nAll 55 Layouts are fully responsive and mobile and perfect for all devices like Desktop, Laptop, iPad, iPhone and Android Devices.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTotal 55 Layouts with grid, Isotope, Slider, Offset &amp; Gallery<br \\/>\\n<strong>Grid:<\\/strong> 20 Grid Layout with Woo Commerce.<\\/p>\\n<p><strong>Isotope:<\\/strong> 16 Isotope Filter Layout with Category\\/ Tag Filter button.<\\/p>\\n<p><strong>Slider:<\\/strong> 12 Carousel Slider Layouts<\\/p>\\n<p><strong>Offset:<\\/strong> 4 Offset Layouts<\\/p>\\n<p><strong>Gallery:<\\/strong> 1 Gallery Layout[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3333\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3316\\" img_size=\\"full\\" onclick=\\"link_image\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nAdvance Filter by Query Post<br \\/>\\nYou can filter by Category(s), Tag(s)<\\/p>\\n<p>Set order by id, title, post date, modify date, random and comments count.<\\/p>\\n<p>Can set specific user post.<\\/p>\\n<p>And set specific date range post[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTurn Grid Layout to Filterable Grid<br \\/>\\nYou can set\\u00a0all layout normal Grid or Filterable grid with two types of filter buttons dropdown or normal buttons[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9192\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9191\\" img_size=\\"full\\" onclick=\\"link_image\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\n4 New offset layouts<br \\/>\\nYou can set offset layouts in Version 2.0 we added 4 new layouts for offset.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\n4 Types of Pagination<br \\/>\\nNormal Number Pagination, Ajax Number Pagination, Load More and Load on Scrolling. You can control the number how many load per click.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3807\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3323\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nEven &amp; Masonry Grid<br \\/>\\nYou can set Even or Masonry grid also can set margin or no margin.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSingle Popup &amp; Multi Pop up<br \\/>\\nYou can set single item popup it will show with social share button[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3325\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9195\\" img_size=\\"full\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nGallery Layout<br \\/>\\nYou can Make Gallery in V 2.0 we added this feature.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nTaxonomy Ordering<br \\/>\\nYou can\\u00a0order category for Filtering button.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9194\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9197\\" img_size=\\"full\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nMulti Popup with next preview button<br \\/>\\nYou can set multi popup it has\\u00a0control of next and preview button[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nDetail popup Page field control<br \\/>\\nYou can select which fields will show in single &amp; multi popup page.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3328\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3327\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nField Selection in Grid View<br \\/>\\nYou can select which fields you want to display in Grid View.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nAll Color and font size control<br \\/>\\nFrom Short Code Generator Style Tab you can set all font size and color control.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3330\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nLayout Preview in Admin<br \\/>\\nUnder Short Code Generator you can view the layout how it will look.[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"9184\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3808\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSupport Sticky Post<br \\/>\\nYou can add Sticky Post (added V 1.1) Just select Yes. Then that post will show first of grid.[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"1\\/3\\"][vc_column_text]<br \\/>\\nSocial Share on Grid View<br \\/>\\nYou can set social share on Grid view[\\/vc_column_text][\\/vc_column][vc_column width=\\"2\\/3\\"][vc_single_image image=\\"3810\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\"2\\/3\\"][vc_column_text]<br \\/>\\nTemplate Override<br \\/>\\nCategory Archive, Search and Tags template can override by Grid Layout.[\\/vc_column_text][\\/vc_column][vc_column width=\\"1\\/3\\"][vc_single_image image=\\"3809\\" img_size=\\"full\\" onclick=\\"img_link_large\\"][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_separator color=\\"green\\" style=\\"shadow\\" border_width=\\"2\\"][\\/vc_column][\\/vc_row]<\\/p>\\n"],"changelog":["<p><strong>Version 3.3 (Jan 25, 2018)<\\/strong><\\/p>\\n<p>1) Add\\u00a0Advanced Custom field integration for custom field<br \\/>\\n2) Added Sub-category Filter Option<\\/p>\\n<p><strong>Version 3.2 (Dec 21, 2017)<\\/strong><\\/p>\\n<p>1) Fixed Archive page bug<\\/p>\\n<p><strong>Version 3.1 (Dec 12, 2017)<\\/strong><\\/p>\\n<p>1) Add Read More dynamic Text.<br \\/>\\n2) Title color forcefully added.<\\/p>\\n<p><strong>Version 3.0 (Dec 06, 2017)<\\/strong><\\/p>\\n<p>1) Add auto update feature with license activation<br \\/>\\n2) iPhone isotope button click issue fixed.<\\/p>\\n<p><strong>Version 2.9 (Dec 01, 2017)<\\/strong><\\/p>\\n<p>1) New: Specific Archive page Layout Select Option Category, Search, Author &amp; Tags.<br \\/>\\n2) Add a class option for archive page container<\\/p>\\n<p><strong>Version 2.8 (Nov 24, 2017)<\\/strong><\\/p>\\n<p>Remove admin notification from V 2.7<\\/p>\\n<p><strong>Version 2.7 (Nov 23, 2017)<\\/strong><\\/p>\\n<p>Add: Image Disable Option added.<\\/p>\\n<p><strong>Version 2.6 ( Sep 26, 2017)<\\/strong><br \\/>\\nBug Fix: Multi Popup and Deprecated removed.<\\/p>\\n<p><strong>Version 2.3.4 (July 15, 2017)<\\/strong><br \\/>\\n1) Fixed Excerpt issue<\\/p>\\n<p>Version 2.3.3 (July 08, 2017)<br \\/>\\n1) Fixed VC addon issue for 5.2.2<\\/p>\\n<p>Version 2.3.2 (June 21 06, 2017)<br \\/>\\n1) Isotope Filtering issue fixed.<\\/p>\\n<p>Version 2.3.1 (June 06, 2017)<br \\/>\\n1) Tag filtering fixed.<br \\/>\\n2) Popup field auto selected<\\/p>\\n<p>Version 2.3 (May 02, 2017)<br \\/>\\n1) Add: Order by Meta Key<br \\/>\\n2) Add: Carousel Speed control<br \\/>\\n3) Add: 5 Per row<br \\/>\\n4) Fix: Excerpt ending<br \\/>\\n5) Fix: Filter Button Responsive<br \\/>\\n6) Fix: Translation<br \\/>\\n7) Fix: Taxonomy Filtering issue<br \\/>\\n8) Fix: Post source page<\\/p>\\n<p>Version 2.2 May 16, 2017<br \\/>\\n1)\\u00a0Added Widget.<\\/p>\\n<p>Version 2.1 May 10, 2017<br \\/>\\n1) Bug fix: Tab &amp; mobile device item view control<\\/p>\\n<p>Version 2.0 April 24, 2017<br \\/>\\n1) All 16 layouts now can turn as Grid or Filter.<br \\/>\\n2) Improve Code &amp; AJAX functionality.<br \\/>\\n3) Now Filter as Button or Drop down.<br \\/>\\n4) Count on Filter button.<br \\/>\\n5) Short by &amp; Ordering option.<br \\/>\\n6) Gutter or Padding Control.<br \\/>\\n7) Search option added<br \\/>\\n8) 4 Offset Layouts Added.<br \\/>\\n9) Gallery Layout Added.<br \\/>\\n10) Desktop, Tab &amp; Mobile Display Control.<br \\/>\\n11) Excerpt Limit in Words.<br \\/>\\n12) Some new styling control added<br \\/>\\n13) Layout 2 image Grid width Control<br \\/>\\n14) Fix some bug.<\\/p>\\n<p>Pro Released: July 27, 2016<br \\/>\\nNov 29, 2016: Version 1.3 Released<br \\/>\\n1) Ajax Load More &amp; Auto Scrolling bug fix<br \\/>\\n2) Also some PHP code updated.<\\/p>\\n<p>Nov 3, 2016: Version 1.2 Released<br \\/>\\n1) Ajax Pagination bug fix<br \\/>\\n2) Fix admin css conflict<br \\/>\\n3) Also some PHP code updated.<\\/p>\\n<p>Aug 27, 2016: Version 1.1 Released<br \\/>\\nOct 14, 2016, Fix Layout 13<\\/p>\\n"]}";}', 'no'),
 (838, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1521090064', 'no'),
 (839, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'O:8:"stdClass":100:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";i:4440;}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";i:2648;}s:4:"post";a:3:{s:4:"name";s:4:"post";s:4:"slug";s:4:"post";s:5:"count";i:2543;}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";i:2408;}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";i:1857;}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";i:1639;}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";i:1631;}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";i:1447;}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";i:1383;}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";i:1380;}s:8:"facebook";a:3:{s:4:"name";s:8:"facebook";s:4:"slug";s:8:"facebook";s:5:"count";i:1378;}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";i:1302;}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";i:1280;}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";i:1186;}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";i:1088;}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";i:1056;}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";i:1015;}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";i:993;}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";i:870;}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";i:863;}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";i:823;}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";i:797;}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";i:791;}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";i:699;}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";i:689;}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";i:683;}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";i:674;}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";i:672;}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";i:654;}s:6:"slider";a:3:{s:4:"name";s:6:"slider";s:4:"slug";s:6:"slider";s:5:"count";i:651;}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";i:639;}s:9:"analytics";a:3:{s:4:"name";s:9:"analytics";s:4:"slug";s:9:"analytics";s:5:"count";i:635;}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";i:631;}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";i:610;}s:10:"e-commerce";a:3:{s:4:"name";s:10:"e-commerce";s:4:"slug";s:10:"e-commerce";s:5:"count";i:609;}s:6:"search";a:3:{s:4:"name";s:6:"search";s:4:"slug";s:6:"search";s:5:"count";i:599;}s:4:"ajax";a:3:{s:4:"name";s:4:"ajax";s:4:"slug";s:4:"ajax";s:5:"count";i:599;}s:4:"form";a:3:{s:4:"name";s:4:"form";s:4:"slug";s:4:"form";s:5:"count";i:587;}s:4:"menu";a:3:{s:4:"name";s:4:"menu";s:4:"slug";s:4:"menu";s:5:"count";i:584;}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";i:584;}s:5:"embed";a:3:{s:4:"name";s:5:"embed";s:4:"slug";s:5:"embed";s:5:"count";i:558;}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";i:545;}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";i:535;}s:3:"css";a:3:{s:4:"name";s:3:"css";s:4:"slug";s:3:"css";s:5:"count";i:530;}s:5:"share";a:3:{s:4:"name";s:5:"share";s:4:"slug";s:5:"share";s:5:"count";i:519;}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";i:512;}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";i:510;}s:5:"theme";a:3:{s:4:"name";s:5:"theme";s:4:"slug";s:5:"theme";s:5:"count";i:504;}s:9:"dashboard";a:3:{s:4:"name";s:9:"dashboard";s:4:"slug";s:9:"dashboard";s:5:"count";i:489;}s:10:"responsive";a:3:{s:4:"name";s:10:"responsive";s:4:"slug";s:10:"responsive";s:5:"count";i:486;}s:6:"editor";a:3:{s:4:"name";s:6:"editor";s:4:"slug";s:6:"editor";s:5:"count";i:485;}s:6:"custom";a:3:{s:4:"name";s:6:"custom";s:4:"slug";s:6:"custom";s:5:"count";i:484;}s:10:"categories";a:3:{s:4:"name";s:10:"categories";s:4:"slug";s:10:"categories";s:5:"count";i:478;}s:12:"contact-form";a:3:{s:4:"name";s:12:"contact form";s:4:"slug";s:12:"contact-form";s:5:"count";i:471;}s:3:"ads";a:3:{s:4:"name";s:3:"ads";s:4:"slug";s:3:"ads";s:5:"count";i:465;}s:9:"affiliate";a:3:{s:4:"name";s:9:"affiliate";s:4:"slug";s:9:"affiliate";s:5:"count";i:462;}s:6:"button";a:3:{s:4:"name";s:6:"button";s:4:"slug";s:6:"button";s:5:"count";i:453;}s:4:"tags";a:3:{s:4:"name";s:4:"tags";s:4:"slug";s:4:"tags";s:5:"count";i:451;}s:4:"user";a:3:{s:4:"name";s:4:"user";s:4:"slug";s:4:"user";s:5:"count";i:436;}s:7:"contact";a:3:{s:4:"name";s:7:"contact";s:4:"slug";s:7:"contact";s:5:"count";i:426;}s:6:"mobile";a:3:{s:4:"name";s:6:"mobile";s:4:"slug";s:6:"mobile";s:5:"count";i:423;}s:3:"api";a:3:{s:4:"name";s:3:"api";s:4:"slug";s:3:"api";s:5:"count";i:418;}s:5:"users";a:3:{s:4:"name";s:5:"users";s:4:"slug";s:5:"users";s:5:"count";i:416;}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";i:416;}s:9:"slideshow";a:3:{s:4:"name";s:9:"slideshow";s:4:"slug";s:9:"slideshow";s:5:"count";i:411;}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";i:410;}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";i:402;}s:6:"events";a:3:{s:4:"name";s:6:"events";s:4:"slug";s:6:"events";s:5:"count";i:397;}s:10:"statistics";a:3:{s:4:"name";s:10:"statistics";s:4:"slug";s:10:"statistics";s:5:"count";i:390;}s:10:"navigation";a:3:{s:4:"name";s:10:"navigation";s:4:"slug";s:10:"navigation";s:5:"count";i:383;}s:7:"payment";a:3:{s:4:"name";s:7:"payment";s:4:"slug";s:7:"payment";s:5:"count";i:378;}s:4:"news";a:3:{s:4:"name";s:4:"news";s:4:"slug";s:4:"news";s:5:"count";i:361;}s:8:"calendar";a:3:{s:4:"name";s:8:"calendar";s:4:"slug";s:8:"calendar";s:5:"count";i:354;}s:10:"shortcodes";a:3:{s:4:"name";s:10:"shortcodes";s:4:"slug";s:10:"shortcodes";s:5:"count";i:353;}s:5:"popup";a:3:{s:4:"name";s:5:"popup";s:4:"slug";s:5:"popup";s:5:"count";i:350;}s:7:"plugins";a:3:{s:4:"name";s:7:"plugins";s:4:"slug";s:7:"plugins";s:5:"count";i:343;}s:12:"social-media";a:3:{s:4:"name";s:12:"social media";s:4:"slug";s:12:"social-media";s:5:"count";i:341;}s:9:"marketing";a:3:{s:4:"name";s:9:"marketing";s:4:"slug";s:9:"marketing";s:5:"count";i:339;}s:9:"multisite";a:3:{s:4:"name";s:9:"multisite";s:4:"slug";s:9:"multisite";s:5:"count";i:337;}s:4:"chat";a:3:{s:4:"name";s:4:"chat";s:4:"slug";s:4:"chat";s:5:"count";i:335;}s:4:"code";a:3:{s:4:"name";s:4:"code";s:4:"slug";s:4:"code";s:5:"count";i:334;}s:10:"newsletter";a:3:{s:4:"name";s:10:"newsletter";s:4:"slug";s:10:"newsletter";s:5:"count";i:334;}s:4:"list";a:3:{s:4:"name";s:4:"list";s:4:"slug";s:4:"list";s:5:"count";i:333;}s:3:"url";a:3:{s:4:"name";s:3:"url";s:4:"slug";s:3:"url";s:5:"count";i:329;}s:4:"meta";a:3:{s:4:"name";s:4:"meta";s:4:"slug";s:4:"meta";s:5:"count";i:328;}s:15:"payment-gateway";a:3:{s:4:"name";s:15:"payment gateway";s:4:"slug";s:15:"payment-gateway";s:5:"count";i:326;}s:8:"redirect";a:3:{s:4:"name";s:8:"redirect";s:4:"slug";s:8:"redirect";s:5:"count";i:317;}s:5:"forms";a:3:{s:4:"name";s:5:"forms";s:4:"slug";s:5:"forms";s:5:"count";i:311;}s:16:"custom-post-type";a:3:{s:4:"name";s:16:"custom post type";s:4:"slug";s:16:"custom-post-type";s:5:"count";i:305;}s:6:"simple";a:3:{s:4:"name";s:6:"simple";s:4:"slug";s:6:"simple";s:5:"count";i:302;}s:11:"advertising";a:3:{s:4:"name";s:11:"advertising";s:4:"slug";s:11:"advertising";s:5:"count";i:302;}s:3:"tag";a:3:{s:4:"name";s:3:"tag";s:4:"slug";s:3:"tag";s:5:"count";i:300;}s:7:"adsense";a:3:{s:4:"name";s:7:"adsense";s:4:"slug";s:7:"adsense";s:5:"count";i:295;}s:12:"notification";a:3:{s:4:"name";s:12:"notification";s:4:"slug";s:12:"notification";s:5:"count";i:292;}s:4:"html";a:3:{s:4:"name";s:4:"html";s:4:"slug";s:4:"html";s:5:"count";i:292;}s:8:"tracking";a:3:{s:4:"name";s:8:"tracking";s:4:"slug";s:8:"tracking";s:5:"count";i:290;}s:6:"author";a:3:{s:4:"name";s:6:"author";s:4:"slug";s:6:"author";s:5:"count";i:290;}s:16:"google-analytics";a:3:{s:4:"name";s:16:"google analytics";s:4:"slug";s:16:"google-analytics";s:5:"count";i:287;}s:11:"performance";a:3:{s:4:"name";s:11:"performance";s:4:"slug";s:11:"performance";s:5:"count";i:286;}s:8:"lightbox";a:3:{s:4:"name";s:8:"lightbox";s:4:"slug";s:8:"lightbox";s:5:"count";i:285;}}', 'no'),
 (844, 'ytwd_settings', '{"api_key":"AIzaSyA5c-Re_BngXk3kyHNigWXVpHoD9m-fmeo","video_seo_tags":0,"show_deleted_videos":0}', 'no'),
 (845, 'ytwd_pro', 'yes', 'no'),
 (846, 'ytwd_version', '1.0.19', 'no'),
 (847, 'widget_ytwd_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (848, 'ytwd_admin_notice', 'a:1:{s:15:"two_week_review";a:2:{s:5:"start";s:9:"3/29/2018";s:3:"int";i:14;}}', 'yes'),
 (849, 'ytwd_subscribe_done', '1', 'yes'),
 (850, 'wd_bk_notice_status', '1', 'no'),
 (852, '_transient_timeout_0ytwd_data_PLV5vGUtoxzaGPGqBVE1XRCJjdYLNJ8PIR', '1521084516', 'no'),
 (853, '_transient_0ytwd_data_PLV5vGUtoxzaGPGqBVE1XRCJjdYLNJ8PIR', '[{"resource_id":"tgSfLaXwbY8","video_url":"http:\\/\\/www.youtube.com\\/embed\\/tgSfLaXwbY8?autohide=1&autoplay=0&color=red&theme&controls=1&fs=1&loop=0&iv_load_policy=1&cc_load_policy=0&playsinline=0&wmode=opaque&start=0&end=0&rel=0&enablejsapi=1&version=3","published_at_dev":1513123200,"published_at":"2017, December 13","title":"Toowoomba Parks and Garden PREPARATIONS","description":"Toowoomba Region\\u2019s Parks and Garden team have been getting up close and personal with mother-earth to ensure the city\\u2019s gardens, walkways, parks and public spaces bloom on time and in a perfect kaleidoscope of colour for Toowoomba Carnival of Flowers each year.","thumb_url":"https:\\/\\/i.ytimg.com\\/vi\\/tgSfLaXwbY8\\/maxresdefault.jpg"},{"resource_id":"nqnhTgP8NIc","video_url":"http:\\/\\/www.youtube.com\\/embed\\/nqnhTgP8NIc?autohide=1&autoplay=0&color=red&theme&controls=1&fs=1&loop=0&iv_load_policy=1&cc_load_policy=0&playsinline=0&wmode=opaque&start=0&end=0&rel=0&enablejsapi=1&version=3","published_at_dev":1513123200,"published_at":"2017, December 13","title":"Toowoomba Parks and Garden PLANNING","description":"Whoever said gardening was a relaxation activity should talk to the Toowoomba Region\\u2019s parks and gardens team who plant just under 160,000 annuals and 20,000 bulbs in readiness for the spectacular Toowoomba Carnival of Flowers which takes over the Southern Queensland city in September each year.","thumb_url":"https:\\/\\/i.ytimg.com\\/vi\\/nqnhTgP8NIc\\/maxresdefault.jpg"},{"resource_id":"5d7wrkvhmjQ","video_url":"http:\\/\\/www.youtube.com\\/embed\\/5d7wrkvhmjQ?autohide=1&autoplay=0&color=red&theme&controls=1&fs=1&loop=0&iv_load_policy=1&cc_load_policy=0&playsinline=0&wmode=opaque&start=0&end=0&rel=0&enablejsapi=1&version=3","published_at_dev":1513123200,"published_at":"2017, December 13","title":"Toowoomba Parks and Garden BEFORE PLANTING","description":"Description","thumb_url":"https:\\/\\/i.ytimg.com\\/vi\\/5d7wrkvhmjQ\\/maxresdefault.jpg"},{"resource_id":"ugbvzZgRWyU","video_url":"http:\\/\\/www.youtube.com\\/embed\\/ugbvzZgRWyU?autohide=1&autoplay=0&color=red&theme&controls=1&fs=1&loop=0&iv_load_policy=1&cc_load_policy=0&playsinline=0&wmode=opaque&start=0&end=0&rel=0&enablejsapi=1&version=3","published_at_dev":1513123200,"published_at":"2017, December 13","title":"Toowoomba Parks and Garden PLANTING","description":"Description","thumb_url":"https:\\/\\/i.ytimg.com\\/vi\\/ugbvzZgRWyU\\/hqdefault.jpg"},{"resource_id":"LXlrnTG-_OY","video_url":"http:\\/\\/www.youtube.com\\/embed\\/LXlrnTG-_OY?autohide=1&autoplay=0&color=red&theme&controls=1&fs=1&loop=0&iv_load_policy=1&cc_load_policy=0&playsinline=0&wmode=opaque&start=0&end=0&rel=0&enablejsapi=1&version=3","published_at_dev":1513123200,"published_at":"2017, December 13","title":"Toowoomba Parks and Garden MAINTENANCE","description":"Description","thumb_url":"https:\\/\\/i.ytimg.com\\/vi\\/LXlrnTG-_OY\\/maxresdefault.jpg"},{"resource_id":"ph6w9f2RuZo","video_url":"http:\\/\\/www.youtube.com\\/embed\\/ph6w9f2RuZo?autohide=1&autoplay=0&color=red&theme&controls=1&fs=1&loop=0&iv_load_policy=1&cc_load_policy=0&playsinline=0&wmode=opaque&start=0&end=0&rel=0&enablejsapi=1&version=3","published_at_dev":1513123200,"published_at":"2017, December 13","title":"Toowoomba Parks and Garden CARNIVAL WEEK","description":"Description","thumb_url":"https:\\/\\/i.ytimg.com\\/vi\\/ph6w9f2RuZo\\/hqdefault.jpg"},{"resource_id":"AFOQ2ElFvgg","video_url":"http:\\/\\/www.youtube.com\\/embed\\/AFOQ2ElFvgg?autohide=1&autoplay=0&color=red&theme&controls=1&fs=1&loop=0&iv_load_policy=1&cc_load_policy=0&playsinline=0&wmode=opaque&start=0&end=0&rel=0&enablejsapi=1&version=3","published_at_dev":1513123200,"published_at":"2017, December 13","title":"Toowoomba Parks and Garden AFTER CARNIVAL","description":"Description","thumb_url":"https:\\/\\/i.ytimg.com\\/vi\\/AFOQ2ElFvgg\\/hqdefault.jpg"}]', 'no'),
 (856, '_transient_ytwd_data_f_p_PLV5vGUtoxzaGPGqBVE1XRCJjdYLNJ8PIR', '1', 'yes'),
 (859, 'youtubeprefs_alloptions', 'a:61:{s:9:"centervid";i:0;s:6:"glance";i:1;s:8:"autoplay";i:0;s:9:"debugmode";i:0;s:17:"admin_off_scripts";i:0;s:17:"old_script_method";i:0;s:14:"cc_load_policy";i:0;s:14:"iv_load_policy";i:1;s:4:"loop";i:0;s:14:"modestbranding";i:0;s:3:"rel";i:1;s:8:"showinfo";i:1;s:2:"fs";i:1;s:11:"playsinline";i:0;s:6:"origin";i:0;s:8:"controls";i:2;s:8:"autohide";i:2;s:5:"theme";s:4:"dark";s:5:"color";s:3:"red";s:8:"nocookie";i:0;s:13:"playlistorder";i:0;s:8:"acctitle";i:0;s:7:"migrate";i:0;s:15:"migrate_youtube";i:0;s:22:"migrate_embedplusvideo";i:0;s:10:"oldspacing";i:0;s:10:"responsive";i:0;s:9:"widgetfit";i:1;s:16:"evselector_light";i:0;s:18:"stop_mobile_buffer";i:1;s:15:"restrict_wizard";i:0;s:11:"ajax_compat";i:0;s:11:"defaultdims";i:0;s:10:"defaultvol";i:0;s:4:"dohl";i:0;s:19:"gallery_hideprivate";i:0;s:17:"gallery_showtitle";i:1;s:18:"gallery_showpaging";i:1;s:16:"gallery_autonext";i:0;s:17:"gallery_thumbplay";i:1;s:18:"gallery_channelsub";i:0;s:20:"gallery_customarrows";i:0;s:21:"gallery_collapse_grid";i:0;s:21:"restrict_wizard_roles";a:5:{i:0;s:13:"administrator";i:1;s:6:"editor";i:2;s:6:"author";i:3;s:11:"contributor";i:4;s:10:"subscriber";}s:5:"width";s:0:"";s:6:"height";s:0:"";s:14:"responsive_all";i:1;s:3:"vol";i:50;s:16:"gallery_pagesize";i:15;s:15:"gallery_columns";i:3;s:28:"gallery_collapse_grid_breaks";a:1:{i:0;a:2:{s:2:"bp";a:2:{s:3:"max";s:3:"767";s:3:"min";s:1:"0";}s:4:"cols";s:1:"1";}}s:20:"gallery_scrolloffset";i:20;s:22:"gallery_channelsublink";s:0:"";s:22:"gallery_channelsubtext";s:23:"Subscribe to my channel";s:18:"gallery_customprev";s:4:"Prev";s:18:"gallery_customnext";s:4:"Next";s:16:"not_live_content";s:0:"";s:6:"apikey";s:39:"AIzaSyC6cVNV6_LzXLN3h8xT7IJfAVVgOvZV4S0";s:7:"version";s:8:"11.8.6.1";s:3:"pro";s:0:"";s:2:"hl";s:0:"";}', 'yes'),
 (860, '_site_transient_timeout_browser_50b8fa1fd12d18c1fa8ac45404e9b224', '1521686221', 'no'),
 (861, '_site_transient_browser_50b8fa1fd12d18c1fa8ac45404e9b224', 'a:10:{s:4:"name";s:6:"Chrome";s:7:"version";s:13:"64.0.3282.140";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'),
 (862, '_site_transient_timeout_community-events-46266b6b119ee33afeb1ff7c1b58115c', '1521129740', 'no'),
 (863, '_site_transient_community-events-46266b6b119ee33afeb1ff7c1b58115c', 'a:2:{s:8:"location";a:1:{s:2:"ip";s:12:"203.37.164.0";}s:6:"events";a:5:{i:0;a:7:{s:4:"type";s:6:"meetup";s:5:"title";s:30:"WordPress Ipswich March Meetup";s:3:"url";s:65:"https://www.meetup.com/Ipswich-WordPress-Meetup/events/246893339/";s:6:"meetup";s:24:"Ipswich WordPress Meetup";s:10:"meetup_url";s:48:"https://www.meetup.com/Ipswich-WordPress-Meetup/";s:4:"date";s:19:"2018-03-28 18:00:00";s:8:"location";a:4:{s:8:"location";s:18:"Ipswich, Australia";s:7:"country";s:2:"au";s:8:"latitude";d:-27.61540000000000105728759081102907657623291015625;s:9:"longitude";d:152.754486000000014200850273482501506805419921875;}}i:1;a:7:{s:4:"type";s:6:"meetup";s:5:"title";s:21:"Let\'s Talk WordPress!";s:3:"url";s:52:"https://www.meetup.com/WPGoldCoast/events/242054139/";s:6:"meetup";s:20:"WordPress Gold Coast";s:10:"meetup_url";s:35:"https://www.meetup.com/WPGoldCoast/";s:4:"date";s:19:"2018-03-29 18:00:00";s:8:"location";a:4:{s:8:"location";s:20:"Southport, Australia";s:7:"country";s:2:"au";s:8:"latitude";d:-27.989121999999998280372892622835934162139892578125;s:9:"longitude";d:153.39920000000000754880602471530437469482421875;}}i:2;a:7:{s:4:"type";s:6:"meetup";s:5:"title";s:71:"[Fortitude Valley] WordPress Brisbane April: Short stories told by you!";s:3:"url";s:59:"https://www.meetup.com/WordPress-Brisbane/events/247641005/";s:6:"meetup";s:18:"WordPress Brisbane";s:10:"meetup_url";s:42:"https://www.meetup.com/WordPress-Brisbane/";s:4:"date";s:19:"2018-04-12 18:00:00";s:8:"location";a:4:{s:8:"location";s:27:"Fortitude Valley, Australia";s:7:"country";s:2:"au";s:8:"latitude";d:-27.4580610000000007175913196988403797149658203125;s:9:"longitude";d:153.034480000000002064552973024547100067138671875;}}i:3;a:7:{s:4:"type";s:6:"meetup";s:5:"title";s:21:"Let\'s Talk WordPress!";s:3:"url";s:52:"https://www.meetup.com/WPGoldCoast/events/242054140/";s:6:"meetup";s:20:"WordPress Gold Coast";s:10:"meetup_url";s:35:"https://www.meetup.com/WPGoldCoast/";s:4:"date";s:19:"2018-04-26 18:00:00";s:8:"location";a:4:{s:8:"location";s:20:"Southport, Australia";s:7:"country";s:2:"au";s:8:"latitude";d:-27.989121999999998280372892622835934162139892578125;s:9:"longitude";d:153.39920000000000754880602471530437469482421875;}}i:4;a:7:{s:4:"type";s:6:"meetup";s:5:"title";s:21:"Let\'s Talk WordPress!";s:3:"url";s:52:"https://www.meetup.com/WPGoldCoast/events/242054143/";s:6:"meetup";s:20:"WordPress Gold Coast";s:10:"meetup_url";s:35:"https://www.meetup.com/WPGoldCoast/";s:4:"date";s:19:"2018-05-31 18:00:00";s:8:"location";a:4:{s:8:"location";s:20:"Southport, Australia";s:7:"country";s:2:"au";s:8:"latitude";d:-27.989121999999998280372892622835934162139892578125;s:9:"longitude";d:153.39920000000000754880602471530437469482421875;}}}}', 'no'),
 (867, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1521089073;s:7:"checked";a:5:{s:16:"bento-child-tcof";s:5:"1.0.0";s:5:"bento";s:3:"1.8";s:13:"twentyfifteen";s:3:"1.9";s:15:"twentyseventeen";s:3:"1.4";s:13:"twentysixteen";s:3:"1.4";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'no'),
 (870, 'keyring_credentials', 'a:1:{s:10:"eventbrite";a:3:{s:6:"app_id";s:18:"V6UKKNPWMMOWWPKPLH";s:3:"key";s:20:"LYEGPNOHKY7KLPTUIJ4Z";s:6:"secret";s:50:"GZZZJVAYP4MLFY33FC6OVCW4GQZHWDAMIAV5WSLXLXXHSB6MPD";}}', 'yes'),
 (873, '_site_transient_timeout_available_translations', '1521093236', 'no'),
 (874, '_site_transient_available_translations', 'a:113:{s:2:"af";a:8:{s:8:"language";s:2:"af";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-06 13:56:09";s:12:"english_name";s:9:"Afrikaans";s:11:"native_name";s:9:"Afrikaans";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/af.zip";s:3:"iso";a:2:{i:1;s:2:"af";i:2;s:3:"afr";}s:7:"strings";a:1:{s:8:"continue";s:10:"Gaan voort";}}s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 18:16:41";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:3:"ary";a:8:{s:8:"language";s:3:"ary";s:7:"version";s:5:"4.7.7";s:7:"updated";s:19:"2017-01-26 15:42:35";s:12:"english_name";s:15:"Moroccan Arabic";s:11:"native_name";s:31:"العربية المغربية";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.7/ary.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:3;s:3:"ary";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"as";a:8:{s:8:"language";s:2:"as";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-22 18:59:07";s:12:"english_name";s:8:"Assamese";s:11:"native_name";s:21:"অসমীয়া";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/as.zip";s:3:"iso";a:3:{i:1;s:2:"as";i:2;s:3:"asm";i:3;s:3:"asm";}s:7:"strings";a:1:{s:8:"continue";s:0:"";}}s:3:"azb";a:8:{s:8:"language";s:3:"azb";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-09-12 20:34:31";s:12:"english_name";s:17:"South Azerbaijani";s:11:"native_name";s:29:"گؤنئی آذربایجان";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:3;s:3:"azb";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-06 00:09:27";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/az.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:2;s:3:"aze";}s:7:"strings";a:1:{s:8:"continue";s:5:"Davam";}}s:3:"bel";a:8:{s:8:"language";s:3:"bel";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-01-25 21:29:53";s:12:"english_name";s:10:"Belarusian";s:11:"native_name";s:29:"Беларуская мова";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.9.4/bel.zip";s:3:"iso";a:2:{i:1;s:2:"be";i:2;s:3:"bel";}s:7:"strings";a:1:{s:8:"continue";s:20:"Працягнуць";}}s:5:"bg_BG";a:8:{s:8:"language";s:5:"bg_BG";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-13 19:13:01";s:12:"english_name";s:9:"Bulgarian";s:11:"native_name";s:18:"Български";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/bg_BG.zip";s:3:"iso";a:2:{i:1;s:2:"bg";i:2;s:3:"bul";}s:7:"strings";a:1:{s:8:"continue";s:12:"Напред";}}s:5:"bn_BD";a:8:{s:8:"language";s:5:"bn_BD";s:7:"version";s:5:"4.8.5";s:7:"updated";s:19:"2017-10-01 12:57:10";s:12:"english_name";s:7:"Bengali";s:11:"native_name";s:15:"বাংলা";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.8.5/bn_BD.zip";s:3:"iso";a:1:{i:1;s:2:"bn";}s:7:"strings";a:1:{s:8:"continue";s:23:"এগিয়ে চল.";}}s:2:"bo";a:8:{s:8:"language";s:2:"bo";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-28 09:32:24";s:12:"english_name";s:7:"Tibetan";s:11:"native_name";s:21:"བོད་ཡིག";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/bo.zip";s:3:"iso";a:2:{i:1;s:2:"bo";i:2;s:3:"tib";}s:7:"strings";a:1:{s:8:"continue";s:24:"མུ་མཐུད།";}}s:5:"bs_BA";a:8:{s:8:"language";s:5:"bs_BA";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-09-04 20:20:28";s:12:"english_name";s:7:"Bosnian";s:11:"native_name";s:8:"Bosanski";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip";s:3:"iso";a:2:{i:1;s:2:"bs";i:2;s:3:"bos";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:2:"ca";a:8:{s:8:"language";s:2:"ca";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 20:33:12";s:12:"english_name";s:7:"Catalan";s:11:"native_name";s:7:"Català";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/ca.zip";s:3:"iso";a:2:{i:1;s:2:"ca";i:2;s:3:"cat";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:3:"ceb";a:8:{s:8:"language";s:3:"ceb";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-03-02 17:25:51";s:12:"english_name";s:7:"Cebuano";s:11:"native_name";s:7:"Cebuano";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip";s:3:"iso";a:2:{i:2;s:3:"ceb";i:3;s:3:"ceb";}s:7:"strings";a:1:{s:8:"continue";s:7:"Padayun";}}s:5:"cs_CZ";a:8:{s:8:"language";s:5:"cs_CZ";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 06:39:41";s:12:"english_name";s:5:"Czech";s:11:"native_name";s:9:"Čeština";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/cs_CZ.zip";s:3:"iso";a:2:{i:1;s:2:"cs";i:2;s:3:"ces";}s:7:"strings";a:1:{s:8:"continue";s:11:"Pokračovat";}}s:2:"cy";a:8:{s:8:"language";s:2:"cy";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-11 09:40:36";s:12:"english_name";s:5:"Welsh";s:11:"native_name";s:7:"Cymraeg";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/cy.zip";s:3:"iso";a:2:{i:1;s:2:"cy";i:2;s:3:"cym";}s:7:"strings";a:1:{s:8:"continue";s:6:"Parhau";}}s:5:"da_DK";a:8:{s:8:"language";s:5:"da_DK";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-01 16:05:18";s:12:"english_name";s:6:"Danish";s:11:"native_name";s:5:"Dansk";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsæt";}}s:5:"de_CH";a:8:{s:8:"language";s:5:"de_CH";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-12 10:10:36";s:12:"english_name";s:20:"German (Switzerland)";s:11:"native_name";s:17:"Deutsch (Schweiz)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/de_CH.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:6:"Weiter";}}s:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-11 22:01:59";s:12:"english_name";s:6:"German";s:11:"native_name";s:7:"Deutsch";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/de_DE.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:6:"Weiter";}}s:12:"de_DE_formal";a:8:{s:8:"language";s:12:"de_DE_formal";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-11 22:20:16";s:12:"english_name";s:15:"German (Formal)";s:11:"native_name";s:13:"Deutsch (Sie)";s:7:"package";s:71:"https://downloads.wordpress.org/translation/core/4.9.4/de_DE_formal.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:6:"Weiter";}}s:14:"de_CH_informal";a:8:{s:8:"language";s:14:"de_CH_informal";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2017-11-22 15:43:53";s:12:"english_name";s:30:"German (Switzerland, Informal)";s:11:"native_name";s:21:"Deutsch (Schweiz, Du)";s:7:"package";s:73:"https://downloads.wordpress.org/translation/core/4.9.2/de_CH_informal.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:6:"Weiter";}}s:3:"dzo";a:8:{s:8:"language";s:3:"dzo";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-06-29 08:59:03";s:12:"english_name";s:8:"Dzongkha";s:11:"native_name";s:18:"རྫོང་ཁ";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip";s:3:"iso";a:2:{i:1;s:2:"dz";i:2;s:3:"dzo";}s:7:"strings";a:1:{s:8:"continue";s:0:"";}}s:2:"el";a:8:{s:8:"language";s:2:"el";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-12 12:57:07";s:12:"english_name";s:5:"Greek";s:11:"native_name";s:16:"Ελληνικά";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/el.zip";s:3:"iso";a:2:{i:1;s:2:"el";i:2;s:3:"ell";}s:7:"strings";a:1:{s:8:"continue";s:16:"Συνέχεια";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-01-23 13:14:32";s:12:"english_name";s:19:"English (Australia)";s:11:"native_name";s:19:"English (Australia)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/en_AU.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 08:59:25";s:12:"english_name";s:12:"English (UK)";s:11:"native_name";s:12:"English (UK)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_ZA";a:8:{s:8:"language";s:5:"en_ZA";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2017-11-15 09:54:30";s:12:"english_name";s:22:"English (South Africa)";s:11:"native_name";s:22:"English (South Africa)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.2/en_ZA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-01-24 19:13:22";s:12:"english_name";s:16:"English (Canada)";s:11:"native_name";s:16:"English (Canada)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/en_CA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_NZ";a:8:{s:8:"language";s:5:"en_NZ";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-01 00:57:34";s:12:"english_name";s:21:"English (New Zealand)";s:11:"native_name";s:21:"English (New Zealand)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/en_NZ.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"eo";a:8:{s:8:"language";s:2:"eo";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-01-30 15:37:42";s:12:"english_name";s:9:"Esperanto";s:11:"native_name";s:9:"Esperanto";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/eo.zip";s:3:"iso";a:2:{i:1;s:2:"eo";i:2;s:3:"epo";}s:7:"strings";a:1:{s:8:"continue";s:8:"Daŭrigi";}}s:5:"es_AR";a:8:{s:8:"language";s:5:"es_AR";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-27 05:22:44";s:12:"english_name";s:19:"Spanish (Argentina)";s:11:"native_name";s:21:"Español de Argentina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/es_AR.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_GT";a:8:{s:8:"language";s:5:"es_GT";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2017-11-15 15:03:42";s:12:"english_name";s:19:"Spanish (Guatemala)";s:11:"native_name";s:21:"Español de Guatemala";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.2/es_GT.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CO";a:8:{s:8:"language";s:5:"es_CO";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2017-11-15 23:17:08";s:12:"english_name";s:18:"Spanish (Colombia)";s:11:"native_name";s:20:"Español de Colombia";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.2/es_CO.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_VE";a:8:{s:8:"language";s:5:"es_VE";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-23 18:34:33";s:12:"english_name";s:19:"Spanish (Venezuela)";s:11:"native_name";s:21:"Español de Venezuela";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/es_VE.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_MX";a:8:{s:8:"language";s:5:"es_MX";s:7:"version";s:5:"4.8.5";s:7:"updated";s:19:"2017-07-31 15:12:02";s:12:"english_name";s:16:"Spanish (Mexico)";s:11:"native_name";s:19:"Español de México";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.8.5/es_MX.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CR";a:8:{s:8:"language";s:5:"es_CR";s:7:"version";s:5:"4.8.3";s:7:"updated";s:19:"2017-10-01 17:54:52";s:12:"english_name";s:20:"Spanish (Costa Rica)";s:11:"native_name";s:22:"Español de Costa Rica";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.8.3/es_CR.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CL";a:8:{s:8:"language";s:5:"es_CL";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-28 20:09:49";s:12:"english_name";s:15:"Spanish (Chile)";s:11:"native_name";s:17:"Español de Chile";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-09-09 09:36:22";s:12:"english_name";s:14:"Spanish (Peru)";s:11:"native_name";s:17:"Español de Perú";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 16:21:50";s:12:"english_name";s:15:"Spanish (Spain)";s:11:"native_name";s:8:"Español";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/es_ES.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"et";a:8:{s:8:"language";s:2:"et";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2017-11-19 14:11:29";s:12:"english_name";s:8:"Estonian";s:11:"native_name";s:5:"Eesti";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.2/et.zip";s:3:"iso";a:2:{i:1;s:2:"et";i:2;s:3:"est";}s:7:"strings";a:1:{s:8:"continue";s:6:"Jätka";}}s:2:"eu";a:8:{s:8:"language";s:2:"eu";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2017-12-09 21:12:23";s:12:"english_name";s:6:"Basque";s:11:"native_name";s:7:"Euskara";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.2/eu.zip";s:3:"iso";a:2:{i:1;s:2:"eu";i:2;s:3:"eus";}s:7:"strings";a:1:{s:8:"continue";s:8:"Jarraitu";}}s:5:"fa_IR";a:8:{s:8:"language";s:5:"fa_IR";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-11 06:05:10";s:12:"english_name";s:7:"Persian";s:11:"native_name";s:10:"فارسی";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-12 17:00:17";s:12:"english_name";s:7:"Finnish";s:11:"native_name";s:5:"Suomi";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/fi.zip";s:3:"iso";a:2:{i:1;s:2:"fi";i:2;s:3:"fin";}s:7:"strings";a:1:{s:8:"continue";s:5:"Jatka";}}s:5:"fr_BE";a:8:{s:8:"language";s:5:"fr_BE";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-01-31 11:16:06";s:12:"english_name";s:16:"French (Belgium)";s:11:"native_name";s:21:"Français de Belgique";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/fr_BE.zip";s:3:"iso";a:2:{i:1;s:2:"fr";i:2;s:3:"fra";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:5:"fr_CA";a:8:{s:8:"language";s:5:"fr_CA";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 17:11:16";s:12:"english_name";s:15:"French (Canada)";s:11:"native_name";s:19:"Français du Canada";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/fr_CA.zip";s:3:"iso";a:2:{i:1;s:2:"fr";i:2;s:3:"fra";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:5:"fr_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-10 09:52:11";s:12:"english_name";s:15:"French (France)";s:11:"native_name";s:9:"Français";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/fr_FR.zip";s:3:"iso";a:1:{i:1;s:2:"fr";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:3:"fur";a:8:{s:8:"language";s:3:"fur";s:7:"version";s:5:"4.8.5";s:7:"updated";s:19:"2018-01-29 17:32:35";s:12:"english_name";s:8:"Friulian";s:11:"native_name";s:8:"Friulian";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.8.5/fur.zip";s:3:"iso";a:2:{i:2;s:3:"fur";i:3;s:3:"fur";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-08-23 17:41:37";s:12:"english_name";s:15:"Scottish Gaelic";s:11:"native_name";s:9:"Gàidhlig";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip";s:3:"iso";a:3:{i:1;s:2:"gd";i:2;s:3:"gla";i:3;s:3:"gla";}s:7:"strings";a:1:{s:8:"continue";s:15:"Lean air adhart";}}s:5:"gl_ES";a:8:{s:8:"language";s:5:"gl_ES";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-10 18:19:59";s:12:"english_name";s:8:"Galician";s:11:"native_name";s:6:"Galego";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/gl_ES.zip";s:3:"iso";a:2:{i:1;s:2:"gl";i:2;s:3:"glg";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"gu";a:8:{s:8:"language";s:2:"gu";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-14 06:16:04";s:12:"english_name";s:8:"Gujarati";s:11:"native_name";s:21:"ગુજરાતી";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/gu.zip";s:3:"iso";a:2:{i:1;s:2:"gu";i:2;s:3:"guj";}s:7:"strings";a:1:{s:8:"continue";s:31:"ચાલુ રાખવું";}}s:3:"haz";a:8:{s:8:"language";s:3:"haz";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-05 00:59:09";s:12:"english_name";s:8:"Hazaragi";s:11:"native_name";s:15:"هزاره گی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip";s:3:"iso";a:1:{i:3;s:3:"haz";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:5:"he_IL";a:8:{s:8:"language";s:5:"he_IL";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-12 09:39:31";s:12:"english_name";s:6:"Hebrew";s:11:"native_name";s:16:"עִבְרִית";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/he_IL.zip";s:3:"iso";a:1:{i:1;s:2:"he";}s:7:"strings";a:1:{s:8:"continue";s:8:"המשך";}}s:5:"hi_IN";a:8:{s:8:"language";s:5:"hi_IN";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-13 12:30:42";s:12:"english_name";s:5:"Hindi";s:11:"native_name";s:18:"हिन्दी";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/hi_IN.zip";s:3:"iso";a:2:{i:1;s:2:"hi";i:2;s:3:"hin";}s:7:"strings";a:1:{s:8:"continue";s:12:"जारी";}}s:2:"hr";a:8:{s:8:"language";s:2:"hr";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 15:33:49";s:12:"english_name";s:8:"Croatian";s:11:"native_name";s:8:"Hrvatski";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/hr.zip";s:3:"iso";a:2:{i:1;s:2:"hr";i:2;s:3:"hrv";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:5:"hu_HU";a:8:{s:8:"language";s:5:"hu_HU";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-01-29 19:54:36";s:12:"english_name";s:9:"Hungarian";s:11:"native_name";s:6:"Magyar";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:10:"Folytatás";}}s:2:"hy";a:8:{s:8:"language";s:2:"hy";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-12-03 16:21:10";s:12:"english_name";s:8:"Armenian";s:11:"native_name";s:14:"Հայերեն";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip";s:3:"iso";a:2:{i:1;s:2:"hy";i:2;s:3:"hye";}s:7:"strings";a:1:{s:8:"continue";s:20:"Շարունակել";}}s:5:"id_ID";a:8:{s:8:"language";s:5:"id_ID";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-28 12:42:14";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/id_ID.zip";s:3:"iso";a:2:{i:1;s:2:"id";i:2;s:3:"ind";}s:7:"strings";a:1:{s:8:"continue";s:9:"Lanjutkan";}}s:5:"is_IS";a:8:{s:8:"language";s:5:"is_IS";s:7:"version";s:5:"4.7.7";s:7:"updated";s:19:"2017-04-13 13:55:54";s:12:"english_name";s:9:"Icelandic";s:11:"native_name";s:9:"Íslenska";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.7/is_IS.zip";s:3:"iso";a:2:{i:1;s:2:"is";i:2;s:3:"isl";}s:7:"strings";a:1:{s:8:"continue";s:6:"Áfram";}}s:5:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 08:18:46";s:12:"english_name";s:7:"Italian";s:11:"native_name";s:8:"Italiano";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/it_IT.zip";s:3:"iso";a:2:{i:1;s:2:"it";i:2;s:3:"ita";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"ja";a:8:{s:8:"language";s:2:"ja";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 01:32:26";s:12:"english_name";s:8:"Japanese";s:11:"native_name";s:9:"日本語";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/ja.zip";s:3:"iso";a:1:{i:1;s:2:"ja";}s:7:"strings";a:1:{s:8:"continue";s:9:"続ける";}}s:5:"jv_ID";a:8:{s:8:"language";s:5:"jv_ID";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2017-11-14 11:47:57";s:12:"english_name";s:8:"Javanese";s:11:"native_name";s:9:"Basa Jawa";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.2/jv_ID.zip";s:3:"iso";a:2:{i:1;s:2:"jv";i:2;s:3:"jav";}s:7:"strings";a:1:{s:8:"continue";s:9:"Nerusaké";}}s:5:"ka_GE";a:8:{s:8:"language";s:5:"ka_GE";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-08 06:01:48";s:12:"english_name";s:8:"Georgian";s:11:"native_name";s:21:"ქართული";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/ka_GE.zip";s:3:"iso";a:2:{i:1;s:2:"ka";i:2;s:3:"kat";}s:7:"strings";a:1:{s:8:"continue";s:30:"გაგრძელება";}}s:3:"kab";a:8:{s:8:"language";s:3:"kab";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-11 21:30:32";s:12:"english_name";s:6:"Kabyle";s:11:"native_name";s:9:"Taqbaylit";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.9.4/kab.zip";s:3:"iso";a:2:{i:2;s:3:"kab";i:3;s:3:"kab";}s:7:"strings";a:1:{s:8:"continue";s:6:"Kemmel";}}s:2:"kk";a:8:{s:8:"language";s:2:"kk";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-12 08:08:32";s:12:"english_name";s:6:"Kazakh";s:11:"native_name";s:19:"Қазақ тілі";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/kk.zip";s:3:"iso";a:2:{i:1;s:2:"kk";i:2;s:3:"kaz";}s:7:"strings";a:1:{s:8:"continue";s:20:"Жалғастыру";}}s:2:"km";a:8:{s:8:"language";s:2:"km";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-12-07 02:07:59";s:12:"english_name";s:5:"Khmer";s:11:"native_name";s:27:"ភាសាខ្មែរ";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/km.zip";s:3:"iso";a:2:{i:1;s:2:"km";i:2;s:3:"khm";}s:7:"strings";a:1:{s:8:"continue";s:12:"បន្ត";}}s:5:"ko_KR";a:8:{s:8:"language";s:5:"ko_KR";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-10 14:12:15";s:12:"english_name";s:6:"Korean";s:11:"native_name";s:9:"한국어";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/ko_KR.zip";s:3:"iso";a:2:{i:1;s:2:"ko";i:2;s:3:"kor";}s:7:"strings";a:1:{s:8:"continue";s:6:"계속";}}s:3:"ckb";a:8:{s:8:"language";s:3:"ckb";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-26 15:48:25";s:12:"english_name";s:16:"Kurdish (Sorani)";s:11:"native_name";s:13:"كوردی‎";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/ckb.zip";s:3:"iso";a:2:{i:1;s:2:"ku";i:3;s:3:"ckb";}s:7:"strings";a:1:{s:8:"continue";s:30:"به‌رده‌وام به‌";}}s:2:"lo";a:8:{s:8:"language";s:2:"lo";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-12 09:59:23";s:12:"english_name";s:3:"Lao";s:11:"native_name";s:21:"ພາສາລາວ";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip";s:3:"iso";a:2:{i:1;s:2:"lo";i:2;s:3:"lao";}s:7:"strings";a:1:{s:8:"continue";s:18:"ຕໍ່​ໄປ";}}s:5:"lt_LT";a:8:{s:8:"language";s:5:"lt_LT";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2017-11-15 19:40:23";s:12:"english_name";s:10:"Lithuanian";s:11:"native_name";s:15:"Lietuvių kalba";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.2/lt_LT.zip";s:3:"iso";a:2:{i:1;s:2:"lt";i:2;s:3:"lit";}s:7:"strings";a:1:{s:8:"continue";s:6:"Tęsti";}}s:2:"lv";a:8:{s:8:"language";s:2:"lv";s:7:"version";s:5:"4.7.7";s:7:"updated";s:19:"2017-03-17 20:40:40";s:12:"english_name";s:7:"Latvian";s:11:"native_name";s:16:"Latviešu valoda";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.7/lv.zip";s:3:"iso";a:2:{i:1;s:2:"lv";i:2;s:3:"lav";}s:7:"strings";a:1:{s:8:"continue";s:9:"Turpināt";}}s:5:"mk_MK";a:8:{s:8:"language";s:5:"mk_MK";s:7:"version";s:5:"4.7.7";s:7:"updated";s:19:"2017-01-26 15:54:41";s:12:"english_name";s:10:"Macedonian";s:11:"native_name";s:31:"Македонски јазик";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.7/mk_MK.zip";s:3:"iso";a:2:{i:1;s:2:"mk";i:2;s:3:"mkd";}s:7:"strings";a:1:{s:8:"continue";s:16:"Продолжи";}}s:5:"ml_IN";a:8:{s:8:"language";s:5:"ml_IN";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-27 03:43:32";s:12:"english_name";s:9:"Malayalam";s:11:"native_name";s:18:"മലയാളം";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip";s:3:"iso";a:2:{i:1;s:2:"ml";i:2;s:3:"mal";}s:7:"strings";a:1:{s:8:"continue";s:18:"തുടരുക";}}s:2:"mn";a:8:{s:8:"language";s:2:"mn";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-12 07:29:35";s:12:"english_name";s:9:"Mongolian";s:11:"native_name";s:12:"Монгол";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip";s:3:"iso";a:2:{i:1;s:2:"mn";i:2;s:3:"mon";}s:7:"strings";a:1:{s:8:"continue";s:24:"Үргэлжлүүлэх";}}s:2:"mr";a:8:{s:8:"language";s:2:"mr";s:7:"version";s:5:"4.8.5";s:7:"updated";s:19:"2018-02-13 07:38:55";s:12:"english_name";s:7:"Marathi";s:11:"native_name";s:15:"मराठी";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.8.5/mr.zip";s:3:"iso";a:2:{i:1;s:2:"mr";i:2;s:3:"mar";}s:7:"strings";a:1:{s:8:"continue";s:25:"सुरु ठेवा";}}s:5:"ms_MY";a:8:{s:8:"language";s:5:"ms_MY";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-28 10:55:13";s:12:"english_name";s:5:"Malay";s:11:"native_name";s:13:"Bahasa Melayu";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/ms_MY.zip";s:3:"iso";a:2:{i:1;s:2:"ms";i:2;s:3:"msa";}s:7:"strings";a:1:{s:8:"continue";s:8:"Teruskan";}}s:5:"my_MM";a:8:{s:8:"language";s:5:"my_MM";s:7:"version";s:6:"4.1.20";s:7:"updated";s:19:"2015-03-26 15:57:42";s:12:"english_name";s:17:"Myanmar (Burmese)";s:11:"native_name";s:15:"ဗမာစာ";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip";s:3:"iso";a:2:{i:1;s:2:"my";i:2;s:3:"mya";}s:7:"strings";a:1:{s:8:"continue";s:54:"ဆက်လက်လုပ်ဆောင်ပါ။";}}s:5:"nb_NO";a:8:{s:8:"language";s:5:"nb_NO";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-02 11:50:29";s:12:"english_name";s:19:"Norwegian (Bokmål)";s:11:"native_name";s:13:"Norsk bokmål";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:5:"ne_NP";a:8:{s:8:"language";s:5:"ne_NP";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-14 17:41:27";s:12:"english_name";s:6:"Nepali";s:11:"native_name";s:18:"नेपाली";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/ne_NP.zip";s:3:"iso";a:2:{i:1;s:2:"ne";i:2;s:3:"nep";}s:7:"strings";a:1:{s:8:"continue";s:43:"जारी राख्नुहोस्";}}s:12:"nl_NL_formal";a:8:{s:8:"language";s:12:"nl_NL_formal";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 07:20:23";s:12:"english_name";s:14:"Dutch (Formal)";s:11:"native_name";s:20:"Nederlands (Formeel)";s:7:"package";s:71:"https://downloads.wordpress.org/translation/core/4.9.4/nl_NL_formal.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nl_BE";a:8:{s:8:"language";s:5:"nl_BE";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-02 13:50:55";s:12:"english_name";s:15:"Dutch (Belgium)";s:11:"native_name";s:20:"Nederlands (België)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/nl_BE.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 07:21:47";s:12:"english_name";s:5:"Dutch";s:11:"native_name";s:10:"Nederlands";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/nl_NL.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nn_NO";a:8:{s:8:"language";s:5:"nn_NO";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-11 20:38:20";s:12:"english_name";s:19:"Norwegian (Nynorsk)";s:11:"native_name";s:13:"Norsk nynorsk";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/nn_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nn";i:2;s:3:"nno";}s:7:"strings";a:1:{s:8:"continue";s:9:"Hald fram";}}s:3:"oci";a:8:{s:8:"language";s:3:"oci";s:7:"version";s:5:"4.8.3";s:7:"updated";s:19:"2017-08-25 10:03:08";s:12:"english_name";s:7:"Occitan";s:11:"native_name";s:7:"Occitan";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.8.3/oci.zip";s:3:"iso";a:2:{i:1;s:2:"oc";i:2;s:3:"oci";}s:7:"strings";a:1:{s:8:"continue";s:9:"Contunhar";}}s:5:"pa_IN";a:8:{s:8:"language";s:5:"pa_IN";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-16 05:19:43";s:12:"english_name";s:7:"Punjabi";s:11:"native_name";s:18:"ਪੰਜਾਬੀ";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip";s:3:"iso";a:2:{i:1;s:2:"pa";i:2;s:3:"pan";}s:7:"strings";a:1:{s:8:"continue";s:25:"ਜਾਰੀ ਰੱਖੋ";}}s:5:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 08:32:20";s:12:"english_name";s:6:"Polish";s:11:"native_name";s:6:"Polski";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/pl_PL.zip";s:3:"iso";a:2:{i:1;s:2:"pl";i:2;s:3:"pol";}s:7:"strings";a:1:{s:8:"continue";s:9:"Kontynuuj";}}s:2:"ps";a:8:{s:8:"language";s:2:"ps";s:7:"version";s:6:"4.1.20";s:7:"updated";s:19:"2015-03-29 22:19:48";s:12:"english_name";s:6:"Pashto";s:11:"native_name";s:8:"پښتو";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip";s:3:"iso";a:2:{i:1;s:2:"ps";i:2;s:3:"pus";}s:7:"strings";a:1:{s:8:"continue";s:19:"دوام ورکړه";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-22 19:29:24";s:12:"english_name";s:19:"Portuguese (Brazil)";s:11:"native_name";s:20:"Português do Brasil";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/pt_BR.zip";s:3:"iso";a:2:{i:1;s:2:"pt";i:2;s:3:"por";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:10:"pt_PT_ao90";a:8:{s:8:"language";s:10:"pt_PT_ao90";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 09:30:48";s:12:"english_name";s:27:"Portuguese (Portugal, AO90)";s:11:"native_name";s:17:"Português (AO90)";s:7:"package";s:69:"https://downloads.wordpress.org/translation/core/4.9.4/pt_PT_ao90.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 09:37:35";s:12:"english_name";s:21:"Portuguese (Portugal)";s:11:"native_name";s:10:"Português";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:3:"rhg";a:8:{s:8:"language";s:3:"rhg";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-03-16 13:03:18";s:12:"english_name";s:8:"Rohingya";s:11:"native_name";s:8:"Ruáinga";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip";s:3:"iso";a:1:{i:3;s:3:"rhg";}s:7:"strings";a:1:{s:8:"continue";s:0:"";}}s:5:"ro_RO";a:8:{s:8:"language";s:5:"ro_RO";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 12:09:47";s:12:"english_name";s:8:"Romanian";s:11:"native_name";s:8:"Română";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/ro_RO.zip";s:3:"iso";a:2:{i:1;s:2:"ro";i:2;s:3:"ron";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuă";}}s:5:"ru_RU";a:8:{s:8:"language";s:5:"ru_RU";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 05:26:21";s:12:"english_name";s:7:"Russian";s:11:"native_name";s:14:"Русский";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/ru_RU.zip";s:3:"iso";a:2:{i:1;s:2:"ru";i:2;s:3:"rus";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продолжить";}}s:3:"sah";a:8:{s:8:"language";s:3:"sah";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-21 02:06:41";s:12:"english_name";s:5:"Sakha";s:11:"native_name";s:14:"Сахалыы";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip";s:3:"iso";a:2:{i:2;s:3:"sah";i:3;s:3:"sah";}s:7:"strings";a:1:{s:8:"continue";s:12:"Салҕаа";}}s:5:"si_LK";a:8:{s:8:"language";s:5:"si_LK";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-12 06:00:52";s:12:"english_name";s:7:"Sinhala";s:11:"native_name";s:15:"සිංහල";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip";s:3:"iso";a:2:{i:1;s:2:"si";i:2;s:3:"sin";}s:7:"strings";a:1:{s:8:"continue";s:44:"දිගටම කරගෙන යන්න";}}s:5:"sk_SK";a:8:{s:8:"language";s:5:"sk_SK";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-16 08:25:42";s:12:"english_name";s:6:"Slovak";s:11:"native_name";s:11:"Slovenčina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:5:"sl_SI";a:8:{s:8:"language";s:5:"sl_SI";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2018-01-04 13:33:13";s:12:"english_name";s:9:"Slovenian";s:11:"native_name";s:13:"Slovenščina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.2/sl_SI.zip";s:3:"iso";a:2:{i:1;s:2:"sl";i:2;s:3:"slv";}s:7:"strings";a:1:{s:8:"continue";s:8:"Nadaljuj";}}s:2:"sq";a:8:{s:8:"language";s:2:"sq";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 09:59:50";s:12:"english_name";s:8:"Albanian";s:11:"native_name";s:5:"Shqip";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/sq.zip";s:3:"iso";a:2:{i:1;s:2:"sq";i:2;s:3:"sqi";}s:7:"strings";a:1:{s:8:"continue";s:6:"Vazhdo";}}s:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-05 20:37:27";s:12:"english_name";s:7:"Serbian";s:11:"native_name";s:23:"Српски језик";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 12:42:33";s:12:"english_name";s:7:"Swedish";s:11:"native_name";s:7:"Svenska";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/sv_SE.zip";s:3:"iso";a:2:{i:1;s:2:"sv";i:2;s:3:"swe";}s:7:"strings";a:1:{s:8:"continue";s:9:"Fortsätt";}}s:3:"szl";a:8:{s:8:"language";s:3:"szl";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-09-24 19:58:14";s:12:"english_name";s:8:"Silesian";s:11:"native_name";s:17:"Ślōnskŏ gŏdka";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip";s:3:"iso";a:1:{i:3;s:3:"szl";}s:7:"strings";a:1:{s:8:"continue";s:13:"Kōntynuować";}}s:5:"ta_IN";a:8:{s:8:"language";s:5:"ta_IN";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-27 03:22:47";s:12:"english_name";s:5:"Tamil";s:11:"native_name";s:15:"தமிழ்";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip";s:3:"iso";a:2:{i:1;s:2:"ta";i:2;s:3:"tam";}s:7:"strings";a:1:{s:8:"continue";s:24:"தொடரவும்";}}s:2:"te";a:8:{s:8:"language";s:2:"te";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-26 15:47:39";s:12:"english_name";s:6:"Telugu";s:11:"native_name";s:18:"తెలుగు";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/te.zip";s:3:"iso";a:2:{i:1;s:2:"te";i:2;s:3:"tel";}s:7:"strings";a:1:{s:8:"continue";s:30:"కొనసాగించు";}}s:2:"th";a:8:{s:8:"language";s:2:"th";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-02 17:08:41";s:12:"english_name";s:4:"Thai";s:11:"native_name";s:9:"ไทย";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s:2:"tl";a:8:{s:8:"language";s:2:"tl";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-12-30 02:38:08";s:12:"english_name";s:7:"Tagalog";s:11:"native_name";s:7:"Tagalog";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip";s:3:"iso";a:2:{i:1;s:2:"tl";i:2;s:3:"tgl";}s:7:"strings";a:1:{s:8:"continue";s:10:"Magpatuloy";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-14 15:26:30";s:12:"english_name";s:7:"Turkish";s:11:"native_name";s:8:"Türkçe";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/tr_TR.zip";s:3:"iso";a:2:{i:1;s:2:"tr";i:2;s:3:"tur";}s:7:"strings";a:1:{s:8:"continue";s:5:"Devam";}}s:5:"tt_RU";a:8:{s:8:"language";s:5:"tt_RU";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-20 20:20:50";s:12:"english_name";s:5:"Tatar";s:11:"native_name";s:19:"Татар теле";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip";s:3:"iso";a:2:{i:1;s:2:"tt";i:2;s:3:"tat";}s:7:"strings";a:1:{s:8:"continue";s:17:"дәвам итү";}}s:3:"tah";a:8:{s:8:"language";s:3:"tah";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-03-06 18:39:39";s:12:"english_name";s:8:"Tahitian";s:11:"native_name";s:10:"Reo Tahiti";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip";s:3:"iso";a:3:{i:1;s:2:"ty";i:2;s:3:"tah";i:3;s:3:"tah";}s:7:"strings";a:1:{s:8:"continue";s:0:"";}}s:5:"ug_CN";a:8:{s:8:"language";s:5:"ug_CN";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-12-05 09:23:39";s:12:"english_name";s:6:"Uighur";s:11:"native_name";s:9:"Uyƣurqə";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/ug_CN.zip";s:3:"iso";a:2:{i:1;s:2:"ug";i:2;s:3:"uig";}s:7:"strings";a:1:{s:8:"continue";s:26:"داۋاملاشتۇرۇش";}}s:2:"uk";a:8:{s:8:"language";s:2:"uk";s:7:"version";s:5:"4.8.3";s:7:"updated";s:19:"2017-11-02 17:05:02";s:12:"english_name";s:9:"Ukrainian";s:11:"native_name";s:20:"Українська";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.8.3/uk.zip";s:3:"iso";a:2:{i:1;s:2:"uk";i:2;s:3:"ukr";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продовжити";}}s:2:"ur";a:8:{s:8:"language";s:2:"ur";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-13 08:24:25";s:12:"english_name";s:4:"Urdu";s:11:"native_name";s:8:"اردو";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/ur.zip";s:3:"iso";a:2:{i:1;s:2:"ur";i:2;s:3:"urd";}s:7:"strings";a:1:{s:8:"continue";s:19:"جاری رکھیں";}}s:5:"uz_UZ";a:8:{s:8:"language";s:5:"uz_UZ";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-03-09 10:37:43";s:12:"english_name";s:5:"Uzbek";s:11:"native_name";s:11:"O‘zbekcha";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/uz_UZ.zip";s:3:"iso";a:2:{i:1;s:2:"uz";i:2;s:3:"uzb";}s:7:"strings";a:1:{s:8:"continue";s:11:"Davom etish";}}s:2:"vi";a:8:{s:8:"language";s:2:"vi";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-01 04:49:54";s:12:"english_name";s:10:"Vietnamese";s:11:"native_name";s:14:"Tiếng Việt";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.9.4/vi.zip";s:3:"iso";a:2:{i:1;s:2:"vi";i:2;s:3:"vie";}s:7:"strings";a:1:{s:8:"continue";s:12:"Tiếp tục";}}s:5:"zh_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-13 02:41:15";s:12:"english_name";s:16:"Chinese (Taiwan)";s:11:"native_name";s:12:"繁體中文";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/zh_TW.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:5:"4.9.2";s:7:"updated";s:19:"2017-11-17 22:20:52";s:12:"english_name";s:15:"Chinese (China)";s:11:"native_name";s:12:"简体中文";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.2/zh_CN.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"继续";}}s:5:"zh_HK";a:8:{s:8:"language";s:5:"zh_HK";s:7:"version";s:5:"4.9.4";s:7:"updated";s:19:"2018-02-06 17:26:08";s:12:"english_name";s:19:"Chinese (Hong Kong)";s:11:"native_name";s:16:"香港中文版	";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.9.4/zh_HK.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}}', 'no'),
 (877, 'widget_a2a_share_save_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (878, 'widget_a2a_follow_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
 (879, 'addtoany_options', 'a:36:{s:8:"position";s:6:"bottom";s:30:"display_in_posts_on_front_page";s:1:"1";s:33:"display_in_posts_on_archive_pages";s:1:"1";s:19:"display_in_excerpts";s:1:"1";s:16:"display_in_posts";s:1:"1";s:16:"display_in_pages";s:1:"1";s:22:"display_in_attachments";s:1:"1";s:15:"display_in_feed";s:1:"1";s:7:"onclick";s:2:"-1";s:9:"icon_size";s:2:"20";s:7:"icon_bg";s:8:"original";s:13:"icon_bg_color";s:7:"#2a2a2a";s:7:"icon_fg";s:8:"original";s:13:"icon_fg_color";s:7:"#ffffff";s:6:"button";s:4:"TEXT";s:13:"button_custom";s:0:"";s:17:"button_show_count";s:2:"-1";s:6:"header";s:0:"";s:23:"additional_js_variables";s:0:"";s:14:"additional_css";s:0:"";s:12:"custom_icons";s:2:"-1";s:16:"custom_icons_url";s:1:"/";s:17:"custom_icons_type";s:3:"png";s:18:"custom_icons_width";s:0:"";s:19:"custom_icons_height";s:0:"";s:5:"cache";s:2:"-1";s:22:"display_in_cpt_project";s:1:"1";s:11:"button_text";s:5:"Share";s:24:"special_facebook_options";a:1:{s:10:"show_count";s:2:"-1";}s:25:"special_pinterest_options";a:1:{s:10:"show_count";s:2:"-1";}s:15:"active_services";a:4:{i:0;s:8:"facebook";i:1;s:7:"twitter";i:2;s:11:"google_plus";i:3;s:9:"pinterest";}s:29:"special_facebook_like_options";a:1:{s:4:"verb";s:4:"like";}s:29:"special_twitter_tweet_options";a:1:{s:10:"show_count";s:2:"-1";}s:30:"special_google_plusone_options";a:1:{s:10:"show_count";s:2:"-1";}s:33:"special_google_plus_share_options";a:1:{s:10:"show_count";s:2:"-1";}s:29:"special_pinterest_pin_options";a:1:{s:10:"show_count";s:2:"-1";}}', 'yes'),
 (884, 'boxzilla_version', '3.2.2', 'yes'),
 (885, 'boxzilla_settings', 'a:2:{s:18:"first_activated_on";i:1521084274;s:9:"test_mode";s:1:"0";}', 'yes'),
 (886, 'boxzilla_rules', 'a:1:{i:683;a:2:{i:0;a:3:{s:9:"condition";s:10:"everywhere";s:9:"qualifier";i:1;s:5:"value";s:0:"";}s:11:"comparision";s:3:"any";}}', 'yes'),
 (887, '_site_transient_timeout_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc', '1521691194', 'no'),
 (888, '_site_transient_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc', 'a:10:{s:4:"name";s:17:"Internet Explorer";s:7:"version";s:4:"11.0";s:8:"platform";s:7:"Windows";s:10:"update_url";s:74:"https://support.microsoft.com/en-us/help/17621/internet-explorer-downloads";s:7:"img_src";s:39:"http://s.w.org/images/browsers/ie.png?1";s:11:"img_src_ssl";s:40:"https://s.w.org/images/browsers/ie.png?1";s:15:"current_version";s:2:"11";s:7:"upgrade";b:0;s:8:"insecure";b:0;s:6:"mobile";b:0;}', 'no'),
 (891, 'category_children', 'a:2:{i:7;a:3:{i:0;i:11;i:1;i:12;i:2;i:13;}i:4;a:1:{i:0;i:14;}}', 'yes'),
 (894, 'duplicate_post_copytitle', '1', 'yes'),
 (895, 'duplicate_post_copydate', '', 'yes'),
 (896, 'duplicate_post_copystatus', '1', 'yes'),
 (897, 'duplicate_post_copyslug', '1', 'yes'),
 (898, 'duplicate_post_copyexcerpt', '1', 'yes'),
 (899, 'duplicate_post_copycontent', '1', 'yes'),
 (900, 'duplicate_post_copythumbnail', '1', 'yes'),
 (901, 'duplicate_post_copytemplate', '1', 'yes'),
 (902, 'duplicate_post_copyformat', '1', 'yes'),
 (903, 'duplicate_post_copyauthor', '', 'yes'),
 (904, 'duplicate_post_copypassword', '', 'yes'),
 (905, 'duplicate_post_copyattachments', '', 'yes'),
 (906, 'duplicate_post_copychildren', '', 'yes'),
 (907, 'duplicate_post_copycomments', '', 'yes'),
 (908, 'duplicate_post_copymenuorder', '1', 'yes'),
 (909, 'duplicate_post_taxonomies_blacklist', 'a:1:{i:0;s:8:"category";}', 'yes'),
 (910, 'duplicate_post_blacklist', '', 'yes'),
 (911, 'duplicate_post_types_enabled', 'a:2:{i:0;s:4:"post";i:1;s:4:"page";}', 'yes'),
 (912, 'duplicate_post_show_row', '', 'yes'),
 (913, 'duplicate_post_show_adminbar', '', 'yes'),
 (914, 'duplicate_post_show_submitbox', '', 'yes'),
 (915, 'duplicate_post_show_bulkactions', '1', 'yes'),
 (916, 'duplicate_post_version', '3.2.1', 'yes'),
 (917, 'duplicate_post_show_notice', '', 'no'),
 (918, 'duplicate_post_title_prefix', '', 'yes'),
 (919, 'duplicate_post_title_suffix', '', 'yes'),
 (920, 'duplicate_post_increase_menu_order_by', '', 'yes'),
 (921, 'duplicate_post_roles', 'a:1:{i:0;s:13:"administrator";}', 'yes'),
 (931, '_site_transient_timeout_theme_roots', '1521090872', 'no'),
 (932, '_site_transient_theme_roots', 'a:5:{s:16:"bento-child-tcof";s:7:"/themes";s:5:"bento";s:7:"/themes";s:13:"twentyfifteen";s:7:"/themes";s:15:"twentyseventeen";s:7:"/themes";s:13:"twentysixteen";s:7:"/themes";}', 'no'),
 (933, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1521125084;s:7:"checked";a:16:{s:25:"add-to-any/add-to-any.php";s:6:"1.7.25";s:19:"akismet/akismet.php";s:5:"4.0.3";s:23:"backup-wd/backup-wd.php";s:6:"1.0.15";s:45:"bento-expansion-pack/bento-expansion-pack.php";s:3:"1.0";s:37:"breadcrumb-navxt/breadcrumb-navxt.php";s:5:"6.0.4";s:36:"contact-form-7/wp-contact-form-7.php";s:5:"5.0.1";s:33:"duplicate-post/duplicate-post.php";s:5:"3.2.1";s:33:"eventbrite-api/eventbrite-api.php";s:6:"1.0.12";s:59:"intuitive-custom-post-order/intuitive-custom-post-order.php";s:5:"3.1.1";s:19:"keyring/keyring.php";s:3:"1.9";s:39:"siteorigin-panels/siteorigin-panels.php";s:5:"2.6.3";s:39:"so-widgets-bundle/so-widgets-bundle.php";s:6:"1.11.6";s:31:"the-post-grid/the-post-grid.php";s:5:"2.2.2";s:39:"the-post-grid-pro/the-post-grid-pro.php";s:5:"3.3.3";s:33:"widget-context/widget-context.php";s:5:"1.0.6";s:30:"youtube-embed-plus/youtube.php";s:8:"11.8.6.1";}s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:14:{s:25:"add-to-any/add-to-any.php";O:8:"stdClass":9:{s:2:"id";s:24:"w.org/plugins/add-to-any";s:4:"slug";s:10:"add-to-any";s:6:"plugin";s:25:"add-to-any/add-to-any.php";s:11:"new_version";s:6:"1.7.25";s:3:"url";s:41:"https://wordpress.org/plugins/add-to-any/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/add-to-any.1.7.25.zip";s:5:"icons";a:4:{s:2:"1x";s:62:"https://ps.w.org/add-to-any/assets/icon-128x128.png?rev=972738";s:2:"2x";s:62:"https://ps.w.org/add-to-any/assets/icon-256x256.png?rev=972738";s:3:"svg";s:54:"https://ps.w.org/add-to-any/assets/icon.svg?rev=972738";s:7:"default";s:54:"https://ps.w.org/add-to-any/assets/icon.svg?rev=972738";}s:7:"banners";a:3:{s:2:"2x";s:66:"https://ps.w.org/add-to-any/assets/banner-1544x500.png?rev=1629680";s:2:"1x";s:65:"https://ps.w.org/add-to-any/assets/banner-772x250.png?rev=1629680";s:7:"default";s:66:"https://ps.w.org/add-to-any/assets/banner-1544x500.png?rev=1629680";}s:11:"banners_rtl";a:0:{}}s:19:"akismet/akismet.php";O:8:"stdClass":9:{s:2:"id";s:21:"w.org/plugins/akismet";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:5:"4.0.3";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.4.0.3.zip";s:5:"icons";a:3:{s:2:"1x";s:59:"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272";s:2:"2x";s:59:"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272";s:7:"default";s:59:"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272";}s:7:"banners";a:2:{s:2:"1x";s:61:"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904";s:7:"default";s:61:"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904";}s:11:"banners_rtl";a:0:{}}s:23:"backup-wd/backup-wd.php";O:8:"stdClass":9:{s:2:"id";s:23:"w.org/plugins/backup-wd";s:4:"slug";s:9:"backup-wd";s:6:"plugin";s:23:"backup-wd/backup-wd.php";s:11:"new_version";s:6:"1.0.15";s:3:"url";s:40:"https://wordpress.org/plugins/backup-wd/";s:7:"package";s:59:"https://downloads.wordpress.org/plugin/backup-wd.1.0.15.zip";s:5:"icons";a:2:{s:2:"1x";s:62:"https://ps.w.org/backup-wd/assets/icon-128x128.png?rev=1722460";s:7:"default";s:62:"https://ps.w.org/backup-wd/assets/icon-128x128.png?rev=1722460";}s:7:"banners";a:2:{s:2:"1x";s:64:"https://ps.w.org/backup-wd/assets/banner-772x250.png?rev=1722460";s:7:"default";s:64:"https://ps.w.org/backup-wd/assets/banner-772x250.png?rev=1722460";}s:11:"banners_rtl";a:0:{}}s:37:"breadcrumb-navxt/breadcrumb-navxt.php";O:8:"stdClass":9:{s:2:"id";s:30:"w.org/plugins/breadcrumb-navxt";s:4:"slug";s:16:"breadcrumb-navxt";s:6:"plugin";s:37:"breadcrumb-navxt/breadcrumb-navxt.php";s:11:"new_version";s:5:"6.0.4";s:3:"url";s:47:"https://wordpress.org/plugins/breadcrumb-navxt/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.4.zip";s:5:"icons";a:4:{s:2:"1x";s:68:"https://ps.w.org/breadcrumb-navxt/assets/icon-128x128.png?rev=971477";s:2:"2x";s:68:"https://ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=971477";s:3:"svg";s:60:"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=971477";s:7:"default";s:60:"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=971477";}s:7:"banners";a:2:{s:2:"1x";s:70:"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.jpg?rev=479408";s:7:"default";s:70:"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.jpg?rev=479408";}s:11:"banners_rtl";a:0:{}}s:36:"contact-form-7/wp-contact-form-7.php";O:8:"stdClass":9:{s:2:"id";s:28:"w.org/plugins/contact-form-7";s:4:"slug";s:14:"contact-form-7";s:6:"plugin";s:36:"contact-form-7/wp-contact-form-7.php";s:11:"new_version";s:5:"5.0.1";s:3:"url";s:45:"https://wordpress.org/plugins/contact-form-7/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/contact-form-7.5.0.1.zip";s:5:"icons";a:3:{s:2:"1x";s:66:"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007";s:2:"2x";s:66:"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007";s:7:"default";s:66:"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007";}s:7:"banners";a:3:{s:2:"2x";s:69:"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901";s:2:"1x";s:68:"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427";s:7:"default";s:69:"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901";}s:11:"banners_rtl";a:0:{}}s:33:"duplicate-post/duplicate-post.php";O:8:"stdClass":9:{s:2:"id";s:28:"w.org/plugins/duplicate-post";s:4:"slug";s:14:"duplicate-post";s:6:"plugin";s:33:"duplicate-post/duplicate-post.php";s:11:"new_version";s:5:"3.2.1";s:3:"url";s:45:"https://wordpress.org/plugins/duplicate-post/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/duplicate-post.3.2.1.zip";s:5:"icons";a:3:{s:2:"1x";s:67:"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=1612753";s:2:"2x";s:67:"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=1612753";s:7:"default";s:67:"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=1612753";}s:7:"banners";a:2:{s:2:"1x";s:69:"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=1612986";s:7:"default";s:69:"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=1612986";}s:11:"banners_rtl";a:0:{}}s:33:"eventbrite-api/eventbrite-api.php";O:8:"stdClass":9:{s:2:"id";s:28:"w.org/plugins/eventbrite-api";s:4:"slug";s:14:"eventbrite-api";s:6:"plugin";s:33:"eventbrite-api/eventbrite-api.php";s:11:"new_version";s:6:"1.0.12";s:3:"url";s:45:"https://wordpress.org/plugins/eventbrite-api/";s:7:"package";s:64:"https://downloads.wordpress.org/plugin/eventbrite-api.1.0.12.zip";s:5:"icons";a:3:{s:2:"1x";s:67:"https://ps.w.org/eventbrite-api/assets/icon-128x128.png?rev=1036310";s:2:"2x";s:67:"https://ps.w.org/eventbrite-api/assets/icon-256x256.png?rev=1036310";s:7:"default";s:67:"https://ps.w.org/eventbrite-api/assets/icon-256x256.png?rev=1036310";}s:7:"banners";a:3:{s:2:"2x";s:70:"https://ps.w.org/eventbrite-api/assets/banner-1544x500.png?rev=1036317";s:2:"1x";s:69:"https://ps.w.org/eventbrite-api/assets/banner-772x250.png?rev=1036317";s:7:"default";s:70:"https://ps.w.org/eventbrite-api/assets/banner-1544x500.png?rev=1036317";}s:11:"banners_rtl";a:0:{}}s:59:"intuitive-custom-post-order/intuitive-custom-post-order.php";O:8:"stdClass":9:{s:2:"id";s:41:"w.org/plugins/intuitive-custom-post-order";s:4:"slug";s:27:"intuitive-custom-post-order";s:6:"plugin";s:59:"intuitive-custom-post-order/intuitive-custom-post-order.php";s:11:"new_version";s:5:"3.1.1";s:3:"url";s:58:"https://wordpress.org/plugins/intuitive-custom-post-order/";s:7:"package";s:76:"https://downloads.wordpress.org/plugin/intuitive-custom-post-order.3.1.1.zip";s:5:"icons";a:3:{s:2:"1x";s:80:"https://ps.w.org/intuitive-custom-post-order/assets/icon-128x128.png?rev=1078797";s:2:"2x";s:80:"https://ps.w.org/intuitive-custom-post-order/assets/icon-256x256.png?rev=1078797";s:7:"default";s:80:"https://ps.w.org/intuitive-custom-post-order/assets/icon-256x256.png?rev=1078797";}s:7:"banners";a:3:{s:2:"2x";s:83:"https://ps.w.org/intuitive-custom-post-order/assets/banner-1544x500.png?rev=1209666";s:2:"1x";s:82:"https://ps.w.org/intuitive-custom-post-order/assets/banner-772x250.png?rev=1078755";s:7:"default";s:83:"https://ps.w.org/intuitive-custom-post-order/assets/banner-1544x500.png?rev=1209666";}s:11:"banners_rtl";a:0:{}}s:19:"keyring/keyring.php";O:8:"stdClass":9:{s:2:"id";s:21:"w.org/plugins/keyring";s:4:"slug";s:7:"keyring";s:6:"plugin";s:19:"keyring/keyring.php";s:11:"new_version";s:3:"1.9";s:3:"url";s:38:"https://wordpress.org/plugins/keyring/";s:7:"package";s:54:"https://downloads.wordpress.org/plugin/keyring.1.9.zip";s:5:"icons";a:2:{s:2:"2x";s:60:"https://ps.w.org/keyring/assets/icon-256x256.png?rev=1824013";s:7:"default";s:60:"https://ps.w.org/keyring/assets/icon-256x256.png?rev=1824013";}s:7:"banners";a:2:{s:2:"1x";s:61:"https://ps.w.org/keyring/assets/banner-772x250.png?rev=520549";s:7:"default";s:61:"https://ps.w.org/keyring/assets/banner-772x250.png?rev=520549";}s:11:"banners_rtl";a:0:{}}s:39:"siteorigin-panels/siteorigin-panels.php";O:8:"stdClass":9:{s:2:"id";s:31:"w.org/plugins/siteorigin-panels";s:4:"slug";s:17:"siteorigin-panels";s:6:"plugin";s:39:"siteorigin-panels/siteorigin-panels.php";s:11:"new_version";s:5:"2.6.3";s:3:"url";s:48:"https://wordpress.org/plugins/siteorigin-panels/";s:7:"package";s:66:"https://downloads.wordpress.org/plugin/siteorigin-panels.2.6.3.zip";s:5:"icons";a:3:{s:2:"1x";s:70:"https://ps.w.org/siteorigin-panels/assets/icon-128x128.png?rev=1044755";s:2:"2x";s:70:"https://ps.w.org/siteorigin-panels/assets/icon-256x256.png?rev=1044755";s:7:"default";s:70:"https://ps.w.org/siteorigin-panels/assets/icon-256x256.png?rev=1044755";}s:7:"banners";a:2:{s:2:"1x";s:72:"https://ps.w.org/siteorigin-panels/assets/banner-772x250.jpg?rev=1044755";s:7:"default";s:72:"https://ps.w.org/siteorigin-panels/assets/banner-772x250.jpg?rev=1044755";}s:11:"banners_rtl";a:0:{}}s:39:"so-widgets-bundle/so-widgets-bundle.php";O:8:"stdClass":9:{s:2:"id";s:31:"w.org/plugins/so-widgets-bundle";s:4:"slug";s:17:"so-widgets-bundle";s:6:"plugin";s:39:"so-widgets-bundle/so-widgets-bundle.php";s:11:"new_version";s:6:"1.11.6";s:3:"url";s:48:"https://wordpress.org/plugins/so-widgets-bundle/";s:7:"package";s:67:"https://downloads.wordpress.org/plugin/so-widgets-bundle.1.11.6.zip";s:5:"icons";a:3:{s:2:"1x";s:70:"https://ps.w.org/so-widgets-bundle/assets/icon-128x128.png?rev=1044942";s:2:"2x";s:70:"https://ps.w.org/so-widgets-bundle/assets/icon-256x256.png?rev=1044942";s:7:"default";s:70:"https://ps.w.org/so-widgets-bundle/assets/icon-256x256.png?rev=1044942";}s:7:"banners";a:2:{s:2:"1x";s:72:"https://ps.w.org/so-widgets-bundle/assets/banner-772x250.jpg?rev=1044942";s:7:"default";s:72:"https://ps.w.org/so-widgets-bundle/assets/banner-772x250.jpg?rev=1044942";}s:11:"banners_rtl";a:0:{}}s:31:"the-post-grid/the-post-grid.php";O:8:"stdClass":9:{s:2:"id";s:27:"w.org/plugins/the-post-grid";s:4:"slug";s:13:"the-post-grid";s:6:"plugin";s:31:"the-post-grid/the-post-grid.php";s:11:"new_version";s:5:"2.2.2";s:3:"url";s:44:"https://wordpress.org/plugins/the-post-grid/";s:7:"package";s:62:"https://downloads.wordpress.org/plugin/the-post-grid.2.2.2.zip";s:5:"icons";a:3:{s:0:"";s:66:"https://ps.w.org/the-post-grid/assets/icon-100x100.png?rev=1362513";s:2:"1x";s:66:"https://ps.w.org/the-post-grid/assets/icon-128x128.png?rev=1362513";s:7:"default";s:66:"https://ps.w.org/the-post-grid/assets/icon-128x128.png?rev=1362513";}s:7:"banners";a:3:{s:2:"2x";s:69:"https://ps.w.org/the-post-grid/assets/banner-1544x500.png?rev=1773108";s:2:"1x";s:68:"https://ps.w.org/the-post-grid/assets/banner-772x250.png?rev=1773108";s:7:"default";s:69:"https://ps.w.org/the-post-grid/assets/banner-1544x500.png?rev=1773108";}s:11:"banners_rtl";a:0:{}}s:33:"widget-context/widget-context.php";O:8:"stdClass":9:{s:2:"id";s:28:"w.org/plugins/widget-context";s:4:"slug";s:14:"widget-context";s:6:"plugin";s:33:"widget-context/widget-context.php";s:11:"new_version";s:5:"1.0.6";s:3:"url";s:45:"https://wordpress.org/plugins/widget-context/";s:7:"package";s:57:"https://downloads.wordpress.org/plugin/widget-context.zip";s:5:"icons";a:3:{s:2:"1x";s:67:"https://ps.w.org/widget-context/assets/icon-128x128.png?rev=1730850";s:2:"2x";s:67:"https://ps.w.org/widget-context/assets/icon-256x256.png?rev=1730850";s:7:"default";s:67:"https://ps.w.org/widget-context/assets/icon-256x256.png?rev=1730850";}s:7:"banners";a:3:{s:2:"2x";s:70:"https://ps.w.org/widget-context/assets/banner-1544x500.png?rev=1730850";s:2:"1x";s:69:"https://ps.w.org/widget-context/assets/banner-772x250.png?rev=1730850";s:7:"default";s:70:"https://ps.w.org/widget-context/assets/banner-1544x500.png?rev=1730850";}s:11:"banners_rtl";a:0:{}}s:30:"youtube-embed-plus/youtube.php";O:8:"stdClass":9:{s:2:"id";s:32:"w.org/plugins/youtube-embed-plus";s:4:"slug";s:18:"youtube-embed-plus";s:6:"plugin";s:30:"youtube-embed-plus/youtube.php";s:11:"new_version";s:8:"11.8.6.1";s:3:"url";s:49:"https://wordpress.org/plugins/youtube-embed-plus/";s:7:"package";s:70:"https://downloads.wordpress.org/plugin/youtube-embed-plus.11.8.6.1.zip";s:5:"icons";a:3:{s:2:"1x";s:71:"https://ps.w.org/youtube-embed-plus/assets/icon-128x128.jpg?rev=1095676";s:2:"2x";s:71:"https://ps.w.org/youtube-embed-plus/assets/icon-256x256.jpg?rev=1095676";s:7:"default";s:71:"https://ps.w.org/youtube-embed-plus/assets/icon-256x256.jpg?rev=1095676";}s:7:"banners";a:2:{s:2:"1x";s:73:"https://ps.w.org/youtube-embed-plus/assets/banner-772x250.png?rev=1749014";s:7:"default";s:73:"https://ps.w.org/youtube-embed-plus/assets/banner-772x250.png?rev=1749014";}s:11:"banners_rtl";a:0:{}}}}', 'no'),
 (934, 'buwd_version', '1.0.15', 'no'),
 (935, 'buwd_hash', '38e941', 'no'),
 (936, 'buwd_settings', 'a:14:{s:11:"show_on_bar";a:1:{i:0;s:1:"1";}s:10:"log_folder";s:44:"wp-content/uploads/backup-wd-logs-{hash_key}";s:12:"job_step_max";i:3;s:11:"auth_method";s:4:"none";s:13:"max_exec_time";i:300;s:13:"job_start_key";s:7:"ac48065";s:15:"red_server_load";s:8:"disabled";s:13:"max_log_files";i:15;s:9:"log_level";s:17:"normal_translated";s:8:"hash_key";s:6:"38e941";s:9:"recipient";s:21:"webteam@tr.qld.gov.au";s:10:"email_from";s:21:"webteam@tr.qld.gov.au";s:4:"from";s:4:"TCOF";s:7:"subject";s:10:"Backup log";}', 'no'),
 (937, 'buwd_jobs', 'a:4:{i:1;a:94:{s:4:"name";s:15:"Database Backup";s:4:"type";a:1:{i:0;s:2:"db";}s:11:"destination";a:1:{i:0;s:6:"folder";}s:11:"backup_type";s:7:"archive";s:12:"archive_name";s:37:"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s";s:14:"archive_format";s:3:"zip";s:8:"schedule";s:8:"manually";s:12:"scheduletype";s:5:"basic";s:13:"schedulemonth";a:13:{i:0;s:3:"any";i:1;s:1:"1";i:2;s:1:"2";i:3;s:1:"3";i:4;s:1:"4";i:5;s:1:"5";i:6;s:1:"6";i:7;s:1:"7";i:8;s:1:"8";i:9;s:1:"9";i:10;s:2:"10";i:11;s:2:"11";i:12;s:2:"12";}s:12:"scheduleweek";a:1:{i:0;s:1:"1";}s:12:"dbtables_all";a:0:{}s:8:"dbtables";a:14:{s:14:"wp_commentmeta";s:14:"wp_commentmeta";s:11:"wp_comments";s:11:"wp_comments";s:8:"wp_links";s:8:"wp_links";s:10:"wp_options";s:10:"wp_options";s:11:"wp_postmeta";s:11:"wp_postmeta";s:8:"wp_posts";s:8:"wp_posts";s:21:"wp_term_relationships";s:21:"wp_term_relationships";s:16:"wp_term_taxonomy";s:16:"wp_term_taxonomy";s:11:"wp_termmeta";s:11:"wp_termmeta";s:8:"wp_terms";s:8:"wp_terms";s:11:"wp_usermeta";s:11:"wp_usermeta";s:8:"wp_users";s:8:"wp_users";s:18:"wp_ytwd_shortcodes";s:18:"wp_ytwd_shortcodes";s:15:"wp_ytwd_youtube";s:15:"wp_ytwd_youtube";}s:10:"dbfilename";s:11:"tmbarc_tcof";s:17:"use_wp_connection";s:1:"1";s:10:"dbfilecomp";s:4:"none";s:7:"db_host";s:0:"";s:7:"db_user";s:0:"";s:11:"db_password";s:0:"";s:7:"db_name";s:0:"";s:8:"bup_root";s:0:"";s:11:"bup_content";s:0:"";s:19:"bup_content_exclude";s:0:"";s:11:"bup_plugins";s:1:"1";s:19:"bup_plugins_exclude";a:1:{i:0;s:9:"backup-wd";}s:10:"bup_themes";s:1:"1";s:11:"bup_uploads";s:1:"1";s:17:"bup_extra_folders";s:0:"";s:19:"bup_uploads_exclude";a:3:{i:0;s:21:"backup-wd-logs-38e941";i:1;s:21:"backup-wd-temp-38e941";i:2;s:16:"backup-wd-38e941";}s:20:"bup_include_specials";s:1:"1";s:13:"exclude_types";s:51:".tmp,.svn,.git,desktop.ini,.DS_Store,/node_modules/";s:16:"use_folder_as_wp";s:1:"0";s:10:"folderpath";s:43:"wp-content/uploads/backup-wd-db-{hash_key}/";s:12:"folderdelete";i:15;s:16:"folderdeletesync";s:1:"1";s:12:"gdrivefolder";s:5:"TCOF/";s:16:"gdrivefiledelete";i:15;s:20:"gdrivefiledeletesync";s:1:"1";s:9:"s3service";s:9:"us-east-1";s:11:"s3accesskey";s:0:"";s:12:"s3privatekey";s:0:"";s:8:"s3bucket";s:0:"";s:11:"s3newbucket";s:0:"";s:14:"s3bucketfolder";s:5:"TCOF/";s:12:"s3filedelete";i:15;s:16:"s3filedeletesync";s:1:"1";s:13:"s3multiupload";s:1:"1";s:14:"s3storageclass";s:8:"standard";s:18:"s3serverencryption";s:1:"1";s:9:"dboxtoken";s:0:"";s:8:"dboxtype";s:7:"sandbox";s:10:"dboxfolder";s:5:"TCOF/";s:14:"dboxfiledelete";i:15;s:18:"dboxfiledeletesync";s:1:"1";s:9:"azurename";s:0:"";s:8:"azurekey";s:0:"";s:12:"azurenewcont";s:0:"";s:11:"azurefolder";s:5:"TCOF/";s:15:"azurefiledelete";i:15;s:19:"azurefiledeletesync";s:1:"1";s:7:"rscuser";s:0:"";s:6:"rsckey";s:0:"";s:9:"rscregion";s:3:"DFW";s:12:"rsccontainer";s:0:"";s:10:"rscnewcont";s:0:"";s:9:"rscfolder";s:5:"TCOF/";s:13:"rscfiledelete";i:15;s:17:"rscfiledeletesync";s:1:"1";s:9:"ftpserver";s:0:"";s:7:"ftpport";i:21;s:7:"ftpuser";s:0:"";s:7:"ftppass";s:0:"";s:9:"ftpfolder";s:5:"TCOF/";s:13:"ftpfiledelete";i:15;s:10:"ftptimeout";i:90;s:6:"ftpssl";s:0:"";s:8:"ftppmode";s:1:"1";s:10:"sugartoken";s:0:"";s:9:"sugaruser";s:0:"";s:15:"sugarsyncfolder";s:0:"";s:11:"sugarfolder";s:5:"TCOF/";s:15:"sugarfiledelete";i:15;s:14:"glacier_region";s:9:"us-east-1";s:17:"glacier_accesskey";s:0:"";s:18:"glacier_privatekey";s:0:"";s:16:"glacier_newvault";s:0:"";s:18:"glacier_filedelete";i:15;s:10:"send_email";s:0:"";s:6:"job_id";i:6;s:15:"cron_expression";s:9:"0 0 * * *";s:12:"schedulelink";s:117:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-cron.php?jobid=1&amp;buwd_cron=1&amp;type=run&amp;_wpnonce=ac48065";s:3:"day";s:0:"";s:11:"scheduleday";s:0:"";s:12:"schedulehour";s:2:"00";s:14:"scheduleminute";s:2:"00";}i:2;a:94:{s:4:"name";s:12:"Files Backup";s:4:"type";a:1:{i:0;s:5:"files";}s:11:"destination";a:1:{i:0;s:6:"folder";}s:11:"backup_type";s:7:"archive";s:12:"archive_name";s:37:"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s";s:14:"archive_format";s:3:"zip";s:8:"schedule";s:8:"manually";s:12:"scheduletype";s:5:"basic";s:13:"schedulemonth";a:13:{i:0;s:3:"any";i:1;s:1:"1";i:2;s:1:"2";i:3;s:1:"3";i:4;s:1:"4";i:5;s:1:"5";i:6;s:1:"6";i:7;s:1:"7";i:8;s:1:"8";i:9;s:1:"9";i:10;s:2:"10";i:11;s:2:"11";i:12;s:2:"12";}s:12:"scheduleweek";a:1:{i:0;s:1:"1";}s:12:"dbtables_all";a:0:{}s:8:"dbtables";a:14:{s:14:"wp_commentmeta";s:14:"wp_commentmeta";s:11:"wp_comments";s:11:"wp_comments";s:8:"wp_links";s:8:"wp_links";s:10:"wp_options";s:10:"wp_options";s:11:"wp_postmeta";s:11:"wp_postmeta";s:8:"wp_posts";s:8:"wp_posts";s:21:"wp_term_relationships";s:21:"wp_term_relationships";s:16:"wp_term_taxonomy";s:16:"wp_term_taxonomy";s:11:"wp_termmeta";s:11:"wp_termmeta";s:8:"wp_terms";s:8:"wp_terms";s:11:"wp_usermeta";s:11:"wp_usermeta";s:8:"wp_users";s:8:"wp_users";s:18:"wp_ytwd_shortcodes";s:18:"wp_ytwd_shortcodes";s:15:"wp_ytwd_youtube";s:15:"wp_ytwd_youtube";}s:10:"dbfilename";s:11:"tmbarc_tcof";s:17:"use_wp_connection";s:1:"1";s:10:"dbfilecomp";s:4:"none";s:7:"db_host";s:0:"";s:7:"db_user";s:0:"";s:11:"db_password";s:0:"";s:7:"db_name";s:0:"";s:8:"bup_root";a:1:{i:0;s:1:"1";}s:11:"bup_content";a:1:{i:0;s:1:"1";}s:19:"bup_content_exclude";s:0:"";s:11:"bup_plugins";a:1:{i:0;s:1:"1";}s:19:"bup_plugins_exclude";a:1:{i:0;s:9:"backup-wd";}s:10:"bup_themes";s:1:"1";s:11:"bup_uploads";s:1:"1";s:17:"bup_extra_folders";s:0:"";s:19:"bup_uploads_exclude";a:3:{i:0;s:21:"backup-wd-logs-38e941";i:1;s:21:"backup-wd-temp-38e941";i:2;s:16:"backup-wd-38e941";}s:20:"bup_include_specials";s:1:"1";s:13:"exclude_types";s:51:".tmp,.svn,.git,desktop.ini,.DS_Store,/node_modules/";s:16:"use_folder_as_wp";s:1:"0";s:10:"folderpath";s:46:"wp-content/uploads/backup-wd-files-{hash_key}/";s:12:"folderdelete";i:15;s:16:"folderdeletesync";s:1:"1";s:12:"gdrivefolder";s:5:"TCOF/";s:16:"gdrivefiledelete";i:15;s:20:"gdrivefiledeletesync";s:1:"1";s:9:"s3service";s:9:"us-east-1";s:11:"s3accesskey";s:0:"";s:12:"s3privatekey";s:0:"";s:8:"s3bucket";s:0:"";s:11:"s3newbucket";s:0:"";s:14:"s3bucketfolder";s:5:"TCOF/";s:12:"s3filedelete";i:15;s:16:"s3filedeletesync";s:1:"1";s:13:"s3multiupload";s:1:"1";s:14:"s3storageclass";s:8:"standard";s:18:"s3serverencryption";s:1:"1";s:9:"dboxtoken";s:0:"";s:8:"dboxtype";s:7:"sandbox";s:10:"dboxfolder";s:5:"TCOF/";s:14:"dboxfiledelete";i:15;s:18:"dboxfiledeletesync";s:1:"1";s:9:"azurename";s:0:"";s:8:"azurekey";s:0:"";s:12:"azurenewcont";s:0:"";s:11:"azurefolder";s:5:"TCOF/";s:15:"azurefiledelete";i:15;s:19:"azurefiledeletesync";s:1:"1";s:7:"rscuser";s:0:"";s:6:"rsckey";s:0:"";s:9:"rscregion";s:3:"DFW";s:12:"rsccontainer";s:0:"";s:10:"rscnewcont";s:0:"";s:9:"rscfolder";s:5:"TCOF/";s:13:"rscfiledelete";i:15;s:17:"rscfiledeletesync";s:1:"1";s:9:"ftpserver";s:0:"";s:7:"ftpport";i:21;s:7:"ftpuser";s:0:"";s:7:"ftppass";s:0:"";s:9:"ftpfolder";s:5:"TCOF/";s:13:"ftpfiledelete";i:15;s:10:"ftptimeout";i:90;s:6:"ftpssl";s:0:"";s:8:"ftppmode";s:1:"1";s:10:"sugartoken";s:0:"";s:9:"sugaruser";s:0:"";s:15:"sugarsyncfolder";s:0:"";s:11:"sugarfolder";s:5:"TCOF/";s:15:"sugarfiledelete";i:15;s:14:"glacier_region";s:9:"us-east-1";s:17:"glacier_accesskey";s:0:"";s:18:"glacier_privatekey";s:0:"";s:16:"glacier_newvault";s:0:"";s:18:"glacier_filedelete";i:15;s:10:"send_email";s:0:"";s:6:"job_id";i:6;s:15:"cron_expression";s:9:"0 0 * * *";s:12:"schedulelink";s:117:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-cron.php?jobid=2&amp;buwd_cron=1&amp;type=run&amp;_wpnonce=ac48065";s:3:"day";s:0:"";s:11:"scheduleday";s:0:"";s:12:"schedulehour";s:2:"00";s:14:"scheduleminute";s:2:"00";}i:3;a:94:{s:4:"name";s:25:"Plugins and Themes Backup";s:4:"type";a:1:{i:0;s:5:"files";}s:11:"destination";a:1:{i:0;s:6:"folder";}s:11:"backup_type";s:4:"sync";s:12:"archive_name";s:37:"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s";s:14:"archive_format";s:3:"zip";s:8:"schedule";s:8:"manually";s:12:"scheduletype";s:5:"basic";s:13:"schedulemonth";a:13:{i:0;s:3:"any";i:1;s:1:"1";i:2;s:1:"2";i:3;s:1:"3";i:4;s:1:"4";i:5;s:1:"5";i:6;s:1:"6";i:7;s:1:"7";i:8;s:1:"8";i:9;s:1:"9";i:10;s:2:"10";i:11;s:2:"11";i:12;s:2:"12";}s:12:"scheduleweek";a:1:{i:0;s:1:"1";}s:12:"dbtables_all";a:0:{}s:8:"dbtables";a:14:{s:14:"wp_commentmeta";s:14:"wp_commentmeta";s:11:"wp_comments";s:11:"wp_comments";s:8:"wp_links";s:8:"wp_links";s:10:"wp_options";s:10:"wp_options";s:11:"wp_postmeta";s:11:"wp_postmeta";s:8:"wp_posts";s:8:"wp_posts";s:21:"wp_term_relationships";s:21:"wp_term_relationships";s:16:"wp_term_taxonomy";s:16:"wp_term_taxonomy";s:11:"wp_termmeta";s:11:"wp_termmeta";s:8:"wp_terms";s:8:"wp_terms";s:11:"wp_usermeta";s:11:"wp_usermeta";s:8:"wp_users";s:8:"wp_users";s:18:"wp_ytwd_shortcodes";s:18:"wp_ytwd_shortcodes";s:15:"wp_ytwd_youtube";s:15:"wp_ytwd_youtube";}s:10:"dbfilename";s:11:"tmbarc_tcof";s:17:"use_wp_connection";s:1:"1";s:10:"dbfilecomp";s:4:"none";s:7:"db_host";s:0:"";s:7:"db_user";s:0:"";s:11:"db_password";s:0:"";s:7:"db_name";s:0:"";s:8:"bup_root";s:0:"";s:11:"bup_content";s:0:"";s:19:"bup_content_exclude";s:0:"";s:11:"bup_plugins";a:1:{i:0;s:1:"1";}s:19:"bup_plugins_exclude";a:1:{i:0;s:9:"backup-wd";}s:10:"bup_themes";s:1:"1";s:11:"bup_uploads";s:0:"";s:17:"bup_extra_folders";s:0:"";s:19:"bup_uploads_exclude";a:3:{i:0;s:21:"backup-wd-logs-38e941";i:1;s:21:"backup-wd-temp-38e941";i:2;s:16:"backup-wd-38e941";}s:20:"bup_include_specials";s:1:"1";s:13:"exclude_types";s:51:".tmp,.svn,.git,desktop.ini,.DS_Store,/node_modules/";s:16:"use_folder_as_wp";s:1:"0";s:10:"folderpath";s:55:"wp-content/uploads/backup-wd-plugins-themes-{hash_key}/";s:12:"folderdelete";i:15;s:16:"folderdeletesync";s:1:"1";s:12:"gdrivefolder";s:5:"TCOF/";s:16:"gdrivefiledelete";i:15;s:20:"gdrivefiledeletesync";s:1:"1";s:9:"s3service";s:9:"us-east-1";s:11:"s3accesskey";s:0:"";s:12:"s3privatekey";s:0:"";s:8:"s3bucket";s:0:"";s:11:"s3newbucket";s:0:"";s:14:"s3bucketfolder";s:5:"TCOF/";s:12:"s3filedelete";i:15;s:16:"s3filedeletesync";s:1:"1";s:13:"s3multiupload";s:1:"1";s:14:"s3storageclass";s:8:"standard";s:18:"s3serverencryption";s:1:"1";s:9:"dboxtoken";s:0:"";s:8:"dboxtype";s:7:"sandbox";s:10:"dboxfolder";s:5:"TCOF/";s:14:"dboxfiledelete";i:15;s:18:"dboxfiledeletesync";s:1:"1";s:9:"azurename";s:0:"";s:8:"azurekey";s:0:"";s:12:"azurenewcont";s:0:"";s:11:"azurefolder";s:5:"TCOF/";s:15:"azurefiledelete";i:15;s:19:"azurefiledeletesync";s:1:"1";s:7:"rscuser";s:0:"";s:6:"rsckey";s:0:"";s:9:"rscregion";s:3:"DFW";s:12:"rsccontainer";s:0:"";s:10:"rscnewcont";s:0:"";s:9:"rscfolder";s:5:"TCOF/";s:13:"rscfiledelete";i:15;s:17:"rscfiledeletesync";s:1:"1";s:9:"ftpserver";s:0:"";s:7:"ftpport";i:21;s:7:"ftpuser";s:0:"";s:7:"ftppass";s:0:"";s:9:"ftpfolder";s:5:"TCOF/";s:13:"ftpfiledelete";i:15;s:10:"ftptimeout";i:90;s:6:"ftpssl";s:0:"";s:8:"ftppmode";s:1:"1";s:10:"sugartoken";s:0:"";s:9:"sugaruser";s:0:"";s:15:"sugarsyncfolder";s:0:"";s:11:"sugarfolder";s:5:"TCOF/";s:15:"sugarfiledelete";i:15;s:14:"glacier_region";s:9:"us-east-1";s:17:"glacier_accesskey";s:0:"";s:18:"glacier_privatekey";s:0:"";s:16:"glacier_newvault";s:0:"";s:18:"glacier_filedelete";i:15;s:10:"send_email";s:0:"";s:6:"job_id";i:6;s:15:"cron_expression";s:9:"0 0 * * *";s:12:"schedulelink";s:117:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-cron.php?jobid=3&amp;buwd_cron=1&amp;type=run&amp;_wpnonce=ac48065";s:3:"day";s:0:"";s:11:"scheduleday";s:0:"";s:12:"schedulehour";s:2:"00";s:14:"scheduleminute";s:2:"00";}i:4;a:96:{s:4:"name";s:25:"Files and Database Backup";s:4:"type";a:2:{i:0;s:2:"db";i:1;s:5:"files";}s:11:"destination";a:1:{i:0;s:6:"folder";}s:11:"backup_type";s:4:"sync";s:12:"archive_name";s:37:"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s";s:14:"archive_format";s:3:"zip";s:8:"schedule";s:8:"manually";s:12:"scheduletype";s:5:"basic";s:13:"schedulemonth";a:13:{i:0;s:3:"any";i:1;s:1:"1";i:2;s:1:"2";i:3;s:1:"3";i:4;s:1:"4";i:5;s:1:"5";i:6;s:1:"6";i:7;s:1:"7";i:8;s:1:"8";i:9;s:1:"9";i:10;s:2:"10";i:11;s:2:"11";i:12;s:2:"12";}s:12:"scheduleweek";a:1:{i:0;s:1:"1";}s:12:"dbtables_all";a:0:{}s:8:"dbtables";a:14:{s:14:"wp_commentmeta";s:14:"wp_commentmeta";s:11:"wp_comments";s:11:"wp_comments";s:8:"wp_links";s:8:"wp_links";s:10:"wp_options";s:10:"wp_options";s:11:"wp_postmeta";s:11:"wp_postmeta";s:8:"wp_posts";s:8:"wp_posts";s:21:"wp_term_relationships";s:21:"wp_term_relationships";s:16:"wp_term_taxonomy";s:16:"wp_term_taxonomy";s:11:"wp_termmeta";s:11:"wp_termmeta";s:8:"wp_terms";s:8:"wp_terms";s:11:"wp_usermeta";s:11:"wp_usermeta";s:8:"wp_users";s:8:"wp_users";s:18:"wp_ytwd_shortcodes";s:18:"wp_ytwd_shortcodes";s:15:"wp_ytwd_youtube";s:15:"wp_ytwd_youtube";}s:10:"dbfilename";s:11:"tmbarc_tcof";s:17:"use_wp_connection";s:1:"1";s:10:"dbfilecomp";s:4:"none";s:7:"db_host";s:0:"";s:7:"db_user";s:0:"";s:11:"db_password";s:0:"";s:7:"db_name";s:0:"";s:8:"bup_root";s:0:"";s:11:"bup_content";s:1:"1";s:19:"bup_content_exclude";s:0:"";s:11:"bup_plugins";a:1:{i:0;s:1:"1";}s:19:"bup_plugins_exclude";a:1:{i:0;s:9:"backup-wd";}s:10:"bup_themes";s:1:"1";s:11:"bup_uploads";s:0:"";s:17:"bup_extra_folders";s:0:"";s:19:"bup_uploads_exclude";a:3:{i:0;s:21:"backup-wd-logs-38e941";i:1;s:21:"backup-wd-temp-38e941";i:2;s:16:"backup-wd-38e941";}s:20:"bup_include_specials";s:1:"1";s:13:"exclude_types";s:51:".tmp,.svn,.git,desktop.ini,.DS_Store,/node_modules/";s:16:"use_folder_as_wp";s:1:"0";s:10:"folderpath";s:49:"wp-content/uploads/backup-wd-files-db-{hash_key}/";s:12:"folderdelete";i:15;s:16:"folderdeletesync";s:1:"1";s:12:"gdrivefolder";s:5:"TCOF/";s:16:"gdrivefiledelete";i:15;s:20:"gdrivefiledeletesync";s:1:"1";s:9:"s3service";s:9:"us-east-1";s:11:"s3accesskey";s:0:"";s:12:"s3privatekey";s:0:"";s:8:"s3bucket";s:0:"";s:11:"s3newbucket";s:0:"";s:14:"s3bucketfolder";s:5:"TCOF/";s:12:"s3filedelete";i:15;s:16:"s3filedeletesync";s:1:"1";s:13:"s3multiupload";s:1:"1";s:14:"s3storageclass";s:8:"standard";s:18:"s3serverencryption";s:1:"1";s:9:"dboxtoken";s:0:"";s:8:"dboxtype";s:7:"sandbox";s:10:"dboxfolder";s:5:"TCOF/";s:14:"dboxfiledelete";i:15;s:18:"dboxfiledeletesync";s:1:"1";s:9:"azurename";s:0:"";s:8:"azurekey";s:0:"";s:12:"azurenewcont";s:0:"";s:11:"azurefolder";s:5:"TCOF/";s:15:"azurefiledelete";i:15;s:19:"azurefiledeletesync";s:1:"1";s:7:"rscuser";s:0:"";s:6:"rsckey";s:0:"";s:9:"rscregion";s:3:"DFW";s:12:"rsccontainer";s:0:"";s:10:"rscnewcont";s:0:"";s:9:"rscfolder";s:5:"TCOF/";s:13:"rscfiledelete";i:15;s:17:"rscfiledeletesync";s:1:"1";s:9:"ftpserver";s:0:"";s:7:"ftpport";i:21;s:7:"ftpuser";s:0:"";s:7:"ftppass";s:0:"";s:9:"ftpfolder";s:5:"TCOF/";s:13:"ftpfiledelete";i:15;s:10:"ftptimeout";i:90;s:6:"ftpssl";s:0:"";s:8:"ftppmode";s:1:"1";s:10:"sugartoken";s:0:"";s:9:"sugaruser";s:0:"";s:15:"sugarsyncfolder";s:0:"";s:11:"sugarfolder";s:5:"TCOF/";s:15:"sugarfiledelete";i:15;s:14:"glacier_region";s:9:"us-east-1";s:17:"glacier_accesskey";s:0:"";s:18:"glacier_privatekey";s:0:"";s:16:"glacier_newvault";s:0:"";s:18:"glacier_filedelete";i:15;s:10:"send_email";s:0:"";s:6:"job_id";i:6;s:15:"cron_expression";s:9:"0 0 * * *";s:12:"schedulelink";s:117:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-cron.php?jobid=4&amp;buwd_cron=1&amp;type=run&amp;_wpnonce=ac48065";s:3:"day";s:0:"";s:11:"scheduleday";s:0:"";s:12:"schedulehour";s:2:"00";s:14:"scheduleminute";s:2:"00";s:7:"lastrun";i:1521089123;s:13:"last_log_file";s:44:"backupwd_log_38e941_2018-03-15_14-45-23.html";}}', 'no'),
 (938, 'buwd_job_maxid', '4', 'no'),
 (939, '_transient_buwd_overview_visited', '1', 'yes'),
 (940, 'buwd_admin_notice', 'a:1:{s:15:"two_week_review";a:2:{s:5:"start";s:9:"3/29/2018";s:3:"int";i:14;}}', 'yes'),
 (941, 'buwd_subscribe_done', '1', 'yes'),
 (942, '_site_transient_jobs_per_page', '20', 'no'),
 (943, 'buwd_job_running', '1', 'no'),
 (944, 'buwd_user_id', '2', 'no'),
 (945, 'buwd_progress', 'a:6:{s:8:"progress";d:20;s:12:"current_step";s:22:"Creating database file";s:3:"log";s:84:"[15-Mar-2018 14:45:23] <span class="logline">1. Attempted to backup database.</span>";s:5:"error";b:0;s:4:"stop";b:0;s:3:"end";b:0;}', 'no');


DROP TABLE IF EXISTS `wp_postmeta`;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=4264 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

 
INSERT INTO `wp_postmeta` VALUES (6, 5, '_wp_attached_file', '2018/01/sandwich.jpg'),
 (7, 5, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2000;s:6:"height";i:1200;s:4:"file";s:20:"2018/01/sandwich.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"sandwich-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"sandwich-300x180.jpg";s:5:"width";i:300;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"sandwich-768x461.jpg";s:5:"width";i:768;s:6:"height";i:461;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"sandwich-1024x614.jpg";s:5:"width";i:1024;s:6:"height";i:614;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:20:"sandwich-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (8, 5, '_starter_content_theme', 'twentyseventeen'),
 (10, 6, '_wp_attached_file', '2018/01/coffee.jpg'),
 (11, 6, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2000;s:6:"height";i:1200;s:4:"file";s:18:"2018/01/coffee.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"coffee-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"coffee-300x180.jpg";s:5:"width";i:300;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"coffee-768x461.jpg";s:5:"width";i:768;s:6:"height";i:461;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"coffee-1024x614.jpg";s:5:"width";i:1024;s:6:"height";i:614;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:18:"coffee-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (12, 6, '_starter_content_theme', 'twentyseventeen'),
 (15, 7, '_customize_changeset_uuid', 'feade8b6-1627-4824-bacb-c2c89eeb2f34'),
 (21, 9, '_customize_changeset_uuid', 'feade8b6-1627-4824-bacb-c2c89eeb2f34'),
 (27, 11, '_customize_changeset_uuid', 'feade8b6-1627-4824-bacb-c2c89eeb2f34'),
 (29, 13, '_wp_attached_file', '2018/01/TCOF_Logo_White_Green-1.png'),
 (30, 13, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:244;s:6:"height";i:78;s:4:"file";s:35:"2018/01/TCOF_Logo_White_Green-1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"TCOF_Logo_White_Green-1-150x78.png";s:5:"width";i:150;s:6:"height";i:78;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:34:"TCOF_Logo_White_Green-1-100x78.png";s:5:"width";i:100;s:6:"height";i:78;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:{}}}'),
 (31, 14, '_wp_attached_file', '2018/01/Toowoomba-Region-portaitp.jpg'),
 (32, 14, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1034;s:6:"height";i:898;s:4:"file";s:37:"2018/01/Toowoomba-Region-portaitp.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"Toowoomba-Region-portaitp-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:37:"Toowoomba-Region-portaitp-300x261.jpg";s:5:"width";i:300;s:6:"height";i:261;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:37:"Toowoomba-Region-portaitp-768x667.jpg";s:5:"width";i:768;s:6:"height";i:667;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:38:"Toowoomba-Region-portaitp-1024x889.jpg";s:5:"width";i:1024;s:6:"height";i:889;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:37:"Toowoomba-Region-portaitp-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (33, 15, '_wp_attached_file', '2018/01/cropped-Toowoomba-Region-portaitp.jpg'),
 (34, 15, '_wp_attachment_context', 'site-icon'),
 (35, 15, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:512;s:6:"height";i:512;s:4:"file";s:45:"2018/01/cropped-Toowoomba-Region-portaitp.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:45:"cropped-Toowoomba-Region-portaitp-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:45:"cropped-Toowoomba-Region-portaitp-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:45:"cropped-Toowoomba-Region-portaitp-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:13:"site_icon-270";a:4:{s:4:"file";s:45:"cropped-Toowoomba-Region-portaitp-270x270.jpg";s:5:"width";i:270;s:6:"height";i:270;s:9:"mime-type";s:10:"image/jpeg";}s:13:"site_icon-192";a:4:{s:4:"file";s:45:"cropped-Toowoomba-Region-portaitp-192x192.jpg";s:5:"width";i:192;s:6:"height";i:192;s:9:"mime-type";s:10:"image/jpeg";}s:13:"site_icon-180";a:4:{s:4:"file";s:45:"cropped-Toowoomba-Region-portaitp-180x180.jpg";s:5:"width";i:180;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:12:"site_icon-32";a:4:{s:4:"file";s:43:"cropped-Toowoomba-Region-portaitp-32x32.jpg";s:5:"width";i:32;s:6:"height";i:32;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (60, 24, '_menu_item_type', 'post_type'),
 (61, 24, '_menu_item_menu_item_parent', '0'),
 (62, 24, '_menu_item_object_id', '9'),
 (63, 24, '_menu_item_object', 'page'),
 (64, 24, '_menu_item_target', ''),
 (65, 24, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (66, 24, '_menu_item_xfn', ''),
 (67, 24, '_menu_item_url', ''),
 (68, 25, '_menu_item_type', 'custom'),
 (69, 25, '_menu_item_menu_item_parent', '0'),
 (70, 25, '_menu_item_object_id', '25'),
 (71, 25, '_menu_item_object', 'custom'),
 (72, 25, '_menu_item_target', ''),
 (73, 25, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (74, 25, '_menu_item_xfn', ''),
 (75, 25, '_menu_item_url', 'https://www.yelp.com'),
 (76, 26, '_menu_item_type', 'custom'),
 (77, 26, '_menu_item_menu_item_parent', '0'),
 (78, 26, '_menu_item_object_id', '26'),
 (79, 26, '_menu_item_object', 'custom'),
 (80, 26, '_menu_item_target', ''),
 (81, 26, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (82, 26, '_menu_item_xfn', ''),
 (83, 26, '_menu_item_url', 'https://www.facebook.com/wordpress'),
 (84, 27, '_menu_item_type', 'custom'),
 (85, 27, '_menu_item_menu_item_parent', '0'),
 (86, 27, '_menu_item_object_id', '27'),
 (87, 27, '_menu_item_object', 'custom'),
 (88, 27, '_menu_item_target', ''),
 (89, 27, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (90, 27, '_menu_item_xfn', ''),
 (91, 27, '_menu_item_url', 'https://twitter.com/wordpress'),
 (92, 28, '_menu_item_type', 'custom'),
 (93, 28, '_menu_item_menu_item_parent', '0'),
 (94, 28, '_menu_item_object_id', '28'),
 (95, 28, '_menu_item_object', 'custom'),
 (96, 28, '_menu_item_target', ''),
 (97, 28, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (98, 28, '_menu_item_xfn', ''),
 (99, 28, '_menu_item_url', 'https://www.instagram.com/explore/tags/wordcamp/'),
 (100, 29, '_menu_item_type', 'custom'),
 (101, 29, '_menu_item_menu_item_parent', '0'),
 (102, 29, '_menu_item_object_id', '29'),
 (103, 29, '_menu_item_object', 'custom'),
 (104, 29, '_menu_item_target', ''),
 (105, 29, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (106, 29, '_menu_item_xfn', ''),
 (107, 29, '_menu_item_url', 'mailto:wordpress@example.com'),
 (124, 35, '_wp_attached_file', '2018/01/home-banner5.jpg'),
 (125, 35, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:3200;s:6:"height";i:1008;s:4:"file";s:24:"2018/01/home-banner5.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"home-banner5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"home-banner5-300x95.jpg";s:5:"width";i:300;s:6:"height";i:95;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"home-banner5-768x242.jpg";s:5:"width";i:768;s:6:"height";i:242;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"home-banner5-1024x323.jpg";s:5:"width";i:1024;s:6:"height";i:323;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (132, 11, '_edit_lock', '1516585863:1'),
 (133, 7, '_edit_lock', '1521083045:2'),
 (134, 7, '_edit_last', '1'),
 (135, 7, '_wp_page_template', 'default'),
 (136, 7, 'bento_sidebar_layout', 'full-width'),
 (137, 7, 'bento_uppercase_title', 'on'),
 (138, 7, 'bento_title_position', 'left'),
 (139, 7, 'bento_subtitle_color', '#999999'),
 (140, 7, 'bento_header_image_height', '10%'),
 (141, 7, 'bento_header_overlay_opacity', '0'),
 (142, 7, 'bento_page_grid_mode', 'columns'),
 (143, 7, 'bento_page_columns', '3'),
 (144, 7, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (145, 7, 'bento_page_number_items', '10'),
 (146, 7, 'bento_page_item_margins', '10'),
 (147, 7, 'bento_hide_title', 'on'),
 (148, 11, '_edit_last', '1'),
 (149, 11, '_wp_page_template', 'default'),
 (150, 11, 'bento_sidebar_layout', 'right-sidebar'),
 (151, 11, 'bento_title_position', 'left'),
 (152, 11, 'bento_subtitle_color', '#999999'),
 (153, 11, 'bento_header_image_height', '10%'),
 (154, 11, 'bento_header_overlay_opacity', '0'),
 (155, 11, 'bento_page_grid_mode', 'columns'),
 (156, 11, 'bento_page_columns', '3'),
 (157, 11, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (158, 11, 'bento_page_number_items', '10'),
 (159, 11, 'bento_page_item_margins', '10'),
 (170, 42, '_menu_item_type', 'taxonomy'),
 (171, 42, '_menu_item_menu_item_parent', '0'),
 (172, 42, '_menu_item_object_id', '6'),
 (173, 42, '_menu_item_object', 'category'),
 (174, 42, '_menu_item_target', ''),
 (175, 42, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (176, 42, '_menu_item_xfn', ''),
 (177, 42, '_menu_item_url', ''),
 (188, 44, '_form', '<label> Your name (required)\n    [text* your-name] </label>\n\n<label> Your email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your message\n    [textarea your-message] </label>\n\n[submit "Send"]'),
 (189, 44, '_mail', 'a:9:{s:6:"active";b:1;s:7:"subject";s:21:"TCOF "[your-subject]"";s:6:"sender";s:55:"[your-name] <wordpress@toowoombaregionalcouncil.com.au>";s:9:"recipient";s:21:"webteam@tr.qld.gov.au";s:4:"body";s:190:"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on TCOF (http://www.toowoombaregionalcouncil.com.au/tcof)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
 (190, 44, '_mail_2', 'a:9:{s:6:"active";b:0;s:7:"subject";s:21:"TCOF "[your-subject]"";s:6:"sender";s:48:"TCOF <wordpress@toowoombaregionalcouncil.com.au>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:132:"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on TCOF (http://www.toowoombaregionalcouncil.com.au/tcof)";s:18:"additional_headers";s:31:"Reply-To: webteam@tr.qld.gov.au";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
 (191, 44, '_messages', 'a:23:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:17:"captcha_not_match";s:31:"Your entered code is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}'),
 (192, 44, '_additional_settings', ''),
 (193, 44, '_locale', 'en_AU'),
 (194, 9, '_edit_lock', '1516588620:1'),
 (195, 9, '_edit_last', '1'),
 (196, 9, '_wp_page_template', 'default'),
 (197, 9, 'bento_sidebar_layout', 'right-sidebar'),
 (198, 9, 'bento_title_position', 'left'),
 (199, 9, 'bento_subtitle_color', '#999999'),
 (200, 9, 'bento_header_image_height', '10%'),
 (201, 9, 'bento_header_overlay_opacity', '0'),
 (202, 9, 'bento_page_grid_mode', 'columns'),
 (203, 9, 'bento_page_columns', '3'),
 (204, 9, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (205, 9, 'bento_page_number_items', '10'),
 (206, 9, 'bento_page_item_margins', '10'),
 (207, 47, '_wp_attached_file', '2018/01/contact-hero-1.png'),
 (208, 47, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1250;s:6:"height";i:280;s:4:"file";s:26:"2018/01/contact-hero-1.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"contact-hero-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:25:"contact-hero-1-300x67.png";s:5:"width";i:300;s:6:"height";i:67;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:26:"contact-hero-1-768x172.png";s:5:"width";i:768;s:6:"height";i:172;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:27:"contact-hero-1-1024x229.png";s:5:"width";i:1024;s:6:"height";i:229;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:{}}}'),
 (209, 9, '_thumbnail_id', '47'),
 (219, 52, '_edit_last', '1'),
 (220, 52, '_edit_lock', '1520827482:2'),
 (221, 52, '_wp_page_template', 'default'),
 (222, 52, 'bento_sidebar_layout', 'right-sidebar'),
 (223, 52, 'bento_title_position', 'left'),
 (224, 52, 'bento_subtitle_color', '#999999'),
 (225, 52, 'bento_header_image_height', '10%'),
 (226, 52, 'bento_header_overlay_opacity', '0'),
 (227, 52, 'bento_page_grid_mode', 'columns'),
 (228, 52, 'bento_page_columns', '3'),
 (229, 52, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (230, 52, 'bento_page_number_items', '10'),
 (231, 52, 'bento_page_item_margins', '10'),
 (232, 55, '_edit_last', '1'),
 (233, 55, '_edit_lock', '1517275588:2'),
 (236, 55, 'bento_sidebar_layout', 'right-sidebar'),
 (237, 55, 'bento_title_position', 'left'),
 (238, 55, 'bento_subtitle_color', '#999999'),
 (239, 55, 'bento_header_image_height', '10%'),
 (240, 55, 'bento_header_overlay_opacity', '0'),
 (241, 55, 'bento_tile_size', '1x1'),
 (242, 55, 'bento_tile_overlay_color', '#666666'),
 (243, 55, 'bento_tile_overlay_opacity', '0'),
 (244, 55, 'bento_tile_text_color', '#ffffff'),
 (245, 55, 'bento_tile_text_size', '16'),
 (248, 57, '_wp_attached_file', '2017/09/PicturesInPark.jpg'),
 (249, 57, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:393;s:4:"file";s:26:"2017/09/PicturesInPark.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"PicturesInPark-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"PicturesInPark-300x197.jpg";s:5:"width";i:300;s:6:"height";i:197;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:{}}}'),
 (250, 55, '_thumbnail_id', '57'),
 (265, 59, '_edit_last', '1'),
 (266, 59, '_edit_lock', '1516844747:1'),
 (269, 59, 'bento_sidebar_layout', 'right-sidebar'),
 (270, 59, 'bento_title_position', 'left'),
 (271, 59, 'bento_subtitle_color', '#999999'),
 (272, 59, 'bento_header_image_height', '10%'),
 (273, 59, 'bento_header_overlay_opacity', '0'),
 (274, 59, 'bento_tile_size', '1x1'),
 (275, 59, 'bento_tile_overlay_color', '#666666'),
 (276, 59, 'bento_tile_overlay_opacity', '0'),
 (277, 59, 'bento_tile_text_color', '#ffffff'),
 (278, 59, 'bento_tile_text_size', '16'),
 (283, 61, '_wp_attached_file', '2017/09/ToursMorning2.jpg'),
 (284, 61, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:393;s:4:"file";s:25:"2017/09/ToursMorning2.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"ToursMorning2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"ToursMorning2-300x197.jpg";s:5:"width";i:300;s:6:"height";i:197;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:{}}}'),
 (285, 59, '_thumbnail_id', '61'),
 (288, 63, '_edit_last', '1'),
 (289, 63, '_edit_lock', '1516594500:1'),
 (290, 64, '_wp_attached_file', '2018/01/gettinghere.jpg'),
 (291, 64, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:400;s:4:"file";s:23:"2018/01/gettinghere.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"gettinghere-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"gettinghere-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (292, 63, '_thumbnail_id', '64'),
 (295, 63, 'bento_sidebar_layout', 'right-sidebar'),
 (296, 63, 'bento_title_position', 'left'),
 (297, 63, 'bento_subtitle_color', '#999999'),
 (298, 63, 'bento_header_image_height', '10%'),
 (299, 63, 'bento_header_overlay_opacity', '0'),
 (300, 63, 'bento_tile_size', '1x1'),
 (301, 63, 'bento_tile_overlay_color', '#666666'),
 (302, 63, 'bento_tile_overlay_opacity', '0'),
 (303, 63, 'bento_tile_text_color', '#ffffff'),
 (304, 63, 'bento_tile_text_size', '16'),
 (305, 66, '_edit_last', '1'),
 (306, 66, '_edit_lock', '1516596203:1'),
 (309, 66, 'bento_sidebar_layout', 'right-sidebar'),
 (310, 66, 'bento_title_position', 'left'),
 (311, 66, 'bento_subtitle_color', '#999999'),
 (312, 66, 'bento_header_image_height', '10%'),
 (313, 66, 'bento_header_overlay_opacity', '0'),
 (314, 66, 'bento_tile_size', '1x1'),
 (315, 66, 'bento_tile_overlay_color', '#666666'),
 (316, 66, 'bento_tile_overlay_opacity', '0'),
 (317, 66, 'bento_tile_text_color', '#ffffff'),
 (318, 66, 'bento_tile_text_size', '16'),
 (319, 68, '_edit_last', '1'),
 (320, 68, '_edit_lock', '1516596215:1'),
 (323, 68, 'bento_sidebar_layout', 'right-sidebar'),
 (324, 68, 'bento_title_position', 'left'),
 (325, 68, 'bento_subtitle_color', '#999999'),
 (326, 68, 'bento_header_image_height', '10%'),
 (327, 68, 'bento_header_overlay_opacity', '0'),
 (328, 68, 'bento_tile_size', '1x1'),
 (329, 68, 'bento_tile_overlay_color', '#666666'),
 (330, 68, 'bento_tile_overlay_opacity', '0'),
 (331, 68, 'bento_tile_text_color', '#ffffff'),
 (332, 68, 'bento_tile_text_size', '16'),
 (333, 70, '_menu_item_type', 'taxonomy'),
 (334, 70, '_menu_item_menu_item_parent', '634'),
 (335, 70, '_menu_item_object_id', '13'),
 (336, 70, '_menu_item_object', 'category'),
 (337, 70, '_menu_item_target', ''),
 (338, 70, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (339, 70, '_menu_item_xfn', ''),
 (340, 70, '_menu_item_url', ''),
 (342, 71, '_menu_item_type', 'taxonomy'),
 (343, 71, '_menu_item_menu_item_parent', '634'),
 (344, 71, '_menu_item_object_id', '12'),
 (345, 71, '_menu_item_object', 'category'),
 (346, 71, '_menu_item_target', ''),
 (347, 71, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (348, 71, '_menu_item_xfn', ''),
 (349, 71, '_menu_item_url', ''),
 (351, 72, '_menu_item_type', 'taxonomy'),
 (352, 72, '_menu_item_menu_item_parent', '634'),
 (353, 72, '_menu_item_object_id', '11'),
 (354, 72, '_menu_item_object', 'category'),
 (355, 72, '_menu_item_target', ''),
 (356, 72, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (357, 72, '_menu_item_xfn', ''),
 (358, 72, '_menu_item_url', ''),
 (364, 75, '_edit_last', '1'),
 (365, 75, '_edit_lock', '1516594617:1'),
 (368, 75, 'bento_sidebar_layout', 'right-sidebar'),
 (369, 75, 'bento_title_position', 'left'),
 (370, 75, 'bento_subtitle_color', '#999999'),
 (371, 75, 'bento_header_image_height', '10%'),
 (372, 75, 'bento_header_overlay_opacity', '0'),
 (373, 75, 'bento_tile_size', '1x1'),
 (374, 75, 'bento_tile_overlay_color', '#666666'),
 (375, 75, 'bento_tile_overlay_opacity', '0'),
 (376, 75, 'bento_tile_text_color', '#ffffff'),
 (377, 75, 'bento_tile_text_size', '16'),
 (378, 77, '_edit_last', '1'),
 (379, 77, '_edit_lock', '1516594596:1'),
 (382, 77, 'bento_sidebar_layout', 'right-sidebar'),
 (383, 77, 'bento_title_position', 'left'),
 (384, 77, 'bento_subtitle_color', '#999999'),
 (385, 77, 'bento_header_image_height', '10%'),
 (386, 77, 'bento_header_overlay_opacity', '0'),
 (387, 77, 'bento_tile_size', '1x1'),
 (388, 77, 'bento_tile_overlay_color', '#666666'),
 (389, 77, 'bento_tile_overlay_opacity', '0'),
 (390, 77, 'bento_tile_text_color', '#ffffff'),
 (391, 77, 'bento_tile_text_size', '16'),
 (400, 82, '_edit_last', '1'),
 (401, 82, '_edit_lock', '1516594907:1'),
 (404, 82, 'bento_sidebar_layout', 'right-sidebar'),
 (405, 82, 'bento_title_position', 'left'),
 (406, 82, 'bento_subtitle_color', '#999999'),
 (407, 82, 'bento_header_image_height', '10%'),
 (408, 82, 'bento_header_overlay_opacity', '0'),
 (409, 82, 'bento_tile_size', '1x1'),
 (410, 82, 'bento_tile_overlay_color', '#666666'),
 (411, 82, 'bento_tile_overlay_opacity', '0'),
 (412, 82, 'bento_tile_text_color', '#ffffff'),
 (413, 82, 'bento_tile_text_size', '16'),
 (424, 84, '_wp_attached_file', '2018/01/header-left-elements.png'),
 (425, 84, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:201;s:6:"height";i:279;s:4:"file";s:32:"2018/01/header-left-elements.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"header-left-elements-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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:{}}}'),
 (426, 84, '_wp_attachment_is_custom_background', 'bento'),
 (455, 99, '_wp_attached_file', '2018/01/footer-tourismqld.jpg'),
 (456, 99, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:88;s:6:"height";i:62;s:4:"file";s:29:"2018/01/footer-tourismqld.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (457, 100, '_wp_attached_file', '2018/01/footer-ata.jpg'),
 (458, 100, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:72;s:6:"height";i:120;s:4:"file";s:22:"2018/01/footer-ata.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (459, 101, '_wp_attached_file', '2018/01/footer-ergon.jpg'),
 (460, 101, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:76;s:6:"height";i:54;s:4:"file";s:24:"2018/01/footer-ergon.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (461, 102, '_wp_attached_file', '2018/01/footer-fame-tour-aw-2017.jpg'),
 (462, 102, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:59;s:6:"height";i:112;s:4:"file";s:36:"2018/01/footer-fame-tour-aw-2017.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (463, 103, '_wp_attached_file', '2018/01/footer-gold-tour-aw-2017.jpg'),
 (464, 103, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:59;s:6:"height";i:112;s:4:"file";s:36:"2018/01/footer-gold-tour-aw-2017.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (465, 104, '_wp_attached_file', '2018/01/footer-grandcentral.jpg'),
 (466, 104, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:93;s:6:"height";i:48;s:4:"file";s:31:"2018/01/footer-grandcentral.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (467, 105, '_wp_attached_file', '2018/01/footer-heritagebank.jpg'),
 (468, 105, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:104;s:6:"height";i:34;s:4:"file";s:31:"2018/01/footer-heritagebank.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (469, 106, '_wp_attached_file', '2018/01/footer-pete-honda.jpg'),
 (470, 106, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:110;s:6:"height";i:41;s:4:"file";s:29:"2018/01/footer-pete-honda.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (471, 107, '_wp_attached_file', '2018/01/footer-QANTAS_Link.jpg'),
 (472, 107, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:117;s:6:"height";i:16;s:4:"file";s:30:"2018/01/footer-QANTAS_Link.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (473, 108, '_wp_attached_file', '2018/01/footer-sqc.jpg'),
 (474, 108, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:153;s:6:"height";i:49;s:4:"file";s:22:"2018/01/footer-sqc.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"footer-sqc-150x49.jpg";s:5:"width";i:150;s:6:"height";i:49;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:{}}}'),
 (475, 109, '_wp_attached_file', '2018/01/footer-TheChronicle.jpg'),
 (476, 109, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:114;s:6:"height";i:17;s:4:"file";s:31:"2018/01/footer-TheChronicle.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (477, 110, '_wp_attached_file', '2018/01/footer-ToowoombaReg.jpg'),
 (478, 110, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:178;s:6:"height";i:36;s:4:"file";s:31:"2018/01/footer-ToowoombaReg.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"footer-ToowoombaReg-150x36.jpg";s:5:"width";i:150;s:6:"height";i:36;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:{}}}'),
 (480, 114, '_edit_lock', '1517290871:2'),
 (481, 114, '_edit_last', '2'),
 (482, 115, '_edit_lock', '1517291145:2'),
 (483, 115, '_edit_last', '2'),
 (486, 115, 'bento_sidebar_layout', 'right-sidebar'),
 (487, 115, 'bento_title_position', 'left'),
 (488, 115, 'bento_subtitle_color', '#999999'),
 (489, 115, 'bento_header_image_height', '10%'),
 (490, 115, 'bento_header_overlay_opacity', '0'),
 (491, 115, 'bento_tile_size', '1x1'),
 (492, 115, 'bento_tile_overlay_color', '#666666'),
 (493, 115, 'bento_tile_overlay_opacity', '0'),
 (494, 115, 'bento_tile_text_color', '#ffffff'),
 (495, 115, 'bento_tile_text_size', '16'),
 (507, 118, '_edit_lock', '1517291050:2'),
 (508, 118, '_edit_last', '2'),
 (511, 118, 'bento_sidebar_layout', 'right-sidebar'),
 (512, 118, 'bento_title_position', 'left'),
 (513, 118, 'bento_subtitle_color', '#999999'),
 (514, 118, 'bento_header_image_height', '10%'),
 (515, 118, 'bento_header_overlay_opacity', '0'),
 (516, 118, 'bento_tile_size', '1x1'),
 (517, 118, 'bento_tile_overlay_color', '#666666'),
 (518, 118, 'bento_tile_overlay_opacity', '0'),
 (519, 118, 'bento_tile_text_color', '#ffffff'),
 (520, 118, 'bento_tile_text_size', '16'),
 (523, 114, 'bento_sidebar_layout', 'right-sidebar'),
 (524, 114, 'bento_title_position', 'left'),
 (525, 114, 'bento_subtitle_color', '#999999'),
 (526, 114, 'bento_header_image_height', '10%'),
 (527, 114, 'bento_header_overlay_opacity', '0'),
 (528, 114, 'bento_tile_size', '1x1'),
 (529, 114, 'bento_tile_overlay_color', '#666666'),
 (530, 114, 'bento_tile_overlay_opacity', '0'),
 (531, 114, 'bento_tile_text_color', '#ffffff'),
 (532, 114, 'bento_tile_text_size', '16'),
 (539, 121, '_edit_lock', '1521084539:2'),
 (540, 121, '_edit_last', '2'),
 (541, 121, '_wp_page_template', 'default'),
 (542, 122, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (544, 123, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (545, 121, 'bento_sidebar_layout', 'left-sidebar'),
 (546, 121, 'bento_title_position', 'left'),
 (547, 121, 'bento_subtitle_color', '#999999'),
 (548, 121, 'bento_header_image_height', '10%'),
 (549, 121, 'bento_header_overlay_opacity', '0'),
 (550, 121, 'bento_page_grid_mode', 'rows'),
 (551, 121, 'bento_page_columns', '3'),
 (552, 121, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (553, 121, 'bento_page_number_items', '9'),
 (554, 121, 'bento_page_item_margins', '10'),
 (566, 126, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (567, 127, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:4:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (568, 127, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (569, 127, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (570, 128, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:4:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (580, 126, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:4:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (581, 130, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (582, 130, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:4:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (583, 130, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:4:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (584, 131, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (585, 132, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (586, 132, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (587, 132, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (588, 133, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (589, 134, 'panels_data', 'a:3:{s:7:"widgets";a:3:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"taxonomy";s:8:"post_tag";s:11:"panels_info";a:6:{s:5:"class";s:19:"WP_Widget_Tag_Cloud";s:4:"grid";i:1;s:4:"cell";i:1;s:2:"id";i:2;s:9:"widget_id";s:36:"79c9bafd-fa26-4e5b-b6f1-c3fe3b284a41";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (590, 134, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (591, 134, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (592, 135, 'panels_data', 'a:3:{s:7:"widgets";a:3:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"taxonomy";s:8:"post_tag";s:11:"panels_info";a:6:{s:5:"class";s:19:"WP_Widget_Tag_Cloud";s:4:"grid";i:1;s:4:"cell";i:1;s:2:"id";i:2;s:9:"widget_id";s:36:"79c9bafd-fa26-4e5b-b6f1-c3fe3b284a41";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (593, 136, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:179:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:13:"1516683460852";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (594, 136, 'panels_data', 'a:3:{s:7:"widgets";a:3:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"taxonomy";s:8:"post_tag";s:11:"panels_info";a:6:{s:5:"class";s:19:"WP_Widget_Tag_Cloud";s:4:"grid";i:1;s:4:"cell";i:1;s:2:"id";i:2;s:9:"widget_id";s:36:"79c9bafd-fa26-4e5b-b6f1-c3fe3b284a41";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (595, 136, 'panels_data', 'a:3:{s:7:"widgets";a:3:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:0:"";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"taxonomy";s:8:"post_tag";s:11:"panels_info";a:6:{s:5:"class";s:19:"WP_Widget_Tag_Cloud";s:4:"grid";i:1;s:4:"cell";i:1;s:2:"id";i:2;s:9:"widget_id";s:36:"79c9bafd-fa26-4e5b-b6f1-c3fe3b284a41";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (596, 137, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:179:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:13:"1516683460852";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (597, 126, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:179:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:13:"1516683460852";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (598, 138, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:2:{s:4:"type";s:8:"featured";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"576ac610-a51e-4b62-b88c-12df1fab5dea";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (599, 138, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:179:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:13:"1516683460852";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (600, 138, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:179:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66bfe0934bb";s:19:"_sow_form_timestamp";s:13:"1516683460852";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1059adfd-99de-47b0-92f7-7dd144f2d899";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:4;s:5:"style";a:3:{s:18:"background_display";s:4:"tile";s:6:"gutter";s:4:"10px";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:5:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:2;a:4:{s:4:"grid";i:1;s:5:"index";i:1;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:3;a:4:{s:4:"grid";i:1;s:5:"index";i:2;s:6:"weight";d:0.25;s:5:"style";a:0:{}}i:4;a:4:{s:4:"grid";i:1;s:5:"index";i:3;s:6:"weight";d:0.25;s:5:"style";a:0:{}}}}'),
 (601, 139, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:2:{s:4:"type";s:8:"featured";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"576ac610-a51e-4b62-b88c-12df1fab5dea";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (602, 140, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (603, 140, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:2:{s:4:"type";s:8:"featured";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"576ac610-a51e-4b62-b88c-12df1fab5dea";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (604, 140, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:2:{s:4:"type";s:8:"featured";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"576ac610-a51e-4b62-b88c-12df1fab5dea";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (605, 141, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (606, 126, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (607, 126, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (608, 142, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (609, 142, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (610, 142, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:133:"post_type=post&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (611, 143, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (621, 146, '_edit_lock', '1516773817:1'),
 (622, 146, '_edit_last', '1'),
 (623, 147, '_wp_attached_file', '2018/01/WalkingTourHiddenLaneways2.jpg'),
 (624, 147, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:38:"2018/01/WalkingTourHiddenLaneways2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:38:"WalkingTourHiddenLaneways2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:38:"WalkingTourHiddenLaneways2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:38:"WalkingTourHiddenLaneways2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (625, 146, '_thumbnail_id', '147'),
 (628, 146, 'bento_sidebar_layout', 'right-sidebar'),
 (629, 146, 'bento_title_position', 'left'),
 (630, 146, 'bento_subtitle_color', '#999999'),
 (631, 146, 'bento_header_image_height', '10%'),
 (632, 146, 'bento_header_overlay_opacity', '0'),
 (633, 146, 'bento_tile_size', '1x1'),
 (634, 146, 'bento_tile_overlay_color', '#666666'),
 (635, 146, 'bento_tile_overlay_opacity', '0'),
 (636, 146, 'bento_tile_text_color', '#ffffff'),
 (637, 146, 'bento_tile_text_size', '16'),
 (638, 149, '_edit_lock', '1516773796:1'),
 (639, 149, '_edit_last', '1'),
 (640, 150, '_wp_attached_file', '2018/01/Railway.jpg'),
 (641, 150, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:427;s:4:"file";s:19:"2018/01/Railway.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"Railway-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"Railway-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:19:"Railway-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:2:"11";s:6:"credit";s:0:"";s:6:"camera";s:14:"Canon EOS 450D";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410697831";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"34";s:3:"iso";s:4:"1600";s:13:"shutter_speed";s:5:"0.005";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
 (642, 149, '_thumbnail_id', '150'),
 (645, 149, 'bento_sidebar_layout', 'right-sidebar'),
 (646, 149, 'bento_title_position', 'left'),
 (647, 149, 'bento_subtitle_color', '#999999'),
 (648, 149, 'bento_header_image_height', '10%'),
 (649, 149, 'bento_header_overlay_opacity', '0'),
 (650, 149, 'bento_tile_size', '1x1'),
 (651, 149, 'bento_tile_overlay_color', '#666666'),
 (652, 149, 'bento_tile_overlay_opacity', '0'),
 (653, 149, 'bento_tile_text_color', '#ffffff'),
 (654, 149, 'bento_tile_text_size', '16'),
 (655, 152, '_edit_lock', '1516773649:1'),
 (656, 152, '_edit_last', '1'),
 (657, 153, '_wp_attached_file', '2018/01/empireTheatre.jpg'),
 (658, 153, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:427;s:4:"file";s:25:"2018/01/empireTheatre.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"empireTheatre-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"empireTheatre-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:25:"empireTheatre-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"8";s:6:"credit";s:13:"Darren Wright";s:6:"camera";s:13:"Canon EOS 60D";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1381056253";s:9:"copyright";s:13:"Darren Wright";s:12:"focal_length";s:2:"10";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
 (659, 152, '_thumbnail_id', '153'),
 (662, 152, 'bento_sidebar_layout', 'right-sidebar'),
 (663, 152, 'bento_title_position', 'left'),
 (664, 152, 'bento_subtitle_color', '#999999'),
 (665, 152, 'bento_header_image_height', '10%'),
 (666, 152, 'bento_header_overlay_opacity', '0'),
 (667, 152, 'bento_tile_size', '1x1'),
 (668, 152, 'bento_tile_overlay_color', '#666666'),
 (669, 152, 'bento_tile_overlay_opacity', '0'),
 (670, 152, 'bento_tile_text_color', '#ffffff'),
 (671, 152, 'bento_tile_text_size', '16'),
 (674, 152, '_wp_old_slug', 'walking-tour-cbd-architecture-24-sep-2017'),
 (677, 149, '_wp_old_slug', 'walking-tour-150-years-of-rail-23-sep-2017'),
 (680, 155, '_edit_lock', '1516844712:1'),
 (681, 155, '_edit_last', '1'),
 (682, 156, '_wp_attached_file', '2018/01/SmallGroupDrinkingAtPub2.jpg'),
 (683, 156, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:36:"2018/01/SmallGroupDrinkingAtPub2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"SmallGroupDrinkingAtPub2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:36:"SmallGroupDrinkingAtPub2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:36:"SmallGroupDrinkingAtPub2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (684, 155, '_thumbnail_id', '156'),
 (687, 155, 'bento_sidebar_layout', 'right-sidebar'),
 (688, 155, 'bento_title_position', 'left'),
 (689, 155, 'bento_subtitle_color', '#999999'),
 (690, 155, 'bento_header_image_height', '10%'),
 (691, 155, 'bento_header_overlay_opacity', '0'),
 (692, 155, 'bento_tile_size', '1x1'),
 (693, 155, 'bento_tile_overlay_color', '#666666'),
 (694, 155, 'bento_tile_overlay_opacity', '0'),
 (695, 155, 'bento_tile_text_color', '#ffffff'),
 (696, 155, 'bento_tile_text_size', '16'),
 (706, 155, '_wp_old_slug', 'talking-pubs-tour-24-sep-2017'),
 (713, 170, '_edit_lock', '1516774322:1'),
 (714, 170, '_edit_last', '1'),
 (717, 170, 'bento_sidebar_layout', 'right-sidebar'),
 (718, 170, 'bento_title_position', 'left'),
 (719, 170, 'bento_subtitle_color', '#999999'),
 (720, 170, 'bento_header_image_height', '10%'),
 (721, 170, 'bento_header_overlay_opacity', '0'),
 (722, 170, 'bento_tile_size', '1x1'),
 (723, 170, 'bento_tile_overlay_color', '#666666'),
 (724, 170, 'bento_tile_overlay_opacity', '0'),
 (725, 170, 'bento_tile_text_color', '#ffffff'),
 (726, 170, 'bento_tile_text_size', '16'),
 (727, 172, '_edit_lock', '1517204802:1'),
 (728, 172, '_edit_last', '1'),
 (729, 173, '_wp_attached_file', '2018/01/FoodWineTour2.jpg'),
 (730, 173, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:25:"2018/01/FoodWineTour2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"FoodWineTour2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"FoodWineTour2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:25:"FoodWineTour2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (731, 172, '_thumbnail_id', '173'),
 (734, 172, 'bento_sidebar_layout', 'right-sidebar'),
 (735, 172, 'bento_title_position', 'left'),
 (736, 172, 'bento_subtitle_color', '#999999'),
 (737, 172, 'bento_header_image_height', '10%'),
 (738, 172, 'bento_header_overlay_opacity', '0'),
 (739, 172, 'bento_tile_size', '1x1'),
 (740, 172, 'bento_tile_overlay_color', '#666666'),
 (741, 172, 'bento_tile_overlay_opacity', '0'),
 (742, 172, 'bento_tile_text_color', '#ffffff'),
 (743, 172, 'bento_tile_text_size', '16'),
 (744, 175, '_edit_lock', '1516844824:2'),
 (745, 175, '_edit_last', '1'),
 (746, 176, '_wp_attached_file', '2018/01/CobbandCo2.jpg'),
 (747, 176, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:22:"2018/01/CobbandCo2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"CobbandCo2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:22:"CobbandCo2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:22:"CobbandCo2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (748, 175, '_thumbnail_id', '176'),
 (751, 175, 'bento_sidebar_layout', 'right-sidebar'),
 (752, 175, 'bento_title_position', 'left'),
 (753, 175, 'bento_subtitle_color', '#999999'),
 (754, 175, 'bento_header_image_height', '10%'),
 (755, 175, 'bento_header_overlay_opacity', '0'),
 (756, 175, 'bento_tile_size', '1x1'),
 (757, 175, 'bento_tile_overlay_color', '#666666'),
 (758, 175, 'bento_tile_overlay_opacity', '0'),
 (759, 175, 'bento_tile_text_color', '#ffffff'),
 (760, 175, 'bento_tile_text_size', '16'),
 (761, 178, '_edit_lock', '1516856299:1'),
 (762, 178, '_edit_last', '1'),
 (763, 179, '_wp_attached_file', '2018/01/favicon.png'),
 (764, 179, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:100;s:6:"height";i:100;s:4:"file";s:19:"2018/01/favicon.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (765, 180, '_wp_attached_file', '2018/01/bunting.png'),
 (766, 180, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:19:"2018/01/bunting.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (767, 181, '_wp_attached_file', '2018/01/content-left-elements.png'),
 (768, 181, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:287;s:6:"height";i:500;s:4:"file";s:33:"2018/01/content-left-elements.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"content-left-elements-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:33:"content-left-elements-172x300.png";s:5:"width";i:172;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:33:"content-left-elements-272x182.png";s:5:"width";i:272;s:6:"height";i:182;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:{}}}'),
 (769, 182, '_wp_attached_file', '2018/01/content-right-elements.png'),
 (770, 182, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:319;s:6:"height";i:503;s:4:"file";s:34:"2018/01/content-right-elements.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"content-right-elements-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:34:"content-right-elements-190x300.png";s:5:"width";i:190;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:34:"content-right-elements-272x182.png";s:5:"width";i:272;s:6:"height";i:182;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:{}}}'),
 (771, 183, '_wp_attached_file', '2018/01/diamonds.png'),
 (772, 183, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:32;s:6:"height";i:18;s:4:"file";s:20:"2018/01/diamonds.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (773, 184, '_wp_attached_file', '2018/01/Eat-Laugh.png'),
 (774, 184, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1029;s:6:"height";i:562;s:4:"file";s:21:"2018/01/Eat-Laugh.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Eat-Laugh-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:21:"Eat-Laugh-300x164.png";s:5:"width";i:300;s:6:"height";i:164;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:21:"Eat-Laugh-768x419.png";s:5:"width";i:768;s:6:"height";i:419;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:22:"Eat-Laugh-1024x559.png";s:5:"width";i:1024;s:6:"height";i:559;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:21:"Eat-Laugh-272x182.png";s:5:"width";i:272;s:6:"height";i:182;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:{}}}'),
 (775, 185, '_wp_attached_file', '2018/01/header-left-elements-1.png'),
 (776, 185, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:201;s:6:"height";i:279;s:4:"file";s:34:"2018/01/header-left-elements-1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"header-left-elements-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:34:"header-left-elements-1-201x182.png";s:5:"width";i:201;s:6:"height";i:182;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:{}}}'),
 (777, 186, '_wp_attached_file', '2018/01/header-right-elements.png'),
 (778, 186, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:185;s:6:"height";i:321;s:4:"file";s:33:"2018/01/header-right-elements.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"header-right-elements-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:33:"header-right-elements-173x300.png";s:5:"width";i:173;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:33:"header-right-elements-185x182.png";s:5:"width";i:185;s:6:"height";i:182;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:{}}}'),
 (779, 187, '_wp_attached_file', '2018/01/herringbone.png'),
 (780, 187, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:33;s:6:"height";i:14;s:4:"file";s:23:"2018/01/herringbone.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (781, 188, '_wp_attached_file', '2018/01/leaf-left.png'),
 (782, 188, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:132;s:6:"height";i:164;s:4:"file";s:21:"2018/01/leaf-left.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"leaf-left-132x150.png";s:5:"width";i:132;s:6:"height";i:150;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:{}}}'),
 (783, 189, '_wp_attached_file', '2018/01/leaf-right.png'),
 (784, 189, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:111;s:6:"height";i:146;s:4:"file";s:22:"2018/01/leaf-right.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (785, 190, '_wp_attached_file', '2018/01/Play-Stay.png'),
 (786, 190, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1029;s:6:"height";i:562;s:4:"file";s:21:"2018/01/Play-Stay.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Play-Stay-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:21:"Play-Stay-300x164.png";s:5:"width";i:300;s:6:"height";i:164;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:21:"Play-Stay-768x419.png";s:5:"width";i:768;s:6:"height";i:419;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:22:"Play-Stay-1024x559.png";s:5:"width";i:1024;s:6:"height";i:559;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:21:"Play-Stay-272x182.png";s:5:"width";i:272;s:6:"height";i:182;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:{}}}'),
 (787, 191, '_wp_attached_file', '2018/01/share-left-elements-bottom.png'),
 (788, 191, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:123;s:6:"height";i:292;s:4:"file";s:38:"2018/01/share-left-elements-bottom.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:38:"share-left-elements-bottom-123x150.png";s:5:"width";i:123;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:38:"share-left-elements-bottom-123x182.png";s:5:"width";i:123;s:6:"height";i:182;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:{}}}'),
 (892, 178, 'bento_sidebar_layout', 'right-sidebar'),
 (893, 178, 'bento_title_position', 'left'),
 (894, 178, 'bento_subtitle_color', '#999999'),
 (895, 178, 'bento_header_image_height', '10%'),
 (896, 178, 'bento_header_overlay_opacity', '0'),
 (897, 178, 'bento_tile_size', '1x1'),
 (898, 178, 'bento_tile_overlay_color', '#666666'),
 (899, 178, 'bento_tile_overlay_opacity', '0'),
 (900, 178, 'bento_tile_text_color', '#ffffff'),
 (901, 178, 'bento_tile_text_size', '16'),
 (902, 246, '_edit_lock', '1517374788:1'),
 (903, 246, '_edit_last', '1'),
 (904, 247, '_wp_attached_file', '2018/01/BullsHeadInn.jpg'),
 (905, 247, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1302;s:6:"height";i:852;s:4:"file";s:24:"2018/01/BullsHeadInn.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"BullsHeadInn-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"BullsHeadInn-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"BullsHeadInn-768x503.jpg";s:5:"width";i:768;s:6:"height";i:503;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"BullsHeadInn-1024x670.jpg";s:5:"width";i:1024;s:6:"height";i:670;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"BullsHeadInn-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
 (906, 246, '_thumbnail_id', '247'),
 (909, 246, 'bento_sidebar_layout', 'right-sidebar'),
 (910, 246, 'bento_title_position', 'left'),
 (911, 246, 'bento_subtitle_color', '#999999'),
 (912, 246, 'bento_header_image_height', '10%'),
 (913, 246, 'bento_header_overlay_opacity', '0'),
 (914, 246, 'bento_tile_size', '1x1'),
 (915, 246, 'bento_tile_overlay_color', '#666666'),
 (916, 246, 'bento_tile_overlay_opacity', '0'),
 (917, 246, 'bento_tile_text_color', '#ffffff'),
 (918, 246, 'bento_tile_text_size', '16'),
 (919, 249, '_wp_attached_file', '2017/09/HeritagePhotographicAwardsWebBanner2017-3.jpg'),
 (920, 249, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:940;s:6:"height";i:266;s:4:"file";s:53:"2017/09/HeritagePhotographicAwardsWebBanner2017-3.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"HeritagePhotographicAwardsWebBanner2017-3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:52:"HeritagePhotographicAwardsWebBanner2017-3-300x85.jpg";s:5:"width";i:300;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"HeritagePhotographicAwardsWebBanner2017-3-768x217.jpg";s:5:"width";i:768;s:6:"height";i:217;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:53:"HeritagePhotographicAwardsWebBanner2017-3-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (921, 178, '_thumbnail_id', '249'),
 (924, 251, '_edit_lock', '1517277729:1'),
 (925, 251, '_edit_last', '1'),
 (926, 252, '_wp_attached_file', '2018/01/picnicPoint2.jpg'),
 (927, 252, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:24:"2018/01/picnicPoint2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"picnicPoint2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"picnicPoint2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"picnicPoint2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (928, 251, '_thumbnail_id', '252'),
 (931, 251, 'bento_sidebar_layout', 'right-sidebar'),
 (932, 251, 'bento_title_position', 'left'),
 (933, 251, 'bento_subtitle_color', '#999999'),
 (934, 251, 'bento_header_image_height', '10%'),
 (935, 251, 'bento_header_overlay_opacity', '0'),
 (936, 251, 'bento_tile_size', '1x1'),
 (937, 251, 'bento_tile_overlay_color', '#666666'),
 (938, 251, 'bento_tile_overlay_opacity', '0'),
 (939, 251, 'bento_tile_text_color', '#ffffff'),
 (940, 251, 'bento_tile_text_size', '16'),
 (941, 254, '_edit_lock', '1517378508:1'),
 (942, 254, '_edit_last', '1'),
 (945, 254, 'bento_sidebar_layout', 'right-sidebar'),
 (946, 254, 'bento_title_position', 'left'),
 (947, 254, 'bento_subtitle_color', '#999999'),
 (948, 254, 'bento_header_image_height', '10%'),
 (949, 254, 'bento_header_overlay_opacity', '0'),
 (950, 254, 'bento_tile_size', '1x1'),
 (951, 254, 'bento_tile_overlay_color', '#666666'),
 (952, 254, 'bento_tile_overlay_opacity', '0'),
 (953, 254, 'bento_tile_text_color', '#ffffff'),
 (954, 254, 'bento_tile_text_size', '16'),
 (959, 257, '_wp_attached_file', '2017/09/FairyFlowerFantasy2.jpg'),
 (960, 257, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:31:"2017/09/FairyFlowerFantasy2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"FairyFlowerFantasy2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"FairyFlowerFantasy2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"FairyFlowerFantasy2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (961, 254, '_thumbnail_id', '257'),
 (967, 260, '_edit_lock', '1517445132:1'),
 (968, 260, '_edit_last', '1'),
 (969, 261, '_wp_attached_file', '2018/01/FarmersMarkets2.jpg'),
 (970, 261, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:27:"2018/01/FarmersMarkets2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"FarmersMarkets2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:27:"FarmersMarkets2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:27:"FarmersMarkets2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (971, 260, '_thumbnail_id', '261'),
 (974, 260, 'bento_sidebar_layout', 'right-sidebar'),
 (975, 260, 'bento_title_position', 'left'),
 (976, 260, 'bento_subtitle_color', '#999999'),
 (977, 260, 'bento_header_image_height', '10%'),
 (978, 260, 'bento_header_overlay_opacity', '0'),
 (979, 260, 'bento_tile_size', '1x1'),
 (980, 260, 'bento_tile_overlay_color', '#666666'),
 (981, 260, 'bento_tile_overlay_opacity', '0'),
 (982, 260, 'bento_tile_text_color', '#ffffff'),
 (983, 260, 'bento_tile_text_size', '16'),
 (986, 263, '_edit_lock', '1517277702:1'),
 (987, 263, '_edit_last', '1'),
 (990, 263, 'bento_sidebar_layout', 'right-sidebar'),
 (991, 263, 'bento_title_position', 'left'),
 (992, 263, 'bento_subtitle_color', '#999999'),
 (993, 263, 'bento_header_image_height', '10%'),
 (994, 263, 'bento_header_overlay_opacity', '0'),
 (995, 263, 'bento_tile_size', '1x1'),
 (996, 263, 'bento_tile_overlay_color', '#666666'),
 (997, 263, 'bento_tile_overlay_opacity', '0'),
 (998, 263, 'bento_tile_text_color', '#ffffff'),
 (999, 263, 'bento_tile_text_size', '16'),
 (1000, 265, '_wp_attached_file', '2017/09/ChronGardenExhib2.jpg'),
 (1001, 265, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:29:"2017/09/ChronGardenExhib2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"ChronGardenExhib2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"ChronGardenExhib2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"ChronGardenExhib2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1002, 263, '_thumbnail_id', '265'),
 (1005, 269, '_edit_lock', '1517277659:1'),
 (1006, 269, '_edit_last', '1'),
 (1007, 269, '_oembed_4d26872cdf4c66e7297ae66d9aa47a60', '{{unknown}}'),
 (1008, 270, '_wp_attached_file', '2018/01/SpringBluff2.jpg'),
 (1009, 270, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:24:"2018/01/SpringBluff2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"SpringBluff2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"SpringBluff2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"SpringBluff2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1010, 269, '_thumbnail_id', '270'),
 (1013, 269, 'bento_sidebar_layout', 'right-sidebar'),
 (1014, 269, 'bento_title_position', 'left'),
 (1015, 269, 'bento_subtitle_color', '#999999'),
 (1016, 269, 'bento_header_image_height', '10%'),
 (1017, 269, 'bento_header_overlay_opacity', '0'),
 (1018, 269, 'bento_tile_size', '1x1'),
 (1019, 269, 'bento_tile_overlay_color', '#666666'),
 (1020, 269, 'bento_tile_overlay_opacity', '0'),
 (1021, 269, 'bento_tile_text_color', '#ffffff'),
 (1022, 269, 'bento_tile_text_size', '16'),
 (1025, 272, '_edit_lock', '1517277487:1'),
 (1026, 272, '_edit_last', '1'),
 (1027, 273, '_wp_attached_file', '2018/01/SpringBluffFlowersAndRailLine2.jpg'),
 (1028, 273, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:42:"2018/01/SpringBluffFlowersAndRailLine2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:42:"SpringBluffFlowersAndRailLine2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:42:"SpringBluffFlowersAndRailLine2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:42:"SpringBluffFlowersAndRailLine2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1029, 272, '_thumbnail_id', '273'),
 (1032, 272, 'bento_sidebar_layout', 'right-sidebar'),
 (1033, 272, 'bento_title_position', 'left'),
 (1034, 272, 'bento_subtitle_color', '#999999'),
 (1035, 272, 'bento_header_image_height', '10%'),
 (1036, 272, 'bento_header_overlay_opacity', '0'),
 (1037, 272, 'bento_tile_size', '1x1'),
 (1038, 272, 'bento_tile_overlay_color', '#666666'),
 (1039, 272, 'bento_tile_overlay_opacity', '0'),
 (1040, 272, 'bento_tile_text_color', '#ffffff'),
 (1041, 272, 'bento_tile_text_size', '16'),
 (1042, 275, '_edit_lock', '1517277450:1'),
 (1043, 275, '_edit_last', '1'),
 (1046, 275, 'bento_sidebar_layout', 'right-sidebar'),
 (1047, 275, 'bento_title_position', 'left'),
 (1048, 275, 'bento_subtitle_color', '#999999'),
 (1049, 275, 'bento_header_image_height', '10%'),
 (1050, 275, 'bento_header_overlay_opacity', '0'),
 (1051, 275, 'bento_tile_size', '1x1'),
 (1052, 275, 'bento_tile_overlay_color', '#666666'),
 (1053, 275, 'bento_tile_overlay_opacity', '0'),
 (1054, 275, 'bento_tile_text_color', '#ffffff'),
 (1055, 275, 'bento_tile_text_size', '16'),
 (1056, 278, '_wp_attached_file', '2017/09/SilverBulletExpress2.jpg'),
 (1057, 278, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:32:"2017/09/SilverBulletExpress2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"SilverBulletExpress2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:32:"SilverBulletExpress2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:32:"SilverBulletExpress2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1058, 275, '_thumbnail_id', '278'),
 (1061, 280, '_edit_lock', '1517277407:1'),
 (1062, 280, '_edit_last', '1'),
 (1065, 280, 'bento_sidebar_layout', 'right-sidebar'),
 (1066, 280, 'bento_title_position', 'left'),
 (1067, 280, 'bento_subtitle_color', '#999999'),
 (1068, 280, 'bento_header_image_height', '10%'),
 (1069, 280, 'bento_header_overlay_opacity', '0'),
 (1070, 280, 'bento_tile_size', '1x1'),
 (1071, 280, 'bento_tile_overlay_color', '#666666'),
 (1072, 280, 'bento_tile_overlay_opacity', '0'),
 (1073, 280, 'bento_tile_text_color', '#ffffff'),
 (1074, 280, 'bento_tile_text_size', '16'),
 (1075, 282, '_wp_attached_file', '2017/09/SteamTrain2.jpg'),
 (1076, 282, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:23:"2017/09/SteamTrain2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"SteamTrain2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"SteamTrain2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:23:"SteamTrain2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1077, 280, '_thumbnail_id', '282'),
 (1080, 283, '_edit_lock', '1517277370:1'),
 (1081, 283, '_edit_last', '1'),
 (1084, 283, 'bento_sidebar_layout', 'right-sidebar'),
 (1085, 283, 'bento_title_position', 'left'),
 (1086, 283, 'bento_subtitle_color', '#999999'),
 (1087, 283, 'bento_header_image_height', '10%'),
 (1088, 283, 'bento_header_overlay_opacity', '0'),
 (1089, 283, 'bento_tile_size', '1x1'),
 (1090, 283, 'bento_tile_overlay_color', '#666666'),
 (1091, 283, 'bento_tile_overlay_opacity', '0'),
 (1092, 283, 'bento_tile_text_color', '#ffffff'),
 (1093, 283, 'bento_tile_text_size', '16'),
 (1094, 285, '_edit_lock', '1517277324:1'),
 (1095, 285, '_edit_last', '1'),
 (1096, 286, '_wp_attached_file', '2018/01/TwilightTours2.jpg'),
 (1097, 286, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:26:"2018/01/TwilightTours2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"TwilightTours2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"TwilightTours2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:26:"TwilightTours2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1098, 285, '_thumbnail_id', '286'),
 (1101, 285, 'bento_sidebar_layout', 'right-sidebar'),
 (1102, 285, 'bento_title_position', 'left'),
 (1103, 285, 'bento_subtitle_color', '#999999'),
 (1104, 285, 'bento_header_image_height', '10%'),
 (1105, 285, 'bento_header_overlay_opacity', '0'),
 (1106, 285, 'bento_tile_size', '1x1'),
 (1107, 285, 'bento_tile_overlay_color', '#666666'),
 (1108, 285, 'bento_tile_overlay_opacity', '0'),
 (1109, 285, 'bento_tile_text_color', '#ffffff'),
 (1110, 285, 'bento_tile_text_size', '16'),
 (1111, 288, '_edit_lock', '1517277412:1'),
 (1112, 288, '_edit_last', '1'),
 (1115, 288, 'bento_sidebar_layout', 'left-sidebar'),
 (1116, 288, 'bento_title_position', 'left'),
 (1117, 288, 'bento_subtitle_color', '#999999'),
 (1118, 288, 'bento_header_image_height', '10%'),
 (1119, 288, 'bento_header_overlay_opacity', '0'),
 (1120, 288, 'bento_tile_size', '1x1'),
 (1121, 288, 'bento_tile_overlay_color', '#666666'),
 (1122, 288, 'bento_tile_overlay_opacity', '0'),
 (1123, 288, 'bento_tile_text_color', '#ffffff'),
 (1124, 288, 'bento_tile_text_size', '16'),
 (1125, 290, '_wp_attached_file', '2017/09/ParklandEntertainment2.jpg'),
 (1126, 290, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:221;s:4:"file";s:34:"2017/09/ParklandEntertainment2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"ParklandEntertainment2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"ParklandEntertainment2-300x95.jpg";s:5:"width";i:300;s:6:"height";i:95;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:34:"ParklandEntertainment2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1127, 288, '_thumbnail_id', '290'),
 (1130, 291, '_edit_lock', '1517277176:1'),
 (1131, 291, '_edit_last', '1'),
 (1134, 291, 'bento_sidebar_layout', 'left-sidebar'),
 (1135, 291, 'bento_title_position', 'left'),
 (1136, 291, 'bento_subtitle_color', '#999999'),
 (1137, 291, 'bento_header_image_height', '10%'),
 (1138, 291, 'bento_header_overlay_opacity', '0'),
 (1139, 291, 'bento_tile_size', '1x1'),
 (1140, 291, 'bento_tile_overlay_color', '#666666'),
 (1141, 291, 'bento_tile_overlay_opacity', '0'),
 (1142, 291, 'bento_tile_text_color', '#ffffff'),
 (1143, 291, 'bento_tile_text_size', '16'),
 (1144, 293, '_wp_attached_file', '2017/09/LadiesAtCafe2.jpg'),
 (1145, 293, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:563;s:4:"file";s:25:"2017/09/LadiesAtCafe2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"LadiesAtCafe2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"LadiesAtCafe2-300x241.jpg";s:5:"width";i:300;s:6:"height";i:241;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:25:"LadiesAtCafe2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:12:"mike curtain";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:{}}}'),
 (1146, 291, '_thumbnail_id', '293'),
 (1149, 294, '_edit_lock', '1517277070:1'),
 (1150, 294, '_edit_last', '1'),
 (1153, 294, 'bento_sidebar_layout', 'right-sidebar'),
 (1154, 294, 'bento_title_position', 'left'),
 (1155, 294, 'bento_subtitle_color', '#999999'),
 (1156, 294, 'bento_header_image_height', '10%'),
 (1157, 294, 'bento_header_overlay_opacity', '0'),
 (1158, 294, 'bento_tile_size', '1x1'),
 (1159, 294, 'bento_tile_overlay_color', '#666666'),
 (1160, 294, 'bento_tile_overlay_opacity', '0'),
 (1161, 294, 'bento_tile_text_color', '#ffffff'),
 (1162, 294, 'bento_tile_text_size', '16'),
 (1163, 296, '_wp_attached_file', '2017/09/WineAppreciation2.jpg'),
 (1164, 296, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:29:"2017/09/WineAppreciation2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"WineAppreciation2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"WineAppreciation2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"WineAppreciation2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1165, 294, '_thumbnail_id', '296'),
 (1170, 297, '_edit_lock', '1517277039:1'),
 (1171, 297, '_edit_last', '1'),
 (1172, 298, '_wp_attached_file', '2018/01/EEFFW-BeerClass2.jpg'),
 (1173, 298, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:28:"2018/01/EEFFW-BeerClass2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"EEFFW-BeerClass2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:28:"EEFFW-BeerClass2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:28:"EEFFW-BeerClass2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1174, 297, '_thumbnail_id', '298'),
 (1177, 297, 'bento_sidebar_layout', 'right-sidebar'),
 (1178, 297, 'bento_title_position', 'left'),
 (1179, 297, 'bento_subtitle_color', '#999999'),
 (1180, 297, 'bento_header_image_height', '10%'),
 (1181, 297, 'bento_header_overlay_opacity', '0'),
 (1182, 297, 'bento_tile_size', '1x1'),
 (1183, 297, 'bento_tile_overlay_color', '#666666'),
 (1184, 297, 'bento_tile_overlay_opacity', '0'),
 (1185, 297, 'bento_tile_text_color', '#ffffff'),
 (1186, 297, 'bento_tile_text_size', '16'),
 (1187, 300, '_edit_lock', '1517198790:1'),
 (1188, 300, '_edit_last', '1'),
 (1191, 300, 'bento_sidebar_layout', 'right-sidebar'),
 (1192, 300, 'bento_title_position', 'left'),
 (1193, 300, 'bento_subtitle_color', '#999999'),
 (1194, 300, 'bento_header_image_height', '10%'),
 (1195, 300, 'bento_header_overlay_opacity', '0'),
 (1196, 300, 'bento_tile_size', '1x1'),
 (1197, 300, 'bento_tile_overlay_color', '#666666'),
 (1198, 300, 'bento_tile_overlay_opacity', '0'),
 (1199, 300, 'bento_tile_text_color', '#ffffff'),
 (1200, 300, 'bento_tile_text_size', '16'),
 (1201, 302, '_wp_attached_file', '2017/09/TobiePuttock2.jpg'),
 (1202, 302, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:756;s:4:"file";s:25:"2017/09/TobiePuttock2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"TobiePuttock2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"TobiePuttock2-278x300.jpg";s:5:"width";i:278;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:25:"TobiePuttock2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1203, 300, '_thumbnail_id', '302'),
 (1206, 303, '_edit_lock', '1517198784:1'),
 (1207, 303, '_edit_last', '1'),
 (1210, 303, 'bento_sidebar_layout', 'right-sidebar'),
 (1211, 303, 'bento_title_position', 'left'),
 (1212, 303, 'bento_subtitle_color', '#999999'),
 (1213, 303, 'bento_header_image_height', '10%'),
 (1214, 303, 'bento_header_overlay_opacity', '0'),
 (1215, 303, 'bento_tile_size', '1x1'),
 (1216, 303, 'bento_tile_overlay_color', '#666666'),
 (1217, 303, 'bento_tile_overlay_opacity', '0'),
 (1218, 303, 'bento_tile_text_color', '#ffffff'),
 (1219, 303, 'bento_tile_text_size', '16'),
 (1220, 306, '_wp_attached_file', '2017/09/SophieThomson.jpg'),
 (1221, 306, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:25:"2017/09/SophieThomson.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"SophieThomson-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"SophieThomson-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:25:"SophieThomson-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1222, 303, '_thumbnail_id', '306'),
 (1225, 308, '_edit_lock', '1517276979:1'),
 (1226, 308, '_edit_last', '1'),
 (1227, 309, '_wp_attached_file', '2018/01/TheCubbyHouse2.jpg'),
 (1228, 309, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:26:"2018/01/TheCubbyHouse2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"TheCubbyHouse2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"TheCubbyHouse2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:26:"TheCubbyHouse2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1229, 308, '_thumbnail_id', '309'),
 (1232, 308, 'bento_sidebar_layout', 'right-sidebar'),
 (1233, 308, 'bento_title_position', 'left'),
 (1234, 308, 'bento_subtitle_color', '#999999'),
 (1235, 308, 'bento_header_image_height', '10%'),
 (1236, 308, 'bento_header_overlay_opacity', '0'),
 (1237, 308, 'bento_tile_size', '1x1'),
 (1238, 308, 'bento_tile_overlay_color', '#666666'),
 (1239, 308, 'bento_tile_overlay_opacity', '0'),
 (1240, 308, 'bento_tile_text_color', '#ffffff'),
 (1241, 308, 'bento_tile_text_size', '16'),
 (1242, 311, '_edit_lock', '1517277083:1'),
 (1243, 311, '_edit_last', '1'),
 (1244, 312, '_wp_attached_file', '2018/01/LiveConcert.jpg'),
 (1245, 312, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:640;s:4:"file";s:23:"2018/01/LiveConcert.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"LiveConcert-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"LiveConcert-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:23:"LiveConcert-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1246, 311, '_thumbnail_id', '312'),
 (1249, 311, 'bento_sidebar_layout', 'right-sidebar'),
 (1250, 311, 'bento_title_position', 'left'),
 (1251, 311, 'bento_subtitle_color', '#999999'),
 (1252, 311, 'bento_header_image_height', '10%'),
 (1253, 311, 'bento_header_overlay_opacity', '0'),
 (1254, 311, 'bento_tile_size', '1x1'),
 (1255, 311, 'bento_tile_overlay_color', '#666666'),
 (1256, 311, 'bento_tile_overlay_opacity', '0'),
 (1257, 311, 'bento_tile_text_color', '#ffffff'),
 (1258, 311, 'bento_tile_text_size', '16'),
 (1259, 314, '_edit_lock', '1517276898:1'),
 (1260, 314, '_edit_last', '1'),
 (1263, 316, '_wp_attached_file', '2018/01/GalaDinner-1.jpg'),
 (1264, 316, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:24:"2018/01/GalaDinner-1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"GalaDinner-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"GalaDinner-1-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"GalaDinner-1-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1265, 314, '_thumbnail_id', '316'),
 (1268, 314, 'bento_sidebar_layout', 'right-sidebar'),
 (1269, 314, 'bento_title_position', 'left'),
 (1270, 314, 'bento_subtitle_color', '#999999'),
 (1271, 314, 'bento_header_image_height', '10%'),
 (1272, 314, 'bento_header_overlay_opacity', '0'),
 (1273, 314, 'bento_tile_size', '1x1'),
 (1274, 314, 'bento_tile_overlay_color', '#666666'),
 (1275, 314, 'bento_tile_overlay_opacity', '0'),
 (1276, 314, 'bento_tile_text_color', '#ffffff'),
 (1277, 314, 'bento_tile_text_size', '16'),
 (1278, 318, '_edit_lock', '1517276857:1'),
 (1279, 318, '_edit_last', '1'),
 (1280, 319, '_wp_attached_file', '2018/01/ParadeFloat2.jpg'),
 (1281, 319, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:24:"2018/01/ParadeFloat2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"ParadeFloat2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"ParadeFloat2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"ParadeFloat2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1282, 318, '_thumbnail_id', '319'),
 (1285, 318, 'bento_sidebar_layout', 'right-sidebar'),
 (1286, 318, 'bento_title_position', 'left'),
 (1287, 318, 'bento_subtitle_color', '#999999'),
 (1288, 318, 'bento_header_image_height', '10%'),
 (1289, 318, 'bento_header_overlay_opacity', '0'),
 (1290, 318, 'bento_tile_size', '1x1'),
 (1291, 318, 'bento_tile_overlay_color', '#666666'),
 (1292, 318, 'bento_tile_overlay_opacity', '0'),
 (1293, 318, 'bento_tile_text_color', '#ffffff'),
 (1294, 318, 'bento_tile_text_size', '16'),
 (1295, 321, '_edit_lock', '1517276805:1'),
 (1296, 321, '_edit_last', '1'),
 (1299, 321, 'bento_sidebar_layout', 'right-sidebar'),
 (1300, 321, 'bento_title_position', 'left'),
 (1301, 321, 'bento_subtitle_color', '#999999'),
 (1302, 321, 'bento_header_image_height', '10%'),
 (1303, 321, 'bento_header_overlay_opacity', '0'),
 (1304, 321, 'bento_tile_size', '1x1'),
 (1305, 321, 'bento_tile_overlay_color', '#666666'),
 (1306, 321, 'bento_tile_overlay_opacity', '0'),
 (1307, 321, 'bento_tile_text_color', '#ffffff'),
 (1308, 321, 'bento_tile_text_size', '16'),
 (1309, 323, '_wp_attached_file', '2017/09/SideshowAlley2.jpg'),
 (1310, 323, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:26:"2017/09/SideshowAlley2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"SideshowAlley2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"SideshowAlley2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:26:"SideshowAlley2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1311, 321, '_thumbnail_id', '323'),
 (1314, 324, '_edit_lock', '1517276712:1'),
 (1315, 324, '_edit_last', '1'),
 (1316, 325, '_wp_attached_file', '2018/01/ToursFoodWine2.jpg'),
 (1317, 325, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:26:"2018/01/ToursFoodWine2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"ToursFoodWine2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"ToursFoodWine2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:26:"ToursFoodWine2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1318, 324, '_thumbnail_id', '325'),
 (1321, 324, 'bento_sidebar_layout', 'right-sidebar'),
 (1322, 324, 'bento_title_position', 'left'),
 (1323, 324, 'bento_subtitle_color', '#999999'),
 (1324, 324, 'bento_header_image_height', '10%'),
 (1325, 324, 'bento_header_overlay_opacity', '0'),
 (1326, 324, 'bento_tile_size', '1x1'),
 (1327, 324, 'bento_tile_overlay_color', '#666666'),
 (1328, 324, 'bento_tile_overlay_opacity', '0'),
 (1329, 324, 'bento_tile_text_color', '#ffffff'),
 (1330, 324, 'bento_tile_text_size', '16'),
 (1331, 327, '_edit_lock', '1517276664:1'),
 (1332, 327, '_edit_last', '1'),
 (1333, 328, '_wp_attached_file', '2018/01/FoodOnPlateWine2.jpg'),
 (1334, 328, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:28:"2018/01/FoodOnPlateWine2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"FoodOnPlateWine2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:28:"FoodOnPlateWine2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:28:"FoodOnPlateWine2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1335, 327, '_thumbnail_id', '328'),
 (1338, 327, 'bento_sidebar_layout', 'right-sidebar'),
 (1339, 327, 'bento_title_position', 'left'),
 (1340, 327, 'bento_subtitle_color', '#999999'),
 (1341, 327, 'bento_header_image_height', '10%'),
 (1342, 327, 'bento_header_overlay_opacity', '0'),
 (1343, 327, 'bento_tile_size', '1x1'),
 (1344, 327, 'bento_tile_overlay_color', '#666666'),
 (1345, 327, 'bento_tile_overlay_opacity', '0'),
 (1346, 327, 'bento_tile_text_color', '#ffffff'),
 (1347, 327, 'bento_tile_text_size', '16'),
 (1348, 330, '_edit_lock', '1517276587:1'),
 (1349, 330, '_edit_last', '1'),
 (1350, 331, '_wp_attached_file', '2018/01/FoodOnPlate.jpg'),
 (1351, 331, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1302;s:6:"height";i:852;s:4:"file";s:23:"2018/01/FoodOnPlate.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"FoodOnPlate-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"FoodOnPlate-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"FoodOnPlate-768x503.jpg";s:5:"width";i:768;s:6:"height";i:503;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"FoodOnPlate-1024x670.jpg";s:5:"width";i:1024;s:6:"height";i:670;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:23:"FoodOnPlate-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1352, 330, '_thumbnail_id', '331'),
 (1355, 330, 'bento_sidebar_layout', 'right-sidebar'),
 (1356, 330, 'bento_title_position', 'left'),
 (1357, 330, 'bento_subtitle_color', '#999999'),
 (1358, 330, 'bento_header_image_height', '10%'),
 (1359, 330, 'bento_header_overlay_opacity', '0'),
 (1360, 330, 'bento_tile_size', '1x1'),
 (1361, 330, 'bento_tile_overlay_color', '#666666'),
 (1362, 330, 'bento_tile_overlay_opacity', '0'),
 (1363, 330, 'bento_tile_text_color', '#ffffff'),
 (1364, 330, 'bento_tile_text_size', '16'),
 (1367, 333, '_edit_lock', '1517276552:1'),
 (1368, 333, '_edit_last', '1'),
 (1371, 333, 'bento_sidebar_layout', 'right-sidebar'),
 (1372, 333, 'bento_title_position', 'left'),
 (1373, 333, 'bento_subtitle_color', '#999999'),
 (1374, 333, 'bento_header_image_height', '10%'),
 (1375, 333, 'bento_header_overlay_opacity', '0'),
 (1376, 333, 'bento_tile_size', '1x1'),
 (1377, 333, 'bento_tile_overlay_color', '#666666'),
 (1378, 333, 'bento_tile_overlay_opacity', '0'),
 (1379, 333, 'bento_tile_text_color', '#ffffff'),
 (1380, 333, 'bento_tile_text_size', '16'),
 (1381, 335, '_wp_attached_file', '2017/09/CountryGardenTour2.jpg'),
 (1382, 335, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:30:"2017/09/CountryGardenTour2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"CountryGardenTour2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:30:"CountryGardenTour2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:30:"CountryGardenTour2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1383, 333, '_thumbnail_id', '335'),
 (1386, 336, '_edit_lock', '1517276653:1'),
 (1396, 336, '_edit_last', '1'),
 (1399, 336, 'bento_sidebar_layout', 'right-sidebar'),
 (1400, 336, 'bento_title_position', 'left'),
 (1401, 336, 'bento_subtitle_color', '#999999'),
 (1402, 336, 'bento_header_image_height', '10%'),
 (1403, 336, 'bento_header_overlay_opacity', '0'),
 (1404, 336, 'bento_tile_size', '1x1'),
 (1405, 336, 'bento_tile_overlay_color', '#666666'),
 (1406, 336, 'bento_tile_overlay_opacity', '0'),
 (1407, 336, 'bento_tile_text_color', '#ffffff'),
 (1408, 336, 'bento_tile_text_size', '16'),
 (1409, 339, '_wp_attached_file', '2017/09/PaddockToPotager2.jpg'),
 (1410, 339, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:467;s:4:"file";s:29:"2017/09/PaddockToPotager2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"PaddockToPotager2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"PaddockToPotager2-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"PaddockToPotager2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1411, 336, '_thumbnail_id', '339'),
 (1414, 340, '_edit_lock', '1517276480:1'),
 (1415, 340, '_edit_last', '1'),
 (1416, 341, '_wp_attached_file', '2018/01/StLukesFlowersInGuitar2.jpg'),
 (1417, 341, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:35:"2018/01/StLukesFlowersInGuitar2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"StLukesFlowersInGuitar2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:35:"StLukesFlowersInGuitar2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:35:"StLukesFlowersInGuitar2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1418, 340, '_thumbnail_id', '341'),
 (1421, 340, 'bento_sidebar_layout', 'right-sidebar'),
 (1422, 340, 'bento_title_position', 'left'),
 (1423, 340, 'bento_subtitle_color', '#999999'),
 (1424, 340, 'bento_header_image_height', '10%'),
 (1425, 340, 'bento_header_overlay_opacity', '0'),
 (1426, 340, 'bento_tile_size', '1x1'),
 (1427, 340, 'bento_tile_overlay_color', '#666666'),
 (1428, 340, 'bento_tile_overlay_opacity', '0'),
 (1429, 340, 'bento_tile_text_color', '#ffffff'),
 (1430, 340, 'bento_tile_text_size', '16'),
 (1431, 343, '_edit_lock', '1517276587:1'),
 (1432, 343, '_edit_last', '1'),
 (1433, 344, '_wp_attached_file', '2018/01/CliviaShow2.jpg'),
 (1434, 344, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:23:"2018/01/CliviaShow2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"CliviaShow2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"CliviaShow2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:23:"CliviaShow2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1435, 343, '_thumbnail_id', '344'),
 (1438, 343, 'bento_sidebar_layout', 'right-sidebar'),
 (1439, 343, 'bento_title_position', 'left'),
 (1440, 343, 'bento_subtitle_color', '#999999'),
 (1441, 343, 'bento_header_image_height', '10%'),
 (1442, 343, 'bento_header_overlay_opacity', '0'),
 (1443, 343, 'bento_tile_size', '1x1'),
 (1444, 343, 'bento_tile_overlay_color', '#666666'),
 (1445, 343, 'bento_tile_overlay_opacity', '0'),
 (1446, 343, 'bento_tile_text_color', '#ffffff'),
 (1447, 343, 'bento_tile_text_size', '16'),
 (1448, 346, '_edit_lock', '1521009189:2'),
 (1449, 346, '_edit_last', '2'),
 (1452, 346, 'bento_sidebar_layout', 'right-sidebar'),
 (1453, 346, 'bento_title_position', 'left'),
 (1454, 346, 'bento_subtitle_color', '#999999'),
 (1455, 346, 'bento_header_image_height', '10%'),
 (1456, 346, 'bento_header_overlay_opacity', '0'),
 (1457, 346, 'bento_tile_size', '1x1'),
 (1458, 346, 'bento_tile_overlay_color', '#666666'),
 (1459, 346, 'bento_tile_overlay_opacity', '0'),
 (1460, 346, 'bento_tile_text_color', '#ffffff'),
 (1461, 346, 'bento_tile_text_size', '16'),
 (1462, 349, '_wp_attached_file', '2017/09/NostiFlowers2.jpg'),
 (1463, 349, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:933;s:4:"file";s:25:"2017/09/NostiFlowers2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"NostiFlowers2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"NostiFlowers2-225x300.jpg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:25:"NostiFlowers2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1467, 351, '_edit_lock', '1517276369:1'),
 (1470, 351, '_edit_last', '1'),
 (1473, 351, 'bento_sidebar_layout', 'right-sidebar'),
 (1474, 351, 'bento_title_position', 'left'),
 (1475, 351, 'bento_subtitle_color', '#999999'),
 (1476, 351, 'bento_header_image_height', '10%'),
 (1477, 351, 'bento_header_overlay_opacity', '0'),
 (1478, 351, 'bento_tile_size', '1x1'),
 (1479, 351, 'bento_tile_overlay_color', '#666666'),
 (1480, 351, 'bento_tile_overlay_opacity', '0'),
 (1481, 351, 'bento_tile_text_color', '#ffffff'),
 (1482, 351, 'bento_tile_text_size', '16'),
 (1483, 356, '_wp_attached_file', '2017/09/StPatricksFlower2.jpg'),
 (1484, 356, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:29:"2017/09/StPatricksFlower2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"StPatricksFlower2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"StPatricksFlower2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"StPatricksFlower2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1485, 351, '_thumbnail_id', '356'),
 (1490, 359, '_edit_lock', '1517276465:1'),
 (1491, 359, '_edit_last', '1'),
 (1492, 126, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1495, 359, 'bento_sidebar_layout', 'right-sidebar'),
 (1496, 359, 'bento_title_position', 'left'),
 (1497, 359, 'bento_subtitle_color', '#999999'),
 (1498, 359, 'bento_header_image_height', '10%'),
 (1499, 359, 'bento_header_overlay_opacity', '0'),
 (1500, 359, 'bento_tile_size', '1x1'),
 (1501, 359, 'bento_tile_overlay_color', '#666666'),
 (1502, 359, 'bento_tile_overlay_opacity', '0'),
 (1503, 359, 'bento_tile_text_color', '#ffffff'),
 (1504, 359, 'bento_tile_text_size', '16'),
 (1505, 361, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1506, 361, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1507, 361, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1508, 362, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1509, 364, '_wp_attached_file', '2017/09/StDavidsCupCakes2.jpg'),
 (1510, 364, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:29:"2017/09/StDavidsCupCakes2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"StDavidsCupCakes2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"StDavidsCupCakes2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"StDavidsCupCakes2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1513, 366, '_edit_lock', '1517274386:1'),
 (1514, 366, '_edit_last', '1'),
 (1517, 366, 'bento_sidebar_layout', 'right-sidebar'),
 (1518, 366, 'bento_title_position', 'left'),
 (1519, 366, 'bento_subtitle_color', '#999999'),
 (1520, 366, 'bento_header_image_height', '10%'),
 (1521, 366, 'bento_header_overlay_opacity', '0'),
 (1522, 366, 'bento_tile_size', '1x1'),
 (1523, 366, 'bento_tile_overlay_color', '#666666'),
 (1524, 366, 'bento_tile_overlay_opacity', '0'),
 (1525, 366, 'bento_tile_text_color', '#ffffff'),
 (1526, 366, 'bento_tile_text_size', '16'),
 (1527, 126, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1528, 126, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1529, 369, '_wp_attached_file', '2017/09/IkebanaFloralDisplay2.jpg'),
 (1530, 369, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:578;s:4:"file";s:33:"2017/09/IkebanaFloralDisplay2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"IkebanaFloralDisplay2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"IkebanaFloralDisplay2-300x248.jpg";s:5:"width";i:300;s:6:"height";i:248;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:33:"IkebanaFloralDisplay2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1531, 370, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1532, 370, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1533, 370, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1534, 371, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1535, 366, '_thumbnail_id', '369'),
 (1538, 373, '_menu_item_type', 'post_type'),
 (1539, 373, '_menu_item_menu_item_parent', '633'),
 (1540, 373, '_menu_item_object_id', '121'),
 (1541, 373, '_menu_item_object', 'page'),
 (1542, 373, '_menu_item_target', ''),
 (1543, 373, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (1544, 373, '_menu_item_xfn', ''),
 (1545, 373, '_menu_item_url', ''),
 (1547, 374, '_edit_lock', '1517274334:1'),
 (1548, 374, '_edit_last', '1'),
 (1549, 375, '_wp_attached_file', '2018/01/OrchidSociety2.jpg'),
 (1550, 375, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:26:"2018/01/OrchidSociety2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"OrchidSociety2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"OrchidSociety2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:26:"OrchidSociety2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1551, 374, '_thumbnail_id', '375'),
 (1554, 374, 'bento_sidebar_layout', 'right-sidebar'),
 (1555, 374, 'bento_title_position', 'left'),
 (1556, 374, 'bento_subtitle_color', '#999999'),
 (1557, 374, 'bento_header_image_height', '10%'),
 (1558, 374, 'bento_header_overlay_opacity', '0'),
 (1559, 374, 'bento_tile_size', '1x1'),
 (1560, 374, 'bento_tile_overlay_color', '#666666'),
 (1561, 374, 'bento_tile_overlay_opacity', '0'),
 (1562, 374, 'bento_tile_text_color', '#ffffff'),
 (1563, 374, 'bento_tile_text_size', '16'),
 (1564, 377, '_edit_lock', '1517274220:1'),
 (1565, 377, '_edit_last', '1'),
 (1569, 380, '_wp_attached_file', '2018/01/BonsaiTree2.jpg'),
 (1570, 380, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:23:"2018/01/BonsaiTree2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"BonsaiTree2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"BonsaiTree2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:23:"BonsaiTree2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1571, 377, '_thumbnail_id', '380'),
 (1574, 377, 'bento_sidebar_layout', 'right-sidebar'),
 (1575, 377, 'bento_title_position', 'left'),
 (1576, 377, 'bento_subtitle_color', '#999999'),
 (1577, 377, 'bento_header_image_height', '10%'),
 (1578, 377, 'bento_header_overlay_opacity', '0'),
 (1579, 377, 'bento_tile_size', '1x1'),
 (1580, 377, 'bento_tile_overlay_color', '#666666'),
 (1581, 377, 'bento_tile_overlay_opacity', '0'),
 (1582, 377, 'bento_tile_text_color', '#ffffff'),
 (1583, 377, 'bento_tile_text_size', '16'),
 (1616, 392, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:4:"more";b:0;s:11:"panels_info";a:8:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1617, 126, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:4:"more";b:0;s:11:"panels_info";a:8:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1618, 126, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:4:"more";b:0;s:11:"panels_info";a:8:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1619, 393, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517276399065";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1620, 393, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:4:"more";b:0;s:11:"panels_info";a:8:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1621, 393, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:8:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:293:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1516683734973";s:4:"more";b:0;s:11:"panels_info";a:8:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}s:10:"cell_index";i:0;}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1622, 394, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=relative&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517276399065";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1629, 398, 'panels_data', 'a:3:{s:7:"widgets";a:2:{i:0;a:3:{s:5:"title";s:12:"Test content";s:7:"content";s:14:"Just a test...";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"96d6c22e-3f02-4b98-aa08-3c8c748a82c1";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517276550158";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:2:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}i:1;a:4:{s:4:"grid";i:1;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1638, 403, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517276550158";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1639, 404, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517276550158";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1640, 404, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517276550158";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1641, 404, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517276550158";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1642, 405, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517276550158";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1687, 427, '_edit_lock', '1521003382:2'),
 (1688, 427, '_edit_last', '2'),
 (1689, 427, '_wp_page_template', 'default'),
 (1690, 428, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:159:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a6fd69ab260a";s:19:"_sow_form_timestamp";s:13:"1517278893263";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"c3c5e1a4-3d4a-4859-abd3-36aefa8a2124";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1692, 429, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:159:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5a6fd69ab260a";s:19:"_sow_form_timestamp";s:13:"1517278893263";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"c3c5e1a4-3d4a-4859-abd3-36aefa8a2124";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1693, 427, 'bento_sidebar_layout', 'left-sidebar'),
 (1694, 427, 'bento_title_position', 'left'),
 (1695, 427, 'bento_subtitle_color', '#999999'),
 (1696, 427, 'bento_header_image_height', '10%'),
 (1697, 427, 'bento_header_overlay_opacity', '0'),
 (1698, 427, 'bento_page_grid_mode', 'rows'),
 (1699, 427, 'bento_page_columns', '3'),
 (1700, 427, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (1701, 427, 'bento_page_number_items', '9'),
 (1702, 427, 'bento_page_item_margins', '10'),
 (1703, 430, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517279282806";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1704, 431, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517279321054";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1705, 432, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:294:"post_type=post&tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":1,"unit":"years"},"to":{"value":0,"unit":"days"}}&orderby=none&order=DESC";s:12:"_sow_form_id";s:13:"5a66c1479fbfd";s:19:"_sow_form_timestamp";s:13:"1517279321054";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"1636b54f-f3f2-492b-8ecb-6ae6102ffeb7";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1707, 433, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1709, 434, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1710, 121, 'bento_page_ajax_load', 'on'),
 (1711, 435, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (1712, 427, 'bento_page_ajax_load', 'on'),
 (1741, 446, '_wp_attached_file', '2018/01/OpenSans-Regular.ttf'),
 (1744, 448, '_wp_attached_file', '2018/01/OpenSans-Bold.ttf'),
 (1750, 451, '_wp_attached_file', '2018/01/Raleway-Italic.ttf'),
 (1752, 453, '_wp_attached_file', '2018/01/Lora-Italic.ttf'),
 (1753, 454, '_wp_attached_file', '2018/01/Lora-BoldItalic.ttf'),
 (1754, 455, '_wp_attached_file', '2018/01/Roboto-Bold.ttf'),
 (1757, 427, 'bento_headermap_height', '400'),
 (1758, 427, 'bento_headermap_zoom', '15'),
 (1770, 121, 'bento_headermap_height', '400'),
 (1771, 121, 'bento_headermap_zoom', '15'),
 (1774, 464, '_edit_lock', '1517362430:1'),
 (1775, 464, '_edit_last', '1'),
 (1776, 465, '_wp_attached_file', '2018/01/cropped-TCOF_Logo_White_Green-1.png'),
 (1777, 465, '_wp_attachment_context', 'custom-logo'),
 (1778, 465, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:244;s:6:"height";i:78;s:4:"file";s:43:"2018/01/cropped-TCOF_Logo_White_Green-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:42:"cropped-TCOF_Logo_White_Green-1-150x78.png";s:5:"width";i:150;s:6:"height";i:78;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:{}}}'),
 (1791, 471, '_wp_attached_file', '2018/01/Bromeliad2.jpg'),
 (1792, 471, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:22:"2018/01/Bromeliad2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"Bromeliad2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:22:"Bromeliad2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:22:"Bromeliad2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1793, 464, '_thumbnail_id', '471'),
 (1796, 464, 'bento_sidebar_layout', 'right-sidebar'),
 (1797, 464, 'bento_title_position', 'left'),
 (1798, 464, 'bento_subtitle_color', '#999999'),
 (1799, 464, 'bento_header_image_height', '10%'),
 (1800, 464, 'bento_header_overlay_opacity', '0'),
 (1801, 464, 'bento_tile_size', '1x1'),
 (1802, 464, 'bento_tile_overlay_color', '#666666'),
 (1803, 464, 'bento_tile_overlay_opacity', '0'),
 (1804, 464, 'bento_tile_text_color', '#ffffff'),
 (1805, 464, 'bento_tile_text_size', '16'),
 (1806, 473, '_edit_lock', '1517362626:1'),
 (1807, 473, '_edit_last', '1'),
 (1814, 477, '_wp_attached_file', '2018/01/StStephensChurch2.jpg'),
 (1815, 477, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:29:"2018/01/StStephensChurch2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"StStephensChurch2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"StStephensChurch2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"StStephensChurch2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1816, 473, '_thumbnail_id', '477'),
 (1819, 473, 'bento_sidebar_layout', 'right-sidebar'),
 (1820, 473, 'bento_title_position', 'left'),
 (1821, 473, 'bento_subtitle_color', '#999999'),
 (1822, 473, 'bento_header_image_height', '10%'),
 (1823, 473, 'bento_header_overlay_opacity', '0'),
 (1824, 473, 'bento_tile_size', '1x1'),
 (1825, 473, 'bento_tile_overlay_color', '#666666'),
 (1826, 473, 'bento_tile_overlay_opacity', '0'),
 (1827, 473, 'bento_tile_text_color', '#ffffff'),
 (1828, 473, 'bento_tile_text_size', '16'),
 (1838, 483, '_edit_lock', '1521087731:3'),
 (1839, 483, '_edit_last', '1'),
 (1844, 489, '_wp_attached_file', '2018/01/HangingBaskets2.jpg'),
 (1845, 489, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:27:"2018/01/HangingBaskets2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"HangingBaskets2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:27:"HangingBaskets2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:27:"HangingBaskets2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1846, 483, '_thumbnail_id', '489'),
 (1849, 483, 'bento_sidebar_layout', 'right-sidebar'),
 (1850, 483, 'bento_title_position', 'left'),
 (1851, 483, 'bento_subtitle_color', '#999999'),
 (1852, 483, 'bento_header_image_height', '10%'),
 (1853, 483, 'bento_header_overlay_opacity', '0'),
 (1854, 483, 'bento_tile_size', '1x1'),
 (1855, 483, 'bento_tile_overlay_color', '#666666'),
 (1856, 483, 'bento_tile_overlay_opacity', '0'),
 (1857, 483, 'bento_tile_text_color', '#ffffff'),
 (1858, 483, 'bento_tile_text_size', '16'),
 (1859, 491, '_edit_lock', '1517374136:1'),
 (1860, 491, '_edit_last', '1'),
 (1861, 492, '_wp_attached_file', '2018/01/PoloBallHat2.jpg'),
 (1862, 492, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:24:"2018/01/PoloBallHat2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"PoloBallHat2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"PoloBallHat2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"PoloBallHat2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1863, 491, '_thumbnail_id', '492'),
 (1866, 491, 'bento_sidebar_layout', 'right-sidebar'),
 (1867, 491, 'bento_title_position', 'left'),
 (1868, 491, 'bento_subtitle_color', '#999999'),
 (1869, 491, 'bento_header_image_height', '10%'),
 (1870, 491, 'bento_header_overlay_opacity', '0'),
 (1871, 491, 'bento_tile_size', '1x1'),
 (1872, 491, 'bento_tile_overlay_color', '#666666'),
 (1873, 491, 'bento_tile_overlay_opacity', '0'),
 (1874, 491, 'bento_tile_text_color', '#ffffff'),
 (1875, 491, 'bento_tile_text_size', '16'),
 (1876, 494, '_edit_lock', '1517374725:1'),
 (1877, 494, '_edit_last', '1'),
 (1878, 495, '_wp_attached_file', '2018/01/CarnivalofTrains2.jpg'),
 (1879, 495, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:29:"2018/01/CarnivalofTrains2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"CarnivalofTrains2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"CarnivalofTrains2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"CarnivalofTrains2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1880, 494, '_thumbnail_id', '495'),
 (1883, 494, 'bento_sidebar_layout', 'right-sidebar'),
 (1884, 494, 'bento_title_position', 'left'),
 (1885, 494, 'bento_subtitle_color', '#999999'),
 (1886, 494, 'bento_header_image_height', '10%'),
 (1887, 494, 'bento_header_overlay_opacity', '0'),
 (1888, 494, 'bento_tile_size', '1x1'),
 (1889, 494, 'bento_tile_overlay_color', '#666666'),
 (1890, 494, 'bento_tile_overlay_opacity', '0'),
 (1891, 494, 'bento_tile_text_color', '#ffffff'),
 (1892, 494, 'bento_tile_text_size', '16'),
 (1897, 499, '_edit_lock', '1517377971:1'),
 (1898, 499, '_edit_last', '1'),
 (1899, 500, '_wp_attached_file', '2018/01/Teapot2.jpg'),
 (1900, 500, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:19:"2018/01/Teapot2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"Teapot2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"Teapot2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:19:"Teapot2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1901, 499, '_thumbnail_id', '500'),
 (1904, 499, 'bento_sidebar_layout', 'right-sidebar'),
 (1905, 499, 'bento_title_position', 'left'),
 (1906, 499, 'bento_subtitle_color', '#999999'),
 (1907, 499, 'bento_header_image_height', '10%'),
 (1908, 499, 'bento_header_overlay_opacity', '0'),
 (1909, 499, 'bento_tile_size', '1x1'),
 (1910, 499, 'bento_tile_overlay_color', '#666666'),
 (1911, 499, 'bento_tile_overlay_opacity', '0'),
 (1912, 499, 'bento_tile_text_color', '#ffffff'),
 (1913, 499, 'bento_tile_text_size', '16'),
 (1914, 502, '_edit_lock', '1517378311:1'),
 (1915, 502, '_edit_last', '1'),
 (1916, 503, '_wp_attached_file', '2018/01/GehamCraft2.jpg'),
 (1917, 503, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:23:"2018/01/GehamCraft2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"GehamCraft2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"GehamCraft2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:23:"GehamCraft2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1918, 502, '_thumbnail_id', '503'),
 (1921, 502, 'bento_sidebar_layout', 'right-sidebar'),
 (1922, 502, 'bento_title_position', 'left'),
 (1923, 502, 'bento_subtitle_color', '#999999'),
 (1924, 502, 'bento_header_image_height', '10%'),
 (1925, 502, 'bento_header_overlay_opacity', '0'),
 (1926, 502, 'bento_tile_size', '1x1'),
 (1927, 502, 'bento_tile_overlay_color', '#666666'),
 (1928, 502, 'bento_tile_overlay_opacity', '0'),
 (1929, 502, 'bento_tile_text_color', '#ffffff'),
 (1930, 502, 'bento_tile_text_size', '16'),
 (1933, 507, '_edit_lock', '1517440087:1'),
 (1934, 507, '_edit_last', '1'),
 (1935, 508, '_wp_attached_file', '2018/01/PottersPicnic2.jpg'),
 (1936, 508, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:26:"2018/01/PottersPicnic2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"PottersPicnic2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"PottersPicnic2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:26:"PottersPicnic2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1937, 507, '_thumbnail_id', '508'),
 (1940, 507, 'bento_sidebar_layout', 'right-sidebar'),
 (1941, 507, 'bento_title_position', 'left'),
 (1942, 507, 'bento_subtitle_color', '#999999'),
 (1943, 507, 'bento_header_image_height', '10%'),
 (1944, 507, 'bento_header_overlay_opacity', '0'),
 (1945, 507, 'bento_tile_size', '1x1'),
 (1946, 507, 'bento_tile_overlay_color', '#666666'),
 (1947, 507, 'bento_tile_overlay_opacity', '0'),
 (1948, 507, 'bento_tile_text_color', '#ffffff'),
 (1949, 507, 'bento_tile_text_size', '16'),
 (1950, 510, '_edit_lock', '1517441306:1'),
 (1951, 510, '_edit_last', '1'),
 (1954, 510, 'bento_sidebar_layout', 'right-sidebar'),
 (1955, 510, 'bento_title_position', 'left'),
 (1956, 510, 'bento_subtitle_color', '#999999'),
 (1957, 510, 'bento_header_image_height', '10%'),
 (1958, 510, 'bento_header_overlay_opacity', '0'),
 (1959, 510, 'bento_tile_size', '1x1'),
 (1960, 510, 'bento_tile_overlay_color', '#666666'),
 (1961, 510, 'bento_tile_overlay_opacity', '0'),
 (1962, 510, 'bento_tile_text_color', '#ffffff'),
 (1963, 510, 'bento_tile_text_size', '16'),
 (1966, 512, '_edit_lock', '1517441694:1'),
 (1967, 512, '_edit_last', '1'),
 (1970, 512, 'bento_sidebar_layout', 'right-sidebar'),
 (1971, 512, 'bento_title_position', 'left'),
 (1972, 512, 'bento_subtitle_color', '#999999'),
 (1973, 512, 'bento_header_image_height', '10%'),
 (1974, 512, 'bento_header_overlay_opacity', '0'),
 (1975, 512, 'bento_tile_size', '1x1'),
 (1976, 512, 'bento_tile_overlay_color', '#666666'),
 (1977, 512, 'bento_tile_overlay_opacity', '0'),
 (1978, 512, 'bento_tile_text_color', '#ffffff'),
 (1979, 512, 'bento_tile_text_size', '16'),
 (1982, 515, '_edit_lock', '1517442154:1'),
 (1983, 515, '_edit_last', '1'),
 (1984, 516, '_wp_attached_file', '2018/02/StonestreetsCoachesTour2.jpg'),
 (1985, 516, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:36:"2018/02/StonestreetsCoachesTour2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"StonestreetsCoachesTour2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:36:"StonestreetsCoachesTour2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:36:"StonestreetsCoachesTour2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (1986, 515, '_thumbnail_id', '516'),
 (1989, 515, 'bento_sidebar_layout', 'right-sidebar'),
 (1990, 515, 'bento_title_position', 'left'),
 (1991, 515, 'bento_subtitle_color', '#999999'),
 (1992, 515, 'bento_header_image_height', '10%'),
 (1993, 515, 'bento_header_overlay_opacity', '0'),
 (1994, 515, 'bento_tile_size', '1x1'),
 (1995, 515, 'bento_tile_overlay_color', '#666666'),
 (1996, 515, 'bento_tile_overlay_opacity', '0'),
 (1997, 515, 'bento_tile_text_color', '#ffffff'),
 (1998, 515, 'bento_tile_text_size', '16'),
 (1999, 518, '_edit_lock', '1517442511:1'),
 (2000, 518, '_edit_last', '1'),
 (2001, 519, '_wp_attached_file', '2018/02/EmpireTheatre-WalkingTour2.jpg'),
 (2002, 519, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:427;s:4:"file";s:38:"2018/02/EmpireTheatre-WalkingTour2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:38:"EmpireTheatre-WalkingTour2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:38:"EmpireTheatre-WalkingTour2-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:38:"EmpireTheatre-WalkingTour2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:13:"Darren Wright";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:{}}}'),
 (2003, 518, '_thumbnail_id', '519'),
 (2006, 518, 'bento_sidebar_layout', 'right-sidebar'),
 (2007, 518, 'bento_title_position', 'left'),
 (2008, 518, 'bento_subtitle_color', '#999999'),
 (2009, 518, 'bento_header_image_height', '10%'),
 (2010, 518, 'bento_header_overlay_opacity', '0'),
 (2011, 518, 'bento_tile_size', '1x1'),
 (2012, 518, 'bento_tile_overlay_color', '#666666'),
 (2013, 518, 'bento_tile_overlay_opacity', '0'),
 (2014, 518, 'bento_tile_text_color', '#ffffff'),
 (2015, 518, 'bento_tile_text_size', '16'),
 (2016, 521, '_edit_lock', '1517442909:1'),
 (2017, 521, '_edit_last', '1'),
 (2018, 522, '_wp_attached_file', '2018/02/RailwayPlatform2.jpg'),
 (2019, 522, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:427;s:4:"file";s:28:"2018/02/RailwayPlatform2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"RailwayPlatform2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:28:"RailwayPlatform2-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:28:"RailwayPlatform2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (2020, 521, '_thumbnail_id', '522'),
 (2023, 521, 'bento_sidebar_layout', 'right-sidebar'),
 (2024, 521, 'bento_title_position', 'left'),
 (2025, 521, 'bento_subtitle_color', '#999999'),
 (2026, 521, 'bento_header_image_height', '10%'),
 (2027, 521, 'bento_header_overlay_opacity', '0'),
 (2028, 521, 'bento_tile_size', '1x1'),
 (2029, 521, 'bento_tile_overlay_color', '#666666'),
 (2030, 521, 'bento_tile_overlay_opacity', '0'),
 (2031, 521, 'bento_tile_text_color', '#ffffff'),
 (2032, 521, 'bento_tile_text_size', '16'),
 (2033, 524, '_edit_lock', '1521010772:2'),
 (2034, 524, '_edit_last', '1'),
 (2035, 525, '_wp_attached_file', '2018/02/WalkingTourDarkerSide2.jpg'),
 (2036, 525, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:34:"2018/02/WalkingTourDarkerSide2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"WalkingTourDarkerSide2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:34:"WalkingTourDarkerSide2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:34:"WalkingTourDarkerSide2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (2037, 524, '_thumbnail_id', '525'),
 (2040, 524, 'bento_sidebar_layout', 'right-sidebar'),
 (2041, 524, 'bento_title_position', 'left'),
 (2042, 524, 'bento_subtitle_color', '#999999'),
 (2043, 524, 'bento_header_image_height', '10%'),
 (2044, 524, 'bento_header_overlay_opacity', '0'),
 (2045, 524, 'bento_tile_size', '1x1'),
 (2046, 524, 'bento_tile_overlay_color', '#666666'),
 (2047, 524, 'bento_tile_overlay_opacity', '0'),
 (2048, 524, 'bento_tile_text_color', '#ffffff'),
 (2049, 524, 'bento_tile_text_size', '16'),
 (2050, 527, '_edit_lock', '1517445067:1'),
 (2051, 527, '_edit_last', '1'),
 (2052, 528, '_wp_attached_file', '2018/02/WalkingTourHiddenLaneways2.jpg'),
 (2053, 528, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:38:"2018/02/WalkingTourHiddenLaneways2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:38:"WalkingTourHiddenLaneways2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:38:"WalkingTourHiddenLaneways2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:38:"WalkingTourHiddenLaneways2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (2054, 527, '_thumbnail_id', '528'),
 (2057, 527, 'bento_sidebar_layout', 'right-sidebar'),
 (2058, 527, 'bento_title_position', 'left'),
 (2059, 527, 'bento_subtitle_color', '#999999'),
 (2060, 527, 'bento_header_image_height', '10%'),
 (2061, 527, 'bento_header_overlay_opacity', '0'),
 (2062, 527, 'bento_tile_size', '1x1'),
 (2063, 527, 'bento_tile_overlay_color', '#666666'),
 (2064, 527, 'bento_tile_overlay_opacity', '0'),
 (2065, 527, 'bento_tile_text_color', '#ffffff'),
 (2066, 527, 'bento_tile_text_size', '16'),
 (2069, 531, '_edit_lock', '1517445602:1'),
 (2070, 531, '_edit_last', '1'),
 (2073, 531, 'bento_sidebar_layout', 'right-sidebar'),
 (2074, 531, 'bento_title_position', 'left'),
 (2075, 531, 'bento_subtitle_color', '#999999'),
 (2076, 531, 'bento_header_image_height', '10%'),
 (2077, 531, 'bento_header_overlay_opacity', '0'),
 (2078, 531, 'bento_tile_size', '1x1'),
 (2079, 531, 'bento_tile_overlay_color', '#666666'),
 (2080, 531, 'bento_tile_overlay_opacity', '0'),
 (2081, 531, 'bento_tile_text_color', '#ffffff'),
 (2082, 531, 'bento_tile_text_size', '16'),
 (2083, 533, '_wp_attached_file', '2017/09/PaintersPallete2.jpg'),
 (2084, 533, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:28:"2017/09/PaintersPallete2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"PaintersPallete2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:28:"PaintersPallete2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:28:"PaintersPallete2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (2085, 531, '_thumbnail_id', '533'),
 (2088, 534, '_edit_lock', '1521080321:2'),
 (2089, 534, '_edit_last', '1'),
 (2090, 535, '_wp_attached_file', '2018/02/FirstCoatFestival2.jpg'),
 (2091, 535, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:30:"2018/02/FirstCoatFestival2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"FirstCoatFestival2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:30:"FirstCoatFestival2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:30:"FirstCoatFestival2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (2092, 534, '_thumbnail_id', '535'),
 (2095, 534, 'bento_sidebar_layout', 'right-sidebar'),
 (2096, 534, 'bento_title_position', 'left'),
 (2097, 534, 'bento_subtitle_color', '#999999'),
 (2098, 534, 'bento_header_image_height', '10%'),
 (2099, 534, 'bento_header_overlay_opacity', '0'),
 (2100, 534, 'bento_tile_size', '1x1'),
 (2101, 534, 'bento_tile_overlay_color', '#666666'),
 (2102, 534, 'bento_tile_overlay_opacity', '0'),
 (2103, 534, 'bento_tile_text_color', '#ffffff'),
 (2104, 534, 'bento_tile_text_size', '16'),
 (2105, 537, '_edit_lock', '1517447963:1'),
 (2106, 537, '_edit_last', '1'),
 (2107, 538, '_wp_attached_file', '2018/02/MonicaUsher2.jpg'),
 (2108, 538, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:690;s:6:"height";i:451;s:4:"file";s:24:"2018/02/MonicaUsher2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"MonicaUsher2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"MonicaUsher2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"MonicaUsher2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (2109, 537, '_thumbnail_id', '538'),
 (2112, 537, 'bento_sidebar_layout', 'right-sidebar'),
 (2113, 537, 'bento_title_position', 'left'),
 (2114, 537, 'bento_subtitle_color', '#999999'),
 (2115, 537, 'bento_header_image_height', '10%'),
 (2116, 537, 'bento_header_overlay_opacity', '0'),
 (2117, 537, 'bento_tile_size', '1x1'),
 (2118, 537, 'bento_tile_overlay_color', '#666666'),
 (2119, 537, 'bento_tile_overlay_opacity', '0'),
 (2120, 537, 'bento_tile_text_color', '#ffffff'),
 (2121, 537, 'bento_tile_text_size', '16'),
 (2122, 540, '_edit_lock', '1521004278:2'),
 (2123, 540, '_edit_last', '1'),
 (2124, 541, '_wp_attached_file', '2018/02/QuiltStitchesTrail2.jpg'),
 (2125, 541, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:458;s:4:"file";s:31:"2018/02/QuiltStitchesTrail2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"QuiltStitchesTrail2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"QuiltStitchesTrail2-300x196.jpg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"QuiltStitchesTrail2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
 (2126, 540, '_thumbnail_id', '541'),
 (2129, 540, 'bento_sidebar_layout', 'right-sidebar'),
 (2130, 540, 'bento_title_position', 'left'),
 (2131, 540, 'bento_subtitle_color', '#999999'),
 (2132, 540, 'bento_header_image_height', '10%'),
 (2133, 540, 'bento_header_overlay_opacity', '0'),
 (2134, 540, 'bento_tile_size', '1x1'),
 (2135, 540, 'bento_tile_overlay_color', '#666666'),
 (2136, 540, 'bento_tile_overlay_opacity', '0'),
 (2137, 540, 'bento_tile_text_color', '#ffffff'),
 (2138, 540, 'bento_tile_text_size', '16'),
 (2144, 548, '_edit_lock', '1520828154:2'),
 (2145, 548, '_wp_trash_meta_status', 'publish'),
 (2146, 548, '_wp_trash_meta_time', '1520828173'),
 (2147, 549, '_wp_trash_meta_status', 'publish'),
 (2148, 549, '_wp_trash_meta_time', '1520828577'),
 (2149, 550, '_wp_trash_meta_status', 'publish'),
 (2150, 550, '_wp_trash_meta_time', '1520828634'),
 (2151, 551, '_wp_trash_meta_status', 'publish'),
 (2152, 551, '_wp_trash_meta_time', '1520829097'),
 (2153, 552, '_edit_lock', '1520902574:2'),
 (2154, 552, '_wp_trash_meta_status', 'publish'),
 (2155, 552, '_wp_trash_meta_time', '1520902613'),
 (2156, 553, '_edit_lock', '1521000091:2'),
 (2157, 553, '_edit_last', '2'),
 (2158, 553, '_wp_page_template', 'default'),
 (2159, 554, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2161, 555, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2162, 553, 'bento_sidebar_layout', 'left-sidebar'),
 (2163, 553, 'bento_title_position', 'left'),
 (2164, 553, 'bento_subtitle_color', '#999999'),
 (2165, 553, 'bento_header_image_height', '10%'),
 (2166, 553, 'bento_header_overlay_opacity', '0'),
 (2167, 553, 'bento_headermap_height', '400'),
 (2168, 553, 'bento_headermap_zoom', '15'),
 (2169, 553, 'bento_page_grid_mode', 'rows'),
 (2170, 553, 'bento_page_columns', '1'),
 (2172, 553, 'bento_page_number_items', '10'),
 (2173, 553, 'bento_page_item_margins', '10'),
 (2174, 556, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2185, 553, 'bento_page_content_types', 'a:1:{i:0;s:7:"project";}'),
 (2186, 558, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2187, 559, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2188, 559, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2189, 559, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2190, 560, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2191, 561, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:8:"featured";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2192, 561, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2193, 561, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2194, 562, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:8:"featured";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2195, 563, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:8:"featured";s:11:"panels_info";a:7:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2196, 564, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2197, 564, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:8:"featured";s:11:"panels_info";a:7:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2198, 564, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:8:"featured";s:11:"panels_info";a:7:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2199, 565, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:4:"type";s:0:"";s:11:"panels_info";a:6:{s:5:"class";s:37:"SiteOrigin_Panels_Widgets_PostContent";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"dff238b0-6f07-4acb-a41c-3979d91a984e";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2200, 566, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2201, 558, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2202, 558, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2203, 567, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:23:"[catlist tags="family"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2204, 567, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2205, 567, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2206, 568, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:23:"[catlist tags="family"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2207, 569, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:23:"[catlist tags="family"]";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2208, 553, 'post_grid_post_settings', 'a:10:{s:9:"post_skin";s:4:"flat";s:19:"custom_thumb_source";s:119:"http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/post-grid/assets/frontend/css/images/placeholder.png";s:17:"font_awesome_icon";s:0:"";s:23:"font_awesome_icon_color";s:7:"#737272";s:22:"font_awesome_icon_size";s:4:"50px";s:17:"custom_youtube_id";s:0:"";s:15:"custom_vimeo_id";s:0:"";s:21:"custom_dailymotion_id";s:0:"";s:14:"custom_mp3_url";s:0:"";s:20:"custom_soundcloud_id";s:0:"";}'),
 (2209, 570, '_edit_lock', '1520905556:2'),
 (2210, 571, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:28:"[display-posts tag="family"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2211, 571, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:23:"[catlist tags="family"]";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2212, 571, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:23:"[catlist tags="family"]";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2213, 572, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:28:"[display-posts tag="family"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2214, 573, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:114:"[display-posts tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2215, 573, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:28:"[display-posts tag="family"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2216, 573, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:28:"[display-posts tag="family"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2217, 574, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:114:"[display-posts tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2218, 575, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:138:"[display-posts category_display="true" tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2219, 575, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:114:"[display-posts tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2220, 575, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:114:"[display-posts tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2221, 576, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:138:"[display-posts category_display="true" tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2222, 577, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:161:"[display-posts category_display="true" tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3" image_size="thumbnail"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2223, 577, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:138:"[display-posts category_display="true" tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2224, 577, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:138:"[display-posts category_display="true" tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2225, 578, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:161:"[display-posts category_display="true" tag="family" wrapper="div" wrapper_class="items-container grid-container grid-rows grid-columns-3" image_size="thumbnail"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"55a74fb9-87ff-4d39-9831-045aab4ab44d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2226, 579, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2227, 580, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:3:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2228, 581, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2229, 558, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2230, 558, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2231, 582, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:159:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912568035";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2232, 582, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2233, 582, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2234, 583, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:159:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912568035";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2235, 584, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:159:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912568035";s:4:"more";b:0;s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2236, 585, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:4:"more";b:1;s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912745356";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2237, 586, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:4:"more";b:1;s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912745356";s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2238, 587, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912979151";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2239, 587, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:4:"more";b:1;s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912745356";s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2240, 587, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:4:"more";b:1;s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912745356";s:11:"panels_info";a:7:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2241, 588, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912979151";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2242, 589, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520913006990";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:3:{s:5:"class";s:4:"grid";s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2243, 589, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912979151";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2244, 589, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-page.php";s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520912979151";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2245, 590, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:205:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":{"value":0,"unit":"days"},"to":{"value":0,"unit":"days"}}&orderby=date&order=DESC";s:12:"_sow_form_id";s:13:"5aa748852c51d";s:19:"_sow_form_timestamp";s:13:"1520913006990";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9d7b2f75-d221-4a1e-a1f6-c985f3541f6d";s:5:"style";a:3:{s:5:"class";s:4:"grid";s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2246, 591, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2247, 591, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2248, 591, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2249, 591, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2250, 591, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2251, 592, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:159:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:31:"9386346125aa8898971d34165935526";s:19:"_sow_form_timestamp";s:13:"1520994745332";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"e00c5193-7662-40a2-9def-1e4304854374";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2252, 592, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2253, 592, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2254, 593, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:7:{s:5:"title";s:0:"";s:8:"template";s:16:"content-grid.php";s:5:"posts";s:159:"post_type=post&tax_query=post_tag:family&date_type=specific&date_query={"after":"","before":""}&date_query_relative={"from":[],"to":[]}&orderby=date&order=DESC";s:12:"_sow_form_id";s:31:"9386346125aa8898971d34165935526";s:19:"_sow_form_timestamp";s:13:"1520994745332";s:11:"panels_info";a:6:{s:5:"class";s:34:"SiteOrigin_Panels_Widgets_PostLoop";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"e00c5193-7662-40a2-9def-1e4304854374";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}s:4:"more";b:0;}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2255, 594, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2256, 595, '_edit_lock', '1520996476:2'),
 (2257, 553, 'wpupg_custom_link_behaviour', 'default'),
 (2258, 596, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2259, 597, 'wpupg_temp_cache', ''),
 (2260, 597, 'wpupg_posts', 'a:3:{s:3:"all";a:68:{i:0;i:63;i:1;i:291;i:2;i:172;i:3;i:155;i:4;i:152;i:5;i:537;i:6;i:170;i:7;i:327;i:8;i:149;i:9;i:491;i:10;i:359;i:11;i:524;i:12;i:324;i:13;i:254;i:14;i:246;i:15;i:527;i:16;i:82;i:17;i:55;i:18;i:521;i:19;i:275;i:20;i:518;i:21;i:285;i:22;i:473;i:23;i:330;i:24;i:507;i:25;i:272;i:26;i:531;i:27;i:510;i:28;i:333;i:29;i:502;i:30;i:260;i:31;i:499;i:32;i:494;i:33;i:318;i:34;i:308;i:35;i:280;i:36;i:464;i:37;i:366;i:38;i:515;i:39;i:512;i:40;i:178;i:41;i:336;i:42;i:321;i:43;i:263;i:44;i:146;i:45;i:251;i:46;i:311;i:47;i:297;i:48;i:294;i:49;i:288;i:50;i:283;i:51;i:269;i:52;i:483;i:53;i:540;i:54;i:377;i:55;i:374;i:56;i:534;i:57;i:346;i:58;i:343;i:59;i:59;i:60;i:340;i:61;i:77;i:62;i:314;i:63;i:351;i:64;i:68;i:65;i:66;i:66;i:175;i:67;i:75;}s:10:"taxonomies";a:0:{}s:5:"terms";a:68:{i:63;a:0:{}i:291;a:0:{}i:172;a:0:{}i:155;a:0:{}i:152;a:0:{}i:537;a:0:{}i:170;a:0:{}i:327;a:0:{}i:149;a:0:{}i:491;a:0:{}i:359;a:0:{}i:524;a:0:{}i:324;a:0:{}i:254;a:0:{}i:246;a:0:{}i:527;a:0:{}i:82;a:0:{}i:55;a:0:{}i:521;a:0:{}i:275;a:0:{}i:518;a:0:{}i:285;a:0:{}i:473;a:0:{}i:330;a:0:{}i:507;a:0:{}i:272;a:0:{}i:531;a:0:{}i:510;a:0:{}i:333;a:0:{}i:502;a:0:{}i:260;a:0:{}i:499;a:0:{}i:494;a:0:{}i:318;a:0:{}i:308;a:0:{}i:280;a:0:{}i:464;a:0:{}i:366;a:0:{}i:515;a:0:{}i:512;a:0:{}i:178;a:0:{}i:336;a:0:{}i:321;a:0:{}i:263;a:0:{}i:146;a:0:{}i:251;a:0:{}i:311;a:0:{}i:297;a:0:{}i:294;a:0:{}i:288;a:0:{}i:283;a:0:{}i:269;a:0:{}i:483;a:0:{}i:540;a:0:{}i:377;a:0:{}i:374;a:0:{}i:534;a:0:{}i:346;a:0:{}i:343;a:0:{}i:59;a:0:{}i:340;a:0:{}i:77;a:0:{}i:314;a:0:{}i:351;a:0:{}i:68;a:0:{}i:66;a:0:{}i:175;a:0:{}i:75;a:0:{}}}'),
 (2261, 597, 'wpupg_filter', ''),
 (2262, 597, '_edit_lock', '1520996898:2'),
 (2263, 598, '_edit_lock', '1521010060:2'),
 (2264, 598, '_edit_last', '2'),
 (2265, 598, 'post__in', ''),
 (2266, 598, 'post__not_in', ''),
 (2267, 598, 'limit', ''),
 (2268, 598, 'layout', 'layout1'),
 (2269, 598, 'isotope_filter', 'post_tag'),
 (2270, 598, 'tgp_layout2_image_column', '4'),
 (2271, 598, 'column', '3'),
 (2272, 598, 'pagination', '1'),
 (2273, 598, 'posts_per_page', '20'),
 (2274, 598, 'featured_image', NULL),
 (2275, 598, 'featured_image_size', 'large'),
 (2276, 598, 'media_source', 'feature_image'),
 (2277, 598, 'tgp_excerpt_type', 'character'),
 (2278, 598, 'excerpt_limit', '120'),
 (2279, 598, 'tgp_excerpt_more_text', '...'),
 (2280, 598, 'tpg_overlay', NULL),
 (2281, 598, 'primary_color', '#4d3f72'),
 (2282, 598, 'button_bg_color', '#4d3f72'),
 (2283, 598, 'button_hover_bg_color', ''),
 (2284, 598, 'button_active_bg_color', ''),
 (2285, 598, 'button_text_color', ''),
 (2286, 598, 'title_color', ''),
 (2287, 598, 'tpg_post_type', 'post'),
 (2299, 598, 'term_operator_post_tag', 'IN'),
 (2300, 599, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:39:"[the-post-grid id="598" title="Family"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"94f30006-e191-4ab2-89a9-36a5df495a41";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2301, 599, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2302, 599, 'panels_data', 'a:3:{s:7:"widgets";a:0:{}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2303, 600, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:39:"[the-post-grid id="598" title="Family"]";s:11:"panels_info";a:6:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"94f30006-e191-4ab2-89a9-36a5df495a41";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2355, 601, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"title";s:0:"";s:7:"content";s:39:"[the-post-grid id="598" title="Family"]";s:11:"panels_info";a:7:{s:5:"class";s:21:"WP_Widget_Custom_HTML";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"94f30006-e191-4ab2-89a9-36a5df495a41";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:4:{s:5:"cells";i:1;s:5:"style";a:2:{s:18:"background_display";s:4:"tile";s:14:"cell_alignment";s:10:"flex-start";}s:5:"ratio";i:1;s:15:"ratio_direction";s:5:"right";}}s:10:"grid_cells";a:1:{i:0;a:4:{s:4:"grid";i:0;s:5:"index";i:0;s:6:"weight";i:1;s:5:"style";a:0:{}}}}'),
 (2369, 598, 'tgp_filter_taxonomy', 'category'),
 (2370, 598, 'tgp_filter_taxonomy_hierarchical', ''),
 (2371, 598, 'tgp_filter_type', 'dropdown'),
 (2372, 598, 'tgp_default_filter', ''),
 (2373, 598, 'tpg_hide_all_button', ''),
 (2374, 598, 'tpg_post_count', ''),
 (2375, 598, 'isotope_default_filter', ''),
 (2376, 598, 'isotope_filter_dropdown', ''),
 (2377, 598, 'isotope_filter_show_all', ''),
 (2378, 598, 'isotope_filter_count', ''),
 (2379, 598, 'isotope_filter_url', ''),
 (2380, 598, 'isotope_search_filter', ''),
 (2382, 598, 'tpg_carousel_speed', '250'),
 (2383, 598, 'tpg_carousel_autoplay_timeout', '5000'),
 (2384, 598, 'tpg_tab_column', '2'),
 (2385, 598, 'tpg_mobile_column', '1'),
 (2386, 598, 'ignore_sticky_posts', '1'),
 (2387, 598, 'posts_loading_type', 'load_more'),
 (2388, 598, 'feature_image', ''),
 (2392, 598, 'tpg_image_type', 'normal'),
 (2393, 598, 'tgp_read_more_text', ''),
 (2394, 598, 'margin_option', 'default'),
 (2395, 598, 'grid_style', 'even'),
 (2396, 598, 'link_to_detail_page', 'yes'),
 (2397, 598, 'detail_page_link_type', 'new_page'),
 (2398, 598, 'popup_type', 'single'),
 (2399, 598, 'default_preview_image', ''),
 (2400, 598, 'parent_class', 'grid-post-pro'),
 (2401, 598, 'button_border_color', ''),
 (2402, 598, 'button_text_bg_color', ''),
 (2403, 598, 'button_hover_text_color', ''),
 (2404, 598, 'tgp_gutter', '5'),
 (2405, 598, 'overlay_color', ''),
 (2406, 598, 'overlay_opacity', '1'),
 (2407, 598, 'overlay_padding', ''),
 (2413, 598, 'title_size', ''),
 (2414, 598, 'title_weight', ''),
 (2415, 598, 'title_alignment', ''),
 (2416, 598, 'title_hover_color', ''),
 (2417, 598, 'title_hover_size', ''),
 (2418, 598, 'title_hover_weight', ''),
 (2419, 598, 'title_hover_alignment', ''),
 (2420, 598, 'excerpt_color', ''),
 (2421, 598, 'excerpt_size', ''),
 (2422, 598, 'excerpt_weight', ''),
 (2423, 598, 'excerpt_alignment', ''),
 (2424, 598, 'meta_data_color', ''),
 (2425, 598, 'meta_data_size', ''),
 (2426, 598, 'meta_data_weight', ''),
 (2427, 598, 'meta_data_alignment', ''),
 (2527, 603, '_edit_lock', '1521008795:2'),
 (2528, 603, '_edit_last', '2'),
 (2529, 603, 'post__in', ''),
 (2530, 603, 'post__not_in', ''),
 (2531, 603, 'limit', ''),
 (2532, 603, 'layout', 'layout1'),
 (2533, 603, 'tgp_filter_taxonomy', 'category'),
 (2534, 603, 'tgp_filter_taxonomy_hierarchical', ''),
 (2535, 603, 'tgp_filter_type', 'dropdown'),
 (2536, 603, 'tgp_default_filter', ''),
 (2537, 603, 'tpg_hide_all_button', ''),
 (2538, 603, 'tpg_post_count', ''),
 (2539, 603, 'isotope_filter', 'category'),
 (2540, 603, 'isotope_default_filter', ''),
 (2541, 603, 'isotope_filter_dropdown', ''),
 (2542, 603, 'isotope_filter_show_all', ''),
 (2543, 603, 'isotope_filter_count', ''),
 (2544, 603, 'isotope_filter_url', ''),
 (2545, 603, 'isotope_search_filter', ''),
 (2547, 603, 'tpg_carousel_speed', '250'),
 (2548, 603, 'tpg_carousel_autoplay_timeout', '5000'),
 (2549, 603, 'tgp_layout2_image_column', '4'),
 (2550, 603, 'column', '3'),
 (2551, 603, 'tpg_tab_column', '2'),
 (2552, 603, 'tpg_mobile_column', '1'),
 (2553, 603, 'ignore_sticky_posts', '1'),
 (2554, 603, 'pagination', '1'),
 (2555, 603, 'posts_per_page', '20'),
 (2556, 603, 'posts_loading_type', 'load_more'),
 (2557, 603, 'feature_image', ''),
 (2558, 603, 'featured_image_size', 'large'),
 (2562, 603, 'media_source', 'feature_image'),
 (2563, 603, 'tpg_image_type', 'normal'),
 (2564, 603, 'tgp_excerpt_type', 'character'),
 (2565, 603, 'excerpt_limit', '120'),
 (2566, 603, 'tgp_excerpt_more_text', ''),
 (2567, 603, 'tgp_read_more_text', ''),
 (2568, 603, 'margin_option', 'default'),
 (2569, 603, 'grid_style', 'even'),
 (2570, 603, 'link_to_detail_page', 'yes'),
 (2571, 603, 'detail_page_link_type', 'new_page'),
 (2572, 603, 'popup_type', 'single'),
 (2573, 603, 'default_preview_image', ''),
 (2574, 603, 'parent_class', 'grid-post-pro'),
 (2575, 603, 'primary_color', '#4d3f72'),
 (2576, 603, 'button_bg_color', '#4d3f72'),
 (2577, 603, 'button_hover_bg_color', ''),
 (2578, 603, 'button_active_bg_color', ''),
 (2579, 603, 'button_border_color', ''),
 (2580, 603, 'button_text_bg_color', ''),
 (2581, 603, 'button_hover_text_color', ''),
 (2582, 603, 'tgp_gutter', '5'),
 (2583, 603, 'overlay_color', ''),
 (2584, 603, 'overlay_opacity', '1'),
 (2585, 603, 'overlay_padding', ''),
 (2586, 603, 'tpg_post_type', 'post'),
 (2592, 603, 'term_operator_post_tag', 'IN'),
 (2593, 603, 'title_color', ''),
 (2594, 603, 'title_size', ''),
 (2595, 603, 'title_weight', ''),
 (2596, 603, 'title_alignment', ''),
 (2597, 603, 'title_hover_color', ''),
 (2598, 603, 'title_hover_size', ''),
 (2599, 603, 'title_hover_weight', ''),
 (2600, 603, 'title_hover_alignment', ''),
 (2601, 603, 'excerpt_color', ''),
 (2602, 603, 'excerpt_size', ''),
 (2603, 603, 'excerpt_weight', ''),
 (2604, 603, 'excerpt_alignment', ''),
 (2605, 603, 'meta_data_color', ''),
 (2606, 603, 'meta_data_size', ''),
 (2607, 603, 'meta_data_weight', ''),
 (2608, 603, 'meta_data_alignment', ''),
 (2609, 604, '_edit_lock', '1521003370:2'),
 (2610, 604, '_edit_last', '2'),
 (2611, 604, '_wp_page_template', 'default'),
 (2612, 604, 'bento_sidebar_layout', 'left-sidebar'),
 (2613, 604, 'bento_title_position', 'left'),
 (2614, 604, 'bento_subtitle_color', '#999999'),
 (2615, 604, 'bento_header_image_height', '10%'),
 (2616, 604, 'bento_header_overlay_opacity', '0'),
 (2617, 604, 'bento_headermap_height', '400'),
 (2618, 604, 'bento_headermap_zoom', '15'),
 (2619, 604, 'bento_page_grid_mode', 'columns'),
 (2620, 604, 'bento_page_columns', '3'),
 (2621, 604, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (2622, 604, 'bento_page_number_items', '10'),
 (2623, 604, 'bento_page_item_margins', '10'),
 (2624, 609, '_edit_lock', '1521003346:2'),
 (2625, 609, '_edit_last', '2'),
 (2626, 609, '_wp_page_template', 'default'),
 (2627, 609, 'bento_sidebar_layout', 'left-sidebar'),
 (2628, 609, 'bento_title_position', 'left'),
 (2629, 609, 'bento_subtitle_color', '#999999'),
 (2630, 609, 'bento_header_image_height', '10%'),
 (2631, 609, 'bento_header_overlay_opacity', '0'),
 (2632, 609, 'bento_headermap_height', '400'),
 (2633, 609, 'bento_headermap_zoom', '15'),
 (2634, 609, 'bento_page_grid_mode', 'columns'),
 (2635, 609, 'bento_page_columns', '3'),
 (2636, 609, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (2637, 609, 'bento_page_number_items', '10'),
 (2638, 609, 'bento_page_item_margins', '10'),
 (2639, 611, '_edit_lock', '1521003321:2'),
 (2640, 611, '_edit_last', '2'),
 (2641, 611, '_wp_page_template', 'default'),
 (2642, 611, 'bento_sidebar_layout', 'left-sidebar'),
 (2643, 611, 'bento_title_position', 'left'),
 (2644, 611, 'bento_subtitle_color', '#999999'),
 (2645, 611, 'bento_header_image_height', '10%'),
 (2646, 611, 'bento_header_overlay_opacity', '0'),
 (2647, 611, 'bento_headermap_height', '400'),
 (2648, 611, 'bento_headermap_zoom', '15'),
 (2649, 611, 'bento_page_grid_mode', 'columns'),
 (2650, 611, 'bento_page_columns', '3'),
 (2651, 611, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (2652, 611, 'bento_page_number_items', '10'),
 (2653, 611, 'bento_page_item_margins', '10'),
 (2654, 613, '_edit_lock', '1521003290:2'),
 (2655, 613, '_edit_last', '2'),
 (2656, 613, '_wp_page_template', 'default'),
 (2657, 613, 'bento_sidebar_layout', 'left-sidebar'),
 (2658, 613, 'bento_title_position', 'left'),
 (2659, 613, 'bento_subtitle_color', '#999999'),
 (2660, 613, 'bento_header_image_height', '10%'),
 (2661, 613, 'bento_header_overlay_opacity', '0'),
 (2662, 613, 'bento_headermap_height', '400'),
 (2663, 613, 'bento_headermap_zoom', '15'),
 (2664, 613, 'bento_page_grid_mode', 'columns'),
 (2665, 613, 'bento_page_columns', '3'),
 (2666, 613, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (2667, 613, 'bento_page_number_items', '10'),
 (2668, 613, 'bento_page_item_margins', '10'),
 (2669, 615, '_edit_lock', '1521003268:2'),
 (2670, 615, '_edit_last', '2'),
 (2671, 615, '_wp_page_template', 'default'),
 (2672, 615, 'bento_sidebar_layout', 'left-sidebar'),
 (2673, 615, 'bento_title_position', 'left'),
 (2674, 615, 'bento_subtitle_color', '#999999'),
 (2675, 615, 'bento_header_image_height', '10%'),
 (2676, 615, 'bento_header_overlay_opacity', '0'),
 (2677, 615, 'bento_headermap_height', '400'),
 (2678, 615, 'bento_headermap_zoom', '15'),
 (2679, 615, 'bento_page_grid_mode', 'columns'),
 (2680, 615, 'bento_page_columns', '3'),
 (2681, 615, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (2682, 615, 'bento_page_number_items', '10'),
 (2683, 615, 'bento_page_item_margins', '10'),
 (2684, 617, '_edit_lock', '1521008918:2'),
 (2685, 617, '_edit_last', '2'),
 (2686, 617, 'post__in', ''),
 (2687, 617, 'post__not_in', ''),
 (2688, 617, 'limit', ''),
 (2689, 617, 'layout', 'layout1'),
 (2690, 617, 'tgp_filter_taxonomy', 'category'),
 (2691, 617, 'tgp_filter_taxonomy_hierarchical', ''),
 (2692, 617, 'tgp_filter_type', 'dropdown'),
 (2693, 617, 'tgp_default_filter', ''),
 (2694, 617, 'tpg_hide_all_button', ''),
 (2695, 617, 'tpg_post_count', ''),
 (2696, 617, 'isotope_filter', 'category'),
 (2697, 617, 'isotope_default_filter', ''),
 (2698, 617, 'isotope_filter_dropdown', ''),
 (2699, 617, 'isotope_filter_show_all', ''),
 (2700, 617, 'isotope_filter_count', ''),
 (2701, 617, 'isotope_filter_url', ''),
 (2702, 617, 'isotope_search_filter', ''),
 (2704, 617, 'tpg_carousel_speed', '250'),
 (2705, 617, 'tpg_carousel_autoplay_timeout', '5000'),
 (2706, 617, 'tgp_layout2_image_column', '4'),
 (2707, 617, 'column', '3'),
 (2708, 617, 'tpg_tab_column', '2'),
 (2709, 617, 'tpg_mobile_column', '1'),
 (2710, 617, 'ignore_sticky_posts', '1'),
 (2711, 617, 'pagination', '1'),
 (2712, 617, 'posts_per_page', '20'),
 (2713, 617, 'posts_loading_type', 'load_more'),
 (2714, 617, 'feature_image', ''),
 (2715, 617, 'featured_image_size', 'large'),
 (2719, 617, 'media_source', 'feature_image'),
 (2720, 617, 'tpg_image_type', 'normal'),
 (2721, 617, 'tgp_excerpt_type', 'character'),
 (2722, 617, 'excerpt_limit', '127'),
 (2723, 617, 'tgp_excerpt_more_text', ''),
 (2724, 617, 'tgp_read_more_text', ''),
 (2725, 617, 'margin_option', 'default'),
 (2726, 617, 'grid_style', 'even'),
 (2727, 617, 'link_to_detail_page', 'yes'),
 (2728, 617, 'detail_page_link_type', 'new_page'),
 (2729, 617, 'popup_type', 'single'),
 (2730, 617, 'default_preview_image', ''),
 (2731, 617, 'parent_class', 'grid-post-pro'),
 (2732, 617, 'primary_color', '#4d3f72'),
 (2733, 617, 'button_bg_color', '#4d3f72'),
 (2734, 617, 'button_hover_bg_color', ''),
 (2735, 617, 'button_active_bg_color', ''),
 (2736, 617, 'button_border_color', ''),
 (2737, 617, 'button_text_bg_color', ''),
 (2738, 617, 'button_hover_text_color', ''),
 (2739, 617, 'tgp_gutter', '5'),
 (2740, 617, 'overlay_color', ''),
 (2741, 617, 'overlay_opacity', '1'),
 (2742, 617, 'overlay_padding', ''),
 (2743, 617, 'tpg_post_type', 'post'),
 (2749, 617, 'term_operator_post_tag', 'IN'),
 (2750, 617, 'title_color', ''),
 (2751, 617, 'title_size', ''),
 (2752, 617, 'title_weight', ''),
 (2753, 617, 'title_alignment', ''),
 (2754, 617, 'title_hover_color', ''),
 (2755, 617, 'title_hover_size', ''),
 (2756, 617, 'title_hover_weight', ''),
 (2757, 617, 'title_hover_alignment', ''),
 (2758, 617, 'excerpt_color', ''),
 (2759, 617, 'excerpt_size', ''),
 (2760, 617, 'excerpt_weight', ''),
 (2761, 617, 'excerpt_alignment', ''),
 (2762, 617, 'meta_data_color', ''),
 (2763, 617, 'meta_data_size', ''),
 (2764, 617, 'meta_data_weight', ''),
 (2765, 617, 'meta_data_alignment', ''),
 (2766, 618, '_edit_lock', '1521008844:2'),
 (2767, 618, '_edit_last', '2'),
 (2768, 618, 'post__in', ''),
 (2769, 618, 'post__not_in', ''),
 (2770, 618, 'limit', ''),
 (2771, 618, 'layout', 'layout1'),
 (2772, 618, 'tgp_filter_taxonomy', 'category'),
 (2773, 618, 'tgp_filter_taxonomy_hierarchical', ''),
 (2774, 618, 'tgp_filter_type', 'dropdown'),
 (2775, 618, 'tgp_default_filter', ''),
 (2776, 618, 'tpg_hide_all_button', ''),
 (2777, 618, 'tpg_post_count', ''),
 (2778, 618, 'isotope_filter', 'category'),
 (2779, 618, 'isotope_default_filter', ''),
 (2780, 618, 'isotope_filter_dropdown', ''),
 (2781, 618, 'isotope_filter_show_all', ''),
 (2782, 618, 'isotope_filter_count', ''),
 (2783, 618, 'isotope_filter_url', ''),
 (2784, 618, 'isotope_search_filter', ''),
 (2786, 618, 'tpg_carousel_speed', '250'),
 (2787, 618, 'tpg_carousel_autoplay_timeout', '5000'),
 (2788, 618, 'tgp_layout2_image_column', '4'),
 (2789, 618, 'column', '3'),
 (2790, 618, 'tpg_tab_column', '2'),
 (2791, 618, 'tpg_mobile_column', '1'),
 (2792, 618, 'ignore_sticky_posts', '1'),
 (2793, 618, 'pagination', '1'),
 (2794, 618, 'posts_per_page', '20'),
 (2795, 618, 'posts_loading_type', 'load_more'),
 (2796, 618, 'feature_image', ''),
 (2797, 618, 'featured_image_size', 'large'),
 (2801, 618, 'media_source', 'feature_image'),
 (2802, 618, 'tpg_image_type', 'normal'),
 (2803, 618, 'tgp_excerpt_type', 'character'),
 (2804, 618, 'excerpt_limit', '120'),
 (2805, 618, 'tgp_excerpt_more_text', ''),
 (2806, 618, 'tgp_read_more_text', ''),
 (2807, 618, 'margin_option', 'default'),
 (2808, 618, 'grid_style', 'even'),
 (2809, 618, 'link_to_detail_page', 'yes'),
 (2810, 618, 'detail_page_link_type', 'new_page'),
 (2811, 618, 'popup_type', 'single'),
 (2812, 618, 'default_preview_image', ''),
 (2813, 618, 'parent_class', 'grid-post-pro'),
 (2814, 618, 'primary_color', '#4d3f72'),
 (2815, 618, 'button_bg_color', '#4d3f72'),
 (2816, 618, 'button_hover_bg_color', ''),
 (2817, 618, 'button_active_bg_color', ''),
 (2818, 618, 'button_border_color', ''),
 (2819, 618, 'button_text_bg_color', ''),
 (2820, 618, 'button_hover_text_color', ''),
 (2821, 618, 'tgp_gutter', '5'),
 (2822, 618, 'overlay_color', ''),
 (2823, 618, 'overlay_opacity', '1'),
 (2824, 618, 'overlay_padding', ''),
 (2825, 618, 'tpg_post_type', 'post'),
 (2831, 618, 'term_operator_post_tag', 'IN'),
 (2832, 618, 'title_color', ''),
 (2833, 618, 'title_size', ''),
 (2834, 618, 'title_weight', ''),
 (2835, 618, 'title_alignment', ''),
 (2836, 618, 'title_hover_color', ''),
 (2837, 618, 'title_hover_size', ''),
 (2838, 618, 'title_hover_weight', ''),
 (2839, 618, 'title_hover_alignment', ''),
 (2840, 618, 'excerpt_color', ''),
 (2841, 618, 'excerpt_size', ''),
 (2842, 618, 'excerpt_weight', ''),
 (2843, 618, 'excerpt_alignment', ''),
 (2844, 618, 'meta_data_color', ''),
 (2845, 618, 'meta_data_size', ''),
 (2846, 618, 'meta_data_weight', ''),
 (2847, 618, 'meta_data_alignment', ''),
 (2848, 619, '_edit_lock', '1521008968:2'),
 (2849, 619, '_edit_last', '2'),
 (2850, 619, 'post__in', ''),
 (2851, 619, 'post__not_in', ''),
 (2852, 619, 'limit', ''),
 (2853, 619, 'layout', 'layout1'),
 (2854, 619, 'tgp_filter_taxonomy', 'category'),
 (2855, 619, 'tgp_filter_taxonomy_hierarchical', ''),
 (2856, 619, 'tgp_filter_type', 'dropdown'),
 (2857, 619, 'tgp_default_filter', ''),
 (2858, 619, 'tpg_hide_all_button', ''),
 (2859, 619, 'tpg_post_count', ''),
 (2860, 619, 'isotope_filter', 'category'),
 (2861, 619, 'isotope_default_filter', ''),
 (2862, 619, 'isotope_filter_dropdown', ''),
 (2863, 619, 'isotope_filter_show_all', ''),
 (2864, 619, 'isotope_filter_count', ''),
 (2865, 619, 'isotope_filter_url', ''),
 (2866, 619, 'isotope_search_filter', ''),
 (2868, 619, 'tpg_carousel_speed', '250'),
 (2869, 619, 'tpg_carousel_autoplay_timeout', '5000'),
 (2870, 619, 'tgp_layout2_image_column', '4'),
 (2871, 619, 'column', '3'),
 (2872, 619, 'tpg_tab_column', '2'),
 (2873, 619, 'tpg_mobile_column', '1'),
 (2874, 619, 'ignore_sticky_posts', '1'),
 (2875, 619, 'pagination', '1'),
 (2876, 619, 'posts_per_page', '20'),
 (2877, 619, 'posts_loading_type', 'load_more'),
 (2878, 619, 'feature_image', ''),
 (2879, 619, 'featured_image_size', 'large'),
 (2883, 619, 'media_source', 'feature_image'),
 (2884, 619, 'tpg_image_type', 'normal'),
 (2885, 619, 'tgp_excerpt_type', 'character'),
 (2886, 619, 'excerpt_limit', '120'),
 (2887, 619, 'tgp_excerpt_more_text', ''),
 (2888, 619, 'tgp_read_more_text', ''),
 (2889, 619, 'margin_option', 'default'),
 (2890, 619, 'grid_style', 'even'),
 (2891, 619, 'link_to_detail_page', 'yes'),
 (2892, 619, 'detail_page_link_type', 'new_page'),
 (2893, 619, 'popup_type', 'single'),
 (2894, 619, 'default_preview_image', ''),
 (2895, 619, 'parent_class', 'grid-post-pro'),
 (2896, 619, 'primary_color', '#4d3f72'),
 (2897, 619, 'button_bg_color', '#4d3f72'),
 (2898, 619, 'button_hover_bg_color', ''),
 (2899, 619, 'button_active_bg_color', ''),
 (2900, 619, 'button_border_color', ''),
 (2901, 619, 'button_text_bg_color', ''),
 (2902, 619, 'button_hover_text_color', ''),
 (2903, 619, 'tgp_gutter', '5'),
 (2904, 619, 'overlay_color', ''),
 (2905, 619, 'overlay_opacity', '1'),
 (2906, 619, 'overlay_padding', ''),
 (2907, 619, 'tpg_post_type', 'post'),
 (2913, 619, 'term_operator_post_tag', 'IN'),
 (2914, 619, 'title_color', ''),
 (2915, 619, 'title_size', ''),
 (2916, 619, 'title_weight', ''),
 (2917, 619, 'title_alignment', ''),
 (2918, 619, 'title_hover_color', ''),
 (2919, 619, 'title_hover_size', ''),
 (2920, 619, 'title_hover_weight', ''),
 (2921, 619, 'title_hover_alignment', ''),
 (2922, 619, 'excerpt_color', ''),
 (2923, 619, 'excerpt_size', ''),
 (2924, 619, 'excerpt_weight', ''),
 (2925, 619, 'excerpt_alignment', ''),
 (2926, 619, 'meta_data_color', ''),
 (2927, 619, 'meta_data_size', ''),
 (2928, 619, 'meta_data_weight', ''),
 (2929, 619, 'meta_data_alignment', ''),
 (2930, 620, '_edit_lock', '1521008811:2'),
 (2931, 620, '_edit_last', '2'),
 (2932, 620, 'post__in', ''),
 (2933, 620, 'post__not_in', ''),
 (2934, 620, 'limit', ''),
 (2935, 620, 'layout', 'layout1'),
 (2936, 620, 'tgp_filter_taxonomy', 'category'),
 (2937, 620, 'tgp_filter_taxonomy_hierarchical', ''),
 (2938, 620, 'tgp_filter_type', 'dropdown'),
 (2939, 620, 'tgp_default_filter', ''),
 (2940, 620, 'tpg_hide_all_button', ''),
 (2941, 620, 'tpg_post_count', ''),
 (2942, 620, 'isotope_filter', 'category'),
 (2943, 620, 'isotope_default_filter', ''),
 (2944, 620, 'isotope_filter_dropdown', ''),
 (2945, 620, 'isotope_filter_show_all', ''),
 (2946, 620, 'isotope_filter_count', ''),
 (2947, 620, 'isotope_filter_url', ''),
 (2948, 620, 'isotope_search_filter', ''),
 (2950, 620, 'tpg_carousel_speed', '250'),
 (2951, 620, 'tpg_carousel_autoplay_timeout', '5000'),
 (2952, 620, 'tgp_layout2_image_column', '4'),
 (2953, 620, 'column', '3'),
 (2954, 620, 'tpg_tab_column', '2'),
 (2955, 620, 'tpg_mobile_column', '1'),
 (2956, 620, 'ignore_sticky_posts', '1'),
 (2957, 620, 'pagination', '1'),
 (2958, 620, 'posts_per_page', '20'),
 (2959, 620, 'posts_loading_type', 'load_more'),
 (2960, 620, 'feature_image', ''),
 (2961, 620, 'featured_image_size', 'large'),
 (2965, 620, 'media_source', 'feature_image'),
 (2966, 620, 'tpg_image_type', 'normal'),
 (2967, 620, 'tgp_excerpt_type', 'character'),
 (2968, 620, 'excerpt_limit', '120'),
 (2969, 620, 'tgp_excerpt_more_text', ''),
 (2970, 620, 'tgp_read_more_text', ''),
 (2971, 620, 'margin_option', 'default'),
 (2972, 620, 'grid_style', 'even'),
 (2973, 620, 'link_to_detail_page', 'yes'),
 (2974, 620, 'detail_page_link_type', 'new_page'),
 (2975, 620, 'popup_type', 'single'),
 (2976, 620, 'default_preview_image', ''),
 (2977, 620, 'parent_class', 'grid-post-pro'),
 (2978, 620, 'primary_color', '#4d3f72'),
 (2979, 620, 'button_bg_color', '#4d3f72'),
 (2980, 620, 'button_hover_bg_color', ''),
 (2981, 620, 'button_active_bg_color', ''),
 (2982, 620, 'button_border_color', ''),
 (2983, 620, 'button_text_bg_color', ''),
 (2984, 620, 'button_hover_text_color', ''),
 (2985, 620, 'tgp_gutter', '5'),
 (2986, 620, 'overlay_color', ''),
 (2987, 620, 'overlay_opacity', '1'),
 (2988, 620, 'overlay_padding', ''),
 (2989, 620, 'tpg_post_type', 'post'),
 (2995, 620, 'term_operator_post_tag', 'IN'),
 (2996, 620, 'title_color', ''),
 (2997, 620, 'title_size', ''),
 (2998, 620, 'title_weight', ''),
 (2999, 620, 'title_alignment', ''),
 (3000, 620, 'title_hover_color', ''),
 (3001, 620, 'title_hover_size', ''),
 (3002, 620, 'title_hover_weight', ''),
 (3003, 620, 'title_hover_alignment', ''),
 (3004, 620, 'excerpt_color', ''),
 (3005, 620, 'excerpt_size', ''),
 (3006, 620, 'excerpt_weight', ''),
 (3007, 620, 'excerpt_alignment', ''),
 (3008, 620, 'meta_data_color', ''),
 (3009, 620, 'meta_data_size', ''),
 (3010, 620, 'meta_data_weight', ''),
 (3011, 620, 'meta_data_alignment', ''),
 (3012, 621, '_edit_lock', '1521073926:2'),
 (3013, 621, '_edit_last', '2'),
 (3014, 621, 'post__in', ''),
 (3015, 621, 'post__not_in', ''),
 (3016, 621, 'limit', ''),
 (3017, 621, 'layout', 'layout1'),
 (3018, 621, 'tgp_filter_taxonomy', 'category'),
 (3019, 621, 'tgp_filter_taxonomy_hierarchical', ''),
 (3020, 621, 'tgp_filter_type', 'dropdown'),
 (3021, 621, 'tgp_default_filter', ''),
 (3022, 621, 'tpg_hide_all_button', ''),
 (3023, 621, 'tpg_post_count', ''),
 (3024, 621, 'isotope_filter', 'category'),
 (3025, 621, 'isotope_default_filter', ''),
 (3026, 621, 'isotope_filter_dropdown', ''),
 (3027, 621, 'isotope_filter_show_all', ''),
 (3028, 621, 'isotope_filter_count', ''),
 (3029, 621, 'isotope_filter_url', ''),
 (3030, 621, 'isotope_search_filter', ''),
 (3032, 621, 'tpg_carousel_speed', '250'),
 (3033, 621, 'tpg_carousel_autoplay_timeout', '5000'),
 (3034, 621, 'tgp_layout2_image_column', '4'),
 (3035, 621, 'column', '3'),
 (3036, 621, 'tpg_tab_column', '2'),
 (3037, 621, 'tpg_mobile_column', '1'),
 (3038, 621, 'ignore_sticky_posts', '1'),
 (3039, 621, 'pagination', '1'),
 (3040, 621, 'posts_per_page', '20'),
 (3041, 621, 'posts_loading_type', 'load_more'),
 (3042, 621, 'feature_image', ''),
 (3043, 621, 'featured_image_size', 'large'),
 (3047, 621, 'media_source', 'feature_image'),
 (3048, 621, 'tpg_image_type', 'normal'),
 (3049, 621, 'tgp_excerpt_type', 'character'),
 (3050, 621, 'excerpt_limit', '120'),
 (3051, 621, 'tgp_excerpt_more_text', ''),
 (3052, 621, 'tgp_read_more_text', ''),
 (3053, 621, 'margin_option', 'default'),
 (3054, 621, 'grid_style', 'even'),
 (3055, 621, 'link_to_detail_page', 'yes'),
 (3056, 621, 'detail_page_link_type', 'new_page'),
 (3057, 621, 'popup_type', 'single'),
 (3058, 621, 'default_preview_image', ''),
 (3059, 621, 'parent_class', 'grid-post-pro'),
 (3060, 621, 'primary_color', '#4d3f72'),
 (3061, 621, 'button_bg_color', '#4d3f72'),
 (3062, 621, 'button_hover_bg_color', ''),
 (3063, 621, 'button_active_bg_color', ''),
 (3064, 621, 'button_border_color', ''),
 (3065, 621, 'button_text_bg_color', ''),
 (3066, 621, 'button_hover_text_color', ''),
 (3067, 621, 'tgp_gutter', '5'),
 (3068, 621, 'overlay_color', ''),
 (3069, 621, 'overlay_opacity', '1'),
 (3070, 621, 'overlay_padding', ''),
 (3071, 621, 'tpg_post_type', 'post'),
 (3090, 621, 'term_operator_post_tag', 'IN'),
 (3091, 621, 'title_color', ''),
 (3092, 621, 'title_size', ''),
 (3093, 621, 'title_weight', ''),
 (3094, 621, 'title_alignment', ''),
 (3095, 621, 'title_hover_color', ''),
 (3096, 621, 'title_hover_size', ''),
 (3097, 621, 'title_hover_weight', ''),
 (3098, 621, 'title_hover_alignment', ''),
 (3099, 621, 'excerpt_color', ''),
 (3100, 621, 'excerpt_size', ''),
 (3101, 621, 'excerpt_weight', ''),
 (3102, 621, 'excerpt_alignment', ''),
 (3103, 621, 'meta_data_color', ''),
 (3104, 621, 'meta_data_size', ''),
 (3105, 621, 'meta_data_weight', ''),
 (3106, 621, 'meta_data_alignment', ''),
 (3107, 626, '_edit_lock', '1521003447:2'),
 (3108, 626, '_edit_last', '2'),
 (3109, 626, '_wp_page_template', 'default'),
 (3110, 626, 'bento_sidebar_layout', 'left-sidebar'),
 (3111, 626, 'bento_title_position', 'left'),
 (3112, 626, 'bento_subtitle_color', '#999999'),
 (3113, 626, 'bento_header_image_height', '10%'),
 (3114, 626, 'bento_header_overlay_opacity', '0'),
 (3115, 626, 'bento_headermap_height', '400'),
 (3116, 626, 'bento_headermap_zoom', '15'),
 (3117, 626, 'bento_page_grid_mode', 'columns'),
 (3118, 626, 'bento_page_columns', '3'),
 (3119, 626, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (3120, 626, 'bento_page_number_items', '10'),
 (3121, 626, 'bento_page_item_margins', '10'),
 (3122, 628, '_edit_lock', '1521001352:2'),
 (3123, 629, '_edit_lock', '1521001368:2'),
 (3196, 427, 'bento_page_background_color', '#36bbaf'),
 (3197, 626, 'bento_page_background_color', '#36bbaf'),
 (3198, 615, 'bento_page_background_color', '#36bbaf'),
 (3199, 613, 'bento_page_background_color', '#36bbaf'),
 (3200, 611, 'bento_page_background_color', '#36bbaf'),
 (3201, 609, 'bento_page_background_color', '#36bbaf'),
 (3202, 604, 'bento_page_background_color', '#36bbaf'),
 (3203, 121, 'bento_page_background_color', '#36bbaf'),
 (3882, 598, 'tgp_filter', '_search'),
 (3883, 598, 'carousel_property', 'pagination'),
 (3884, 598, 'custom_image_size', ''),
 (3885, 598, 'custom_image_size', ''),
 (3886, 598, 'custom_image_size', 'soft'),
 (3887, 598, 'post_filter', 'tpg_taxonomy'),
 (3888, 598, 'item_fields', 'title'),
 (3889, 598, 'item_fields', 'excerpt'),
 (3890, 598, 'tpg_taxonomy', 'post_tag'),
 (3891, 598, 'term_post_tag', '17'),
 (3915, 603, 'tgp_filter', '_search'),
 (3916, 603, 'carousel_property', 'pagination'),
 (3917, 603, 'custom_image_size', ''),
 (3918, 603, 'custom_image_size', ''),
 (3919, 603, 'custom_image_size', 'soft'),
 (3920, 603, 'post_filter', 'tpg_taxonomy'),
 (3921, 603, 'item_fields', 'title'),
 (3922, 603, 'item_fields', 'excerpt'),
 (3923, 603, 'tpg_taxonomy', 'post_tag'),
 (3924, 603, 'term_post_tag', '20'),
 (3925, 620, 'tgp_filter', '_search'),
 (3926, 620, 'carousel_property', 'pagination'),
 (3927, 620, 'custom_image_size', ''),
 (3928, 620, 'custom_image_size', ''),
 (3929, 620, 'custom_image_size', 'soft'),
 (3930, 620, 'post_filter', 'tpg_taxonomy'),
 (3931, 620, 'item_fields', 'title'),
 (3932, 620, 'item_fields', 'excerpt'),
 (3933, 620, 'tpg_taxonomy', 'post_tag'),
 (3934, 620, 'term_post_tag', '19'),
 (3935, 619, 'tgp_filter', '_search'),
 (3936, 619, 'carousel_property', 'pagination'),
 (3937, 619, 'custom_image_size', ''),
 (3938, 619, 'custom_image_size', ''),
 (3939, 619, 'custom_image_size', 'soft'),
 (3940, 619, 'post_filter', 'tpg_taxonomy'),
 (3941, 619, 'item_fields', 'title'),
 (3942, 619, 'item_fields', 'excerpt'),
 (3943, 619, 'tpg_taxonomy', 'post_tag'),
 (3944, 619, 'term_post_tag', '18'),
 (3945, 618, 'tgp_filter', '_search'),
 (3946, 618, 'carousel_property', 'pagination'),
 (3947, 618, 'custom_image_size', ''),
 (3948, 618, 'custom_image_size', ''),
 (3949, 618, 'custom_image_size', 'soft'),
 (3950, 618, 'post_filter', 'tpg_taxonomy'),
 (3951, 618, 'item_fields', 'title'),
 (3952, 618, 'item_fields', 'excerpt'),
 (3953, 618, 'tpg_taxonomy', 'post_tag'),
 (3954, 618, 'term_post_tag', '16'),
 (3955, 617, 'tgp_filter', '_search'),
 (3956, 617, 'carousel_property', 'pagination'),
 (3957, 617, 'custom_image_size', ''),
 (3958, 617, 'custom_image_size', ''),
 (3959, 617, 'custom_image_size', 'soft'),
 (3960, 617, 'post_filter', 'tpg_taxonomy'),
 (3961, 617, 'item_fields', 'title'),
 (3962, 617, 'item_fields', 'excerpt'),
 (3963, 617, 'tpg_taxonomy', 'post_tag'),
 (3964, 617, 'term_post_tag', '15'),
 (3967, 632, '_menu_item_type', 'taxonomy'),
 (3968, 632, '_menu_item_menu_item_parent', '0'),
 (3969, 632, '_menu_item_object_id', '4'),
 (3970, 632, '_menu_item_object', 'category'),
 (3971, 632, '_menu_item_target', ''),
 (3972, 632, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (3973, 632, '_menu_item_xfn', ''),
 (3974, 632, '_menu_item_url', ''),
 (3975, 632, '_menu_item_orphaned', '1521009547'),
 (3976, 633, '_menu_item_type', 'custom'),
 (3977, 633, '_menu_item_menu_item_parent', '0'),
 (3978, 633, '_menu_item_object_id', '633'),
 (3979, 633, '_menu_item_object', 'custom'),
 (3980, 633, '_menu_item_target', ''),
 (3981, 633, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (3982, 633, '_menu_item_xfn', ''),
 (3983, 633, '_menu_item_url', '#'),
 (3985, 634, '_menu_item_type', 'custom'),
 (3986, 634, '_menu_item_menu_item_parent', '0'),
 (3987, 634, '_menu_item_object_id', '634'),
 (3988, 634, '_menu_item_object', 'custom'),
 (3989, 634, '_menu_item_target', ''),
 (3990, 634, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (3991, 634, '_menu_item_xfn', ''),
 (3992, 634, '_menu_item_url', '#'),
 (3994, 635, '_edit_lock', '1521084356:2'),
 (3995, 635, '_edit_last', '2'),
 (3996, 636, '_wp_attached_file', '2018/03/towwoomba-region.jpg'),
 (3997, 636, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1250;s:6:"height";i:280;s:4:"file";s:28:"2018/03/towwoomba-region.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"towwoomba-region-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:27:"towwoomba-region-300x67.jpg";s:5:"width";i:300;s:6:"height";i:67;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"towwoomba-region-768x172.jpg";s:5:"width";i:768;s:6:"height";i:172;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"towwoomba-region-1024x229.jpg";s:5:"width";i:1024;s:6:"height";i:229;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:28:"towwoomba-region-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
 (3998, 635, '_thumbnail_id', '636'),
 (4001, 635, 'bento_sidebar_layout', 'right-sidebar'),
 (4002, 635, 'bento_title_position', 'left'),
 (4003, 635, 'bento_subtitle_color', '#999999'),
 (4004, 635, 'bento_header_image_height', '10%'),
 (4005, 635, 'bento_header_overlay_opacity', '0'),
 (4006, 635, 'bento_tile_size', '1x1'),
 (4007, 635, 'bento_tile_overlay_color', '#666666'),
 (4008, 635, 'bento_tile_overlay_opacity', '0'),
 (4009, 635, 'bento_tile_text_color', '#ffffff'),
 (4010, 635, 'bento_tile_text_size', '16'),
 (4011, 638, '_wp_trash_meta_status', 'publish'),
 (4012, 638, '_wp_trash_meta_time', '1521070437'),
 (4013, 639, '_edit_lock', '1521070679:2'),
 (4014, 639, '_wp_trash_meta_status', 'publish'),
 (4015, 639, '_wp_trash_meta_time', '1521070684'),
 (4016, 640, '_wp_trash_meta_status', 'publish'),
 (4017, 640, '_wp_trash_meta_time', '1521070705'),
 (4087, 621, 'tgp_filter', '_search'),
 (4088, 621, 'carousel_property', 'pagination'),
 (4089, 621, 'custom_image_size', ''),
 (4090, 621, 'custom_image_size', ''),
 (4091, 621, 'custom_image_size', 'soft'),
 (4092, 621, 'post_filter', 'tpg_taxonomy'),
 (4093, 621, 'item_fields', 'title'),
 (4094, 621, 'item_fields', 'excerpt'),
 (4095, 621, 'tpg_taxonomy', 'post_tag'),
 (4096, 621, 'term_post_tag', '39'),
 (4097, 621, 'term_post_tag', '38'),
 (4098, 621, 'term_post_tag', '37'),
 (4099, 621, 'term_post_tag', '36'),
 (4100, 621, 'term_post_tag', '35'),
 (4101, 621, 'term_post_tag', '34'),
 (4102, 621, 'term_post_tag', '22'),
 (4103, 621, 'term_post_tag', '21'),
 (4104, 621, 'term_post_tag', '20'),
 (4105, 621, 'term_post_tag', '19'),
 (4106, 621, 'term_post_tag', '18'),
 (4107, 621, 'term_post_tag', '17'),
 (4108, 621, 'term_post_tag', '16'),
 (4109, 621, 'term_post_tag', '15'),
 (4110, 641, '_wp_trash_meta_status', 'publish'),
 (4111, 641, '_wp_trash_meta_time', '1521074284'),
 (4112, 642, '_wp_trash_meta_status', 'publish'),
 (4113, 642, '_wp_trash_meta_time', '1521074341'),
 (4114, 643, '_wp_trash_meta_status', 'publish'),
 (4115, 643, '_wp_trash_meta_time', '1521074399'),
 (4118, 645, '_wp_attached_file', '2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.png'),
 (4119, 645, '_wp_attachment_context', 'custom-logo'),
 (4120, 645, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:578;s:6:"height";i:106;s:4:"file";s:63:"2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:63:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-150x106.png";s:5:"width";i:150;s:6:"height";i:106;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:62:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-300x55.png";s:5:"width";i:300;s:6:"height";i:55;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:63:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-272x106.png";s:5:"width";i:272;s:6:"height";i:106;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:{}}}'),
 (4121, 646, '_wp_trash_meta_status', 'publish'),
 (4122, 646, '_wp_trash_meta_time', '1521077049'),
 (4123, 647, '_wp_attached_file', '2018/01/cropped-TCOF_Logo_White_Green-1-1.png'),
 (4124, 647, '_wp_attachment_context', 'custom-logo'),
 (4125, 647, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:244;s:6:"height";i:78;s:4:"file";s:45:"2018/01/cropped-TCOF_Logo_White_Green-1-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"cropped-TCOF_Logo_White_Green-1-1-150x78.png";s:5:"width";i:150;s:6:"height";i:78;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:{}}}'),
 (4126, 648, '_wp_trash_meta_status', 'publish'),
 (4127, 648, '_wp_trash_meta_time', '1521077533'),
 (4133, 651, '_edit_lock', '1521077953:2'),
 (4134, 652, '_wp_attached_file', '2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-2.png'),
 (4135, 652, '_wp_attachment_context', 'custom-logo'),
 (4136, 652, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:578;s:6:"height";i:106;s:4:"file";s:65:"2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-2.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:65:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-2-150x106.png";s:5:"width";i:150;s:6:"height";i:106;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:64:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-2-300x55.png";s:5:"width";i:300;s:6:"height";i:55;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:65:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-2-272x106.png";s:5:"width";i:272;s:6:"height";i:106;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:{}}}'),
 (4137, 651, '_wp_trash_meta_status', 'publish'),
 (4138, 651, '_wp_trash_meta_time', '1521077963'),
 (4139, 653, '_wp_attached_file', '2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-1-1.png'),
 (4140, 653, '_wp_attachment_context', 'custom-logo'),
 (4141, 653, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:578;s:6:"height";i:106;s:4:"file";s:67:"2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-1-1.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:67:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-1-1-150x106.png";s:5:"width";i:150;s:6:"height";i:106;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:66:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-1-1-300x55.png";s:5:"width";i:300;s:6:"height";i:55;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:67:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-1-1-272x106.png";s:5:"width";i:272;s:6:"height";i:106;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:{}}}'),
 (4142, 654, '_wp_trash_meta_status', 'publish'),
 (4143, 654, '_wp_trash_meta_time', '1521078021'),
 (4146, 656, '_wp_attached_file', '2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.jpg'),
 (4147, 656, '_wp_attachment_context', 'custom-logo'),
 (4148, 656, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:578;s:6:"height";i:106;s:4:"file";s:63:"2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:63:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-150x106.jpg";s:5:"width";i:150;s:6:"height";i:106;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:62:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-300x55.jpg";s:5:"width";i:300;s:6:"height";i:55;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:63:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-272x106.jpg";s:5:"width";i:272;s:6:"height";i:106;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:{}}}'),
 (4149, 657, '_edit_lock', '1521078286:2'),
 (4155, 657, '_wp_trash_meta_status', 'publish'),
 (4156, 657, '_wp_trash_meta_time', '1521078290'),
 (4162, 662, '_wp_trash_meta_status', 'publish'),
 (4163, 662, '_wp_trash_meta_time', '1521078352'),
 (4164, 663, '_wp_attached_file', '2018/03/2018-03-15-10_11_49-The-Carnival-of-Flowers-png8.png'),
 (4165, 663, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:578;s:6:"height";i:106;s:4:"file";s:60:"2018/03/2018-03-15-10_11_49-The-Carnival-of-Flowers-png8.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:60:"2018-03-15-10_11_49-The-Carnival-of-Flowers-png8-150x106.png";s:5:"width";i:150;s:6:"height";i:106;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:59:"2018-03-15-10_11_49-The-Carnival-of-Flowers-png8-300x55.png";s:5:"width";i:300;s:6:"height";i:55;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:60:"2018-03-15-10_11_49-The-Carnival-of-Flowers-png8-272x106.png";s:5:"width";i:272;s:6:"height";i:106;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:{}}}'),
 (4166, 664, '_wp_attached_file', '2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-png8.png'),
 (4167, 664, '_wp_attachment_context', 'custom-logo'),
 (4168, 664, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:578;s:6:"height";i:106;s:4:"file";s:68:"2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-png8.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:68:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-png8-150x106.png";s:5:"width";i:150;s:6:"height";i:106;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:67:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-png8-300x55.png";s:5:"width";i:300;s:6:"height";i:55;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:68:"cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-png8-272x106.png";s:5:"width";i:272;s:6:"height";i:106;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:{}}}'),
 (4169, 665, '_wp_trash_meta_status', 'publish'),
 (4170, 665, '_wp_trash_meta_time', '1521078457'),
 (4171, 666, '_edit_last', '2'),
 (4172, 666, '_wp_page_template', 'default'),
 (4173, 666, 'bento_sidebar_layout', 'right-sidebar'),
 (4174, 666, 'bento_title_position', 'left'),
 (4175, 666, 'bento_subtitle_color', '#999999'),
 (4176, 666, 'bento_header_image_height', '10%'),
 (4177, 666, 'bento_header_overlay_opacity', '0'),
 (4178, 666, 'bento_headermap_height', '400'),
 (4179, 666, 'bento_headermap_zoom', '15'),
 (4180, 666, 'bento_page_grid_mode', 'columns'),
 (4181, 666, 'bento_page_columns', '3'),
 (4182, 666, 'bento_page_content_types', 'a:1:{i:0;s:4:"post";}'),
 (4183, 666, 'bento_page_number_items', '10'),
 (4184, 666, 'bento_page_item_margins', '10'),
 (4185, 666, '_edit_lock', '1521081361:2'),
 (4186, 668, '_menu_item_type', 'post_type'),
 (4187, 668, '_menu_item_menu_item_parent', '0'),
 (4188, 668, '_menu_item_object_id', '666'),
 (4189, 668, '_menu_item_object', 'page'),
 (4190, 668, '_menu_item_target', ''),
 (4191, 668, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
 (4192, 668, '_menu_item_xfn', ''),
 (4193, 668, '_menu_item_url', ''),
 (4195, 669, '_edit_lock', '1521079257:2'),
 (4196, 672, '_edit_lock', '1521080796:2'),
 (4197, 672, '_wp_trash_meta_status', 'publish'),
 (4198, 672, '_wp_trash_meta_time', '1521080811'),
 (4199, 676, '_edit_lock', '1521082497:2'),
 (4200, 677, '_edit_lock', '1521082533:2'),
 (4201, 678, '_edit_lock', '1521082628:1'),
 (4202, 680, '_wp_attached_file', '2018/03/footer-tourismqld.jpg'),
 (4203, 680, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:153;s:6:"height";i:45;s:4:"file";s:29:"2018/03/footer-tourismqld.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"footer-tourismqld-150x45.jpg";s:5:"width";i:150;s:6:"height";i:45;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:{}}}'),
 (4204, 681, '_edit_lock', '1521084020:1'),
 (4205, 682, 'boxzilla_options', 'a:1:{s:3:"css";a:8:{s:16:"background_color";s:7:"#edf9ff";s:5:"color";s:0:"";s:5:"width";s:3:"340";s:12:"border_color";s:7:"#dd7575";s:12:"border_width";s:1:"4";s:12:"border_style";s:6:"dashed";s:8:"position";s:12:"bottom-right";s:6:"manual";s:0:"";}}'),
 (4206, 682, '_edit_lock', '1521084141:1'),
 (4207, 683, '_edit_lock', '1521084437:1'),
 (4208, 683, '_edit_last', '1'),
 (4209, 683, 'boxzilla_options', 'a:12:{s:5:"rules";a:1:{i:0;a:3:{s:9:"condition";s:10:"everywhere";s:9:"qualifier";i:1;s:5:"value";s:0:"";}}s:3:"css";a:7:{s:16:"background_color";s:7:"#000000";s:5:"color";s:7:"#ffffff";s:5:"width";s:0:"";s:12:"border_color";s:7:"#a0a0a0";s:12:"border_width";i:2;s:12:"border_style";s:5:"solid";s:8:"position";s:12:"bottom-right";}s:17:"rules_comparision";s:3:"any";s:9:"animation";s:4:"fade";s:7:"trigger";s:12:"time_on_page";s:20:"trigger_time_on_page";s:1:"2";s:18:"trigger_percentage";i:65;s:15:"trigger_element";s:0:"";s:6:"cookie";a:2:{s:9:"triggered";i:0;s:9:"dismissed";i:0;}s:21:"screen_size_condition";a:2:{s:9:"condition";s:6:"larger";s:5:"value";i:0;}s:9:"auto_hide";s:1:"0";s:15:"show_close_icon";s:1:"1";}'),
 (4210, 688, '_wp_trash_meta_status', 'publish'),
 (4211, 688, '_wp_trash_meta_time', '1521087779'),
 (4214, 689, '_thumbnail_id', '541'),
 (4215, 689, 'bento_sidebar_layout', 'right-sidebar'),
 (4216, 689, 'bento_title_position', 'left'),
 (4217, 689, 'bento_subtitle_color', '#999999'),
 (4218, 689, 'bento_header_image_height', '10%'),
 (4219, 689, 'bento_header_overlay_opacity', '0'),
 (4220, 689, 'bento_tile_size', '1x1'),
 (4221, 689, 'bento_tile_overlay_color', '#666666'),
 (4222, 689, 'bento_tile_overlay_opacity', '0'),
 (4223, 689, 'bento_tile_text_color', '#ffffff'),
 (4224, 689, 'bento_tile_text_size', '16'),
 (4225, 689, '_dp_original', '540'),
 (4228, 690, '_thumbnail_id', '538'),
 (4229, 690, 'bento_sidebar_layout', 'right-sidebar'),
 (4230, 690, 'bento_title_position', 'left'),
 (4231, 690, 'bento_subtitle_color', '#999999'),
 (4232, 690, 'bento_header_image_height', '10%'),
 (4233, 690, 'bento_header_overlay_opacity', '0'),
 (4234, 690, 'bento_tile_size', '1x1'),
 (4235, 690, 'bento_tile_overlay_color', '#666666'),
 (4236, 690, 'bento_tile_overlay_opacity', '0'),
 (4237, 690, 'bento_tile_text_color', '#ffffff'),
 (4238, 690, 'bento_tile_text_size', '16'),
 (4239, 690, '_dp_original', '537'),
 (4240, 689, '_wp_trash_meta_status', 'publish'),
 (4241, 689, '_wp_trash_meta_time', '1521088458'),
 (4242, 689, '_wp_desired_post_slug', 'quilts-stitches-textiles-trail-2'),
 (4243, 690, '_wp_trash_meta_status', 'publish'),
 (4244, 690, '_wp_trash_meta_time', '1521088466'),
 (4245, 690, '_wp_desired_post_slug', 'artist-talk-2'),
 (4248, 693, '_thumbnail_id', '541'),
 (4249, 693, 'bento_sidebar_layout', 'right-sidebar'),
 (4250, 693, 'bento_title_position', 'left'),
 (4251, 693, 'bento_subtitle_color', '#999999'),
 (4252, 693, 'bento_header_image_height', '10%'),
 (4253, 693, 'bento_header_overlay_opacity', '0'),
 (4254, 693, 'bento_tile_size', '1x1'),
 (4255, 693, 'bento_tile_overlay_color', '#666666'),
 (4256, 693, 'bento_tile_overlay_opacity', '0'),
 (4257, 693, 'bento_tile_text_color', '#ffffff'),
 (4258, 693, 'bento_tile_text_size', '16'),
 (4259, 693, '_dp_original', '540'),
 (4260, 693, '_edit_lock', '1521088599:2'),
 (4261, 693, '_wp_trash_meta_status', 'draft'),
 (4262, 693, '_wp_trash_meta_time', '1521088915'),
 (4263, 693, '_wp_desired_post_slug', 'quilts-stitches-textiles-trail-2');


DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=695 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

 
INSERT INTO `wp_posts` VALUES (5, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 'Sandwich', '', 'inherit', 'open', 'closed', '', 'sandwich', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/sandwich.jpg', 0, 'attachment', 'image/jpeg', 0),
 (6, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 'Coffee', '', 'inherit', 'open', 'closed', '', 'coffee', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/coffee.jpg', 0, 'attachment', 'image/jpeg', 0),
 (7, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '<h1 class="uppercase">TOOWOOMBA CARNIVAL OF FLOWERS</h1>\r\n<h2>Friday 21 - Sunday 30 September 2018</h2>\r\nThe locals love it and visitors travel from all over the country to be part of it. Now in its 69th year the award-winning Toowoomba Carnival of Flowers continues to grow. Spectacular gardens, country touring, live music and local food &amp; wine plus much more.\r\n\r\n&nbsp;\r\n<h1 class="pink uppercase">SUMMER TUNES</h1>\r\nToowoomba is now officially the home of both tunes and blooms! The city that is home to the internationally acclaimed Toowoomba Carnival of Flowers is about to host the inaugural SUMMER TUNES program - a program of sounds across the final eight Sundays of summer. Summer Tunes will take over the Southern Queensland city and its surrounds in the most beautiful of ways, with a program of more than 38 FREE unique musical events and experiences for the whole family each Sunday during January and February 2018.\r\n\r\nMusically, the program showcases and celebrates local south-east Queensland musicians from as young as 8 years old. The line-up covers over four decades of popular music genres including jazz, blues, swing, rock ‘n’ roll, folk, bush ballads, Latin and cabaret, as well as favoured lullabies and gospel and will be staged across a selection of Toowoomba region’s stunning parks.\r\n\r\nFind Toowoomba Summer Tunes events - <a href="http://tcof.com.au/wp-content/uploads/2018/SummerTunes2018.pdf" target="_blank" rel="noopener">SummerTunes2018.pdf</a> (opens in new window)', 'Home page', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2018-01-22 16:33:27', '2018-01-22 06:33:27', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=7', 14, 'page', '', 0),
 (9, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '<h2>Our details</h2>\r\n<strong>Phone:</strong> 131 872\r\n\r\n<strong>Postal address:</strong> PO Box 3021, Toowoomba Queensland 4350\r\n\r\n<strong>Email:</strong> info@tcof.com.au\r\n\r\n<strong>Social media: </strong>https://www.facebook.com/CarnivalFlowers | https://www.instagram.com/toowoombacarnivalflowers | https://www.youtube.com/user/CarnivalOfFlowers | https://www.pinterest.com.au/pin/68187381835721068\r\n<h2>Contact us</h2>\r\n[contact-form-7 id="44" title="Contact form 1"]', 'Contact us', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2018-01-22 02:38:49', '2018-01-22 02:38:49', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=9', 12, 'page', '', 0),
 (11, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', 'This is an example of a home page section. Home page sections can be any page other than the home page itself, including the page that shows your latest blog posts.', 'A home page section', '', 'publish', 'closed', 'closed', '', 'a-home-page-section', '', '', '2018-01-22 01:53:17', '2018-01-22 01:53:17', '', 7, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=11', 11, 'page', '', 0),
 (13, 1, '2018-01-22 00:55:53', '2018-01-22 00:55:53', '', 'TCOF_Logo_White_Green-1', '', 'inherit', 'open', 'closed', '', 'tcof_logo_white_green-1', '', '', '2018-01-22 00:55:53', '2018-01-22 00:55:53', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/TCOF_Logo_White_Green-1.png', 0, 'attachment', 'image/png', 0),
 (14, 1, '2018-01-22 01:01:37', '2018-01-22 01:01:37', '', 'TRC Logo', '', 'inherit', 'open', 'closed', '', 'toowoomba-region-portaitp', '', '', '2018-01-22 01:01:50', '2018-01-22 01:01:50', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Toowoomba-Region-portaitp.jpg', 0, 'attachment', 'image/jpeg', 0),
 (15, 1, '2018-01-22 01:02:23', '2018-01-22 01:02:23', 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/cropped-Toowoomba-Region-portaitp.jpg', 'cropped-Toowoomba-Region-portaitp.jpg', '', 'inherit', 'open', 'closed', '', 'cropped-toowoomba-region-portaitp-jpg', '', '', '2018-01-22 01:02:23', '2018-01-22 01:02:23', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/cropped-Toowoomba-Region-portaitp.jpg', 0, 'attachment', 'image/jpeg', 0),
 (16, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', 'Welcome to your site! This is your home page, which is what most visitors will see when they come to your site for the first time.', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 7, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/7-revision-v1/', 0, 'revision', '', 0),
 (18, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', 'This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.', 'Contact', '', 'inherit', 'closed', 'closed', '', '9-revision-v1', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 9, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/9-revision-v1/', 0, 'revision', '', 0),
 (20, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', 'This is an example of a home page section. Home page sections can be any page other than the home page itself, including the page that shows your latest blog posts.', 'A home page section', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 11, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/11-revision-v1/', 0, 'revision', '', 0),
 (24, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 'Contact', '', 'publish', 'closed', 'closed', '', '24', '', '', '2018-03-15 13:14:13', '2018-03-15 03:14:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/24/', 9, 'nav_menu_item', '', 0),
 (25, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 'Yelp', '', 'publish', 'closed', 'closed', '', 'yelp', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/yelp/', 0, 'nav_menu_item', '', 0),
 (26, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 'Facebook', '', 'publish', 'closed', 'closed', '', 'facebook', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/facebook/', 1, 'nav_menu_item', '', 0),
 (27, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 'Twitter', '', 'publish', 'closed', 'closed', '', 'twitter', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/twitter/', 2, 'nav_menu_item', '', 0),
 (28, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 'Instagram', '', 'publish', 'closed', 'closed', '', 'instagram', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/instagram/', 3, 'nav_menu_item', '', 0),
 (29, 1, '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 'Email', '', 'publish', 'closed', 'closed', '', 'email', '', '', '2018-01-22 01:02:56', '2018-01-22 01:02:56', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/email/', 4, 'nav_menu_item', '', 0),
 (35, 1, '2018-01-22 01:25:59', '2018-01-22 01:25:59', '', 'home-banner5', '', 'inherit', 'open', 'closed', '', 'home-banner5', '', '', '2018-01-22 01:25:59', '2018-01-22 01:25:59', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/home-banner5.jpg', 0, 'attachment', 'image/jpeg', 0),
 (38, 1, '2018-01-22 16:33:16', '2018-01-22 06:33:16', '<h1 class="uppercase">TOOWOOMBA CARNIVAL OF FLOWERS</h1>\n<h2>Friday 21 - Sunday 30 September 2018</h2>\nThe locals love it and visitors travel from all over the country to be part of it. Now in its 69th year the award-winning Toowoomba Carnival of Flowers continues to grow. Spectacular gardens, country touring, live music and local food &amp; wine plus much more.\n\n&nbsp;\n<h1 class="pink uppercase">SUMMER TUNES</h1>\nToowoomba is now officially the home of both tunes and blooms! The city that is home to the internationally acclaimed Toowoomba Carnival of Flowers is about to host the inaugural SUMMER TUNES program - a program of sounds across the final eight Sundays of summer. Summer Tunes will take over the Southern Queensland city and its surrounds in the most beautiful of ways, with a program of more than 38 FREE unique musical events and experiences for the whole family each Sunday during January and February 2018.\n\nMusically, the program showcases and celebrates local south-east Queensland musicians from as young as 8 years old. The line-up covers over four decades of popular music genres including jazz, blues, swing, rock ‘n’ roll, folk, bush ballads, Latin and cabaret, as well as favoured lullabies and gospel and will be staged across a selection of Toowoomba region’s stunning parks.\n\nFind Toowoomba Summer Tunes events - <a href="http://tcof.com.au/wp-content/uploads/2018/SummerTunes2018.pdf" target="_blank" rel="noopener">SummerTunes2018.pdf</a> (opens in new window)', 'Home page', '', 'inherit', 'closed', 'closed', '', '7-autosave-v1', '', '', '2018-01-22 16:33:16', '2018-01-22 06:33:16', '', 7, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/7-autosave-v1/', 0, 'revision', '', 0),
 (39, 1, '2018-01-22 01:36:32', '2018-01-22 01:36:32', '<h2>Friday 21 - Sunday 30 September 2018</h2>\r\nThe locals love it and visitors travel from all over the country to be part of it. Now in its 69th year the award-winning Toowoomba Carnival of Flowers continues to grow. Spectacular gardens, country touring, live music and local food &amp; wine plus much more.', 'Toowoomba Carnival of Flowers', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2018-01-22 01:36:32', '2018-01-22 01:36:32', '', 7, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/7-revision-v1/', 0, 'revision', '', 0),
 (40, 1, '2018-01-22 01:50:17', '2018-01-22 01:50:17', '<h1 class="uppercase">TOOWOOMBA CARNIVAL OF FLOWERS</h1>\r\n<h2>Friday 21 - Sunday 30 September 2018</h2>\r\nThe locals love it and visitors travel from all over the country to be part of it. Now in its 69th year the award-winning Toowoomba Carnival of Flowers continues to grow. Spectacular gardens, country touring, live music and local food &amp; wine plus much more.', 'Home page', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2018-01-22 01:50:17', '2018-01-22 01:50:17', '', 7, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/7-revision-v1/', 0, 'revision', '', 0),
 (42, 1, '2018-01-22 02:14:54', '2018-01-22 02:14:54', 'To help you carry the experience of Carnival time over to other times of the year we’ve compiled this list of activities worth repeating.', '', '', 'publish', 'closed', 'closed', '', '42', '', '', '2018-03-15 13:14:13', '2018-03-15 03:14:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=42', 4, 'nav_menu_item', '', 0),
 (44, 1, '2018-01-22 02:22:50', '2018-01-22 02:22:50', '<label> Your name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your email (required)\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text your-subject] </label>\r\n\r\n<label> Your message\r\n    [textarea your-message] </label>\r\n\r\n[submit "Send"]\n1\nTCOF "[your-subject]"\n[your-name] <wordpress@toowoombaregionalcouncil.com.au>\nwebteam@tr.qld.gov.au\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on TCOF (http://www.toowoombaregionalcouncil.com.au/tcof)\nReply-To: [your-email]\n\n\n\n\nTCOF "[your-subject]"\nTCOF <wordpress@toowoombaregionalcouncil.com.au>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on TCOF (http://www.toowoombaregionalcouncil.com.au/tcof)\nReply-To: webteam@tr.qld.gov.au\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.', 'Contact form 1', '', 'publish', 'closed', 'closed', '', 'contact-form-1', '', '', '2018-01-22 02:23:35', '2018-01-22 02:23:35', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=wpcf7_contact_form&#038;p=44', 0, 'wpcf7_contact_form', '', 0),
 (45, 1, '2018-01-22 02:28:42', '2018-01-22 02:28:42', '&lt;label&gt; Your name (required)\r\n[text* your-name] &lt;/label&gt;\r\n\r\n&lt;label&gt; Your email (required)\r\n[email* your-email] &lt;/label&gt;\r\n\r\n&lt;label&gt; Subject\r\n[text your-subject] &lt;/label&gt;\r\n\r\n&lt;label&gt; Your message\r\n[textarea your-message] &lt;/label&gt;\r\n\r\n[submit "Send"]', 'Contact', '', 'inherit', 'closed', 'closed', '', '9-revision-v1', '', '', '2018-01-22 02:28:42', '2018-01-22 02:28:42', '', 9, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/9-revision-v1/', 0, 'revision', '', 0),
 (46, 1, '2018-01-22 02:29:32', '2018-01-22 02:29:32', '[contact-form-7 id="44" title="Contact form 1"]', 'Contact', '', 'inherit', 'closed', 'closed', '', '9-revision-v1', '', '', '2018-01-22 02:29:32', '2018-01-22 02:29:32', '', 9, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/9-revision-v1/', 0, 'revision', '', 0),
 (47, 1, '2018-01-22 02:31:07', '2018-01-22 02:31:07', '', 'Carnival side-show alley', '', 'inherit', 'open', 'closed', '', 'contact-hero-1', '', '', '2018-01-22 02:31:27', '2018-01-22 02:31:27', '', 9, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/contact-hero-1.png', 0, 'attachment', 'image/png', 0),
 (48, 1, '2018-01-22 02:37:30', '2018-01-22 02:37:30', '<h2>Our details</h2>\n<strong>Phone:</strong> 131 872\n\n<strong>Postal address:</strong> PO Box 3021, Toowoomba Queensland 4350\n\n<strong>Email:</strong> info@tcof.com.au\n\n<strong>Social media: </strong>https://www.facebook.com/CarnivalFlowers | https://www.instagram.com/toowoombacarnivalflowers | https://www.youtube.com/user/CarnivalOfFlowers |\n<h2>Contact us</h2>\n[contact-form-7 id="44" title="Contact form 1"]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '9-autosave-v1', '', '', '2018-01-22 02:37:30', '2018-01-22 02:37:30', '', 9, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/9-autosave-v1/', 0, 'revision', '', 0),
 (49, 1, '2018-01-22 02:33:27', '2018-01-22 02:33:27', '<h2>Our details</h2>\r\n<strong>Phone:</strong> 131 872\r\n\r\n<strong>Postal address:</strong> PO Box 3021, Toowoomba Queensland 4350\r\n\r\n<strong>Email:</strong> info@tcof.com.au\r\n<h2>Contact us</h2>\r\n[contact-form-7 id="44" title="Contact form 1"]', 'Contact', '', 'inherit', 'closed', 'closed', '', '9-revision-v1', '', '', '2018-01-22 02:33:27', '2018-01-22 02:33:27', '', 9, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/9-revision-v1/', 0, 'revision', '', 0),
 (50, 1, '2018-01-22 02:38:49', '2018-01-22 02:38:49', '<h2>Our details</h2>\r\n<strong>Phone:</strong> 131 872\r\n\r\n<strong>Postal address:</strong> PO Box 3021, Toowoomba Queensland 4350\r\n\r\n<strong>Email:</strong> info@tcof.com.au\r\n\r\n<strong>Social media: </strong>https://www.facebook.com/CarnivalFlowers | https://www.instagram.com/toowoombacarnivalflowers | https://www.youtube.com/user/CarnivalOfFlowers | https://www.pinterest.com.au/pin/68187381835721068\r\n<h2>Contact us</h2>\r\n[contact-form-7 id="44" title="Contact form 1"]', 'Contact us', '', 'inherit', 'closed', 'closed', '', '9-revision-v1', '', '', '2018-01-22 02:38:49', '2018-01-22 02:38:49', '', 9, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/9-revision-v1/', 0, 'revision', '', 0),
 (52, 1, '2018-01-22 02:44:18', '2018-01-22 02:44:18', 'aaa', 'History - 2017 events', '', 'publish', 'closed', 'closed', '', 'history-2017-events', '', '', '2018-01-22 02:45:13', '2018-01-22 02:45:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=52', 13, 'page', '', 0),
 (53, 1, '2018-01-22 02:44:18', '2018-01-22 02:44:18', '<h2>PICTURES IN THE PARK</h2>\r\nPick a flick and spend a night with the stars at this year’s Pictures in the Park. Lie back and enjoy the picturesque surrounds of Laurel Bank Park as you watch the free line-up of blockbuster family favourites that are sure to appeal to all ages. Bring your blanket, picnic rug or chair and settle in for a relaxing night with friends and family.\r\n<h3>Trolls</h3>\r\nThis hilarious film transports audiences to a colourful, wondrous world populated by Trolls. They have a constant dance in their step and a song on their lips. Don’t miss this star-studded hit!\r\n\r\nCOST: Free\r\n<h3>The Lion King</h3>\r\nEmbark on an extraordinary coming-of-age adventure with Simba in this animated classic guaranteed to delight all ages. Be prepared!\r\n\r\nCOST: Free', 'History - 2017 events', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2018-01-22 02:44:18', '2018-01-22 02:44:18', '', 52, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/52-revision-v1/', 0, 'revision', '', 0),
 (54, 1, '2018-01-22 02:45:13', '2018-01-22 02:45:13', 'aaa', 'History - 2017 events', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2018-01-22 02:45:13', '2018-01-22 02:45:13', '', 52, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/52-revision-v1/', 0, 'revision', '', 0),
 (55, 1, '2017-09-22 02:46:00', '2017-09-22 02:46:00', 'Pick a flick and spend a night with the stars at this year’s Pictures in the Park. Lie back and enjoy the picturesque surrounds of Laurel Bank Park as you watch the free line-up of blockbuster family favourites that are sure to appeal to all ages. Bring your blanket, picnic rug or chair and settle in for a relaxing night with friends and family.\r\n<h3>Trolls</h3>\r\nThis hilarious film transports audiences to a colourful, wondrous world populated by Trolls. They have a constant dance in their step and a song on their lips. Don’t miss this star-studded hit!\r\n\r\nCOST: Free\r\n<h3>The Lion King</h3>\r\nEmbark on an extraordinary coming-of-age adventure with Simba in this animated classic guaranteed to delight all ages. Be prepared!\r\n\r\nCOST: Free', '2017 Pictures in the park', '', 'publish', 'open', 'open', '', '2017-pictures-in-the-park', '', '', '2018-01-22 02:50:45', '2018-01-22 02:50:45', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=55', 71, 'post', '', 0),
 (56, 1, '2018-01-22 02:46:00', '2018-01-22 02:46:00', 'Pick a flick and spend a night with the stars at this year’s Pictures in the Park. Lie back and enjoy the picturesque surrounds of Laurel Bank Park as you watch the free line-up of blockbuster family favourites that are sure to appeal to all ages. Bring your blanket, picnic rug or chair and settle in for a relaxing night with friends and family.\r\n<h3>Trolls</h3>\r\nThis hilarious film transports audiences to a colourful, wondrous world populated by Trolls. They have a constant dance in their step and a song on their lips. Don’t miss this star-studded hit!\r\n\r\nCOST: Free\r\n<h3>The Lion King</h3>\r\nEmbark on an extraordinary coming-of-age adventure with Simba in this animated classic guaranteed to delight all ages. Be prepared!\r\n\r\nCOST: Free', '2017 Pictures in the park', '', 'inherit', 'closed', 'closed', '', '55-revision-v1', '', '', '2018-01-22 02:46:00', '2018-01-22 02:46:00', '', 55, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/55-revision-v1/', 0, 'revision', '', 0),
 (57, 1, '2018-01-22 02:48:46', '2018-01-22 02:48:46', '', 'Mum and daughter', '', 'inherit', 'open', 'closed', '', 'picturesinpark', '', '', '2018-01-22 02:49:11', '2018-01-22 02:49:11', '', 55, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/PicturesInPark.jpg', 0, 'attachment', 'image/jpeg', 0),
 (59, 1, '2017-09-15 09:00:59', '2017-09-15 09:00:59', 'Delight in seeing prize-winning gardens in all their morning glory. Our three hour guided tour takes in a selection of Toowoomba’s most spectacular private gardens. This includes a visit to 3 private gardens and 1 exhibition garden so book in for a floral showcase not to be missed.\r\n\r\nCOST: $37.50 per person\r\n\r\nThese tours are hosted by Stonestreets Coaches. Click on BOOK TICKETS to be directed to the Stonestreets website.', 'Morning Garden Tour', '', 'publish', 'open', 'open', '', 'morning-garden-tour', '', '', '2018-01-22 03:10:45', '2018-01-22 03:10:45', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=59', 72, 'post', '', 0),
 (60, 1, '2018-01-22 03:07:59', '2018-01-22 03:07:59', 'Delight in seeing prize-winning gardens in all their morning glory. Our three hour guided tour takes in a selection of Toowoomba’s most spectacular private gardens. This includes a visit to 3 private gardens and 1 exhibition garden so book in for a floral showcase not to be missed.\r\n\r\nCOST: $37.50 per person\r\n\r\nThese tours are hosted by Stonestreets Coaches. Click on BOOK TICKETS to be directed to the Stonestreets website.', 'Morning Garden Tour', '', 'inherit', 'closed', 'closed', '', '59-revision-v1', '', '', '2018-01-22 03:07:59', '2018-01-22 03:07:59', '', 59, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/59-revision-v1/', 0, 'revision', '', 0),
 (61, 1, '2018-01-22 03:10:24', '2018-01-22 03:10:24', '', 'Morning tour of tulips', '', 'inherit', 'open', 'closed', '', 'toursmorning2', '', '', '2018-01-22 03:10:41', '2018-01-22 03:10:41', '', 59, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/ToursMorning2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (63, 1, '2018-01-22 03:21:02', '2018-01-22 03:21:02', 'Fly direct to Toowoomba via the Brisbane West Wellcamp Airport, located on Toowoomba Cecil Plains Rd, approximately 17km west of the Toowoomba CBD.\r\n\r\n– QantasLink offer services to Sydney\r\n\r\n– Regional Express (Rex) offer services to regional Queensland and Brisbane .\r\n\r\n– Airnorth offer daily services to Melbourne, Cairns and Townsville.', 'Getting here - By air', '', 'publish', 'open', 'open', '', 'getting-here-by-air', '', '', '2018-01-22 03:21:02', '2018-01-22 03:21:02', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=63', 67, 'post', '', 0),
 (64, 1, '2018-01-22 03:20:41', '2018-01-22 03:20:41', '', 'Qantas flights to get here', '', 'inherit', 'open', 'closed', '', 'gettinghere', '', '', '2018-01-22 03:20:56', '2018-01-22 03:20:56', '', 63, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/gettinghere.jpg', 0, 'attachment', 'image/jpeg', 0),
 (65, 1, '2018-01-22 03:21:02', '2018-01-22 03:21:02', 'Fly direct to Toowoomba via the Brisbane West Wellcamp Airport, located on Toowoomba Cecil Plains Rd, approximately 17km west of the Toowoomba CBD.\r\n\r\n– QantasLink offer services to Sydney\r\n\r\n– Regional Express (Rex) offer services to regional Queensland and Brisbane .\r\n\r\n– Airnorth offer daily services to Melbourne, Cairns and Townsville.', 'Getting here - By air', '', 'inherit', 'closed', 'closed', '', '63-revision-v1', '', '', '2018-01-22 03:21:02', '2018-01-22 03:21:02', '', 63, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/63-revision-v1/', 0, 'revision', '', 0),
 (66, 1, '2017-09-14 03:23:07', '2017-09-13 17:23:07', 'For those visitors not wishing to drive Greyhound, Murrays and Bus Queensland operate regular coach transfers between Toowoomba and selected locations to include Brisbane, Cunnamulla, Rockhampton &amp; Lightning Ridge. Please contact these operators for more information.', 'Coach transfers', '', 'publish', 'open', 'open', '', 'coach-transfers', '', '', '2018-01-22 14:43:23', '2018-01-22 04:43:23', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=66', 68, 'post', '', 0),
 (67, 1, '2018-01-22 03:23:07', '2018-01-22 03:23:07', 'For those visitors not wishing to drive Greyhound, Murrays and Bus Queensland operate regular coach transfers between Toowoomba and selected locations to include Brisbane, Cunnamulla, Rockhampton &amp; Lightning Ridge. Please contact these operators for more information.', 'Coach transfers', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2018-01-22 03:23:07', '2018-01-22 03:23:07', '', 66, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/66-revision-v1/', 0, 'revision', '', 0),
 (68, 1, '2017-09-14 03:24:24', '2017-09-13 17:24:24', 'There is a growing list of tour operators and charter operators who are bringing groups to the Toowoomba Carnival of Flowers from multiple locations in Queensland, and interstate locations.\r\n\r\nPlease see the list below for bus operators for this year’s Toowoomba Carnival of Flowers:\r\n<table id="tablepress-7" class="tablepress tablepress-id-7 joint col2">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">BRISBANE/IPSWICH/TOOWOOMBA/WARWICK</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>Australian Getaway Tours</strong>\r\n\r\nTel: 07 4696 1857\r\nWebsite: <a href="http://www.getawaytours.com.au/" target="_blank" rel="noopener">www.getawaytours.com.au</a>\r\nEmail: <a href="mailto:admin@getawaytours.com.au">admin@getawaytours.com.au</a>\r\nPick ups from: Toowoomba Transit Centre and Toowoomba motels as required\r\nDate/s: Daily tours during event, must be pre-booked</td>\r\n<td class="column-2"><strong>Kangaroo Bus Lines</strong>\r\n\r\nTel: 1300 287 525\r\nWebsite: <a href="http://www.kangaroobuslines.com.au/" target="_blank" rel="noopener">www.kangaroobuslines.com.au</a>\r\nEmail: <a href="mailto:info@kangaroobuslines.com.au" target="_blank" rel="noopener">info@kangaroobuslines.com.au</a>\r\nPick ups from: Caboolture, Morayfield, Burpengary, Deception Bay &amp; Redcliffe\r\nDate/s: Sat 16, Tue 19 &amp; Thu 21 Sep 2017</td>\r\n</tr>\r\n<tr class="row-3 odd">\r\n<td class="column-1"><strong>Burnie Brae Centre</strong>\r\n\r\nTel: 07 3624 2185\r\nWebsite: <a href="http://www.burniebrae.org.au/events/%20target=">www.burniebrae.org.au/events/</a>\r\nEmail: <a href="mailto:enquiries@burniebrae.org.au">enquiries@burniebrae.org.au</a>\r\nPick ups from: Kedron-Wavell Services Club\r\nDate/s: Thu 21 Sep 2017 (Burnie Brae Members Only)</td>\r\n<td class="column-2"><strong>Mt Gravatt Coach &amp; Travel</strong>\r\n\r\nTel: 07 3808 7800\r\nWebsite: <a href="http://www.mtgcoach.com.au/" target="_blank" rel="noopener">www.mtgcoach.com.au</a>\r\nEmail: <a href="mailto:rebecca@mtgcoach.com.au">rebecca@mtgcoach.com.au</a>\r\nPick ups from: Brisbane South to Logan\r\nDate/s: Tue 19 &amp; Wed 20 Sep 2017</td>\r\n</tr>\r\n<tr class="row-4 even">\r\n<td class="column-1"><strong>Stonestreets Coaches</strong>\r\n\r\nTel: 07 4687 5555\r\nWebsite: <a href="http://www.stonestreets.com.au/" target="_blank" rel="noopener">www.stonestreets.com.au </a>\r\nEmail: <a href="mailto:info@stonestreets.com.au" target="_blank" rel="noopener">info@stonestreets.com.au</a>\r\nPick ups from: Brisbane Airport &amp; Roma Street Transit Station &amp; Brisbane Wellcamp Airport (Toowoomba)\r\nDate/s: Sat 16 - Wed 20 Sep 2017</td>\r\n<td class="column-2"><strong>Peters Coaches</strong>\r\n\r\nTel: 1300 602 902\r\nWebsite: <a href="http://www.peterscoaches.com.au/" target="_blank" rel="noopener">www.peterscoaches.com.au</a>\r\nEmail: <a href="mailto:charters@peterscoaches.com.au">charters@peterscoaches.com.au</a>\r\nPick ups from: Brisbane &amp; Brisbane Wellcamp Airport\r\nDate/s: Mon 18 or Tue 19 Sep 2017</td>\r\n</tr>\r\n<tr class="row-5 odd">\r\n<td class="column-1"><strong>Cross Country Tours</strong>\r\n\r\nTel: 07 3869 7444\r\nWebsite: <a href="http://www.crosscountrytours.com.au/" target="_blank" rel="noopener">www.crosscountrytours.com.au</a>\r\nEmail: <a href="mailto:tours@crosscountrytous.com.au" target="_blank" rel="noopener">tours@crosscountrytous.com.au</a>\r\nPick ups from: Multiple Brisbane locations\r\nDate/s: 3 Day/2 Nights ex Brisbane Fri 15 - Sun 17 Sep 2017\r\nFull Day Tours ex Brisbane Fri 15, Sat 16, Sun 17, Mon 18, Wed 20 &amp; Thu 21 Sep 2017</td>\r\n<td class="column-2"><strong>Red &amp; White Coaches</strong>\r\n\r\nTel: 07 3269 6466\r\nWebsite: <a href="http://www.coachaustralia.net/" target="_blank" rel="noopener">www.coachaustralia.net</a>\r\nEmail: <a href="mailto:charters@coachaustralia.net">charters@coachaustralia.net</a>\r\nPick ups from: Brisbane North &amp; Brisbane CBD\r\nDate/s: Sat 16 &amp; Wed 20 Sep 2017</td>\r\n</tr>\r\n<tr class="row-6 even">\r\n<td class="column-1"><strong>Donald Simpson Community Centre Ltd.</strong>\r\n\r\nTel: 07 3821 1089\r\nWebsite: <a href="http://www.donaldsimpsoncentre.com/" target="_blank" rel="noopener">www.donaldsimpsoncentre.com</a>\r\nEmail: <a href="mailto:contact@donaldsimpsoncentre.com" target="_blank" rel="noopener">contact@donaldsimpsoncentre.com</a>\r\nPick ups from: Cleveland , Capalaba &amp; Thornside\r\nDate/s: Tue 19 Sep 2017</td>\r\n<td class="column-2"><strong>Seniors Coach Tours</strong>\r\n\r\nTel: 1800 815 906\r\nWebsite: <a href="http://www.seniorscoachtours.com.au/" target="_blank" rel="noopener">www.seniorscoachtours.com.au</a>\r\nEmail: <a href="mailto:info@seniorscoachtours.com.au">info@seniorscoachtours.com.au</a>\r\nPick ups from: Brisbane Airport, Melbourne, Sydney, Canberra, Hobart, Launcenston &amp; Perth\r\nDate/s: Fri 15 - Mon 25 Sep 2017</td>\r\n</tr>\r\n<tr class="row-7 odd">\r\n<td class="column-1"><strong>Hermans Tours &amp; Travel</strong>\r\n\r\nTel: 07 3379 6255\r\nEmail: <a href="mailto:hermans@hermanstoursandtravel.com.au">hermans@hermanstoursandtravel.com.au</a>\r\nPick ups from: Corinda\r\nDate/s: Sun 24 Sep 2017</td>\r\n<td class="column-2"><strong>Southern Downs Steam Railway</strong>\r\n\r\nWebsite: <a href="http://www.southerndownssteamrailway.com.au/" target="_blank" rel="noopener">www.southerndownssteamrailway.com.au</a>\r\nEmail: <a href="mailto:enquiries@southerndownssteamrailway.com.au">enquiries@southerndownssteamrailway.com.au</a>\r\nPick ups from: Warwick Railway Station then optional garden tour\r\nDate/s: Sat 23 Sep 2017</td>\r\n</tr>\r\n<tr class="row-8 even">\r\n<td class="column-1"><strong>Highway Coaches</strong>\r\n\r\nTel: 0419 777 375\r\nPick ups from: Ipswich Central &amp; Booval\r\nDate/s: Tue 19 Sep 2017</td>\r\n<td class="column-2"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-8" class="tablepress tablepress-id-8 joint col2">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">QUEENSLAND OTHER</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>Bribie Moreton Hospice</strong>\r\n\r\nTel: 07 3408 8705\r\nEmail: <a href="mailto:ajay1935@bigpond.com">ajay1935@bigpond.com</a>\r\nPick ups from: Bribie Island\r\nDate/s: Fri 15 Sep 2017</td>\r\n<td class="column-2"><strong>Redcliffe Community Bus</strong>\r\n\r\nTel: 07 3284 6429\r\nWebsite: <a href="http://www.redcliffecommunitybus.org.au/" target="_blank" rel="noopener">www.redcliffecommunitybus.org.au</a>\r\nEmail: <a href="mailto:admin@redcliffecommunitybus.org.au">admin@redcliffecommunitybus.org.au</a>\r\nPick ups from: Redcliffe locations\r\nDate/s: Mon 11 – Tues 12 Sep &amp; Mon 18 – Tues 19 Sep 2017</td>\r\n</tr>\r\n<tr class="row-3 odd">\r\n<td class="column-1"><strong>Emerson Bus Company</strong>\r\n\r\nTel: 07 4096 5262\r\nWebsite: <a href="http://www.emersonbuscompany.com.au/" target="_blank" rel="noopener">www.emersonbuscompany.com.au</a>\r\nEmail: <a href="mailto:info@emersonbuscompany.com.au">info@emersonbuscompany.com.au</a>\r\nPick ups from: Tablelands &amp; Cairns\r\nDate/s: Sat 09 - Sat 23 Sep 2017 (at TCOF 15-17)</td>\r\n<td class="column-2"><strong>Roundabout Tours</strong>\r\n\r\nTel: 07 3284 6429\r\nWebsite: <a href="http://www.roundabouttours.com.au/" target="_blank" rel="noopener">www.roundabouttours.com.au</a>\r\nEmail: <a href="mailto:roundabouttours@hotmail.com">roundabouttours@hotmail.com</a>\r\nPick ups from: Gympie &amp; Motel at Coorey\r\nDate/s: 3 Day Tour Mon 18 - Wed 20 Sep 2017</td>\r\n</tr>\r\n<tr class="row-4 even">\r\n<td class="column-1"><strong>Active Tours and Transfers</strong>\r\n\r\nTel: 07 5313 6631 Website: <a href="https://www.activetransfers.com.au/tours/" target="_blank" rel="noopener">www.activetransfers.com.au/tours/</a>\r\nPick ups from: Gympie area\r\nDate/s: Tue 19 - Thu 21 Sep 2017</td>\r\n<td class="column-2"><strong>Karrabee Bus &amp; Coach</strong>\r\n\r\nTel: 07 5484 3195 Website: <a href="https://www.karrabee.com.au/" target="_blank" rel="noopener">www.karrabee.com.au</a>\r\nPick ups from: Gympie &amp; Mary Valley area\r\nDate/s: Mon 18 Sep 2017</td>\r\n</tr>\r\n<tr class="row-5 odd">\r\n<td class="column-1"><strong>Bundaberg Coaches</strong>\r\n\r\nTel: 07 4153 1037\r\nWebsite: <a href="http://www.bundaberg-coaches.com.au/" target="_blank" rel="noopener">www.bundaberg-coaches.com.au</a>\r\nEmail: <a href="mailto:info@bundaberg-coaches.com.au">info@bundaberg-coaches.com.au</a>\r\nPick ups from: Bundaberg\r\nDate/s: Fri 15 - Mon 18 Sep 2017</td>\r\n<td class="column-2"><strong>Sinclair Tours &amp; Travel</strong>\r\n\r\nTel: 07 5494 5083\r\nWebsite: <a href="http://www.sinclairtours.com/" target="_blank" rel="noopener">www.sinclairtours.com</a>\r\nEmail: <a href="mailto:info@sinclairtours.com">info@sinclairtours.com</a>\r\nPick ups from: Sunshine Coast locations\r\nDate/s: 3 Day Tour Wed 20 - Fri 22 Sep 2017</td>\r\n</tr>\r\n<tr class="row-6 even">\r\n<td class="column-1"><strong>Mystic Mountain Tours</strong>\r\n\r\nTel: 0400 086 877\r\nWebsite: <a href="http://www.mysticmountaintours.com.au/" target="_blank" rel="noopener">www.mysticmountaintours.com.au</a>\r\nEmail: <a href="mailto:info@mysticmountaintours.com.au">info@mysticmountaintours.com.au</a>\r\nPick ups from: Sunshine Coast\r\nDate/s: Sun 17 Sep 2017</td>\r\n<td class="column-2"><strong>Terry\'s Tours &amp; Charters</strong>\r\n\r\nTel: 07 5590 9380\r\nEmail: <a href="mailto:t_tours@bigpond.net.au">t_tours@bigpond.net.au</a>\r\nPick ups from: Tweed Heads and Gold Coast\r\nDate/s: 3 Day Tour Tue 19 - Thu 21 Sep 2017</td>\r\n</tr>\r\n<tr class="row-7 odd">\r\n<td class="column-1"><strong>Over 50s Adventure Tours</strong>\r\n\r\nTel: 07 5446 6236\r\nWebsite: <a href="http://www.over50sadventuretours.com/" target="_blank" rel="noopener">www.over50sadventuretours.com</a>\r\nEmail: <a href="mailto:over50sadventuretours@gmail.com">over50sadventuretours@gmail.com</a>\r\nPick ups from: Sunshine Coast\r\nDate/s: Wed 20 - Fri 22 Sep 2017</td>\r\n<td class="column-2"><strong>Wide Bay Transit</strong>\r\n\r\nTel: 07 4121 4070\r\nWebsite: <a href="http://www.widebaytransit.com.au/" target="_blank" rel="noopener">www.widebaytransit.com.au</a>\r\nEmail: <a href="mailto:reception@widebaytransit.com.au">reception@widebaytransit.com.au</a>\r\nPick ups from: Hervey Bay &amp; Maryborough\r\nDate/s: Mon 18 Sep 2017</td>\r\n</tr>\r\n<tr class="row-8 even">\r\n<td class="column-1"><strong>Purser\'s Coaches</strong>\r\n\r\nTel: 07 4168 1533\r\nEmail: <a href="mailto:purserscoaches@bigpond.com">purserscoaches@bigpond.com</a>\r\nPick ups from: Murgon, Wondai, Kingaroy, Nanango, Yarraman &amp; Blackbutt\r\nDate/s: Sun 17 Sep 2017</td>\r\n<td class="column-2"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-12" class="tablepress tablepress-id-12 joint col2">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">NEW SOUTH WALES</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>All Australian Journeys</strong>\r\n\r\nTel: 02 4923 5923\r\nWebsite: <a href="http://www.nht.com.au/" target="_blank" rel="noopener">www.nht.com.au</a>\r\nEmail: <a href="mailto:holiday@aaj.com.au">holiday@aaj.com.au</a>\r\nPick ups from: Hunter, Central Coast &amp; Sydney\r\nDate/s: Mon 18 - Fri 22 Sep 2017</td>\r\n<td class="column-2"><strong>Stride Travel</strong>\r\n\r\nTel: 0427 476 836\r\nWebsite: <a href="http://www.stridetravel.com.au/" target="_blank" rel="noopener">www.stridetravel.com.au</a>\r\nEmail: <a href="mailto:info@stridetravel.com.au">info@stridetravel.com.au</a>\r\nPick ups from: Hobart &amp; Dubbo (NSW)\r\nDate/s: Fri 15 - Tue 26 Sep 2017</td>\r\n</tr>\r\n<tr class="row-3 odd">\r\n<td class="column-1"><strong>It\'s Easy Tours Travel Club</strong>\r\n\r\nTel: 02 4325 8000\r\nWebsite: <a href="http://www.itseasytours.com.au/" target="_blank" rel="noopener">www.itseasytours.com.au</a>\r\nEmail: <a href="mailto:info@easytourstravel.com.au">info@easytourstravel.com.au</a>\r\nPick ups from: Gosford area NSW\r\nDate/s: 8 Day Tour departs Thu 14 Sep 2017</td>\r\n<td class="column-2"><strong>Inverell Coaches</strong>\r\n\r\nTel: 02 6722 3598\r\nWebsite: <a href="http://www.inverellcoaches.com/tours" target="_blank" rel="noopener">www.inverellcoaches.com/tours</a>\r\nEmail: <a href="mailto:admin@inverellcoaches.com">admin@inverellcoaches.com</a>\r\nPick ups from: Inverell and New England region NSW\r\nDate/s: 2 Day Tour Sat 23 - Sun 24 Sep 2017</td>\r\n</tr>\r\n<tr class="row-4 even">\r\n<td class="column-1"><strong>Northern Highland Travel</strong>\r\n\r\nTel: 02 4923 5923\r\nWebsite: <a href="http://www.nht.com.au/" target="_blank" rel="noopener">www.nht.com.au</a>\r\nEmail: <a href="mailto:holiday@nht.com.au">holiday@nht.com.au</a>\r\nPick ups from: Strathfield, Hornsby, Tuggerah, Newcastle area &amp; Thornton\r\nDate/s: Mon 18 - Fri 22 Sep 2017</td>\r\n<td class="column-2"><strong>On Course Tours &amp; Travel</strong>\r\n\r\nTel: 02 9986 2400\r\nWebsite: <a href="http://www.oncoursetours.com.au/" target="_blank" rel="noopener">www.oncoursetours.com.au</a>\r\nPick ups from: Sydney area\r\nDate/s: Mon 18 - Mon 25 Sep 2017</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-13" class="tablepress tablepress-id-13 joint col2">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">VICTORIA &amp; WESTERN AUSTRALIA</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>Villa Holidays</strong>\r\n\r\nTel: 1800 066 272\r\nWebsite: <a href="http://www.villa.com.au/" target="_blank" rel="noopener">www.villa.com.au</a>\r\nEmail: <a href="mailto:information@villa.com.au">information@villa.com.au</a>\r\nPick ups from: Perth\r\nDate/s: Tue 19 - Mon 25 Sep 2017</td>\r\n<td class="column-2"><strong>Seniors Coach Tours</strong>\r\n\r\nTel: 1800 815 906\r\nWebsite: <a href="http://www.seniorscoachtours.com.au/" target="_blank" rel="noopener">www.seniorscoachtours.com.au</a>\r\nEmail: <a href="mailto:info@seniorscoachtours.com.au">info@seniorscoachtours.com.au</a>\r\nPick ups from: Brisbane Airport, Melbourne, Sydney, Canberra, Hobart, Launcenston &amp; Perth\r\nDate/s: Fri 15 - Mon 25 Sep 2017</td>\r\n</tr>\r\n<tr class="row-3 odd">\r\n<td class="column-1"><strong>O\'Shannessy\'s Tours</strong>\r\n\r\nTel: 1800 354 352\r\nWebsite: <a href="http://www.oshannessys.com.au/" target="_blank" rel="noopener">www.oshannessys.com.au</a>\r\nEmail: <a href="mailto:enquiries@oshannessys.com.au">enquiries@oshannessys.com.au</a>\r\nPick ups from: Greater Melbourne, Ballarat, Geelong, the Bellarine &amp; Mornington Peninsulas, Bendigo &amp; Castlemaine, Philip Island &amp; some areas of Gippsland\r\nDate/s: Thur 14 - Tue 19 Sep 2017</td>\r\n<td class="column-2"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-16" class="tablepress tablepress-id-16">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">TASMANIA &amp; SOUTH AUSTRALIA</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>Stride Travel</strong>\r\n\r\nTel: 0427 476 836\r\nWebsite: <a href="http://www.stridetravel.com.au/" target="_blank" rel="noopener">www.stridetravel.com.au</a>\r\nEmail: <a href="mailto:info@stridetravel.com.au">info@stridetravel.com.au</a>\r\nPick ups from: Hobart &amp; Dubbo (NSW)\r\nDate/s: 12 Day Tour Fri 15 - Tue 26 Sep 2017</td>\r\n<td class="column-2"><strong>King William Travel</strong>\r\n\r\nTel: 08 8212 2132\r\nWebsite: <a href="http://www.kingwilliamtravel.com.au/" target="_blank" rel="noopener">www.kingwilliamtravel.com.au</a>\r\nEmail: <a href="mailto:travel@kingwilliamtravel.com.au">travel@kingwilliamtravel.com.au</a>\r\nPick ups from: Adelaide\r\nDate/s: 7 Day Tour Fri 15 - Fri 22 Sep 2017</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-15" class="tablepress tablepress-id-15 joint col2">\r\n<thead>\r\n<tr class="row-1">\r\n<th class="column-1" colspan="2">CHARTERS</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr class="row-2">\r\n<td class="column-1"><strong>Brisbane Bus Lines</strong>\r\n\r\nTel: 07 3354 3633\r\nWebsite: <a href="http://www.brisbanebuslines.com.au/" target="_blank" rel="noopener">www.brisbanebuslines.com.au</a>\r\nEmail: <a href="mailto:general@brisbanebuslines.com.au">general@brisbanebuslines.com.au</a></td>\r\n<td class="column-2"><strong>Redcliffe Coaches</strong>\r\n\r\nTel: 07 3142 4220\r\nWebsite: <a href="http://www.redcliffecoaches.com.au/" target="_blank" rel="noopener">www.redcliffecoaches.com.au</a>\r\nEmail: <a href="mailto:info@redcliffecoaches.com.au">info@redcliffecoaches.com.au</a>\r\nPick ups from: Redcliffe area</td>\r\n</tr>\r\n<tr class="row-3">\r\n<td class="column-1"><strong>Discovery Coaches</strong>\r\n\r\nTel: 07 4638 4661\r\nWebsite: <a href="http://www.discoverycoaches.com.au/" target="_blank" rel="noopener">www.discoverycoaches.com.au</a>\r\nEmail: <a href="mailto:info@discoverycoaches.com.au">info@discoverycoaches.com.au</a>\r\nPick ups from: Toowoomba, Darling Downs &amp; surrounding regions</td>\r\n<td class="column-2"><strong>Sunrise Tours</strong>\r\n\r\nTel: 07 5571 6719\r\nEmail: <a href="mailto:info@sunrisetoursgc.com.au">info@sunrisetoursgc.com.au</a>\r\nPick ups from: Gold Coast &amp; Brisbane</td>\r\n</tr>\r\n<tr class="row-4">\r\n<td class="column-1"><strong>Murrays Coaches</strong>\r\n\r\nTel: 13 2251\r\nWebsite: <a href="http://www.murrays.com.au/" target="_blank" rel="noopener">www.murrays.com.au</a>\r\nEmail: <a href="mailto:reservations@murrays.com.au">reservations@murrays.com.au</a>\r\nPick ups from: Gold Coast, Brisbane, Sydney, Canberra &amp; Melbourne</td>\r\n<td class="column-2"><strong>Sunstate Coaches</strong>\r\n\r\nTel: 07 3260 1666\r\nWebsite: <a href="http://www.sunstatecoaches.com.au/" target="_blank" rel="noopener">www.sunstatecoaches.com.au</a>\r\nEmail: <a href="mailto:admin@sunstatecoaches.com.au">admin@sunstatecoaches.com.au</a>\r\nPick ups from: South East Qld and other Australian destinations (if journey begins in South East Qld)</td>\r\n</tr>\r\n<tr class="row-5">\r\n<td class="column-1"><strong>NTC Transfers</strong>\r\n\r\nTel: 1300 202 034\r\nWebsite: <a href="http://www.ntctransfers.com.au/" target="_blank" rel="noopener">www.ntctransfers.com.au</a>\r\nEmail: <a href="mailto:info@ntctransfers.com.au">info@ntctransfers.com.au</a>\r\nPick ups from: South East Queensland locations</td>\r\n<td class="column-2"><strong>Tic Tac Tours &amp; Charters</strong>\r\n\r\nTel: 1300 842 822\r\nWebsite: <a href="http://www.tictactours.com.au/services/tours" target="_blank" rel="noopener">www.tictactours.com.au/services/tours</a>\r\nEmail: <a href="mailto:info@tictactours.com.au">info@tictactours.com.au</a>\r\nPick ups from: Brisbane</td>\r\n</tr>\r\n<tr class="row-6">\r\n<td class="column-1"><strong>Polleys Coaches</strong>\r\n\r\nTel: 1800 072 322\r\nWebsite: <a href="http://www.polleys.com.au/" target="_blank" rel="noopener">www.polleys.com.au</a>\r\nEmail: <a href="mailto:reception@polleys.com.au">reception@polleys.com.au</a>\r\nPick ups from: Gympie &amp; Cooroy</td>\r\n<td class="column-2"><strong>Transdev</strong>\r\n\r\nWebsite: <a href="http://www.transdevqld.com.au/" target="_blank" rel="noopener">www.transdevqld.com.au</a>\r\nEmail: <a href="mailto:qld.charters@transdev.com.au">qld.charters@transdev.com.au</a>\r\nPick ups from: Redlands &amp; Brisbane locations</td>\r\n</tr>\r\n<tr class="row-7">\r\n<td class="column-1"><strong>Travel Safe Coach Hire</strong>\r\n\r\nTel: 1300 978 957\r\nWebsite: <a href="http://www.travelsafecoachhire.com.au/" target="_blank" rel="noopener">www.travelsafecoachhire.com.au</a>\r\nEmail: <a href="mailto:info@travelsafecoachhire.com.au">info@travelsafecoachhire.com.au</a>\r\nPick ups from: Brisbane, Sunshine Coast, Gold Coast</td>\r\n<td class="column-2"><strong>Koala Blue Tours</strong>\r\n\r\nTel: 07 5549 3879\r\nWebsite: <a href="http://www.koalatours.com.au/" target="_blank" rel="noopener">www.koalatours.com.au</a>\r\nEmail: <a href="mailto:bill@koalatours.com.au">bill@koalatours.com.au</a>\r\nPick ups from: SE QLD - Brisbane, Sunshine Coast, Gold Coast</td>\r\n</tr>\r\n<tr class="row-8">\r\n<td class="column-1"><strong>Logan Coaches</strong>\r\n\r\nTel: 07 5528 8323\r\nWebsite: <a href="http://www.logancoaches.com.au/" target="_blank" rel="noopener">www.logancoaches.com.au</a>\r\nEmail: <a href="mailto:charters@logancoaches.com.au">charters@logancoaches.com.au</a>\r\nPick ups from: Logan &amp; Brisbane area</td>\r\n<td class="column-2"><strong>Shoreline Coaches</strong>\r\n\r\nTel: 0407 458 254\r\nEmail: <a href="mailto:chascollins@gmail.com">chascollins@gmail.com</a>\r\nPick ups from: Gold Coast area</td>\r\n</tr>\r\n<tr class="row-9">\r\n<td class="column-1"><strong>Underwood Bus Services</strong>\r\n\r\nTel: 07 3209 9077\r\nEmail: <a href="mailto:info@underwoodbusservice.com.au">info@underwoodbusservice.com.au</a>\r\nPick ups from: SE QLD</td>\r\n<td class="column-2"><strong>Northern Breeze Tours</strong>\r\n\r\nTel: 07 5524 2264\r\nWebsite: <a href="http://www.goldcoastcharteredbus.com.au/" target="_blank" rel="noopener">www.goldcoastcharteredbus.com.au</a>\r\nPick ups from: Gold Coast &amp; Tweed Heads</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'Group travel & charters', '', 'publish', 'open', 'open', '', 'group-travel-charters', '', '', '2018-01-22 14:43:35', '2018-01-22 04:43:35', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=68', 69, 'post', '', 0),
 (69, 1, '2018-01-22 03:24:24', '2018-01-22 03:24:24', 'There is a growing list of tour operators and charter operators who are bringing groups to the Toowoomba Carnival of Flowers from multiple locations in Queensland, and interstate locations.\r\n\r\nPlease see the list below for bus operators for this year’s Toowoomba Carnival of Flowers:\r\n<table id="tablepress-7" class="tablepress tablepress-id-7 joint col2">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">BRISBANE/IPSWICH/TOOWOOMBA/WARWICK</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>Australian Getaway Tours</strong>\r\n\r\nTel: 07 4696 1857\r\nWebsite: <a href="http://www.getawaytours.com.au/" target="_blank" rel="noopener">www.getawaytours.com.au</a>\r\nEmail: <a href="mailto:admin@getawaytours.com.au">admin@getawaytours.com.au</a>\r\nPick ups from: Toowoomba Transit Centre and Toowoomba motels as required\r\nDate/s: Daily tours during event, must be pre-booked</td>\r\n<td class="column-2"><strong>Kangaroo Bus Lines</strong>\r\n\r\nTel: 1300 287 525\r\nWebsite: <a href="http://www.kangaroobuslines.com.au/" target="_blank" rel="noopener">www.kangaroobuslines.com.au</a>\r\nEmail: <a href="mailto:info@kangaroobuslines.com.au" target="_blank" rel="noopener">info@kangaroobuslines.com.au</a>\r\nPick ups from: Caboolture, Morayfield, Burpengary, Deception Bay &amp; Redcliffe\r\nDate/s: Sat 16, Tue 19 &amp; Thu 21 Sep 2017</td>\r\n</tr>\r\n<tr class="row-3 odd">\r\n<td class="column-1"><strong>Burnie Brae Centre</strong>\r\n\r\nTel: 07 3624 2185\r\nWebsite: <a href="http://www.burniebrae.org.au/events/%20target=">www.burniebrae.org.au/events/</a>\r\nEmail: <a href="mailto:enquiries@burniebrae.org.au">enquiries@burniebrae.org.au</a>\r\nPick ups from: Kedron-Wavell Services Club\r\nDate/s: Thu 21 Sep 2017 (Burnie Brae Members Only)</td>\r\n<td class="column-2"><strong>Mt Gravatt Coach &amp; Travel</strong>\r\n\r\nTel: 07 3808 7800\r\nWebsite: <a href="http://www.mtgcoach.com.au/" target="_blank" rel="noopener">www.mtgcoach.com.au</a>\r\nEmail: <a href="mailto:rebecca@mtgcoach.com.au">rebecca@mtgcoach.com.au</a>\r\nPick ups from: Brisbane South to Logan\r\nDate/s: Tue 19 &amp; Wed 20 Sep 2017</td>\r\n</tr>\r\n<tr class="row-4 even">\r\n<td class="column-1"><strong>Stonestreets Coaches</strong>\r\n\r\nTel: 07 4687 5555\r\nWebsite: <a href="http://www.stonestreets.com.au/" target="_blank" rel="noopener">www.stonestreets.com.au </a>\r\nEmail: <a href="mailto:info@stonestreets.com.au" target="_blank" rel="noopener">info@stonestreets.com.au</a>\r\nPick ups from: Brisbane Airport &amp; Roma Street Transit Station &amp; Brisbane Wellcamp Airport (Toowoomba)\r\nDate/s: Sat 16 - Wed 20 Sep 2017</td>\r\n<td class="column-2"><strong>Peters Coaches</strong>\r\n\r\nTel: 1300 602 902\r\nWebsite: <a href="http://www.peterscoaches.com.au/" target="_blank" rel="noopener">www.peterscoaches.com.au</a>\r\nEmail: <a href="mailto:charters@peterscoaches.com.au">charters@peterscoaches.com.au</a>\r\nPick ups from: Brisbane &amp; Brisbane Wellcamp Airport\r\nDate/s: Mon 18 or Tue 19 Sep 2017</td>\r\n</tr>\r\n<tr class="row-5 odd">\r\n<td class="column-1"><strong>Cross Country Tours</strong>\r\n\r\nTel: 07 3869 7444\r\nWebsite: <a href="http://www.crosscountrytours.com.au/" target="_blank" rel="noopener">www.crosscountrytours.com.au</a>\r\nEmail: <a href="mailto:tours@crosscountrytous.com.au" target="_blank" rel="noopener">tours@crosscountrytous.com.au</a>\r\nPick ups from: Multiple Brisbane locations\r\nDate/s: 3 Day/2 Nights ex Brisbane Fri 15 - Sun 17 Sep 2017\r\nFull Day Tours ex Brisbane Fri 15, Sat 16, Sun 17, Mon 18, Wed 20 &amp; Thu 21 Sep 2017</td>\r\n<td class="column-2"><strong>Red &amp; White Coaches</strong>\r\n\r\nTel: 07 3269 6466\r\nWebsite: <a href="http://www.coachaustralia.net/" target="_blank" rel="noopener">www.coachaustralia.net</a>\r\nEmail: <a href="mailto:charters@coachaustralia.net">charters@coachaustralia.net</a>\r\nPick ups from: Brisbane North &amp; Brisbane CBD\r\nDate/s: Sat 16 &amp; Wed 20 Sep 2017</td>\r\n</tr>\r\n<tr class="row-6 even">\r\n<td class="column-1"><strong>Donald Simpson Community Centre Ltd.</strong>\r\n\r\nTel: 07 3821 1089\r\nWebsite: <a href="http://www.donaldsimpsoncentre.com/" target="_blank" rel="noopener">www.donaldsimpsoncentre.com</a>\r\nEmail: <a href="mailto:contact@donaldsimpsoncentre.com" target="_blank" rel="noopener">contact@donaldsimpsoncentre.com</a>\r\nPick ups from: Cleveland , Capalaba &amp; Thornside\r\nDate/s: Tue 19 Sep 2017</td>\r\n<td class="column-2"><strong>Seniors Coach Tours</strong>\r\n\r\nTel: 1800 815 906\r\nWebsite: <a href="http://www.seniorscoachtours.com.au/" target="_blank" rel="noopener">www.seniorscoachtours.com.au</a>\r\nEmail: <a href="mailto:info@seniorscoachtours.com.au">info@seniorscoachtours.com.au</a>\r\nPick ups from: Brisbane Airport, Melbourne, Sydney, Canberra, Hobart, Launcenston &amp; Perth\r\nDate/s: Fri 15 - Mon 25 Sep 2017</td>\r\n</tr>\r\n<tr class="row-7 odd">\r\n<td class="column-1"><strong>Hermans Tours &amp; Travel</strong>\r\n\r\nTel: 07 3379 6255\r\nEmail: <a href="mailto:hermans@hermanstoursandtravel.com.au">hermans@hermanstoursandtravel.com.au</a>\r\nPick ups from: Corinda\r\nDate/s: Sun 24 Sep 2017</td>\r\n<td class="column-2"><strong>Southern Downs Steam Railway</strong>\r\n\r\nWebsite: <a href="http://www.southerndownssteamrailway.com.au/" target="_blank" rel="noopener">www.southerndownssteamrailway.com.au</a>\r\nEmail: <a href="mailto:enquiries@southerndownssteamrailway.com.au">enquiries@southerndownssteamrailway.com.au</a>\r\nPick ups from: Warwick Railway Station then optional garden tour\r\nDate/s: Sat 23 Sep 2017</td>\r\n</tr>\r\n<tr class="row-8 even">\r\n<td class="column-1"><strong>Highway Coaches</strong>\r\n\r\nTel: 0419 777 375\r\nPick ups from: Ipswich Central &amp; Booval\r\nDate/s: Tue 19 Sep 2017</td>\r\n<td class="column-2"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-8" class="tablepress tablepress-id-8 joint col2">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">QUEENSLAND OTHER</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>Bribie Moreton Hospice</strong>\r\n\r\nTel: 07 3408 8705\r\nEmail: <a href="mailto:ajay1935@bigpond.com">ajay1935@bigpond.com</a>\r\nPick ups from: Bribie Island\r\nDate/s: Fri 15 Sep 2017</td>\r\n<td class="column-2"><strong>Redcliffe Community Bus</strong>\r\n\r\nTel: 07 3284 6429\r\nWebsite: <a href="http://www.redcliffecommunitybus.org.au/" target="_blank" rel="noopener">www.redcliffecommunitybus.org.au</a>\r\nEmail: <a href="mailto:admin@redcliffecommunitybus.org.au">admin@redcliffecommunitybus.org.au</a>\r\nPick ups from: Redcliffe locations\r\nDate/s: Mon 11 – Tues 12 Sep &amp; Mon 18 – Tues 19 Sep 2017</td>\r\n</tr>\r\n<tr class="row-3 odd">\r\n<td class="column-1"><strong>Emerson Bus Company</strong>\r\n\r\nTel: 07 4096 5262\r\nWebsite: <a href="http://www.emersonbuscompany.com.au/" target="_blank" rel="noopener">www.emersonbuscompany.com.au</a>\r\nEmail: <a href="mailto:info@emersonbuscompany.com.au">info@emersonbuscompany.com.au</a>\r\nPick ups from: Tablelands &amp; Cairns\r\nDate/s: Sat 09 - Sat 23 Sep 2017 (at TCOF 15-17)</td>\r\n<td class="column-2"><strong>Roundabout Tours</strong>\r\n\r\nTel: 07 3284 6429\r\nWebsite: <a href="http://www.roundabouttours.com.au/" target="_blank" rel="noopener">www.roundabouttours.com.au</a>\r\nEmail: <a href="mailto:roundabouttours@hotmail.com">roundabouttours@hotmail.com</a>\r\nPick ups from: Gympie &amp; Motel at Coorey\r\nDate/s: 3 Day Tour Mon 18 - Wed 20 Sep 2017</td>\r\n</tr>\r\n<tr class="row-4 even">\r\n<td class="column-1"><strong>Active Tours and Transfers</strong>\r\n\r\nTel: 07 5313 6631 Website: <a href="https://www.activetransfers.com.au/tours/" target="_blank" rel="noopener">www.activetransfers.com.au/tours/</a>\r\nPick ups from: Gympie area\r\nDate/s: Tue 19 - Thu 21 Sep 2017</td>\r\n<td class="column-2"><strong>Karrabee Bus &amp; Coach</strong>\r\n\r\nTel: 07 5484 3195 Website: <a href="https://www.karrabee.com.au/" target="_blank" rel="noopener">www.karrabee.com.au</a>\r\nPick ups from: Gympie &amp; Mary Valley area\r\nDate/s: Mon 18 Sep 2017</td>\r\n</tr>\r\n<tr class="row-5 odd">\r\n<td class="column-1"><strong>Bundaberg Coaches</strong>\r\n\r\nTel: 07 4153 1037\r\nWebsite: <a href="http://www.bundaberg-coaches.com.au/" target="_blank" rel="noopener">www.bundaberg-coaches.com.au</a>\r\nEmail: <a href="mailto:info@bundaberg-coaches.com.au">info@bundaberg-coaches.com.au</a>\r\nPick ups from: Bundaberg\r\nDate/s: Fri 15 - Mon 18 Sep 2017</td>\r\n<td class="column-2"><strong>Sinclair Tours &amp; Travel</strong>\r\n\r\nTel: 07 5494 5083\r\nWebsite: <a href="http://www.sinclairtours.com/" target="_blank" rel="noopener">www.sinclairtours.com</a>\r\nEmail: <a href="mailto:info@sinclairtours.com">info@sinclairtours.com</a>\r\nPick ups from: Sunshine Coast locations\r\nDate/s: 3 Day Tour Wed 20 - Fri 22 Sep 2017</td>\r\n</tr>\r\n<tr class="row-6 even">\r\n<td class="column-1"><strong>Mystic Mountain Tours</strong>\r\n\r\nTel: 0400 086 877\r\nWebsite: <a href="http://www.mysticmountaintours.com.au/" target="_blank" rel="noopener">www.mysticmountaintours.com.au</a>\r\nEmail: <a href="mailto:info@mysticmountaintours.com.au">info@mysticmountaintours.com.au</a>\r\nPick ups from: Sunshine Coast\r\nDate/s: Sun 17 Sep 2017</td>\r\n<td class="column-2"><strong>Terry\'s Tours &amp; Charters</strong>\r\n\r\nTel: 07 5590 9380\r\nEmail: <a href="mailto:t_tours@bigpond.net.au">t_tours@bigpond.net.au</a>\r\nPick ups from: Tweed Heads and Gold Coast\r\nDate/s: 3 Day Tour Tue 19 - Thu 21 Sep 2017</td>\r\n</tr>\r\n<tr class="row-7 odd">\r\n<td class="column-1"><strong>Over 50s Adventure Tours</strong>\r\n\r\nTel: 07 5446 6236\r\nWebsite: <a href="http://www.over50sadventuretours.com/" target="_blank" rel="noopener">www.over50sadventuretours.com</a>\r\nEmail: <a href="mailto:over50sadventuretours@gmail.com">over50sadventuretours@gmail.com</a>\r\nPick ups from: Sunshine Coast\r\nDate/s: Wed 20 - Fri 22 Sep 2017</td>\r\n<td class="column-2"><strong>Wide Bay Transit</strong>\r\n\r\nTel: 07 4121 4070\r\nWebsite: <a href="http://www.widebaytransit.com.au/" target="_blank" rel="noopener">www.widebaytransit.com.au</a>\r\nEmail: <a href="mailto:reception@widebaytransit.com.au">reception@widebaytransit.com.au</a>\r\nPick ups from: Hervey Bay &amp; Maryborough\r\nDate/s: Mon 18 Sep 2017</td>\r\n</tr>\r\n<tr class="row-8 even">\r\n<td class="column-1"><strong>Purser\'s Coaches</strong>\r\n\r\nTel: 07 4168 1533\r\nEmail: <a href="mailto:purserscoaches@bigpond.com">purserscoaches@bigpond.com</a>\r\nPick ups from: Murgon, Wondai, Kingaroy, Nanango, Yarraman &amp; Blackbutt\r\nDate/s: Sun 17 Sep 2017</td>\r\n<td class="column-2"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-12" class="tablepress tablepress-id-12 joint col2">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">NEW SOUTH WALES</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>All Australian Journeys</strong>\r\n\r\nTel: 02 4923 5923\r\nWebsite: <a href="http://www.nht.com.au/" target="_blank" rel="noopener">www.nht.com.au</a>\r\nEmail: <a href="mailto:holiday@aaj.com.au">holiday@aaj.com.au</a>\r\nPick ups from: Hunter, Central Coast &amp; Sydney\r\nDate/s: Mon 18 - Fri 22 Sep 2017</td>\r\n<td class="column-2"><strong>Stride Travel</strong>\r\n\r\nTel: 0427 476 836\r\nWebsite: <a href="http://www.stridetravel.com.au/" target="_blank" rel="noopener">www.stridetravel.com.au</a>\r\nEmail: <a href="mailto:info@stridetravel.com.au">info@stridetravel.com.au</a>\r\nPick ups from: Hobart &amp; Dubbo (NSW)\r\nDate/s: Fri 15 - Tue 26 Sep 2017</td>\r\n</tr>\r\n<tr class="row-3 odd">\r\n<td class="column-1"><strong>It\'s Easy Tours Travel Club</strong>\r\n\r\nTel: 02 4325 8000\r\nWebsite: <a href="http://www.itseasytours.com.au/" target="_blank" rel="noopener">www.itseasytours.com.au</a>\r\nEmail: <a href="mailto:info@easytourstravel.com.au">info@easytourstravel.com.au</a>\r\nPick ups from: Gosford area NSW\r\nDate/s: 8 Day Tour departs Thu 14 Sep 2017</td>\r\n<td class="column-2"><strong>Inverell Coaches</strong>\r\n\r\nTel: 02 6722 3598\r\nWebsite: <a href="http://www.inverellcoaches.com/tours" target="_blank" rel="noopener">www.inverellcoaches.com/tours</a>\r\nEmail: <a href="mailto:admin@inverellcoaches.com">admin@inverellcoaches.com</a>\r\nPick ups from: Inverell and New England region NSW\r\nDate/s: 2 Day Tour Sat 23 - Sun 24 Sep 2017</td>\r\n</tr>\r\n<tr class="row-4 even">\r\n<td class="column-1"><strong>Northern Highland Travel</strong>\r\n\r\nTel: 02 4923 5923\r\nWebsite: <a href="http://www.nht.com.au/" target="_blank" rel="noopener">www.nht.com.au</a>\r\nEmail: <a href="mailto:holiday@nht.com.au">holiday@nht.com.au</a>\r\nPick ups from: Strathfield, Hornsby, Tuggerah, Newcastle area &amp; Thornton\r\nDate/s: Mon 18 - Fri 22 Sep 2017</td>\r\n<td class="column-2"><strong>On Course Tours &amp; Travel</strong>\r\n\r\nTel: 02 9986 2400\r\nWebsite: <a href="http://www.oncoursetours.com.au/" target="_blank" rel="noopener">www.oncoursetours.com.au</a>\r\nPick ups from: Sydney area\r\nDate/s: Mon 18 - Mon 25 Sep 2017</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-13" class="tablepress tablepress-id-13 joint col2">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">VICTORIA &amp; WESTERN AUSTRALIA</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>Villa Holidays</strong>\r\n\r\nTel: 1800 066 272\r\nWebsite: <a href="http://www.villa.com.au/" target="_blank" rel="noopener">www.villa.com.au</a>\r\nEmail: <a href="mailto:information@villa.com.au">information@villa.com.au</a>\r\nPick ups from: Perth\r\nDate/s: Tue 19 - Mon 25 Sep 2017</td>\r\n<td class="column-2"><strong>Seniors Coach Tours</strong>\r\n\r\nTel: 1800 815 906\r\nWebsite: <a href="http://www.seniorscoachtours.com.au/" target="_blank" rel="noopener">www.seniorscoachtours.com.au</a>\r\nEmail: <a href="mailto:info@seniorscoachtours.com.au">info@seniorscoachtours.com.au</a>\r\nPick ups from: Brisbane Airport, Melbourne, Sydney, Canberra, Hobart, Launcenston &amp; Perth\r\nDate/s: Fri 15 - Mon 25 Sep 2017</td>\r\n</tr>\r\n<tr class="row-3 odd">\r\n<td class="column-1"><strong>O\'Shannessy\'s Tours</strong>\r\n\r\nTel: 1800 354 352\r\nWebsite: <a href="http://www.oshannessys.com.au/" target="_blank" rel="noopener">www.oshannessys.com.au</a>\r\nEmail: <a href="mailto:enquiries@oshannessys.com.au">enquiries@oshannessys.com.au</a>\r\nPick ups from: Greater Melbourne, Ballarat, Geelong, the Bellarine &amp; Mornington Peninsulas, Bendigo &amp; Castlemaine, Philip Island &amp; some areas of Gippsland\r\nDate/s: Thur 14 - Tue 19 Sep 2017</td>\r\n<td class="column-2"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-16" class="tablepress tablepress-id-16">\r\n<thead>\r\n<tr class="row-1 odd">\r\n<th class="column-1" colspan="2">TASMANIA &amp; SOUTH AUSTRALIA</th>\r\n</tr>\r\n</thead>\r\n<tbody class="row-hover">\r\n<tr class="row-2 even">\r\n<td class="column-1"><strong>Stride Travel</strong>\r\n\r\nTel: 0427 476 836\r\nWebsite: <a href="http://www.stridetravel.com.au/" target="_blank" rel="noopener">www.stridetravel.com.au</a>\r\nEmail: <a href="mailto:info@stridetravel.com.au">info@stridetravel.com.au</a>\r\nPick ups from: Hobart &amp; Dubbo (NSW)\r\nDate/s: 12 Day Tour Fri 15 - Tue 26 Sep 2017</td>\r\n<td class="column-2"><strong>King William Travel</strong>\r\n\r\nTel: 08 8212 2132\r\nWebsite: <a href="http://www.kingwilliamtravel.com.au/" target="_blank" rel="noopener">www.kingwilliamtravel.com.au</a>\r\nEmail: <a href="mailto:travel@kingwilliamtravel.com.au">travel@kingwilliamtravel.com.au</a>\r\nPick ups from: Adelaide\r\nDate/s: 7 Day Tour Fri 15 - Fri 22 Sep 2017</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table id="tablepress-15" class="tablepress tablepress-id-15 joint col2">\r\n<thead>\r\n<tr class="row-1">\r\n<th class="column-1" colspan="2">CHARTERS</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr class="row-2">\r\n<td class="column-1"><strong>Brisbane Bus Lines</strong>\r\n\r\nTel: 07 3354 3633\r\nWebsite: <a href="http://www.brisbanebuslines.com.au/" target="_blank" rel="noopener">www.brisbanebuslines.com.au</a>\r\nEmail: <a href="mailto:general@brisbanebuslines.com.au">general@brisbanebuslines.com.au</a></td>\r\n<td class="column-2"><strong>Redcliffe Coaches</strong>\r\n\r\nTel: 07 3142 4220\r\nWebsite: <a href="http://www.redcliffecoaches.com.au/" target="_blank" rel="noopener">www.redcliffecoaches.com.au</a>\r\nEmail: <a href="mailto:info@redcliffecoaches.com.au">info@redcliffecoaches.com.au</a>\r\nPick ups from: Redcliffe area</td>\r\n</tr>\r\n<tr class="row-3">\r\n<td class="column-1"><strong>Discovery Coaches</strong>\r\n\r\nTel: 07 4638 4661\r\nWebsite: <a href="http://www.discoverycoaches.com.au/" target="_blank" rel="noopener">www.discoverycoaches.com.au</a>\r\nEmail: <a href="mailto:info@discoverycoaches.com.au">info@discoverycoaches.com.au</a>\r\nPick ups from: Toowoomba, Darling Downs &amp; surrounding regions</td>\r\n<td class="column-2"><strong>Sunrise Tours</strong>\r\n\r\nTel: 07 5571 6719\r\nEmail: <a href="mailto:info@sunrisetoursgc.com.au">info@sunrisetoursgc.com.au</a>\r\nPick ups from: Gold Coast &amp; Brisbane</td>\r\n</tr>\r\n<tr class="row-4">\r\n<td class="column-1"><strong>Murrays Coaches</strong>\r\n\r\nTel: 13 2251\r\nWebsite: <a href="http://www.murrays.com.au/" target="_blank" rel="noopener">www.murrays.com.au</a>\r\nEmail: <a href="mailto:reservations@murrays.com.au">reservations@murrays.com.au</a>\r\nPick ups from: Gold Coast, Brisbane, Sydney, Canberra &amp; Melbourne</td>\r\n<td class="column-2"><strong>Sunstate Coaches</strong>\r\n\r\nTel: 07 3260 1666\r\nWebsite: <a href="http://www.sunstatecoaches.com.au/" target="_blank" rel="noopener">www.sunstatecoaches.com.au</a>\r\nEmail: <a href="mailto:admin@sunstatecoaches.com.au">admin@sunstatecoaches.com.au</a>\r\nPick ups from: South East Qld and other Australian destinations (if journey begins in South East Qld)</td>\r\n</tr>\r\n<tr class="row-5">\r\n<td class="column-1"><strong>NTC Transfers</strong>\r\n\r\nTel: 1300 202 034\r\nWebsite: <a href="http://www.ntctransfers.com.au/" target="_blank" rel="noopener">www.ntctransfers.com.au</a>\r\nEmail: <a href="mailto:info@ntctransfers.com.au">info@ntctransfers.com.au</a>\r\nPick ups from: South East Queensland locations</td>\r\n<td class="column-2"><strong>Tic Tac Tours &amp; Charters</strong>\r\n\r\nTel: 1300 842 822\r\nWebsite: <a href="http://www.tictactours.com.au/services/tours" target="_blank" rel="noopener">www.tictactours.com.au/services/tours</a>\r\nEmail: <a href="mailto:info@tictactours.com.au">info@tictactours.com.au</a>\r\nPick ups from: Brisbane</td>\r\n</tr>\r\n<tr class="row-6">\r\n<td class="column-1"><strong>Polleys Coaches</strong>\r\n\r\nTel: 1800 072 322\r\nWebsite: <a href="http://www.polleys.com.au/" target="_blank" rel="noopener">www.polleys.com.au</a>\r\nEmail: <a href="mailto:reception@polleys.com.au">reception@polleys.com.au</a>\r\nPick ups from: Gympie &amp; Cooroy</td>\r\n<td class="column-2"><strong>Transdev</strong>\r\n\r\nWebsite: <a href="http://www.transdevqld.com.au/" target="_blank" rel="noopener">www.transdevqld.com.au</a>\r\nEmail: <a href="mailto:qld.charters@transdev.com.au">qld.charters@transdev.com.au</a>\r\nPick ups from: Redlands &amp; Brisbane locations</td>\r\n</tr>\r\n<tr class="row-7">\r\n<td class="column-1"><strong>Travel Safe Coach Hire</strong>\r\n\r\nTel: 1300 978 957\r\nWebsite: <a href="http://www.travelsafecoachhire.com.au/" target="_blank" rel="noopener">www.travelsafecoachhire.com.au</a>\r\nEmail: <a href="mailto:info@travelsafecoachhire.com.au">info@travelsafecoachhire.com.au</a>\r\nPick ups from: Brisbane, Sunshine Coast, Gold Coast</td>\r\n<td class="column-2"><strong>Koala Blue Tours</strong>\r\n\r\nTel: 07 5549 3879\r\nWebsite: <a href="http://www.koalatours.com.au/" target="_blank" rel="noopener">www.koalatours.com.au</a>\r\nEmail: <a href="mailto:bill@koalatours.com.au">bill@koalatours.com.au</a>\r\nPick ups from: SE QLD - Brisbane, Sunshine Coast, Gold Coast</td>\r\n</tr>\r\n<tr class="row-8">\r\n<td class="column-1"><strong>Logan Coaches</strong>\r\n\r\nTel: 07 5528 8323\r\nWebsite: <a href="http://www.logancoaches.com.au/" target="_blank" rel="noopener">www.logancoaches.com.au</a>\r\nEmail: <a href="mailto:charters@logancoaches.com.au">charters@logancoaches.com.au</a>\r\nPick ups from: Logan &amp; Brisbane area</td>\r\n<td class="column-2"><strong>Shoreline Coaches</strong>\r\n\r\nTel: 0407 458 254\r\nEmail: <a href="mailto:chascollins@gmail.com">chascollins@gmail.com</a>\r\nPick ups from: Gold Coast area</td>\r\n</tr>\r\n<tr class="row-9">\r\n<td class="column-1"><strong>Underwood Bus Services</strong>\r\n\r\nTel: 07 3209 9077\r\nEmail: <a href="mailto:info@underwoodbusservice.com.au">info@underwoodbusservice.com.au</a>\r\nPick ups from: SE QLD</td>\r\n<td class="column-2"><strong>Northern Breeze Tours</strong>\r\n\r\nTel: 07 5524 2264\r\nWebsite: <a href="http://www.goldcoastcharteredbus.com.au/" target="_blank" rel="noopener">www.goldcoastcharteredbus.com.au</a>\r\nPick ups from: Gold Coast &amp; Tweed Heads</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'Group travel & charters', '', 'inherit', 'closed', 'closed', '', '68-revision-v1', '', '', '2018-01-22 03:24:24', '2018-01-22 03:24:24', '', 68, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/68-revision-v1/', 0, 'revision', '', 0),
 (70, 1, '2018-01-22 03:26:23', '2018-01-22 03:26:23', 'Links to help you get here stress-free.', '', '', 'publish', 'closed', 'closed', '', '70', '', '', '2018-03-15 13:14:13', '2018-03-15 03:14:13', '', 7, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=70', 8, 'nav_menu_item', '', 0),
 (71, 1, '2018-01-22 03:26:23', '2018-01-22 03:26:23', 'For assistance when visiting Toowoomba, don’t miss out on drawing on the resources of our Visitor Information Centre.', '', '', 'publish', 'closed', 'closed', '', '71', '', '', '2018-03-15 13:14:13', '2018-03-15 03:14:13', '', 7, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=71', 7, 'nav_menu_item', '', 0),
 (72, 1, '2018-01-22 03:26:23', '2018-01-22 03:26:23', 'Join part of the fun team to help run the next Carnival.', '', '', 'publish', 'closed', 'closed', '', '72', '', '', '2018-03-15 13:14:13', '2018-03-15 03:14:13', '', 7, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=72', 6, 'nav_menu_item', '', 0),
 (75, 1, '0107-09-16 04:12:08', '0107-09-16 04:12:08', 'Volunteer for the Toowoomba Carnival of Flowers and together let’s make it the best one yet!\r\n\r\nIf you love Toowoomba and everything the Carnival of Flowers offers our city, volunteer with us over the ten days! Volunteer your time for one day and for many different experiences over Carnival! The Carnival Team are looking for helping hands on a range of projects in the lead up to, and during the events.<!--more-->\r\n\r\nVolunteering for the Toowoomba Carnival of Flowers isn’t difficult. Pick a time slot, a task that suits you and wait in anticipation for Carnival time to arrive – because you are going to have a tonne of fun!\r\n<h3>Volunteer testimonial</h3>\r\nIn my last year at high school I volunteered at the Toowoomba Carnival of Flowers Parade. I really enjoyed the opportunity and four months later I found myself working in the Carnival of Flowers Office! You never can tell where a few hours volunteering can lead. For me it was the beginning of my career. Heidi\r\n<h3>Sign me up!</h3>\r\nTo register your interest please complete our Expression Of Interest form and email it to us at info@tcof.com.au.\r\n<h3>What if I have a question?</h3>\r\nIf you have any questions or would like more information, please contact us either by phone on 07 4688 6661 or via email info@tcof.com.au.', 'Are you looking for a rewarding experience?', '', 'publish', 'open', 'open', '', 'are-you-looking-for-a-rewarding-experience', '', '', '2018-01-22 04:16:59', '2018-01-22 04:16:59', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=75', 73, 'post', '', 0),
 (76, 1, '2018-01-22 04:12:08', '2018-01-22 04:12:08', 'Volunteer for the Toowoomba Carnival of Flowers and together let’s make it the best one yet!\r\n\r\nIf you love Toowoomba and everything the Carnival of Flowers offers our city, volunteer with us over the ten days! Volunteer your time for one day and for many different experiences over Carnival! The Carnival Team are looking for helping hands on a range of projects in the lead up to, and during the events.\r\n\r\nVolunteering for the Toowoomba Carnival of Flowers isn’t difficult. Pick a time slot, a task that suits you and wait in anticipation for Carnival time to arrive – because you are going to have a tonne of fun!\r\n<h3>Volunteer testimonial</h3>\r\nIn my last year at high school I volunteered at the Toowoomba Carnival of Flowers Parade. I really enjoyed the opportunity and four months later I found myself working in the Carnival of Flowers Office! You never can tell where a few hours volunteering can lead. For me it was the beginning of my career. Heidi\r\n<h3>Sign me up!</h3>\r\nTo register your interest please complete our Expression Of Interest form and email it to us at info@tcof.com.au.\r\n<h3>What if I have a question?</h3>\r\nIf you have any questions or would like more information, please contact us either by phone on 07 4688 6661 or via email info@tcof.com.au.', 'Are you looking for a rewarding experience?', '', 'inherit', 'closed', 'closed', '', '75-revision-v1', '', '', '2018-01-22 04:12:08', '2018-01-22 04:12:08', '', 75, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/75-revision-v1/', 0, 'revision', '', 0),
 (77, 1, '2017-09-15 04:14:18', '2017-09-15 04:14:18', 'Opportunities to be involved include helping out at Visitor Information Centres, as a bus tour guide, at the parade and at markets.<!--more-->\r\n<h3>Visitor Information Opportunities</h3>\r\nInfo Hub/ Visitor Information\r\n\r\nFriday 15th – Sunday 24th September\r\n\r\nAre you keen to share your love of Toowoomba and help welcome visitors to our region? Become an info guru stationed in the TCOF information hubs at Queens Park, Laurel Bank Park and Picnic Point to provide visitors with brochures, maps and local knowledge. You will become a vital team member working with Toowoomba Regional Council staff to assist visitors and locals alike discover all there is to Toowoomba Carnival of Flowers.\r\n\r\nShift times:\r\n•3-4 hour shifts from Friday 15th – Sunday 24th September\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 25-30 people\r\n\r\n&nbsp;\r\n<h3>Bus Tour Guides</h3>\r\nFriday 15th – Sunday 24th September\r\n\r\nIf you love plants and are a Toowoomba local, you can join arranged tours to share your knowledge with groups around Toowoomba and the gardens. You will join tour groups coming to Toowoomba driving around different parts of the city and taking in all Toowoomba has to offer. Full training will be provided from our Tour packaging specialist. Commitment -2-4 hours\r\n\r\nShift times:\r\n•2-4 hour shifts from Friday 15th – Sunday 24th September\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 4-6 people\r\n\r\n&nbsp;\r\n<h3>Parade Opportunities</h3>\r\nParade Pacers\r\n\r\nSaturday 16th September\r\n\r\nParticipate in the Grand Central Floral Parade by walking between parade entries helping to keep entries together by minimising gaps and adding your big smile to the parade. You will need to be available prior to the Parade Day for information sessions on your role and before the parade for costuming . If you have a few hours to spare and are keen to be a participant in the parade, this is the option for you!\r\n\r\nShift times:\r\n•4-5 hours\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable solid BLACK coloured shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 50 people\r\n\r\n&nbsp;\r\n<h3>Parade Preparation Volunteers</h3>\r\nAugust &amp; September- Various Dates\r\n\r\nYou will be available for various jobs helping with the Grand Central Floral Parade including, helping community groups decorate floats and costumes, making paper flowers during workshops and adding potted colour to floats. Times for these shifts are various depending on when help is needed leading up to the Grand Central Floral Parade. You will need to be available prior to the Parade Day and the morning of, to help with last minute decorations and costuming. If you have a few hours to spare on a weekend, this is the option for you!\r\n\r\nShift times:\r\n•3-4 hour shift- various times\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 20-30 people\r\n\r\n&nbsp;\r\n<h3>Parade Information Officer</h3>\r\nSaturday 16th September\r\n\r\nHanding out thunder sticks, hand clappers &amp; chalk to the crowd prior to the floral parade. You will be paired with another volunteer &amp; given a section of the parade route to hand out these items. You will also be available to answer any questions visitors may have and be a representative for our city.\r\n\r\nShift as follows:\r\n•1:00pm-3:00pm (finish time may alter)\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 14-20 people\r\n\r\n&nbsp;\r\n<h3>Parade Seating Officer</h3>\r\nSaturday 16th September\r\n\r\nYou will be allocated a bus group and a section of Parade Seating to look after. Meet and greet your group at the bus and accompany them to their seating. Once your group is seated you will be free to assist with any general questions from groups and the general public.\r\n\r\nShift as follows:\r\n•2:00pm-4:30pm (finish time may alter depending on length of parade)\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 6 people\r\n\r\n&nbsp;\r\n<h3>Float Minders</h3>\r\nSaturday 16th September, 4pm to 6pm\r\n\r\nBe our float protectors at the end of the parade route, stand with the Toowoomba Regional Council floats to ensure children don’t climb on them and they remain safe. Flowers won’t be sold off the Carnival float, but you can help with the flower sales from other float bases. Assist the public with general enquiries. Commitment – 2 hours\r\n\r\nShift as follows:\r\n•4:00pm-6:00pm (finish time may alter depending on length of parade)\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 6-8 people\r\n\r\n&nbsp;\r\n<h3>Festival Opportunities</h3>\r\nFestival Helpers\r\n\r\nFriday 15th, Saturday 16th &amp; Sunday 17th September\r\n\r\nVarious jobs helping at Ergon Energy Food &amp; Wine Festival box office including wrist banding patrons, scanning entry tickets, flower crown preparation and answering patron enquiries. Feel free to do a shift every day!\r\n\r\nShift times (Flower Crown making):\r\n•8am-10am prep only\r\n•10am-12pm\r\n•12pm-2pm\r\n•2pm-4pm\r\n•4pm – 6pm\r\n\r\nShift times (general):\r\n•10am-1pm\r\n•1pm-4pm\r\n•4pm-7pm\r\n•7pm – 9pm\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 15-30 people\r\n\r\n&nbsp;\r\n<h3>Plant Market Volunteers</h3>\r\nMonday 18th – Tuesday 19th September\r\n\r\nHelping sell potted colour to the public after the Food and Wine Festival has closed and helping collect trays of potted colour across the Food &amp; Wine site. This role will require some physical work, lifting and carrying.\r\n\r\nShift times:\r\n•Various times from Monday 18th to Tuesday 19th September\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 5-10 people', 'Volunteer position descriptions', '', 'publish', 'open', 'open', '', 'volunteer-position-descriptions', '', '', '2018-01-22 04:18:56', '2018-01-22 04:18:56', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=77', 74, 'post', '', 0),
 (78, 1, '2018-01-22 04:14:18', '2018-01-22 04:14:18', 'A full list of these positions can be printed here.\r\n<h3>Visitor Information Opportunities</h3>\r\nInfo Hub/ Visitor Information\r\n\r\nFriday 15th – Sunday 24th September\r\n\r\nAre you keen to share your love of Toowoomba and help welcome visitors to our region? Become an info guru stationed in the TCOF information hubs at Queens Park, Laurel Bank Park and Picnic Point to provide visitors with brochures, maps and local knowledge. You will become a vital team member working with Toowoomba Regional Council staff to assist visitors and locals alike discover all there is to Toowoomba Carnival of Flowers.\r\n\r\nShift times:\r\n•3-4 hour shifts from Friday 15th – Sunday 24th September\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 25-30 people\r\n\r\n&nbsp;\r\n<h3>Bus Tour Guides</h3>\r\nFriday 15th – Sunday 24th September\r\n\r\nIf you love plants and are a Toowoomba local, you can join arranged tours to share your knowledge with groups around Toowoomba and the gardens. You will join tour groups coming to Toowoomba driving around different parts of the city and taking in all Toowoomba has to offer. Full training will be provided from our Tour packaging specialist. Commitment -2-4 hours\r\n\r\nShift times:\r\n•2-4 hour shifts from Friday 15th – Sunday 24th September\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 4-6 people\r\n\r\n&nbsp;\r\n<h3>Parade Opportunities</h3>\r\nParade Pacers\r\n\r\nSaturday 16th September\r\n\r\nParticipate in the Grand Central Floral Parade by walking between parade entries helping to keep entries together by minimising gaps and adding your big smile to the parade. You will need to be available prior to the Parade Day for information sessions on your role and before the parade for costuming . If you have a few hours to spare and are keen to be a participant in the parade, this is the option for you!\r\n\r\nShift times:\r\n•4-5 hours\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable solid BLACK coloured shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 50 people\r\n\r\n&nbsp;\r\n<h3>Parade Preparation Volunteers</h3>\r\nAugust &amp; September- Various Dates\r\n\r\nYou will be available for various jobs helping with the Grand Central Floral Parade including, helping community groups decorate floats and costumes, making paper flowers during workshops and adding potted colour to floats. Times for these shifts are various depending on when help is needed leading up to the Grand Central Floral Parade. You will need to be available prior to the Parade Day and the morning of, to help with last minute decorations and costuming. If you have a few hours to spare on a weekend, this is the option for you!\r\n\r\nShift times:\r\n•3-4 hour shift- various times\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 20-30 people\r\n\r\n&nbsp;\r\n<h3>Parade Information Officer</h3>\r\nSaturday 16th September\r\n\r\nHanding out thunder sticks, hand clappers &amp; chalk to the crowd prior to the floral parade. You will be paired with another volunteer &amp; given a section of the parade route to hand out these items. You will also be available to answer any questions visitors may have and be a representative for our city.\r\n\r\nShift as follows:\r\n•1:00pm-3:00pm (finish time may alter)\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 14-20 people\r\n\r\n&nbsp;\r\n<h3>Parade Seating Officer</h3>\r\nSaturday 16th September\r\n\r\nYou will be allocated a bus group and a section of Parade Seating to look after. Meet and greet your group at the bus and accompany them to their seating. Once your group is seated you will be free to assist with any general questions from groups and the general public.\r\n\r\nShift as follows:\r\n•2:00pm-4:30pm (finish time may alter depending on length of parade)\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 6 people\r\n\r\n&nbsp;\r\n<h3>Float Minders</h3>\r\nSaturday 16th September, 4pm to 6pm\r\n\r\nBe our float protectors at the end of the parade route, stand with the Toowoomba Regional Council floats to ensure children don’t climb on them and they remain safe. Flowers won’t be sold off the Carnival float, but you can help with the flower sales from other float bases. Assist the public with general enquiries. Commitment – 2 hours\r\n\r\nShift as follows:\r\n•4:00pm-6:00pm (finish time may alter depending on length of parade)\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 6-8 people\r\n\r\n&nbsp;\r\n<h3>Festival Opportunities</h3>\r\nFestival Helpers\r\n\r\nFriday 15th, Saturday 16th &amp; Sunday 17th September\r\n\r\nVarious jobs helping at Ergon Energy Food &amp; Wine Festival box office including wrist banding patrons, scanning entry tickets, flower crown preparation and answering patron enquiries. Feel free to do a shift every day!\r\n\r\nShift times (Flower Crown making):\r\n•8am-10am prep only\r\n•10am-12pm\r\n•12pm-2pm\r\n•2pm-4pm\r\n•4pm – 6pm\r\n\r\nShift times (general):\r\n•10am-1pm\r\n•1pm-4pm\r\n•4pm-7pm\r\n•7pm – 9pm\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 15-30 people\r\n\r\n&nbsp;\r\n<h3>Plant Market Volunteers</h3>\r\nMonday 18th – Tuesday 19th September\r\n\r\nHelping sell potted colour to the public after the Food and Wine Festival has closed and helping collect trays of potted colour across the Food &amp; Wine site. This role will require some physical work, lifting and carrying.\r\n\r\nShift times:\r\n•Various times from Monday 18th to Tuesday 19th September\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 5-10 people', 'Volunteer position descriptions', '', 'inherit', 'closed', 'closed', '', '77-revision-v1', '', '', '2018-01-22 04:14:18', '2018-01-22 04:14:18', '', 77, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/77-revision-v1/', 0, 'revision', '', 0),
 (79, 1, '2018-01-22 04:16:59', '2018-01-22 04:16:59', 'Volunteer for the Toowoomba Carnival of Flowers and together let’s make it the best one yet!\r\n\r\nIf you love Toowoomba and everything the Carnival of Flowers offers our city, volunteer with us over the ten days! Volunteer your time for one day and for many different experiences over Carnival! The Carnival Team are looking for helping hands on a range of projects in the lead up to, and during the events.<!--more-->\r\n\r\nVolunteering for the Toowoomba Carnival of Flowers isn’t difficult. Pick a time slot, a task that suits you and wait in anticipation for Carnival time to arrive – because you are going to have a tonne of fun!\r\n<h3>Volunteer testimonial</h3>\r\nIn my last year at high school I volunteered at the Toowoomba Carnival of Flowers Parade. I really enjoyed the opportunity and four months later I found myself working in the Carnival of Flowers Office! You never can tell where a few hours volunteering can lead. For me it was the beginning of my career. Heidi\r\n<h3>Sign me up!</h3>\r\nTo register your interest please complete our Expression Of Interest form and email it to us at info@tcof.com.au.\r\n<h3>What if I have a question?</h3>\r\nIf you have any questions or would like more information, please contact us either by phone on 07 4688 6661 or via email info@tcof.com.au.', 'Are you looking for a rewarding experience?', '', 'inherit', 'closed', 'closed', '', '75-revision-v1', '', '', '2018-01-22 04:16:59', '2018-01-22 04:16:59', '', 75, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/75-revision-v1/', 0, 'revision', '', 0),
 (80, 1, '2018-01-22 04:18:40', '2018-01-22 04:18:40', 'Opportunities to be involved include helping out at Visitor Information Centres, as a bus tour guide, at the parade<!--more-->\n<h3>Visitor Information Opportunities</h3>\nInfo Hub/ Visitor Information\n\nFriday 15th – Sunday 24th September\n\nAre you keen to share your love of Toowoomba and help welcome visitors to our region? Become an info guru stationed in the TCOF information hubs at Queens Park, Laurel Bank Park and Picnic Point to provide visitors with brochures, maps and local knowledge. You will become a vital team member working with Toowoomba Regional Council staff to assist visitors and locals alike discover all there is to Toowoomba Carnival of Flowers.\n\nShift times:\n•3-4 hour shifts from Friday 15th – Sunday 24th September\n\nUniform:\n•Carnival t-shirt (provided)\n•Carnival cap (provided)\n•Enclosed comfortable shoes (runners)\n•Comfortable shorts/long pants\n•Apply sunscreen (provided)\n\nVolunteers Needed: 25-30 people\n\n&nbsp;\n<h3>Bus Tour Guides</h3>\nFriday 15th – Sunday 24th September\n\nIf you love plants and are a Toowoomba local, you can join arranged tours to share your knowledge with groups around Toowoomba and the gardens. You will join tour groups coming to Toowoomba driving around different parts of the city and taking in all Toowoomba has to offer. Full training will be provided from our Tour packaging specialist. Commitment -2-4 hours\n\nShift times:\n•2-4 hour shifts from Friday 15th – Sunday 24th September\n\nUniform:\n•Carnival t-shirt (provided)\n•Carnival cap (provided)\n•Enclosed comfortable shoes (runners)\n•Comfortable shorts/long pants\n•Apply sunscreen (provided)\n\nVolunteers Needed: 4-6 people\n\n&nbsp;\n<h3>Parade Opportunities</h3>\nParade Pacers\n\nSaturday 16th September\n\nParticipate in the Grand Central Floral Parade by walking between parade entries helping to keep entries together by minimising gaps and adding your big smile to the parade. You will need to be available prior to the Parade Day for information sessions on your role and before the parade for costuming . If you have a few hours to spare and are keen to be a participant in the parade, this is the option for you!\n\nShift times:\n•4-5 hours\n\nUniform:\n•Carnival t-shirt (provided)\n•Carnival cap (provided)\n•Enclosed comfortable shoes (runners)\n•Comfortable solid BLACK coloured shorts/long pants\n•Apply sunscreen (provided)\n\nVolunteers Needed: 50 people\n\n&nbsp;\n<h3>Parade Preparation Volunteers</h3>\nAugust &amp; September- Various Dates\n\nYou will be available for various jobs helping with the Grand Central Floral Parade including, helping community groups decorate floats and costumes, making paper flowers during workshops and adding potted colour to floats. Times for these shifts are various depending on when help is needed leading up to the Grand Central Floral Parade. You will need to be available prior to the Parade Day and the morning of, to help with last minute decorations and costuming. If you have a few hours to spare on a weekend, this is the option for you!\n\nShift times:\n•3-4 hour shift- various times\n\nUniform:\n•Carnival t-shirt (provided)\n•Carnival cap (provided)\n•Enclosed comfortable shoes (runners)\n•Comfortable shorts/long pants\n•Apply sunscreen (provided)\n\nVolunteers Needed: 20-30 people\n\n&nbsp;\n<h3>Parade Information Officer</h3>\nSaturday 16th September\n\nHanding out thunder sticks, hand clappers &amp; chalk to the crowd prior to the floral parade. You will be paired with another volunteer &amp; given a section of the parade route to hand out these items. You will also be available to answer any questions visitors may have and be a representative for our city.\n\nShift as follows:\n•1:00pm-3:00pm (finish time may alter)\n\nUniform:\n•Carnival t-shirt (provided)\n•Carnival cap (provided)\n•Enclosed comfortable shoes (runners)\n•Comfortable shorts/long pants\n•Apply sunscreen (provided)\n\nVolunteers Needed: 14-20 people\n\n&nbsp;\n<h3>Parade Seating Officer</h3>\nSaturday 16th September\n\nYou will be allocated a bus group and a section of Parade Seating to look after. Meet and greet your group at the bus and accompany them to their seating. Once your group is seated you will be free to assist with any general questions from groups and the general public.\n\nShift as follows:\n•2:00pm-4:30pm (finish time may alter depending on length of parade)\n\nUniform:\n•Carnival t-shirt (provided)\n•Carnival cap (provided)\n•Enclosed comfortable shoes (runners)\n•Comfortable shorts/long pants\n•Apply sunscreen (provided)\n\nVolunteers Needed: 6 people\n\n&nbsp;\n<h3>Float Minders</h3>\nSaturday 16th September, 4pm to 6pm\n\nBe our float protectors at the end of the parade route, stand with the Toowoomba Regional Council floats to ensure children don’t climb on them and they remain safe. Flowers won’t be sold off the Carnival float, but you can help with the flower sales from other float bases. Assist the public with general enquiries. Commitment – 2 hours\n\nShift as follows:\n•4:00pm-6:00pm (finish time may alter depending on length of parade)\n\nUniform:\n•Carnival t-shirt (provided)\n•Carnival cap (provided)\n•Enclosed comfortable shoes (runners)\n•Comfortable shorts/long pants\n•Apply sunscreen (provided)\n\nVolunteers Needed: 6-8 people\n\n&nbsp;\n<h3>Festival Opportunities</h3>\nFestival Helpers\n\nFriday 15th, Saturday 16th &amp; Sunday 17th September\n\nVarious jobs helping at Ergon Energy Food &amp; Wine Festival box office including wrist banding patrons, scanning entry tickets, flower crown preparation and answering patron enquiries. Feel free to do a shift every day!\n\nShift times (Flower Crown making):\n•8am-10am prep only\n•10am-12pm\n•12pm-2pm\n•2pm-4pm\n•4pm – 6pm\n\nShift times (general):\n•10am-1pm\n•1pm-4pm\n•4pm-7pm\n•7pm – 9pm\n\nUniform:\n•Carnival t-shirt (provided)\n•Carnival cap (provided)\n•Enclosed comfortable shoes (runners)\n•Comfortable shorts/long pants\n•Apply sunscreen (provided)\n\nVolunteers Needed: 15-30 people\n\n&nbsp;\n<h3>Plant Market Volunteers</h3>\nMonday 18th – Tuesday 19th September\n\nHelping sell potted colour to the public after the Food and Wine Festival has closed and helping collect trays of potted colour across the Food &amp; Wine site. This role will require some physical work, lifting and carrying.\n\nShift times:\n•Various times from Monday 18th to Tuesday 19th September\n\nUniform:\n•Carnival t-shirt (provided)\n•Carnival cap (provided)\n•Enclosed comfortable shoes (runners)\n•Comfortable shorts/long pants\n•Apply sunscreen (provided)\n\nVolunteers Needed: 5-10 people', 'Volunteer position descriptions', '', 'inherit', 'closed', 'closed', '', '77-autosave-v1', '', '', '2018-01-22 04:18:40', '2018-01-22 04:18:40', '', 77, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/77-autosave-v1/', 0, 'revision', '', 0),
 (81, 1, '2018-01-22 04:18:56', '2018-01-22 04:18:56', 'Opportunities to be involved include helping out at Visitor Information Centres, as a bus tour guide, at the parade and at markets.<!--more-->\r\n<h3>Visitor Information Opportunities</h3>\r\nInfo Hub/ Visitor Information\r\n\r\nFriday 15th – Sunday 24th September\r\n\r\nAre you keen to share your love of Toowoomba and help welcome visitors to our region? Become an info guru stationed in the TCOF information hubs at Queens Park, Laurel Bank Park and Picnic Point to provide visitors with brochures, maps and local knowledge. You will become a vital team member working with Toowoomba Regional Council staff to assist visitors and locals alike discover all there is to Toowoomba Carnival of Flowers.\r\n\r\nShift times:\r\n•3-4 hour shifts from Friday 15th – Sunday 24th September\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 25-30 people\r\n\r\n&nbsp;\r\n<h3>Bus Tour Guides</h3>\r\nFriday 15th – Sunday 24th September\r\n\r\nIf you love plants and are a Toowoomba local, you can join arranged tours to share your knowledge with groups around Toowoomba and the gardens. You will join tour groups coming to Toowoomba driving around different parts of the city and taking in all Toowoomba has to offer. Full training will be provided from our Tour packaging specialist. Commitment -2-4 hours\r\n\r\nShift times:\r\n•2-4 hour shifts from Friday 15th – Sunday 24th September\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 4-6 people\r\n\r\n&nbsp;\r\n<h3>Parade Opportunities</h3>\r\nParade Pacers\r\n\r\nSaturday 16th September\r\n\r\nParticipate in the Grand Central Floral Parade by walking between parade entries helping to keep entries together by minimising gaps and adding your big smile to the parade. You will need to be available prior to the Parade Day for information sessions on your role and before the parade for costuming . If you have a few hours to spare and are keen to be a participant in the parade, this is the option for you!\r\n\r\nShift times:\r\n•4-5 hours\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable solid BLACK coloured shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 50 people\r\n\r\n&nbsp;\r\n<h3>Parade Preparation Volunteers</h3>\r\nAugust &amp; September- Various Dates\r\n\r\nYou will be available for various jobs helping with the Grand Central Floral Parade including, helping community groups decorate floats and costumes, making paper flowers during workshops and adding potted colour to floats. Times for these shifts are various depending on when help is needed leading up to the Grand Central Floral Parade. You will need to be available prior to the Parade Day and the morning of, to help with last minute decorations and costuming. If you have a few hours to spare on a weekend, this is the option for you!\r\n\r\nShift times:\r\n•3-4 hour shift- various times\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 20-30 people\r\n\r\n&nbsp;\r\n<h3>Parade Information Officer</h3>\r\nSaturday 16th September\r\n\r\nHanding out thunder sticks, hand clappers &amp; chalk to the crowd prior to the floral parade. You will be paired with another volunteer &amp; given a section of the parade route to hand out these items. You will also be available to answer any questions visitors may have and be a representative for our city.\r\n\r\nShift as follows:\r\n•1:00pm-3:00pm (finish time may alter)\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 14-20 people\r\n\r\n&nbsp;\r\n<h3>Parade Seating Officer</h3>\r\nSaturday 16th September\r\n\r\nYou will be allocated a bus group and a section of Parade Seating to look after. Meet and greet your group at the bus and accompany them to their seating. Once your group is seated you will be free to assist with any general questions from groups and the general public.\r\n\r\nShift as follows:\r\n•2:00pm-4:30pm (finish time may alter depending on length of parade)\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 6 people\r\n\r\n&nbsp;\r\n<h3>Float Minders</h3>\r\nSaturday 16th September, 4pm to 6pm\r\n\r\nBe our float protectors at the end of the parade route, stand with the Toowoomba Regional Council floats to ensure children don’t climb on them and they remain safe. Flowers won’t be sold off the Carnival float, but you can help with the flower sales from other float bases. Assist the public with general enquiries. Commitment – 2 hours\r\n\r\nShift as follows:\r\n•4:00pm-6:00pm (finish time may alter depending on length of parade)\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 6-8 people\r\n\r\n&nbsp;\r\n<h3>Festival Opportunities</h3>\r\nFestival Helpers\r\n\r\nFriday 15th, Saturday 16th &amp; Sunday 17th September\r\n\r\nVarious jobs helping at Ergon Energy Food &amp; Wine Festival box office including wrist banding patrons, scanning entry tickets, flower crown preparation and answering patron enquiries. Feel free to do a shift every day!\r\n\r\nShift times (Flower Crown making):\r\n•8am-10am prep only\r\n•10am-12pm\r\n•12pm-2pm\r\n•2pm-4pm\r\n•4pm – 6pm\r\n\r\nShift times (general):\r\n•10am-1pm\r\n•1pm-4pm\r\n•4pm-7pm\r\n•7pm – 9pm\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 15-30 people\r\n\r\n&nbsp;\r\n<h3>Plant Market Volunteers</h3>\r\nMonday 18th – Tuesday 19th September\r\n\r\nHelping sell potted colour to the public after the Food and Wine Festival has closed and helping collect trays of potted colour across the Food &amp; Wine site. This role will require some physical work, lifting and carrying.\r\n\r\nShift times:\r\n•Various times from Monday 18th to Tuesday 19th September\r\n\r\nUniform:\r\n•Carnival t-shirt (provided)\r\n•Carnival cap (provided)\r\n•Enclosed comfortable shoes (runners)\r\n•Comfortable shorts/long pants\r\n•Apply sunscreen (provided)\r\n\r\nVolunteers Needed: 5-10 people', 'Volunteer position descriptions', '', 'inherit', 'closed', 'closed', '', '77-revision-v1', '', '', '2018-01-22 04:18:56', '2018-01-22 04:18:56', '', 77, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/77-revision-v1/', 0, 'revision', '', 0),
 (82, 1, '2017-09-22 04:22:43', '2017-09-22 04:22:43', 'For assistance when visiting Toowoomba, don’t miss out on drawing on the resources of our Visitor Information Centre. The friendly staff and local volunteers will help you learn all you need to know to make your stay a memorable one.\r\n\r\nContact the centre for the best touring advice and mementos including:\r\n<ul>\r\n 	<li>Accommodation information</li>\r\n 	<li>Toowoomba Online Events Register</li>\r\n 	<li>Maps detailing Toowoomba and region</li>\r\n 	<li>Books on a variety of topics including travel, recreation and local history</li>\r\n 	<li>Local food products, handicrafts and souvenirs</li>\r\n</ul>\r\n<h3>Toowoomba Visitor Information Centre</h3>\r\n86 James Street (Warrego Hwy), Toowoomba Qld 4350\r\nT: 1800 33 11 55 (freecall)\r\nE: infocentre@tr.qld.gov.au\r\nWebsite | Location\r\n\r\n&nbsp;\r\n\r\nFor assistance and information on the surrounding regions contact one of the below information centres.\r\n<h4>Hampton Visitor Information Centre</h4>\r\n8623 New England Highway,\r\nHampton QLD 4352\r\nT: 07 4697 9066/1800 009 066\r\nE: hamptoninfo@tr.qld.gov.au\r\n<h4>Goombungee Visitor Information Centre</h4>\r\n89 Mocatta Street,\r\nGoombungee QLD 4354\r\nT: 07 4696 5600\r\nE: goombungeeinfo@tr.qld.gov.au\r\n<h4>Millmerran Museum &amp; Tourist Information Centre</h4>\r\nCorner Mary and Edward Street,\r\nMillmerran QLD 4357\r\nT: 07 4695 2560\r\nE: millmerraninfo@tr.qld.gov.au\r\n<h4>Pittsworth Visitor Information Centre</h4>\r\n50 Short Street,\r\nPittsworth QLD 4356\r\nT: 07 4693 2510\r\nE: pittsworthinfo@tr.qld.gov.au', 'Visitor information centres', '', 'publish', 'open', 'open', '', 'visitor-information-centres', '', '', '2018-01-22 04:23:31', '2018-01-22 04:23:31', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=82', 70, 'post', '', 0),
 (83, 1, '2018-01-22 04:22:43', '2018-01-22 04:22:43', 'For assistance when visiting Toowoomba, don’t miss out on drawing on the resources of our Visitor Information Centre. The friendly staff and local volunteers will help you learn all you need to know to make your stay a memorable one.\r\n\r\nContact the centre for the best touring advice and mementos including:\r\n<ul>\r\n 	<li>Accommodation information</li>\r\n 	<li>Toowoomba Online Events Register</li>\r\n 	<li>Maps detailing Toowoomba and region</li>\r\n 	<li>Books on a variety of topics including travel, recreation and local history</li>\r\n 	<li>Local food products, handicrafts and souvenirs</li>\r\n</ul>\r\n<h3>Toowoomba Visitor Information Centre</h3>\r\n86 James Street (Warrego Hwy), Toowoomba Qld 4350\r\nT: 1800 33 11 55 (freecall)\r\nE: infocentre@tr.qld.gov.au\r\nWebsite | Location\r\n\r\n&nbsp;\r\n\r\nFor assistance and information on the surrounding regions contact one of the below information centres.\r\n<h4>Hampton Visitor Information Centre</h4>\r\n8623 New England Highway,\r\nHampton QLD 4352\r\nT: 07 4697 9066/1800 009 066\r\nE: hamptoninfo@tr.qld.gov.au\r\n<h4>Goombungee Visitor Information Centre</h4>\r\n89 Mocatta Street,\r\nGoombungee QLD 4354\r\nT: 07 4696 5600\r\nE: goombungeeinfo@tr.qld.gov.au\r\n<h4>Millmerran Museum &amp; Tourist Information Centre</h4>\r\nCorner Mary and Edward Street,\r\nMillmerran QLD 4357\r\nT: 07 4695 2560\r\nE: millmerraninfo@tr.qld.gov.au\r\n<h4>Pittsworth Visitor Information Centre</h4>\r\n50 Short Street,\r\nPittsworth QLD 4356\r\nT: 07 4693 2510\r\nE: pittsworthinfo@tr.qld.gov.au', 'Visitor information centres', '', 'inherit', 'closed', 'closed', '', '82-revision-v1', '', '', '2018-01-22 04:22:43', '2018-01-22 04:22:43', '', 82, 'http://www.toowoombaregionalcouncil.com.au/tcof/2018/01/22/82-revision-v1/', 0, 'revision', '', 0),
 (84, 1, '2018-01-22 14:48:40', '2018-01-22 04:48:40', '', 'header-left-elements', '', 'inherit', 'closed', 'closed', '', 'header-left-elements', '', '', '2018-01-22 14:48:40', '2018-01-22 04:48:40', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/header-left-elements.png', 0, 'attachment', 'image/png', 0),
 (99, 1, '2018-01-22 15:02:38', '2018-01-22 05:02:38', '', 'footer-tourismqld', '', 'inherit', 'closed', 'closed', '', 'footer-tourismqld', '', '', '2018-01-22 15:02:38', '2018-01-22 05:02:38', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-tourismqld.jpg', 0, 'attachment', 'image/jpeg', 0),
 (100, 1, '2018-01-22 15:02:40', '2018-01-22 05:02:40', '', 'footer-ata', '', 'inherit', 'closed', 'closed', '', 'footer-ata', '', '', '2018-01-22 15:02:40', '2018-01-22 05:02:40', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-ata.jpg', 0, 'attachment', 'image/jpeg', 0),
 (101, 1, '2018-01-22 15:02:41', '2018-01-22 05:02:41', '', 'footer-ergon', '', 'inherit', 'closed', 'closed', '', 'footer-ergon', '', '', '2018-01-22 15:02:41', '2018-01-22 05:02:41', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-ergon.jpg', 0, 'attachment', 'image/jpeg', 0),
 (102, 1, '2018-01-22 15:02:42', '2018-01-22 05:02:42', '', 'footer-fame-tour-aw-2017', '', 'inherit', 'closed', 'closed', '', 'footer-fame-tour-aw-2017', '', '', '2018-01-22 15:02:42', '2018-01-22 05:02:42', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-fame-tour-aw-2017.jpg', 0, 'attachment', 'image/jpeg', 0),
 (103, 1, '2018-01-22 15:02:43', '2018-01-22 05:02:43', '', 'footer-gold-tour-aw-2017', '', 'inherit', 'closed', 'closed', '', 'footer-gold-tour-aw-2017', '', '', '2018-01-22 15:02:43', '2018-01-22 05:02:43', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-gold-tour-aw-2017.jpg', 0, 'attachment', 'image/jpeg', 0),
 (104, 1, '2018-01-22 15:02:44', '2018-01-22 05:02:44', '', 'footer-grandcentral', '', 'inherit', 'closed', 'closed', '', 'footer-grandcentral', '', '', '2018-01-22 15:02:44', '2018-01-22 05:02:44', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-grandcentral.jpg', 0, 'attachment', 'image/jpeg', 0),
 (105, 1, '2018-01-22 15:02:45', '2018-01-22 05:02:45', '', 'footer-heritagebank', '', 'inherit', 'closed', 'closed', '', 'footer-heritagebank', '', '', '2018-01-22 15:02:45', '2018-01-22 05:02:45', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-heritagebank.jpg', 0, 'attachment', 'image/jpeg', 0),
 (106, 1, '2018-01-22 15:02:46', '2018-01-22 05:02:46', '', 'footer-pete-honda', '', 'inherit', 'closed', 'closed', '', 'footer-pete-honda', '', '', '2018-01-22 15:02:46', '2018-01-22 05:02:46', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-pete-honda.jpg', 0, 'attachment', 'image/jpeg', 0),
 (107, 1, '2018-01-22 15:02:47', '2018-01-22 05:02:47', '', 'footer-QANTAS_Link', '', 'inherit', 'closed', 'closed', '', 'footer-qantas_link', '', '', '2018-01-22 15:02:47', '2018-01-22 05:02:47', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-QANTAS_Link.jpg', 0, 'attachment', 'image/jpeg', 0),
 (108, 1, '2018-01-22 15:02:48', '2018-01-22 05:02:48', '', 'footer-sqc', '', 'inherit', 'closed', 'closed', '', 'footer-sqc', '', '', '2018-01-22 15:02:48', '2018-01-22 05:02:48', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-sqc.jpg', 0, 'attachment', 'image/jpeg', 0),
 (109, 1, '2018-01-22 15:02:49', '2018-01-22 05:02:49', '', 'footer-TheChronicle', '', 'inherit', 'closed', 'closed', '', 'footer-thechronicle', '', '', '2018-01-22 15:02:49', '2018-01-22 05:02:49', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-TheChronicle.jpg', 0, 'attachment', 'image/jpeg', 0),
 (110, 1, '2018-01-22 15:02:50', '2018-01-22 05:02:50', '', 'footer-ToowoombaReg', '', 'inherit', 'closed', 'closed', '', 'footer-toowoombareg', '', '', '2018-01-22 15:02:50', '2018-01-22 05:02:50', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/footer-ToowoombaReg.jpg', 0, 'attachment', 'image/jpeg', 0),
 (111, 1, '2018-01-22 16:33:27', '2018-01-22 06:33:27', '<h1 class="uppercase">TOOWOOMBA CARNIVAL OF FLOWERS</h1>\r\n<h2>Friday 21 - Sunday 30 September 2018</h2>\r\nThe locals love it and visitors travel from all over the country to be part of it. Now in its 69th year the award-winning Toowoomba Carnival of Flowers continues to grow. Spectacular gardens, country touring, live music and local food &amp; wine plus much more.\r\n\r\n&nbsp;\r\n<h1 class="pink uppercase">SUMMER TUNES</h1>\r\nToowoomba is now officially the home of both tunes and blooms! The city that is home to the internationally acclaimed Toowoomba Carnival of Flowers is about to host the inaugural SUMMER TUNES program - a program of sounds across the final eight Sundays of summer. Summer Tunes will take over the Southern Queensland city and its surrounds in the most beautiful of ways, with a program of more than 38 FREE unique musical events and experiences for the whole family each Sunday during January and February 2018.\r\n\r\nMusically, the program showcases and celebrates local south-east Queensland musicians from as young as 8 years old. The line-up covers over four decades of popular music genres including jazz, blues, swing, rock ‘n’ roll, folk, bush ballads, Latin and cabaret, as well as favoured lullabies and gospel and will be staged across a selection of Toowoomba region’s stunning parks.\r\n\r\nFind Toowoomba Summer Tunes events - <a href="http://tcof.com.au/wp-content/uploads/2018/SummerTunes2018.pdf" target="_blank" rel="noopener">SummerTunes2018.pdf</a> (opens in new window)', 'Home page', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2018-01-22 16:33:27', '2018-01-22 06:33:27', '', 7, 'http://www.toowoombaregionalcouncil.com.au/tcof/7-revision-v1/', 0, 'revision', '', 0),
 (114, 2, '2018-01-23 13:01:07', '2018-01-23 03:01:07', '<h2 class="purple">Fri 22 - Sat 23 Sep</h2>\r\nPick a flick and spend a night with the stars at this year’s Pictures in the Park. Lie back and enjoy the picturesque surrounds of Laurel Bank Park as you watch the free line-up of blockbuster family favourites that are sure to appeal to all ages. Bring your blanket, picnic rug or chair and settle in for a relaxing night with friends and family.\r\n<h2>Trolls</h2>\r\nThis hilarious film transports audiences to a colourful, wondrous world populated by Trolls. They have a constant dance in their step and a song on their lips. Don’t miss this star-studded hit!\r\n\r\nCOST: Free\r\n\r\nTIMES:  Friday 22 Sept  at sunset (approx. 6:30pm)\r\n<h2>The Lion King</h2>\r\nEmbark on an extraordinary coming-of-age adventure with Simba in this animated classic guaranteed to delight all ages. Be prepared!\r\n\r\nCOST: Free\r\n\r\nTIMES:  Saturday 23 Sept at sunset (approx. 6:30pm)', 'Pictures in the park', '', 'draft', 'closed', 'closed', '', 'pictures-in-the-park', '', '', '2018-01-30 15:43:18', '2018-01-30 05:43:18', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=114', 66, 'post', '', 0),
 (115, 2, '2018-01-23 12:44:36', '2018-01-23 02:44:36', '<h2 class="teal">Fri 15 - Sun 24 Sep</h2>\r\nIndulge in a relaxing afternoon strolling  through beautiful private gardens. Our three-hour guided tour takes in a selection of Toowoomba’s prize-winning gardens.  This includes 3 private gardens and 1 exhibition garden so don’t miss out on an afternoon with the flowers.\r\n\r\nCOST: $37.50 per person\r\n\r\nThese tours are hosted by Stonestreets Coaches. Click on BOOK TICKETS to be directed to the Stonestreets website.', 'Afternoon garden tour', '', 'draft', 'closed', 'closed', '', 'afternoon-garden-tour', '', '', '2018-01-30 15:44:30', '2018-01-30 05:44:30', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=115', 65, 'post', '', 0),
 (116, 2, '2018-01-23 12:44:36', '2018-01-23 02:44:36', '<h2 class="teal">Fri 15 - Sun 24 Sep</h2>\r\nIndulge in a relaxing afternoon strolling  through beautiful private gardens. Our three-hour guided tour takes in a selection of Toowoomba’s prize-winning gardens.  This includes 3 private gardens and 1 exhibition garden so don’t miss out on an afternoon with the flowers.\r\n\r\nCOST: $37.50 per person\r\n\r\nThese tours are hosted by Stonestreets Coaches. Click on BOOK TICKETS to be directed to the Stonestreets website.', 'Afternoon garden tour', '', 'inherit', 'closed', 'closed', '', '115-revision-v1', '', '', '2018-01-23 12:44:36', '2018-01-23 02:44:36', '', 115, 'http://www.toowoombaregionalcouncil.com.au/tcof/115-revision-v1/', 0, 'revision', '', 0),
 (118, 2, '2018-01-23 12:59:20', '2018-01-23 02:59:20', '<h2 class="teal">Fri 15 - Sun 24 Sep</h2>\r\nDelight in seeing prize-winning gardens in all their morning glory. Our three hour guided tour takes in a selection of Toowoomba’s most spectacular private gardens. This includes a visit to 3 private gardens and 1 exhibition garden so book in for a floral showcase not to be missed.\r\n\r\nCOST:  $37.50 per person\r\n\r\nThese tours are hosted by Stonestreets Coaches. Click on BOOK TICKETS to be directed to the Stonestreets website.', 'Morning garden tour', '', 'draft', 'closed', 'closed', '', 'morning-garden-tour-2', '', '', '2018-01-30 15:44:02', '2018-01-30 05:44:02', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=118', 64, 'post', '', 0),
 (119, 2, '2018-01-23 12:59:20', '2018-01-23 02:59:20', '<h2 class="teal">Fri 15 - Sun 24 Sep</h2>\r\nDelight in seeing prize-winning gardens in all their morning glory. Our three hour guided tour takes in a selection of Toowoomba’s most spectacular private gardens. This includes a visit to 3 private gardens and 1 exhibition garden so book in for a floral showcase not to be missed.\r\n\r\nCOST:  $37.50 per person\r\n\r\nThese tours are hosted by Stonestreets Coaches. Click on BOOK TICKETS to be directed to the Stonestreets website.', 'Morning garden tour', '', 'inherit', 'closed', 'closed', '', '118-revision-v1', '', '', '2018-01-23 12:59:20', '2018-01-23 02:59:20', '', 118, 'http://www.toowoombaregionalcouncil.com.au/tcof/118-revision-v1/', 0, 'revision', '', 0),
 (120, 2, '2018-01-23 13:01:07', '2018-01-23 03:01:07', '<h2 class="purple">Fri 22 - Sat 23 Sep</h2>\r\nPick a flick and spend a night with the stars at this year’s Pictures in the Park. Lie back and enjoy the picturesque surrounds of Laurel Bank Park as you watch the free line-up of blockbuster family favourites that are sure to appeal to all ages. Bring your blanket, picnic rug or chair and settle in for a relaxing night with friends and family.\r\n<h2>Trolls</h2>\r\nThis hilarious film transports audiences to a colourful, wondrous world populated by Trolls. They have a constant dance in their step and a song on their lips. Don’t miss this star-studded hit!\r\n\r\nCOST: Free\r\n\r\nTIMES:  Friday 22 Sept  at sunset (approx. 6:30pm)\r\n<h2>The Lion King</h2>\r\nEmbark on an extraordinary coming-of-age adventure with Simba in this animated classic guaranteed to delight all ages. Be prepared!\r\n\r\nCOST: Free\r\n\r\nTIMES:  Saturday 23 Sept at sunset (approx. 6:30pm)', 'Pictures in the park', '', 'inherit', 'closed', 'closed', '', '114-revision-v1', '', '', '2018-01-23 13:01:07', '2018-01-23 03:01:07', '', 114, 'http://www.toowoombaregionalcouncil.com.au/tcof/114-revision-v1/', 0, 'revision', '', 0),
 (121, 2, '2018-01-23 13:42:59', '2018-01-23 03:42:59', '[the-post-grid id="621" title="All events"]', '2017 Events', '', 'publish', 'closed', 'closed', '', '2017-events', '', '', '2018-03-15 13:30:53', '2018-03-15 03:30:53', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=121', 10, 'page', '', 0),
 (122, 2, '2018-01-23 13:42:59', '2018-01-23 03:42:59', '<div id="pl-122"  class="panel-layout" ><div id="pg-122-0"  class="panel-grid panel-no-style" ><div id="pgc-122-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-122-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-122-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-122-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-122-1-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-122-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-122-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-122-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 13:42:59', '2018-01-23 03:42:59', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (123, 2, '2018-01-23 13:42:59', '2018-01-23 03:42:59', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-121-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-121-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-121-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 13:42:59', '2018-01-23 03:42:59', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (126, 2, '2018-01-30 11:39:32', '2018-01-30 01:39:32', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517276304640&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-autosave-v1', '', '', '2018-01-30 11:39:32', '2018-01-30 01:39:32', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-autosave-v1/', 0, 'revision', '', 0),
 (127, 2, '2018-01-23 14:49:56', '2018-01-23 04:49:56', '<div id="pl-127"  class="panel-layout" ><div id="pg-127-0"  class="panel-grid panel-no-style" ><div id="pgc-127-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-127-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-127-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-127-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-127-1-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-127-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-127-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-127-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:49:56', '2018-01-23 04:49:56', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (128, 2, '2018-01-23 14:49:56', '2018-01-23 04:49:56', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-121-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-121-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-121-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:49:56', '2018-01-23 04:49:56', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (130, 2, '2018-01-23 14:54:01', '2018-01-23 04:54:01', '<div id="pl-130"  class="panel-layout" ><div id="pg-130-0"  class="panel-grid panel-no-style" ><div id="pgc-130-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-130-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-130-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-130-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-130-1-0"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-130-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66bfe0934bb&quot;,&quot;_sow_form_timestamp&quot;:&quot;&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-130-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-130-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-130-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-130-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:54:01', '2018-01-23 04:54:01', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (131, 2, '2018-01-23 14:54:01', '2018-01-23 04:54:01', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66bfe0934bb&quot;,&quot;_sow_form_timestamp&quot;:&quot;&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-121-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-121-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-121-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:54:01', '2018-01-23 04:54:01', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (132, 2, '2018-01-23 14:54:37', '2018-01-23 04:54:37', '<div id="pl-132"  class="panel-layout" ><div id="pg-132-0"  class="panel-grid panel-no-style" ><div id="pgc-132-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-132-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-132-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-132-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-132-1-0"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-132-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66bfe0934bb&quot;,&quot;_sow_form_timestamp&quot;:&quot;&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-132-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-132-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-132-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-132-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:54:37', '2018-01-23 04:54:37', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (133, 2, '2018-01-23 14:54:37', '2018-01-23 04:54:37', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66bfe0934bb&quot;,&quot;_sow_form_timestamp&quot;:&quot;&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-121-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-121-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-121-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:54:37', '2018-01-23 04:54:37', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (134, 2, '2018-01-23 14:55:28', '2018-01-23 04:55:28', '<div id="pl-134"  class="panel-layout" ><div id="pg-134-0"  class="panel-grid panel-no-style" ><div id="pgc-134-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-134-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-134-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-134-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-134-1-0"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-134-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66bfe0934bb&quot;,&quot;_sow_form_timestamp&quot;:&quot;&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-134-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-134-1-1"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-134-1-1-0" class="so-panel widget widget_tag_cloud panel-first-child panel-last-child" data-index="2" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Tag_Cloud"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;count&quot;:0,&quot;taxonomy&quot;:&quot;post_tag&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-134-1-1-0\\&quot; class=\\&quot;so-panel widget widget_tag_cloud panel-first-child panel-last-child\\&quot; data-index=\\&quot;2\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-1-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-134-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-134-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:55:28', '2018-01-23 04:55:28', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (135, 2, '2018-01-23 14:55:28', '2018-01-23 04:55:28', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66bfe0934bb&quot;,&quot;_sow_form_timestamp&quot;:&quot;&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-121-1-1"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-121-1-1-0" class="so-panel widget widget_tag_cloud panel-first-child panel-last-child" data-index="2" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Tag_Cloud"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;count&quot;:0,&quot;taxonomy&quot;:&quot;post_tag&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-1-0\\&quot; class=\\&quot;so-panel widget widget_tag_cloud panel-first-child panel-last-child\\&quot; data-index=\\&quot;2\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-1-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-121-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-121-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:55:28', '2018-01-23 04:55:28', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (136, 2, '2018-01-23 14:57:47', '2018-01-23 04:57:47', '<div id="pl-136"  class="panel-layout" ><div id="pg-136-0"  class="panel-grid panel-no-style" ><div id="pgc-136-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-136-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-136-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-136-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-136-1-0"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-136-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-page.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66bfe0934bb&quot;,&quot;_sow_form_timestamp&quot;:&quot;1516683460852&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-136-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-136-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-136-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-136-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:57:47', '2018-01-23 04:57:47', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (137, 2, '2018-01-23 14:57:47', '2018-01-23 04:57:47', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;gutter&quot;:&quot;10px&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="0.25" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-page.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66bfe0934bb&quot;,&quot;_sow_form_timestamp&quot;:&quot;1516683460852&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div><div id="pgc-121-1-1"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div><div id="pgc-121-1-2"  class="panel-grid-cell panel-grid-cell-empty panel-grid-cell-mobile-last"  data-weight="0.25" ></div><div id="pgc-121-1-3"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="0.25" ></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:57:47', '2018-01-23 04:57:47', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (138, 2, '2018-01-23 14:59:10', '2018-01-23 04:59:10', '<div id="pl-138"  class="panel-layout" ><div id="pg-138-0"  class="panel-grid panel-no-style" ><div id="pgc-138-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-138-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-138-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-138-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-138-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-138-1-0-0" class="so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostContent"]<input type="hidden" value="{&quot;instance&quot;:{&quot;type&quot;:&quot;featured&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-138-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:59:10', '2018-01-23 04:59:10', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (139, 2, '2018-01-23 14:59:10', '2018-01-23 04:59:10', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostContent"]<input type="hidden" value="{&quot;instance&quot;:{&quot;type&quot;:&quot;featured&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:59:10', '2018-01-23 04:59:10', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (140, 2, '2018-01-23 14:59:55', '2018-01-23 04:59:55', '<div id="pl-140"  class="panel-layout" ><div id="pg-140-0"  class="panel-grid panel-no-style" ><div id="pgc-140-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-140-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-140-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-140-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-140-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-140-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-140-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:59:55', '2018-01-23 04:59:55', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (141, 2, '2018-01-23 14:59:55', '2018-01-23 04:59:55', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 14:59:55', '2018-01-23 04:59:55', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (142, 2, '2018-01-23 15:02:20', '2018-01-23 05:02:20', '<div id="pl-142"  class="panel-layout" ><div id="pg-142-0"  class="panel-grid panel-no-style" ><div id="pgc-142-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-142-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-142-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-142-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-142-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-142-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1516683734973&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-142-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 15:02:20', '2018-01-23 05:02:20', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (143, 2, '2018-01-23 15:02:20', '2018-01-23 05:02:20', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1516683734973&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', 'Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-23 15:02:20', '2018-01-23 05:02:20', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (146, 1, '2017-09-15 15:02:17', '2017-09-15 05:02:17', 'With its developing street art culture and vibrant laneway life, Toowoomba is earning a reputation as a culturally diverse urban environment. Combining art and architecture, this walk takes the visitor through some of Toowoomba’s famous street art laneways. Learn about the art, the world renowned artists and the architecture on display. Sharing a mix of stories about the art and the buildings, our guides will show you a side of Toowoomba visitors rarely see. Take a walk on the wild side through the arcades, backstreets and laneways.\r\n\r\nDURATION: 2 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at Muller Brothers Rooftop Bar, a clever adaption of a former warehouse space.\r\n\r\nWHEN: Sunday 24 Sept\r\n\r\nCOST: Adult $35 | Concession $30\r\n<h2>Times</h2>\r\nSunday 24 Sept 2pm - 4pm\r\n<h2>Location</h2>\r\nBell St Mall Entrance, 400 Ruthven St, Toowoomba (<a href="https://www.google.com/maps?q=-27.56013219999999,151.9543585" target="_blank" rel="noopener">Google map</a>)', 'Walking tour Hidden laneways', '', 'publish', 'closed', 'closed', '', 'walking-tour-hidden-laneways', '', '', '2018-01-24 15:58:58', '2018-01-24 05:58:58', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=146', 63, 'post', '', 0),
 (147, 1, '2018-01-24 15:10:43', '2018-01-24 05:10:43', '', 'Wall art in Toowoomba CBD', '', 'inherit', 'closed', 'closed', '', 'walkingtourhiddenlaneways2', '', '', '2018-01-24 15:10:59', '2018-01-24 05:10:59', '', 146, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/WalkingTourHiddenLaneways2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (148, 1, '2018-01-24 15:13:00', '2018-01-24 05:13:00', 'With its developing street art culture and vibrant laneway life, Toowoomba is earning a reputation as a culturally diverse urban environment. Combining art and architecture, this walk takes the visitor through some of Toowoomba’s famous street art laneways. Learn about the art, the world renowned artists and the architecture on display. Sharing a mix of stories about the art and the buildings, our guides will show you a side of Toowoomba visitors rarely see. Take a walk on the wild side through the arcades, backstreets and laneways.\r\n\r\nDURATION: 2 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at Muller Brothers Rooftop Bar, a clever adaption of a former warehouse space.\r\n\r\nWHEN: Sunday 24 Sept\r\n\r\nCOST: Adult $35 | Concession $30', 'Walking Tour Hidden Laneways - 24 Sep 2017', '', 'inherit', 'closed', 'closed', '', '146-revision-v1', '', '', '2018-01-24 15:13:00', '2018-01-24 05:13:00', '', 146, 'http://www.toowoombaregionalcouncil.com.au/tcof/146-revision-v1/', 0, 'revision', '', 0),
 (149, 1, '2017-09-23 15:13:27', '2017-09-23 05:13:27', 'The state heritage listed Railway precinct is a must visit destination. Join your guide, Paul Herbert, as he develops the argument as to why the Toowoomba Railway is the most important piece of transport infrastructure ever built in Queensland. Explore the commercial, social and engineering significance of this intact historical treasure. Learn about the importance of the railway during World War II and explore one of Queensland’s best preserved air raid shelters. Uncover some of the fascinating stories accumulated over 150 years, from the antics of the young ladies working in the refreshment rooms to the ghost that is said to haunt the tracks.\r\n\r\nThe Railway precinct is a true treasure. Come and explore it with a passionate local.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary coffee at Inbound café located in the historic Railway refreshment rooms or at another nearby café.\r\n\r\nWHEN: Saturday 23 Sept\r\n\r\nCOST: Adult $33 | Concession $29\r\n<h2>Times</h2>\r\n10am - 11:30am\r\n<h2>Location</h2>\r\nToowoomba Railway Station, Platform 1, Railway St, Toowoomba (<a href="https://goo.gl/maps/kPMmxXpDxLz" target="_blank" rel="noopener">Google map</a>)', 'Walking tour 150 years of rail', '', 'publish', 'closed', 'closed', '', 'walking-tour-150-years-of-rail', '', '', '2018-01-24 16:05:26', '2018-01-24 06:05:26', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=149', 62, 'post', '', 0),
 (150, 1, '2018-01-24 15:16:45', '2018-01-24 05:16:45', '', 'Railway', '', 'inherit', 'closed', 'closed', '', 'railway', '', '', '2018-01-24 15:16:45', '2018-01-24 05:16:45', '', 149, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Railway.jpg', 0, 'attachment', 'image/jpeg', 0),
 (151, 1, '2018-01-24 15:17:12', '2018-01-24 05:17:12', 'The state heritage listed Railway precinct is a must visit destination. Join your guide, Paul Herbert, as he develops the argument as to why the Toowoomba Railway is the most important piece of transport infrastructure ever built in Queensland. Explore the commercial, social and engineering significance of this intact historical treasure. Learn about the importance of the railway during World War II and explore one of Queensland’s best preserved air raid shelters. Uncover some of the fascinating stories accumulated over 150 years, from the antics of the young ladies working in the refreshment rooms to the ghost that is said to haunt the tracks.\r\n\r\nThe Railway precinct is a true treasure. Come and explore it with a passionate local.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary coffee at Inbound café located in the historic Railway refreshment rooms or at another nearby café.\r\n\r\nWHEN: Saturday 23 Sept\r\n\r\nCOST: Adult $33 | Concession $29', 'Walking tour 150 years of rail - 23 Sep 2017', '', 'inherit', 'closed', 'closed', '', '149-revision-v1', '', '', '2018-01-24 15:17:12', '2018-01-24 05:17:12', '', 149, 'http://www.toowoombaregionalcouncil.com.au/tcof/149-revision-v1/', 0, 'revision', '', 0),
 (152, 1, '2017-09-24 15:17:20', '2017-09-24 05:17:20', 'Present day Toowoomba is built on the bones of a gracious Victorian era city. Look carefully and the city\'s historic past comes to life.\r\n\r\nJoin local Heritage Architect Stephanie Keays on this walk through the CBD and take a fascinating glimpse into Toowoomba’s architecture and history. Starting at the Art Deco style Empire Theatre, visitors will be guided through Toowoomba’s rich architectural legacy. Explore a range of building styles and the design details that make them unique to our town with a mix of history, street art, cafes, shops and interesting stories along the way.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at the Walton Stores complex, Annand Street, one of Toowoomba’s newest architecturally designed dining districts.\r\n\r\nWHEN: Sunday 24 Sept\r\n\r\nCOST: Adult $33 | Concession $29\r\n<h2>Times</h2>\r\nSunday 24 Sept 10am - 11:30am\r\n<h3>Location</h3>\r\nPick-up at Empire Theatre Lawn, 56 Neil St, Toowoomba (<a href="https://goo.gl/maps/gAu57ZCeSdB2" target="_blank" rel="noopener">Google map</a>)', 'Walking tour CBD architecture', '', 'publish', 'closed', 'closed', '', 'walking-tour-cbd-architecture', '', '', '2018-01-24 16:02:57', '2018-01-24 06:02:57', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=152', 61, 'post', '', 0),
 (153, 1, '2018-01-24 15:20:24', '2018-01-24 05:20:24', '', 'empireTheatre', '', 'inherit', 'closed', 'closed', '', 'empiretheatre', '', '', '2018-01-24 15:20:24', '2018-01-24 05:20:24', '', 152, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/empireTheatre.jpg', 0, 'attachment', 'image/jpeg', 0),
 (154, 1, '2018-01-24 15:20:33', '2018-01-24 05:20:33', 'Present day Toowoomba is built on the bones of a gracious Victorian era city. Look carefully and the city\'s historic past comes to life.\r\n\r\nJoin local Heritage Architect Stephanie Keays on this walk through the CBD and take a fascinating glimpse into Toowoomba’s architecture and history. Starting at the Art Deco style Empire Theatre, visitors will be guided through Toowoomba’s rich architectural legacy. Explore a range of building styles and the design details that make them unique to our town with a mix of history, street art, cafes, shops and interesting stories along the way.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at the Walton Stores complex, Annand Street, one of Toowoomba’s newest architecturally designed dining districts.\r\n\r\nWHEN: Sunday 24 Sept\r\n\r\nCOST: Adult $33 | Concession $29', 'Walking tour CBD architecture - 24 Sep 2017', '', 'inherit', 'closed', 'closed', '', '152-revision-v1', '', '', '2018-01-24 15:20:33', '2018-01-24 05:20:33', '', 152, 'http://www.toowoombaregionalcouncil.com.au/tcof/152-revision-v1/', 0, 'revision', '', 0),
 (155, 1, '2017-09-24 15:22:26', '2017-09-24 05:22:26', 'Join our four-hour progressive foodie tour to four historic pubs. First stop is Fitzy\'s Toowoomba to sample shared canape platters, then to the rooftop bar at Muller Bros for more tasty morsels. Mains will be served at the quirky Spotted Cow Hotel, with dessert at the historic Irish Club Hotel for a sweet finish to the tour. Tour includes all meals and a drink at each pub.\r\n\r\nWHEN: Sunday 24 Sept (lunch tour)\r\nCan\'t make the 24th? It also runs on the <a href="http://tcof.com.au/events/talking-pubs-tour-22-sept/">22nd </a>and the <a href="http://tcof.com.au/events/talking-pubs-tour-23-sept/">23rd</a>\r\n\r\nCOST: Adult $99\r\n<h3>TALKING PUBS MENU</h3>\r\n<h4>CANAPÉS - FITZY\'S</h4>\r\nDrinks: Choice of a glass of Chardonnay, Shiraz Cabernet or Sparkling, Schooner of XXXX Gold, Hahn Light or Great Northern, soft drink or juice\r\n\r\nFood: Shared platter of Mini Angus Beef Mignons, Pork &amp; Vegetable Spring Rolls and Crumbed Prawns\r\n<h4>CANAPÉS - MULLER BROS</h4>\r\nDrinks: Choice of a glass of house wine, house beer or soft drink\r\n\r\nFood: Shared platter of Semi-dried Tomato and Saffron Arancini Balls with Red Pepper Coulis, Pork &amp; Chive Dumplings and Oysters - Natural, Raspberry Vinaigrette, Thai-style\r\n<h4>MAIN MEAL - SPOTTED COW HOTEL</h4>\r\nDrinks: Pot of any beer on tap, glass of wine or soft drink\r\n\r\nFood: Choice of Beer Battered Barramundi, Chicken Parmigiana or Rib Fillet Burger (all served with chips &amp; salad)\r\n<h4>DESSERT - IRISH CLUB HOTEL</h4>\r\nDrinks: Choice of pot of beer or glass of wine\r\n\r\nFood: Sticky date pudding\r\n<h2>TIMES</h2>\r\nLunch pick-up at 11am, Returns 3:15pm.\r\n<h2>LOCATION</h2>\r\nPick-up Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://www.google.com/maps?q=-27.556767,151.95118479999996" target="_blank" rel="noopener">Google map</a>)\r\n\r\n&nbsp;', 'Talking pubs tour', '', 'publish', 'closed', 'closed', '', 'talking-pubs-tour', '', '', '2018-01-24 16:07:22', '2018-01-24 06:07:22', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=155', 60, 'post', '', 0),
 (156, 1, '2018-01-24 15:24:58', '2018-01-24 05:24:58', '', 'Small Group Drinking At Pub', '', 'inherit', 'closed', 'closed', '', 'smallgroupdrinkingatpub2', '', '', '2018-01-24 15:25:09', '2018-01-24 05:25:09', '', 155, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/SmallGroupDrinkingAtPub2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (157, 1, '2018-01-24 15:25:12', '2018-01-24 05:25:12', 'Join our four-hour progressive foodie tour to four historic pubs. First stop is Fitzy\'s Toowoomba to sample shared canape platters, then to the rooftop bar at Muller Bros for more tasty morsels. Mains will be served at the quirky Spotted Cow Hotel, with dessert at the historic Irish Club Hotel for a sweet finish to the tour. Tour includes all meals and a drink at each pub.\r\n\r\nWHEN: Sunday 24 Sept (lunch tour)\r\nCan\'t make the 24th? It also runs on the <a href="http://tcof.com.au/events/talking-pubs-tour-22-sept/">22nd </a>and the <a href="http://tcof.com.au/events/talking-pubs-tour-23-sept/">23rd</a>\r\n\r\nCOST: Adult $99\r\n<h3>TALKING PUBS MENU</h3>\r\n<h4>CANAPÉS - FITZY\'S</h4>\r\nDrinks: Choice of a glass of Chardonnay, Shiraz Cabernet or Sparkling, Schooner of XXXX Gold, Hahn Light or Great Northern, soft drink or juice\r\n\r\nFood: Shared platter of Mini Angus Beef Mignons, Pork &amp; Vegetable Spring Rolls and Crumbed Prawns\r\n<h4>CANAPÉS - MULLER BROS</h4>\r\nDrinks: Choice of a glass of house wine, house beer or soft drink\r\n\r\nFood: Shared platter of Semi-dried Tomato and Saffron Arancini Balls with Red Pepper Coulis, Pork &amp; Chive Dumplings and Oysters - Natural, Raspberry Vinaigrette, Thai-style\r\n<h4>MAIN MEAL - SPOTTED COW HOTEL</h4>\r\nDrinks: Pot of any beer on tap, glass of wine or soft drink\r\n\r\nFood: Choice of Beer Battered Barramundi, Chicken Parmigiana or Rib Fillet Burger (all served with chips &amp; salad)\r\n<h4>DESSERT - IRISH CLUB HOTEL</h4>\r\nDrinks: Choice of pot of beer or glass of wine\r\n\r\nFood: Sticky date pudding', 'Talking pubs tour - 24 Sep 2017', '', 'inherit', 'closed', 'closed', '', '155-revision-v1', '', '', '2018-01-24 15:25:12', '2018-01-24 05:25:12', '', 155, 'http://www.toowoombaregionalcouncil.com.au/tcof/155-revision-v1/', 0, 'revision', '', 0),
 (159, 1, '2018-01-24 15:44:15', '2018-01-24 05:44:15', 'Join our four-hour progressive foodie tour to four historic pubs. First stop is Fitzy\'s Toowoomba to sample shared canape platters, then to the rooftop bar at Muller Bros for more tasty morsels. Mains will be served at the quirky Spotted Cow Hotel, with dessert at the historic Irish Club Hotel for a sweet finish to the tour. Tour includes all meals and a drink at each pub.\n\nWHEN: Sunday 24 Sept (lunch tour)\nCan\'t make the 24th? It also runs on the <a href="http://tcof.com.au/events/talking-pubs-tour-22-sept/">22nd </a>and the <a href="http://tcof.com.au/events/talking-pubs-tour-23-sept/">23rd</a>\n\nCOST: Adult $99\n<h3>TALKING PUBS MENU</h3>\n<h4>CANAPÉS - FITZY\'S</h4>\nDrinks: Choice of a glass of Chardonnay, Shiraz Cabernet or Sparkling, Schooner of XXXX Gold, Hahn Light or Great Northern, soft drink or juice\n\nFood: Shared platter of Mini Angus Beef Mignons, Pork &amp; Vegetable Spring Rolls and Crumbed Prawns\n<h4>CANAPÉS - MULLER BROS</h4>\nDrinks: Choice of a glass of house wine, house beer or soft drink\n\nFood: Shared platter of Semi-dried Tomato and Saffron Arancini Balls with Red Pepper Coulis, Pork &amp; Chive Dumplings and Oysters - Natural, Raspberry Vinaigrette, Thai-style\n<h4>MAIN MEAL - SPOTTED COW HOTEL</h4>\nDrinks: Pot of any beer on tap, glass of wine or soft drink\n\nFood: Choice of Beer Battered Barramundi, Chicken Parmigiana or Rib Fillet Burger (all served with chips &amp; salad)\n<h4>DESSERT - IRISH CLUB HOTEL</h4>\nDrinks: Choice of pot of beer or glass of wine\n\nFood: Sticky date pudding\n<h2>TIMES</h2>\nLunch pick-up at 11am, Returns 3:15pm\n<h2>LOCATION</h2>\nPick-up Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://www.google.com/maps?q=-27.556767,151.95118479999996" target="_blank" rel="noopener">Google map</a>)\n\n&nbsp;', 'Talking pubs tour - 24 Sep 2017', '', 'inherit', 'closed', 'closed', '', '155-autosave-v1', '', '', '2018-01-24 15:44:15', '2018-01-24 05:44:15', '', 155, 'http://www.toowoombaregionalcouncil.com.au/tcof/155-autosave-v1/', 0, 'revision', '', 0),
 (160, 1, '2018-01-24 15:46:47', '2018-01-24 05:46:47', 'Join our four-hour progressive foodie tour to four historic pubs. First stop is Fitzy\'s Toowoomba to sample shared canape platters, then to the rooftop bar at Muller Bros for more tasty morsels. Mains will be served at the quirky Spotted Cow Hotel, with dessert at the historic Irish Club Hotel for a sweet finish to the tour. Tour includes all meals and a drink at each pub.\r\n\r\nWHEN: Sunday 24 Sept (lunch tour)\r\nCan\'t make the 24th? It also runs on the <a href="http://tcof.com.au/events/talking-pubs-tour-22-sept/">22nd </a>and the <a href="http://tcof.com.au/events/talking-pubs-tour-23-sept/">23rd</a>\r\n\r\nCOST: Adult $99\r\n<h3>TALKING PUBS MENU</h3>\r\n<h4>CANAPÉS - FITZY\'S</h4>\r\nDrinks: Choice of a glass of Chardonnay, Shiraz Cabernet or Sparkling, Schooner of XXXX Gold, Hahn Light or Great Northern, soft drink or juice\r\n\r\nFood: Shared platter of Mini Angus Beef Mignons, Pork &amp; Vegetable Spring Rolls and Crumbed Prawns\r\n<h4>CANAPÉS - MULLER BROS</h4>\r\nDrinks: Choice of a glass of house wine, house beer or soft drink\r\n\r\nFood: Shared platter of Semi-dried Tomato and Saffron Arancini Balls with Red Pepper Coulis, Pork &amp; Chive Dumplings and Oysters - Natural, Raspberry Vinaigrette, Thai-style\r\n<h4>MAIN MEAL - SPOTTED COW HOTEL</h4>\r\nDrinks: Pot of any beer on tap, glass of wine or soft drink\r\n\r\nFood: Choice of Beer Battered Barramundi, Chicken Parmigiana or Rib Fillet Burger (all served with chips &amp; salad)\r\n<h4>DESSERT - IRISH CLUB HOTEL</h4>\r\nDrinks: Choice of pot of beer or glass of wine\r\n\r\nFood: Sticky date pudding\r\n<h2>TIMES</h2>\r\nLunch pick-up at 11am, Returns 3:15pm\r\n<h2>LOCATION</h2>\r\nPick-up Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://www.google.com/maps?q=-27.556767,151.95118479999996" target="_blank" rel="noopener">Google map</a>)\r\n\r\n&nbsp;', 'Talking pubs tour - 24 Sep 2017', '', 'inherit', 'closed', 'closed', '', '155-revision-v1', '', '', '2018-01-24 15:46:47', '2018-01-24 05:46:47', '', 155, 'http://www.toowoombaregionalcouncil.com.au/tcof/155-revision-v1/', 0, 'revision', '', 0),
 (161, 1, '2018-01-24 15:52:59', '2018-01-24 05:52:59', 'With its developing street art culture and vibrant laneway life, Toowoomba is earning a reputation as a culturally diverse urban environment. Combining art and architecture, this walk takes the visitor through some of Toowoomba’s famous street art laneways. Learn about the art, the world renowned artists and the architecture on display. Sharing a mix of stories about the art and the buildings, our guides will show you a side of Toowoomba visitors rarely see. Take a walk on the wild side through the arcades, backstreets and laneways.\n\nDURATION: 2 hours\n\nFINISH: With a complimentary glass of wine or soft drink at Muller Brothers Rooftop Bar, a clever adaption of a former warehouse space.\n\nWHEN: Sunday 24 Sept\n\nCOST: Adult $35 | Concession $30\n<h2>Times</h2>\nSunday 24 Sept 2pm - 4pm\n<h2>Location</h2>\nBell St Mall Entrance, 400 Ruthven St, Toowoomba (<a href="https://www.google.com/maps?q=-27.56013219999999,151.9543585" target="_blank" rel="noopener">Google map</a>)', 'Walking tour Hidden laneways - 24 Sep 2017', '', 'inherit', 'closed', 'closed', '', '146-autosave-v1', '', '', '2018-01-24 15:52:59', '2018-01-24 05:52:59', '', 146, 'http://www.toowoombaregionalcouncil.com.au/tcof/146-autosave-v1/', 0, 'revision', '', 0),
 (162, 1, '2018-01-24 15:58:23', '2018-01-24 05:58:23', 'With its developing street art culture and vibrant laneway life, Toowoomba is earning a reputation as a culturally diverse urban environment. Combining art and architecture, this walk takes the visitor through some of Toowoomba’s famous street art laneways. Learn about the art, the world renowned artists and the architecture on display. Sharing a mix of stories about the art and the buildings, our guides will show you a side of Toowoomba visitors rarely see. Take a walk on the wild side through the arcades, backstreets and laneways.\r\n\r\nDURATION: 2 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at Muller Brothers Rooftop Bar, a clever adaption of a former warehouse space.\r\n\r\nWHEN: Sunday 24 Sept\r\n\r\nCOST: Adult $35 | Concession $30\r\n<h2>Times</h2>\r\nSunday 24 Sept 2pm - 4pm\r\n<h2>Location</h2>\r\nBell St Mall Entrance, 400 Ruthven St, Toowoomba (<a href="https://www.google.com/maps?q=-27.56013219999999,151.9543585" target="_blank" rel="noopener">Google map</a>)', 'Walking tour Hidden laneways - 24 Sep 2017', '', 'inherit', 'closed', 'closed', '', '146-revision-v1', '', '', '2018-01-24 15:58:23', '2018-01-24 05:58:23', '', 146, 'http://www.toowoombaregionalcouncil.com.au/tcof/146-revision-v1/', 0, 'revision', '', 0),
 (163, 1, '2018-01-24 15:58:58', '2018-01-24 05:58:58', 'With its developing street art culture and vibrant laneway life, Toowoomba is earning a reputation as a culturally diverse urban environment. Combining art and architecture, this walk takes the visitor through some of Toowoomba’s famous street art laneways. Learn about the art, the world renowned artists and the architecture on display. Sharing a mix of stories about the art and the buildings, our guides will show you a side of Toowoomba visitors rarely see. Take a walk on the wild side through the arcades, backstreets and laneways.\r\n\r\nDURATION: 2 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at Muller Brothers Rooftop Bar, a clever adaption of a former warehouse space.\r\n\r\nWHEN: Sunday 24 Sept\r\n\r\nCOST: Adult $35 | Concession $30\r\n<h2>Times</h2>\r\nSunday 24 Sept 2pm - 4pm\r\n<h2>Location</h2>\r\nBell St Mall Entrance, 400 Ruthven St, Toowoomba (<a href="https://www.google.com/maps?q=-27.56013219999999,151.9543585" target="_blank" rel="noopener">Google map</a>)', 'Walking tour Hidden laneways', '', 'inherit', 'closed', 'closed', '', '146-revision-v1', '', '', '2018-01-24 15:58:58', '2018-01-24 05:58:58', '', 146, 'http://www.toowoombaregionalcouncil.com.au/tcof/146-revision-v1/', 0, 'revision', '', 0),
 (164, 1, '2018-01-24 15:59:54', '2018-01-24 05:59:54', 'Join our four-hour progressive foodie tour to four historic pubs. First stop is Fitzy\'s Toowoomba to sample shared canape platters, then to the rooftop bar at Muller Bros for more tasty morsels. Mains will be served at the quirky Spotted Cow Hotel, with dessert at the historic Irish Club Hotel for a sweet finish to the tour. Tour includes all meals and a drink at each pub.\r\n\r\nWHEN: Sunday 24 Sept (lunch tour)\r\nCan\'t make the 24th? It also runs on the <a href="http://tcof.com.au/events/talking-pubs-tour-22-sept/">22nd </a>and the <a href="http://tcof.com.au/events/talking-pubs-tour-23-sept/">23rd</a>\r\n\r\nCOST: Adult $99\r\n<h3>TALKING PUBS MENU</h3>\r\n<h4>CANAPÉS - FITZY\'S</h4>\r\nDrinks: Choice of a glass of Chardonnay, Shiraz Cabernet or Sparkling, Schooner of XXXX Gold, Hahn Light or Great Northern, soft drink or juice\r\n\r\nFood: Shared platter of Mini Angus Beef Mignons, Pork &amp; Vegetable Spring Rolls and Crumbed Prawns\r\n<h4>CANAPÉS - MULLER BROS</h4>\r\nDrinks: Choice of a glass of house wine, house beer or soft drink\r\n\r\nFood: Shared platter of Semi-dried Tomato and Saffron Arancini Balls with Red Pepper Coulis, Pork &amp; Chive Dumplings and Oysters - Natural, Raspberry Vinaigrette, Thai-style\r\n<h4>MAIN MEAL - SPOTTED COW HOTEL</h4>\r\nDrinks: Pot of any beer on tap, glass of wine or soft drink\r\n\r\nFood: Choice of Beer Battered Barramundi, Chicken Parmigiana or Rib Fillet Burger (all served with chips &amp; salad)\r\n<h4>DESSERT - IRISH CLUB HOTEL</h4>\r\nDrinks: Choice of pot of beer or glass of wine\r\n\r\nFood: Sticky date pudding\r\n<h2>TIMES</h2>\r\nLunch pick-up at 11am, Returns 3:15pm\r\n<h2>LOCATION</h2>\r\nPick-up Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://www.google.com/maps?q=-27.556767,151.95118479999996" target="_blank" rel="noopener">Google map</a>)\r\n\r\n&nbsp;', 'Talking pubs tour', '', 'inherit', 'closed', 'closed', '', '155-revision-v1', '', '', '2018-01-24 15:59:54', '2018-01-24 05:59:54', '', 155, 'http://www.toowoombaregionalcouncil.com.au/tcof/155-revision-v1/', 0, 'revision', '', 0),
 (165, 1, '2018-01-24 16:02:14', '2018-01-24 06:02:14', 'Present day Toowoomba is built on the bones of a gracious Victorian era city. Look carefully and the city\'s historic past comes to life.\n\nJoin local Heritage Architect Stephanie Keays on this walk through the CBD and take a fascinating glimpse into Toowoomba’s architecture and history. Starting at the Art Deco style Empire Theatre, visitors will be guided through Toowoomba’s rich architectural legacy. Explore a range of building styles and the design details that make them unique to our town with a mix of history, street art, cafes, shops and interesting stories along the way.\n\nDURATION: 1.5 hours\n\nFINISH: With a complimentary glass of wine or soft drink at the Walton Stores complex, Annand Street, one of Toowoomba’s newest architecturally designed dining districts.\n\nWHEN: Sunday 24 Sept\n\nCOST: Adult $33 | Concession $29\n<h2>Times</h2>\nSunday 24 Sept 10am - 11:30am\n<h3>Location</h3>\nPick-up at Empire Theatre Lawn, 56 Neil St, Toowoomba', 'Walking tour CBD architecture', '', 'inherit', 'closed', 'closed', '', '152-autosave-v1', '', '', '2018-01-24 16:02:14', '2018-01-24 06:02:14', '', 152, 'http://www.toowoombaregionalcouncil.com.au/tcof/152-autosave-v1/', 0, 'revision', '', 0),
 (166, 1, '2018-01-24 16:02:57', '2018-01-24 06:02:57', 'Present day Toowoomba is built on the bones of a gracious Victorian era city. Look carefully and the city\'s historic past comes to life.\r\n\r\nJoin local Heritage Architect Stephanie Keays on this walk through the CBD and take a fascinating glimpse into Toowoomba’s architecture and history. Starting at the Art Deco style Empire Theatre, visitors will be guided through Toowoomba’s rich architectural legacy. Explore a range of building styles and the design details that make them unique to our town with a mix of history, street art, cafes, shops and interesting stories along the way.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at the Walton Stores complex, Annand Street, one of Toowoomba’s newest architecturally designed dining districts.\r\n\r\nWHEN: Sunday 24 Sept\r\n\r\nCOST: Adult $33 | Concession $29\r\n<h2>Times</h2>\r\nSunday 24 Sept 10am - 11:30am\r\n<h3>Location</h3>\r\nPick-up at Empire Theatre Lawn, 56 Neil St, Toowoomba (<a href="https://goo.gl/maps/gAu57ZCeSdB2" target="_blank" rel="noopener">Google map</a>)', 'Walking tour CBD architecture', '', 'inherit', 'closed', 'closed', '', '152-revision-v1', '', '', '2018-01-24 16:02:57', '2018-01-24 06:02:57', '', 152, 'http://www.toowoombaregionalcouncil.com.au/tcof/152-revision-v1/', 0, 'revision', '', 0),
 (167, 1, '2018-01-24 16:04:18', '2018-01-24 06:04:18', 'The state heritage listed Railway precinct is a must visit destination. Join your guide, Paul Herbert, as he develops the argument as to why the Toowoomba Railway is the most important piece of transport infrastructure ever built in Queensland. Explore the commercial, social and engineering significance of this intact historical treasure. Learn about the importance of the railway during World War II and explore one of Queensland’s best preserved air raid shelters. Uncover some of the fascinating stories accumulated over 150 years, from the antics of the young ladies working in the refreshment rooms to the ghost that is said to haunt the tracks.\n\nThe Railway precinct is a true treasure. Come and explore it with a passionate local.\n\nDURATION: 1.5 hours\n\nFINISH: With a complimentary coffee at Inbound café located in the historic Railway refreshment rooms or at another nearby café.\n\nWHEN: Saturday 23 Sept\n\nCOST: Adult $33 | Concession $29\n<h2>Times</h2>\n10am - 11:30am\n\nLocation\n\nToowoomba Railway Station, Platform 1, Railway St, Toowoomba', 'Walking tour 150 years of rail - 23 Sep 2017', '', 'inherit', 'closed', 'closed', '', '149-autosave-v1', '', '', '2018-01-24 16:04:18', '2018-01-24 06:04:18', '', 149, 'http://www.toowoombaregionalcouncil.com.au/tcof/149-autosave-v1/', 0, 'revision', '', 0),
 (168, 1, '2018-01-24 16:05:26', '2018-01-24 06:05:26', 'The state heritage listed Railway precinct is a must visit destination. Join your guide, Paul Herbert, as he develops the argument as to why the Toowoomba Railway is the most important piece of transport infrastructure ever built in Queensland. Explore the commercial, social and engineering significance of this intact historical treasure. Learn about the importance of the railway during World War II and explore one of Queensland’s best preserved air raid shelters. Uncover some of the fascinating stories accumulated over 150 years, from the antics of the young ladies working in the refreshment rooms to the ghost that is said to haunt the tracks.\r\n\r\nThe Railway precinct is a true treasure. Come and explore it with a passionate local.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary coffee at Inbound café located in the historic Railway refreshment rooms or at another nearby café.\r\n\r\nWHEN: Saturday 23 Sept\r\n\r\nCOST: Adult $33 | Concession $29\r\n<h2>Times</h2>\r\n10am - 11:30am\r\n<h2>Location</h2>\r\nToowoomba Railway Station, Platform 1, Railway St, Toowoomba (<a href="https://goo.gl/maps/kPMmxXpDxLz" target="_blank" rel="noopener">Google map</a>)', 'Walking tour 150 years of rail', '', 'inherit', 'closed', 'closed', '', '149-revision-v1', '', '', '2018-01-24 16:05:26', '2018-01-24 06:05:26', '', 149, 'http://www.toowoombaregionalcouncil.com.au/tcof/149-revision-v1/', 0, 'revision', '', 0),
 (169, 1, '2018-01-24 16:07:22', '2018-01-24 06:07:22', 'Join our four-hour progressive foodie tour to four historic pubs. First stop is Fitzy\'s Toowoomba to sample shared canape platters, then to the rooftop bar at Muller Bros for more tasty morsels. Mains will be served at the quirky Spotted Cow Hotel, with dessert at the historic Irish Club Hotel for a sweet finish to the tour. Tour includes all meals and a drink at each pub.\r\n\r\nWHEN: Sunday 24 Sept (lunch tour)\r\nCan\'t make the 24th? It also runs on the <a href="http://tcof.com.au/events/talking-pubs-tour-22-sept/">22nd </a>and the <a href="http://tcof.com.au/events/talking-pubs-tour-23-sept/">23rd</a>\r\n\r\nCOST: Adult $99\r\n<h3>TALKING PUBS MENU</h3>\r\n<h4>CANAPÉS - FITZY\'S</h4>\r\nDrinks: Choice of a glass of Chardonnay, Shiraz Cabernet or Sparkling, Schooner of XXXX Gold, Hahn Light or Great Northern, soft drink or juice\r\n\r\nFood: Shared platter of Mini Angus Beef Mignons, Pork &amp; Vegetable Spring Rolls and Crumbed Prawns\r\n<h4>CANAPÉS - MULLER BROS</h4>\r\nDrinks: Choice of a glass of house wine, house beer or soft drink\r\n\r\nFood: Shared platter of Semi-dried Tomato and Saffron Arancini Balls with Red Pepper Coulis, Pork &amp; Chive Dumplings and Oysters - Natural, Raspberry Vinaigrette, Thai-style\r\n<h4>MAIN MEAL - SPOTTED COW HOTEL</h4>\r\nDrinks: Pot of any beer on tap, glass of wine or soft drink\r\n\r\nFood: Choice of Beer Battered Barramundi, Chicken Parmigiana or Rib Fillet Burger (all served with chips &amp; salad)\r\n<h4>DESSERT - IRISH CLUB HOTEL</h4>\r\nDrinks: Choice of pot of beer or glass of wine\r\n\r\nFood: Sticky date pudding\r\n<h2>TIMES</h2>\r\nLunch pick-up at 11am, Returns 3:15pm.\r\n<h2>LOCATION</h2>\r\nPick-up Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://www.google.com/maps?q=-27.556767,151.95118479999996" target="_blank" rel="noopener">Google map</a>)\r\n\r\n&nbsp;', 'Talking pubs tour', '', 'inherit', 'closed', 'closed', '', '155-revision-v1', '', '', '2018-01-24 16:07:22', '2018-01-24 06:07:22', '', 155, 'http://www.toowoombaregionalcouncil.com.au/tcof/155-revision-v1/', 0, 'revision', '', 0),
 (170, 1, '2017-09-23 16:07:59', '2017-09-23 06:07:59', 'Buy direct from the farmer and get to know the people behind the food as these proud producers show off their wares at this exciting market. Talk to the growers, watch exciting food demos, enjoy free live music and buskers and treat the kids to great children’s activities such as pot a seed, face painting and a designated play area. Now that’s fresh!\r\n\r\nWHEN: Saturday 23 Sept\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 0439 844 849 or fiona@toowoombafarmersmarket.com.au\r\n<h2>Times</h2>\r\nSaturday 23 Sept 7am - 11am\r\n<h2>Location</h2>\r\nWalton Stores, 476-482 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/rRBFkfvr6K12" target="_blank" rel="noopener">Google map</a>)', 'Toowoomba Farmers Markets', '', 'publish', 'closed', 'closed', '', 'toowoomba-farmers-markets', '', '', '2018-01-24 16:13:59', '2018-01-24 06:13:59', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=170', 59, 'post', '', 0),
 (171, 1, '2018-01-24 16:13:59', '2018-01-24 06:13:59', 'Buy direct from the farmer and get to know the people behind the food as these proud producers show off their wares at this exciting market. Talk to the growers, watch exciting food demos, enjoy free live music and buskers and treat the kids to great children’s activities such as pot a seed, face painting and a designated play area. Now that’s fresh!\r\n\r\nWHEN: Saturday 23 Sept\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 0439 844 849 or fiona@toowoombafarmersmarket.com.au\r\n<h2>Times</h2>\r\nSaturday 23 Sept 7am - 11am\r\n<h2>Location</h2>\r\nWalton Stores, 476-482 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/rRBFkfvr6K12" target="_blank" rel="noopener">Google map</a>)', 'Toowoomba Farmers Markets', '', 'inherit', 'closed', 'closed', '', '170-revision-v1', '', '', '2018-01-24 16:13:59', '2018-01-24 06:13:59', '', 170, 'http://www.toowoombaregionalcouncil.com.au/tcof/170-revision-v1/', 0, 'revision', '', 0),
 (172, 1, '2017-09-24 16:14:25', '2017-09-24 06:14:25', 'This walking tour of new chic Toowoomba venues begins with Korean and Japanese entrees at Kajoku. Enjoy mains, sourced from local ingredients, at Zev\'s Bistro, Toowoomba\'s only AGFG Chef Hatted restaurant, finishing with dessert in the warehouse-style setting of Muller Bros. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Sunday 24 Sept (lunch tour)\r\n\r\nCOST: Adult $99\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>ENTRÉE - KAJOKU</h4>\r\nDrinks: Glass of beer, soft drink, red or white wine\r\n\r\nFood: Korean - Japchae, a traditional small dish of sweet potato noodles, beef and vegetables with a sweet soy flavour OR Japanese - small serve of Kara-age chicken, a common pub snack or a few pieces of marinated and fried tender chicken served with fresh lemon and Japanese mayonnaise, and Wakame salad, shredded kelp seasoned with vinegar and sesame (alternate drop).\r\n<h4>MAIN MEAL - ZEV\'S BISTRO</h4>\r\nDrinks: Glass of beer, red or white wine\r\n\r\nFood: Pulled duck, hand cut spelt pappardelle, asparagus and tarragon OR Market fish, white bean and kimchi broth, charred greens, salted lemon (alternate drop).\r\n<h4>DESSERT - MULLER BROS</h4>\r\nDrinks: Glass of house beer, house wine or soft drink\r\n\r\nFood: White chocolate pannacotta with coconut yoghurt, berries and toasted coconut OR Tiramisu-layered espresso trifle (alternate drop).\r\n<h2>Times</h2>\r\nPick-up at 11:45am, Returns 3:15pm.\r\n<h2>Location</h2>\r\nPick-up at Kajoku, 1/430 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/LP3Xk21LeYu" target="_blank" rel="noopener">Google map</a>)', 'Progressive food & wine walking tour', '', 'publish', 'closed', 'closed', '', 'progressive-food-wine-walking-tour', '', '', '2018-01-24 16:51:02', '2018-01-24 06:51:02', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=172', 58, 'post', '', 0),
 (173, 1, '2018-01-24 16:50:14', '2018-01-24 06:50:14', '', 'Food on a plate', '', 'inherit', 'closed', 'closed', '', 'foodwinetour2', '', '', '2018-01-24 16:50:31', '2018-01-24 06:50:31', '', 172, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/FoodWineTour2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (174, 1, '2018-01-24 16:51:02', '2018-01-24 06:51:02', 'This walking tour of new chic Toowoomba venues begins with Korean and Japanese entrees at Kajoku. Enjoy mains, sourced from local ingredients, at Zev\'s Bistro, Toowoomba\'s only AGFG Chef Hatted restaurant, finishing with dessert in the warehouse-style setting of Muller Bros. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Sunday 24 Sept (lunch tour)\r\n\r\nCOST: Adult $99\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>ENTRÉE - KAJOKU</h4>\r\nDrinks: Glass of beer, soft drink, red or white wine\r\n\r\nFood: Korean - Japchae, a traditional small dish of sweet potato noodles, beef and vegetables with a sweet soy flavour OR Japanese - small serve of Kara-age chicken, a common pub snack or a few pieces of marinated and fried tender chicken served with fresh lemon and Japanese mayonnaise, and Wakame salad, shredded kelp seasoned with vinegar and sesame (alternate drop).\r\n<h4>MAIN MEAL - ZEV\'S BISTRO</h4>\r\nDrinks: Glass of beer, red or white wine\r\n\r\nFood: Pulled duck, hand cut spelt pappardelle, asparagus and tarragon OR Market fish, white bean and kimchi broth, charred greens, salted lemon (alternate drop).\r\n<h4>DESSERT - MULLER BROS</h4>\r\nDrinks: Glass of house beer, house wine or soft drink\r\n\r\nFood: White chocolate pannacotta with coconut yoghurt, berries and toasted coconut OR Tiramisu-layered espresso trifle (alternate drop).\r\n<h2>Times</h2>\r\nPick-up at 11:45am, Returns 3:15pm.\r\n<h2>Location</h2>\r\nPick-up at Kajoku, 1/430 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/LP3Xk21LeYu" target="_blank" rel="noopener">Google map</a>)', 'Progressive food & wine walking tour', '', 'inherit', 'closed', 'closed', '', '172-revision-v1', '', '', '2018-01-24 16:51:02', '2018-01-24 06:51:02', '', 172, 'http://www.toowoombaregionalcouncil.com.au/tcof/172-revision-v1/', 0, 'revision', '', 0),
 (175, 1, '2017-09-01 16:51:09', '2017-09-01 06:51:09', 'Cobb + Co Museum is just a short walk across Queens Park offering a variety of things to see and do. Visit the National Carriage Collection and brush up on your Cobb &amp; Co history with an exhibition dedicated to the legendary coaching company. With a variety of exhibitions, workshops and demonstrations, don\'t miss a visit to the museum next time you\'re in Toowoomba, the Garden City of Queensland.\r\n\r\nCOST: Museum entry Adult $12.50 | Concession $10 | Child (3-15 years) $6.50 | Family (1 Adult, 3 Children) $25 | Family (2 Adults, 4 Children) $32\r\n\r\nENQUIRIES: 07 4659 4900\r\n<h3>Workshops</h3>\r\n<strong><em>Blacksmithing Flower </em></strong>\r\n\r\nSaturday 16– Sunday 17 September\r\n\r\n9am-12pm or 1pm-4pm\r\n\r\nCreate a metal flower with a talented blacksmith in these 3 hour workshops.\r\n\r\nCost: $100\r\n\r\n<strong><em>Resin Jewellery</em></strong>\r\n\r\nSaturday 16 September\r\n\r\n9am-12pm or 1pm-4pm\r\n\r\nMake your own floral bangle out of resin in these 3 hour workshops.\r\n\r\nCost: $85\r\n<h3>Demonstrations</h3>\r\n<strong><em>Native Flower Arranging Demonstration</em></strong>\r\n\r\nSunday 17 September\r\n\r\n10.30am–11am &amp; 1pm–1.30pm &amp; 3pm–3.30pm\r\n\r\nLearn how to select and arrange native blooms.\r\n\r\n<strong><em>Wood Crafters Demonstration </em></strong>\r\n\r\nFriday 15 – Sunday 24 September\r\n\r\nFrom 9:30am-4pm\r\n\r\nWatch the wood crafters create beautiful items out of timber.\r\n<h2>Times</h2>\r\nMuseum open 9:30am - 4pm daily.\r\n<h2>Location</h2>\r\nCobb+Co Museum, 27 Lindsay St, Toowoomba (<a href="https://goo.gl/maps/y7ETVNsD3d62" target="_blank" rel="noopener">Google map</a>)', 'Cobb + Co Museum', '', 'publish', 'closed', 'closed', '', 'cobb-co-museum', '', '', '2018-01-24 16:57:12', '2018-01-24 06:57:12', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=175', 57, 'post', '', 0),
 (176, 1, '2018-01-24 16:56:51', '2018-01-24 06:56:51', '', 'Cobb and co museum', '', 'inherit', 'closed', 'closed', '', 'cobbandco2', '', '', '2018-01-24 16:57:04', '2018-01-24 06:57:04', '', 175, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/CobbandCo2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (177, 1, '2018-01-24 16:57:12', '2018-01-24 06:57:12', 'Cobb + Co Museum is just a short walk across Queens Park offering a variety of things to see and do. Visit the National Carriage Collection and brush up on your Cobb &amp; Co history with an exhibition dedicated to the legendary coaching company. With a variety of exhibitions, workshops and demonstrations, don\'t miss a visit to the museum next time you\'re in Toowoomba, the Garden City of Queensland.\r\n\r\nCOST: Museum entry Adult $12.50 | Concession $10 | Child (3-15 years) $6.50 | Family (1 Adult, 3 Children) $25 | Family (2 Adults, 4 Children) $32\r\n\r\nENQUIRIES: 07 4659 4900\r\n<h3>Workshops</h3>\r\n<strong><em>Blacksmithing Flower </em></strong>\r\n\r\nSaturday 16– Sunday 17 September\r\n\r\n9am-12pm or 1pm-4pm\r\n\r\nCreate a metal flower with a talented blacksmith in these 3 hour workshops.\r\n\r\nCost: $100\r\n\r\n<strong><em>Resin Jewellery</em></strong>\r\n\r\nSaturday 16 September\r\n\r\n9am-12pm or 1pm-4pm\r\n\r\nMake your own floral bangle out of resin in these 3 hour workshops.\r\n\r\nCost: $85\r\n<h3>Demonstrations</h3>\r\n<strong><em>Native Flower Arranging Demonstration</em></strong>\r\n\r\nSunday 17 September\r\n\r\n10.30am–11am &amp; 1pm–1.30pm &amp; 3pm–3.30pm\r\n\r\nLearn how to select and arrange native blooms.\r\n\r\n<strong><em>Wood Crafters Demonstration </em></strong>\r\n\r\nFriday 15 – Sunday 24 September\r\n\r\nFrom 9:30am-4pm\r\n\r\nWatch the wood crafters create beautiful items out of timber.\r\n<h2>Times</h2>\r\nMuseum open 9:30am - 4pm daily.\r\n<h2>Location</h2>\r\nCobb+Co Museum, 27 Lindsay St, Toowoomba (<a href="https://goo.gl/maps/y7ETVNsD3d62" target="_blank" rel="noopener">Google map</a>)', 'Cobb + Co Museum', '', 'inherit', 'closed', 'closed', '', '175-revision-v1', '', '', '2018-01-24 16:57:12', '2018-01-24 06:57:12', '', 175, 'http://www.toowoombaregionalcouncil.com.au/tcof/175-revision-v1/', 0, 'revision', '', 0),
 (178, 1, '2017-09-15 16:57:37', '2017-09-15 06:57:37', 'Visit the 29th Heritage Bank Photographic Awards bursting to life this Spring and see the winners and over 50 of the best entries covering from the themed category of <em>Passion</em> and the open category where great imagery is everything and creativity is the key ingredient.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: <a href="www.heritage.com.au/photocomp">www.heritage.com.au/photocomp</a>\r\n<h2>Times</h2>\r\n10am - 4pm\r\n<h2>Location</h2>\r\nUSQ Artsworx, A Block, University of Southern Queensland, West St, Toowoomba (<a href="https://goo.gl/maps/UaBbn8AA7YB2" target="_blank" rel="noopener">Google map</a>).', 'Heritage Bank photographic awards', '', 'publish', 'closed', 'closed', '', 'heritage-bank-photographic-awards', '', '', '2018-01-25 15:00:24', '2018-01-25 05:00:24', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=178', 56, 'post', '', 0),
 (179, 2, '2018-01-25 12:04:08', '2018-01-25 02:04:08', '', 'favicon', '', 'inherit', 'closed', 'closed', '', 'favicon', '', '', '2018-01-25 12:04:08', '2018-01-25 02:04:08', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/favicon.png', 0, 'attachment', 'image/png', 0),
 (180, 2, '2018-01-25 12:04:13', '2018-01-25 02:04:13', '', 'bunting', '', 'inherit', 'closed', 'closed', '', 'bunting', '', '', '2018-01-25 12:04:13', '2018-01-25 02:04:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/bunting.png', 0, 'attachment', 'image/png', 0),
 (181, 2, '2018-01-25 12:04:14', '2018-01-25 02:04:14', '', 'content-left-elements', '', 'inherit', 'closed', 'closed', '', 'content-left-elements', '', '', '2018-01-25 12:04:14', '2018-01-25 02:04:14', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/content-left-elements.png', 0, 'attachment', 'image/png', 0),
 (182, 2, '2018-01-25 12:04:15', '2018-01-25 02:04:15', '', 'content-right-elements', '', 'inherit', 'closed', 'closed', '', 'content-right-elements', '', '', '2018-01-25 12:04:15', '2018-01-25 02:04:15', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/content-right-elements.png', 0, 'attachment', 'image/png', 0),
 (183, 2, '2018-01-25 12:04:16', '2018-01-25 02:04:16', '', 'diamonds', '', 'inherit', 'closed', 'closed', '', 'diamonds', '', '', '2018-01-25 12:04:16', '2018-01-25 02:04:16', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/diamonds.png', 0, 'attachment', 'image/png', 0),
 (184, 2, '2018-01-25 12:04:17', '2018-01-25 02:04:17', '', 'Eat-Laugh', '', 'inherit', 'closed', 'closed', '', 'eat-laugh', '', '', '2018-01-25 12:04:17', '2018-01-25 02:04:17', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Eat-Laugh.png', 0, 'attachment', 'image/png', 0),
 (185, 2, '2018-01-25 12:04:19', '2018-01-25 02:04:19', '', 'header-left-elements', '', 'inherit', 'closed', 'closed', '', 'header-left-elements-2', '', '', '2018-01-25 12:04:19', '2018-01-25 02:04:19', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/header-left-elements-1.png', 0, 'attachment', 'image/png', 0),
 (186, 2, '2018-01-25 12:04:20', '2018-01-25 02:04:20', '', 'header-right-elements', '', 'inherit', 'closed', 'closed', '', 'header-right-elements', '', '', '2018-01-25 12:04:20', '2018-01-25 02:04:20', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/header-right-elements.png', 0, 'attachment', 'image/png', 0),
 (187, 2, '2018-01-25 12:04:21', '2018-01-25 02:04:21', '', 'herringbone', '', 'inherit', 'closed', 'closed', '', 'herringbone', '', '', '2018-01-25 12:04:21', '2018-01-25 02:04:21', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/herringbone.png', 0, 'attachment', 'image/png', 0),
 (188, 2, '2018-01-25 12:04:22', '2018-01-25 02:04:22', '', 'leaf-left', '', 'inherit', 'closed', 'closed', '', 'leaf-left', '', '', '2018-01-25 12:04:22', '2018-01-25 02:04:22', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/leaf-left.png', 0, 'attachment', 'image/png', 0),
 (189, 2, '2018-01-25 12:04:23', '2018-01-25 02:04:23', '', 'leaf-right', '', 'inherit', 'closed', 'closed', '', 'leaf-right', '', '', '2018-01-25 12:04:23', '2018-01-25 02:04:23', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/leaf-right.png', 0, 'attachment', 'image/png', 0),
 (190, 2, '2018-01-25 12:04:24', '2018-01-25 02:04:24', '', 'Play-Stay', '', 'inherit', 'closed', 'closed', '', 'play-stay', '', '', '2018-01-25 12:04:24', '2018-01-25 02:04:24', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Play-Stay.png', 0, 'attachment', 'image/png', 0),
 (191, 2, '2018-01-25 12:04:26', '2018-01-25 02:04:26', '', 'share-left-elements-bottom', '', 'inherit', 'closed', 'closed', '', 'share-left-elements-bottom', '', '', '2018-01-25 12:04:26', '2018-01-25 02:04:26', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/share-left-elements-bottom.png', 0, 'attachment', 'image/png', 0),
 (193, 2, '2018-01-25 12:07:20', '2018-01-25 02:07:20', '.header-menu {\n	margin-top: -3em;\n}\n.header-centered .site-header {\n	padding-top: 0;\n}\n.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n/*.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}*/\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n	padding: 0 .3em;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n', 'bento', '', 'publish', 'closed', 'closed', '', 'bento', '', '', '2018-01-30 15:05:13', '2018-01-30 05:05:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/bento/', 0, 'custom_css', '', 0),
 (194, 2, '2018-01-25 12:07:20', '2018-01-25 02:07:20', '.header:before {\n    content: "";\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:07:20', '2018-01-25 02:07:20', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (196, 2, '2018-01-25 12:07:41', '2018-01-25 02:07:41', 'header:before {\n    content: "";\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:07:41', '2018-01-25 02:07:41', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (198, 2, '2018-01-25 12:08:39', '2018-01-25 02:08:39', 'header:before {\n    content: "";\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\nheader:after {\n    content: "";\n    position: absolute;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(../images/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:08:39', '2018-01-25 02:08:39', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (200, 2, '2018-01-25 12:09:08', '2018-01-25 02:09:08', 'header:before {\n    content: "";\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\nheader:after {\n    content: "";\n    position: absolute;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:09:08', '2018-01-25 02:09:08', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (202, 2, '2018-01-25 12:13:12', '2018-01-25 02:13:12', '.site-header:before {\n    content: "";\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: absolute;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:13:12', '2018-01-25 02:13:12', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (204, 2, '2018-01-25 12:16:36', '2018-01-25 02:16:36', '.site-header:before {\n    content: "";\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: absolute;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: absolute;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:16:36', '2018-01-25 02:16:36', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (206, 2, '2018-01-25 12:17:56', '2018-01-25 02:17:56', '.site-header:before {\n    content: "";\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: absolute;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: absolute;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: absolute;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:17:56', '2018-01-25 02:17:56', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (208, 2, '2018-01-25 12:19:25', '2018-01-25 02:19:25', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:19:25', '2018-01-25 02:19:25', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (210, 2, '2018-01-25 12:22:30', '2018-01-25 02:22:30', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:22:30', '2018-01-25 02:22:30', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (212, 2, '2018-01-25 12:29:07', '2018-01-25 02:29:07', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 9px;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:29:07', '2018-01-25 02:29:07', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (214, 2, '2018-01-25 12:35:55', '2018-01-25 02:35:55', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 9px;\n}\n.breadcrumbs span {\n	  max-width: 60%;\n    padding-left: 10%;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:35:55', '2018-01-25 02:35:55', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (216, 2, '2018-01-25 12:38:14', '2018-01-25 02:38:14', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 9px;\n}\n.breadcrumbs span {\n  \n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:38:14', '2018-01-25 02:38:14', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (218, 2, '2018-01-25 12:44:00', '2018-01-25 02:44:00', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 9px;\n}\n.breadcrumbs span {\n  \n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:44:00', '2018-01-25 02:44:00', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (220, 2, '2018-01-25 12:55:04', '2018-01-25 02:55:04', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n  padding-left: 7%\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:55:04', '2018-01-25 02:55:04', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (222, 2, '2018-01-25 12:59:09', '2018-01-25 02:59:09', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n  padding-left: 7%\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 12:59:09', '2018-01-25 02:59:09', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (224, 2, '2018-01-25 13:11:57', '2018-01-25 03:11:57', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n  padding-left: 7%\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.site-header:after {\n    width: 201px;\n    height: 279px;\n    z-index: 1;\n	  position: absolute;\n	  top: 0px;\n	  left: 0px;\n    background-image: url(wp-content/uploads/2018/01/header-left-elements.png);\n    background-repeat: no-repeat;\n    background-position: left top;\n	  background-size: 201px 279px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 13:11:57', '2018-01-25 03:11:57', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (226, 2, '2018-01-25 13:18:12', '2018-01-25 03:18:12', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n  padding-left: 7%\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\nbody:after {\n    width: 201px;\n    height: 279px;\n    z-index: 0;\n	  position: absolute;\n	  top: 0px;\n	  left: 0px;\n    background-image: url(wp-content/uploads/2018/01/header-left-elements.png);\n    background-repeat: no-repeat;\n    background-position: left top;\n	  background-size: 201px 279px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 13:18:12', '2018-01-25 03:18:12', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (229, 2, '2018-01-25 13:24:04', '2018-01-25 03:24:04', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\nbody:after {\n    width: 201px;\n    height: 279px;\n    z-index: 0;\n	  position: absolute;\n	  top: 0px;\n	  left: 0px;\n    background-image: url(wp-content/uploads/2018/01/header-left-elements.png);\n    background-repeat: no-repeat;\n    background-position: left top;\n	  background-size: 201px 279px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 13:24:04', '2018-01-25 03:24:04', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (231, 2, '2018-01-25 13:27:20', '2018-01-25 03:27:20', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n	padding-left: 1em;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\nbody:after {\n    width: 201px;\n    height: 279px;\n    z-index: 0;\n	  position: absolute;\n	  top: 0px;\n	  left: 0px;\n    background-image: url(wp-content/uploads/2018/01/header-left-elements.png);\n    background-repeat: no-repeat;\n    background-position: left top;\n	  background-size: 201px 279px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 13:27:20', '2018-01-25 03:27:20', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (233, 2, '2018-01-25 13:28:10', '2018-01-25 03:28:10', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n	padding: 0 .3em;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\nbody:after {\n    width: 201px;\n    height: 279px;\n    z-index: 0;\n	  position: absolute;\n	  top: 0px;\n	  left: 0px;\n    background-image: url(wp-content/uploads/2018/01/header-left-elements.png);\n    background-repeat: no-repeat;\n    background-position: left top;\n	  background-size: 201px 279px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 13:28:10', '2018-01-25 03:28:10', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (240, 2, '2018-01-25 13:45:20', '2018-01-25 03:45:20', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png), url(wp-content/uploads/2018/01/header-left-elements.png);\n    background-repeat: repeat-x, no-repeat;\n    background-size: 33px 15px, 201px 279px;\n    background-position: center top, left top;\n}\nbody:after {\n    width: 201px;\n    height: 279px;\n    z-index: 0;\n	  position: absolute;\n	  top: 0px;\n	  left: 0px;\n    background-image: url(wp-content/uploads/2018/01/header-left-elements.png);\n    background-repeat: no-repeat;\n    background-position: left top;\n	  background-size: 201px 279px;\n}\n\n\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n	padding: 0 .3em;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 13:45:20', '2018-01-25 03:45:20', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (243, 2, '2018-01-25 13:50:57', '2018-01-25 03:50:57', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n	padding: 0 .3em;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-25 13:50:57', '2018-01-25 03:50:57', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (245, 1, '2018-01-25 14:53:33', '2018-01-25 04:53:33', 'Visit the 29th Heritage Bank Photographic Awards bursting to life this Spring and see the winners and over 50 of the best entries covering from the themed category of <em>Passion</em> and the open category where great imagery is everything and creativity is the key ingredient.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: <a href="www.heritage.com.au/photocomp">www.heritage.com.au/photocomp</a>\r\n<h2>Times</h2>\r\n10am - 4pm\r\n<h2>Location</h2>\r\nUSQ Artsworx, A Block, University of Southern Queensland, West St, Toowoomba (<a href="https://goo.gl/maps/UaBbn8AA7YB2" target="_blank" rel="noopener">Google map</a>).', 'Heritage Bank photographic awards', '', 'inherit', 'closed', 'closed', '', '178-revision-v1', '', '', '2018-01-25 14:53:33', '2018-01-25 04:53:33', '', 178, 'http://www.toowoombaregionalcouncil.com.au/tcof/178-revision-v1/', 0, 'revision', '', 0),
 (246, 1, '2017-09-22 14:54:11', '2017-09-22 04:54:11', '<h2>Fri 22 - Sat 23 Sep</h2>\r\nA National Trust building, Drayton’s Royal Bull’s Head Inn is a beautiful historic building which served as a resting place for travellers in the 1800s. With a floral theme and some ‘scary’ fun, visitors will relish the atmosphere of the 155 year old Inn at night time. BYO torches and lanterns and arrive 10 minutes prior to tour time. Be aware that stairs to the first floor are quite steep and unfortunately there is no wheelchair access.\r\n\r\nCOST: Adult $12 | Concession/Child $8 | Family (2 Adults, 2 Children) $30\r\n\r\nBOOKINGS: 0402 138 751 or toowoomba@nationaltrustqld.org\r\n<h2>Times</h2>\r\n6:30pm - 7:30pm\r\n\r\n8pm - 9pm\r\n<h2>Location</h2>\r\nRoyal Bull\'s Head Inn, 59 Brisbane St, Drayton (<a href="https://goo.gl/maps/B5GkvC3aNu82" target="_blank" rel="noopener">Google map</a>)', 'A bloomin\' scary night at the inn', '', 'publish', 'closed', 'closed', '', 'a-bloomin-scary-night-at-the-inn', '', '', '2018-01-31 15:01:57', '2018-01-31 05:01:57', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=246', 55, 'post', '', 0),
 (247, 1, '2018-01-25 14:58:01', '2018-01-25 04:58:01', '', 'Bulls Head Inn', '', 'inherit', 'closed', 'closed', '', 'bullsheadinn', '', '', '2018-01-25 14:58:10', '2018-01-25 04:58:10', '', 246, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/BullsHeadInn.jpg', 0, 'attachment', 'image/jpeg', 0),
 (248, 1, '2018-01-25 14:58:17', '2018-01-25 04:58:17', 'A National Trust building, Drayton’s Royal Bull’s Head Inn is a beautiful historic building which served as a resting place for travellers in the 1800s. With a floral theme and some ‘scary’ fun, visitors will relish the atmosphere of the 155 year old Inn at night time. BYO torches and lanterns and arrive 10 minutes prior to tour time. Be aware that stairs to the first floor are quite steep and unfortunately there is no wheelchair access.\r\n\r\nCOST: Adult $12 | Concession/Child $8 | Family (2 Adults, 2 Children) $30\r\n\r\nBOOKINGS: 0402 138 751 or toowoomba@nationaltrustqld.org\r\n<h2>Times</h2>\r\n6:30pm - 7:30pm\r\n\r\n8pm - 9pm\r\n<h2>Location</h2>\r\nRoyal Bull\'s Head Inn, 59 Brisbane St, Drayton (<a href="https://goo.gl/maps/B5GkvC3aNu82" target="_blank" rel="noopener">Google map</a>)', 'A bloomin\' scary night at the inn', '', 'inherit', 'closed', 'closed', '', '246-revision-v1', '', '', '2018-01-25 14:58:17', '2018-01-25 04:58:17', '', 246, 'http://www.toowoombaregionalcouncil.com.au/tcof/246-revision-v1/', 0, 'revision', '', 0),
 (249, 1, '2018-01-25 15:00:04', '2018-01-25 05:00:04', '', 'Heritage Photographic Awards Web Banner 2017', '', 'inherit', 'closed', 'closed', '', 'heritagephotographicawardswebbanner2017-3', '', '', '2018-01-25 15:00:21', '2018-01-25 05:00:21', '', 178, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/HeritagePhotographicAwardsWebBanner2017-3.jpg', 0, 'attachment', 'image/jpeg', 0),
 (251, 1, '2017-09-15 15:00:56', '2017-09-15 05:00:56', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nPerched atop the crest of the Great Dividing Range is the heritage listed Picnic Point. The panoramic 180 degree views will take your breath away stretching out over the valley to surrounding mountains, the deep gorges below and the world heritage listed area of The Scenic Rim. On a clear day you can see all the way to Brisbane. Picnic Point is 160 precious acres of priceless landscape.\r\n\r\nWhen you enter the park you\'re greeted with an avenue of mature hoop pine and South Queensland kauri before the parklands open into gorgeous manicured lawns.\r\n\r\nA stroll along the beautiful Pardalote Walk is a great way to take in spectacular views of the Lockyer Valley. The Pardalote Walk follows the very edge of the escarpment. The full length of the walk is about 1.9km with access at a number of points along the escarpment. Allow around 45 minutes to enjoy the walk.\r\n\r\nPicnic Point is one of those special places that will stay in your memory. You\'ll be glad you took the time to soak up the incredible views and breathe the fresh, crisp air.\r\n<h3>What\'s on during Carnival?</h3>\r\nA host of talented musos will play at the park during Carnival. Whatever your taste in music, you’ll hear it – jazz, blues, folk, funk, soul, country, rock and roll, and big brass acts.\r\n\r\nFRI 15 SEPT - 11am-3pm \'Undercover\' (Pop, Jazz, Rock \'n\' Roll) at Bandstand\r\n\r\nSAT 16 SEPT - 11am-3pm \'Greg Bird &amp; Friends\' (Jazz, Swing, Latin, Evergreen) at Bandstand\r\n3:30pm-5:30pm \'Webb Family Band\' (Folk, Retro Classics) at Lookout Area\r\n\r\nSUN 17 SEPT - 9am-10:45am \'Toowoomba Concert Band &amp; Second Wind Community Band\' (Concert Band) at Lookout Area\r\n11am-3pm \'Around the Corner\' (Irish Folk Songs - traditional, classical) at Bandstand\r\n\r\nMON 18 SEPT - 11am-3pm \'Swing Magic\' (Swing Jazz) at Bandstand\r\n\r\nTUE 19 SEPT - 11am-3pm \'Toowoomba Grammar School R\'n\'B Band\' (School Band) at Bandstand\r\n\r\nWED 20 SEPT - 11am-3pm \'Blue Room Blues\' (Blues) at Bandstand\r\n\r\nTHU 21 SEPT - 11am-3pm \'Zephyr Project\' (Rockabilly) at Bandstand\r\n\r\nFRI 22 SEPT - 11am-3pm \'Top Gear\' (Rock \'n\' Roll) at Bandstand\r\n\r\nSAT 23 SEPT - 11am-3pm \'2 Timing\' (Swing, Rock \'n\' Roll, Pop, Country) at Bandstand\r\n\r\nSUN 24 SEPT - 11am-3pm \'Slow Train Coming\' (Rock, Pop, Blues, Jazz, Soul, Memphis) at Bandstand *correct at time of printing\r\n<h3>Picnic in the Park</h3>\r\nWhy not pre-pack a picnic, get up close to nature and enjoy the parkland scenery? The restaurant is a tasty option, offering stunning views over the valley and a relaxing rest-stop after a busy morning exploring the parklands.\r\n<h3>Feeling peckish?</h3>\r\nDon\'t miss an opportunity to lick your lips around an iconic violet ice cream at Picnic Point café! It\'s a must do when in Toowoomba! The café is perched on the escarpment with views for miles. Café opens 8:30am to 5pm Monday to Thursday and 8am to 5pm Friday to Sunday.\r\n<h3>Information Hub</h3>\r\nWant more info about Carnival or know what to see while you\'re in town? Visit our Information Hub on Tourist Road for the Carnival low-down, to pick up a map, book bus tickets, or even browse the official merchandise.\r\n<h2>Location</h2>\r\n164 Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/zYDD24uw3w82" target="_blank" rel="noopener">Google map</a>)', 'Picnic Point', '', 'publish', 'closed', 'closed', '', '251-2', '', '', '2018-01-30 12:04:16', '2018-01-30 02:04:16', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=251', 54, 'post', '', 0),
 (252, 1, '2018-01-25 15:07:28', '2018-01-25 05:07:28', '', 'Picnic Point view', '', 'inherit', 'closed', 'closed', '', 'picnicpoint2', '', '', '2018-01-25 15:07:44', '2018-01-25 05:07:44', '', 251, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/picnicPoint2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (253, 1, '2018-01-25 15:08:02', '2018-01-25 05:08:02', 'Perched atop the crest of the Great Dividing Range is the heritage listed Picnic Point. The panoramic 180 degree views will take your breath away stretching out over the valley to surrounding mountains, the deep gorges below and the world heritage listed area of The Scenic Rim. On a clear day you can see all the way to Brisbane. Picnic Point is 160 precious acres of priceless landscape.\r\n\r\nWhen you enter the park you\'re greeted with an avenue of mature hoop pine and South Queensland kauri before the parklands open into gorgeous manicured lawns.\r\n\r\nA stroll along the beautiful Pardalote Walk is a great way to take in spectacular views of the Lockyer Valley. The Pardalote Walk follows the very edge of the escarpment. The full length of the walk is about 1.9km with access at a number of points along the escarpment. Allow around 45 minutes to enjoy the walk.\r\n\r\nPicnic Point is one of those special places that will stay in your memory. You\'ll be glad you took the time to soak up the incredible views and breathe the fresh, crisp air.\r\n<h3>What\'s on during Carnival?</h3>\r\nA host of talented musos will play at the park during Carnival. Whatever your taste in music, you’ll hear it – jazz, blues, folk, funk, soul, country, rock and roll, and big brass acts.\r\n\r\nFRI 15 SEPT - 11am-3pm \'Undercover\' (Pop, Jazz, Rock \'n\' Roll) at Bandstand\r\n\r\nSAT 16 SEPT - 11am-3pm \'Greg Bird &amp; Friends\' (Jazz, Swing, Latin, Evergreen) at Bandstand\r\n3:30pm-5:30pm \'Webb Family Band\' (Folk, Retro Classics) at Lookout Area\r\n\r\nSUN 17 SEPT - 9am-10:45am \'Toowoomba Concert Band &amp; Second Wind Community Band\' (Concert Band) at Lookout Area\r\n11am-3pm \'Around the Corner\' (Irish Folk Songs - traditional, classical) at Bandstand\r\n\r\nMON 18 SEPT - 11am-3pm \'Swing Magic\' (Swing Jazz) at Bandstand\r\n\r\nTUE 19 SEPT - 11am-3pm \'Toowoomba Grammar School R\'n\'B Band\' (School Band) at Bandstand\r\n\r\nWED 20 SEPT - 11am-3pm \'Blue Room Blues\' (Blues) at Bandstand\r\n\r\nTHU 21 SEPT - 11am-3pm \'Zephyr Project\' (Rockabilly) at Bandstand\r\n\r\nFRI 22 SEPT - 11am-3pm \'Top Gear\' (Rock \'n\' Roll) at Bandstand\r\n\r\nSAT 23 SEPT - 11am-3pm \'2 Timing\' (Swing, Rock \'n\' Roll, Pop, Country) at Bandstand\r\n\r\nSUN 24 SEPT - 11am-3pm \'Slow Train Coming\' (Rock, Pop, Blues, Jazz, Soul, Memphis) at Bandstand *correct at time of printing\r\n<h3>Picnic in the Park</h3>\r\nWhy not pre-pack a picnic, get up close to nature and enjoy the parkland scenery? The restaurant is a tasty option, offering stunning views over the valley and a relaxing rest-stop after a busy morning exploring the parklands.\r\n<h3>Feeling peckish?</h3>\r\nDon\'t miss an opportunity to lick your lips around an iconic violet ice cream at Picnic Point café! It\'s a must do when in Toowoomba! The café is perched on the escarpment with views for miles. Café opens 8:30am to 5pm Monday to Thursday and 8am to 5pm Friday to Sunday.\r\n<h3>Information Hub</h3>\r\nWant more info about Carnival or know what to see while you\'re in town? Visit our Information Hub on Tourist Road for the Carnival low-down, to pick up a map, book bus tickets, or even browse the official merchandise.\r\n<h2>Location</h2>\r\n164 Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/zYDD24uw3w82" target="_blank" rel="noopener">Google map</a>)', '', '', 'inherit', 'closed', 'closed', '', '251-revision-v1', '', '', '2018-01-25 15:08:02', '2018-01-25 05:08:02', '', 251, 'http://www.toowoombaregionalcouncil.com.au/tcof/251-revision-v1/', 0, 'revision', '', 0),
 (254, 1, '2017-09-22 15:08:11', '2017-09-22 05:08:11', '<h2>Fri 22 - Sun 24 Sep</h2>\r\nCountry Heart Events presents fairy activities and fun for all ages at this 3 day event. With fairy wing and fairy garden workshops for the kids, adults can enjoy the artisan stalls, fashion march and auctions.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 0488 404 637 or ddieckmann1@bigpond.com\r\n<h2>Times</h2>\r\nFriday 22 Sept 10am - 5pm\r\n\r\nSaturday 23 Sept 7:30am - 5pm\r\n\r\nSunday 7:30am - 1pm\r\n<h2>Location</h2>\r\nGlennie School Hall, 246a Herries St, Toowoomba (<a href="https://goo.gl/maps/kR9esJaHNcr" target="_blank" rel="noopener">Google map</a>)', 'Fairy & flowers fantasy', '', 'publish', 'closed', 'closed', '', 'fairy-flowers-fantasy', '', '', '2018-01-31 16:01:42', '2018-01-31 06:01:42', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=254', 53, 'post', '', 0),
 (255, 1, '2018-01-25 15:12:52', '2018-01-25 05:12:52', 'Country Heart Events presents fairy activities and fun for all ages at this 3 day event. With fairy wing and fairy garden workshops for the kids, adults can enjoy the artisan stalls, fashion march and auctions.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 0488 404 637 or ddieckmann1@bigpond.com\r\n<h2>Times</h2>\r\nFriday 22 Sept 10am - 5pm\r\n\r\nSaturday 23 Sept 7:30am - 5pm\r\n\r\nSunday 7:30am - 1pm\r\n<h3>Location</h3>\r\nGlennie School Hall, 246a Herries St, Toowoomba', 'Fairy & flowers fantasy', '', 'inherit', 'closed', 'closed', '', '254-revision-v1', '', '', '2018-01-25 15:12:52', '2018-01-25 05:12:52', '', 254, 'http://www.toowoombaregionalcouncil.com.au/tcof/254-revision-v1/', 0, 'revision', '', 0),
 (256, 1, '2018-01-25 15:13:20', '2018-01-25 05:13:20', 'Country Heart Events presents fairy activities and fun for all ages at this 3 day event. With fairy wing and fairy garden workshops for the kids, adults can enjoy the artisan stalls, fashion march and auctions.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 0488 404 637 or ddieckmann1@bigpond.com\r\n<h2>Times</h2>\r\nFriday 22 Sept 10am - 5pm\r\n\r\nSaturday 23 Sept 7:30am - 5pm\r\n\r\nSunday 7:30am - 1pm\r\n<h3>Location</h3>\r\nGlennie School Hall, 246a Herries St, Toowoomba (<a href="https://goo.gl/maps/kR9esJaHNcr" target="_blank" rel="noopener">Google map</a>)', 'Fairy & flowers fantasy', '', 'inherit', 'closed', 'closed', '', '254-revision-v1', '', '', '2018-01-25 15:13:20', '2018-01-25 05:13:20', '', 254, 'http://www.toowoombaregionalcouncil.com.au/tcof/254-revision-v1/', 0, 'revision', '', 0),
 (257, 1, '2018-01-25 15:15:27', '2018-01-25 05:15:27', '', 'Fairy Flower Fantasy', '', 'inherit', 'closed', 'closed', '', 'fairyflowerfantasy2', '', '', '2018-01-25 15:15:36', '2018-01-25 05:15:36', '', 254, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/FairyFlowerFantasy2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (259, 1, '2018-01-25 15:17:19', '2018-01-25 05:17:19', 'Perched atop the crest of the Great Dividing Range is the heritage listed Picnic Point. The panoramic 180 degree views will take your breath away stretching out over the valley to surrounding mountains, the deep gorges below and the world heritage listed area of The Scenic Rim. On a clear day you can see all the way to Brisbane. Picnic Point is 160 precious acres of priceless landscape.\r\n\r\nWhen you enter the park you\'re greeted with an avenue of mature hoop pine and South Queensland kauri before the parklands open into gorgeous manicured lawns.\r\n\r\nA stroll along the beautiful Pardalote Walk is a great way to take in spectacular views of the Lockyer Valley. The Pardalote Walk follows the very edge of the escarpment. The full length of the walk is about 1.9km with access at a number of points along the escarpment. Allow around 45 minutes to enjoy the walk.\r\n\r\nPicnic Point is one of those special places that will stay in your memory. You\'ll be glad you took the time to soak up the incredible views and breathe the fresh, crisp air.\r\n<h3>What\'s on during Carnival?</h3>\r\nA host of talented musos will play at the park during Carnival. Whatever your taste in music, you’ll hear it – jazz, blues, folk, funk, soul, country, rock and roll, and big brass acts.\r\n\r\nFRI 15 SEPT - 11am-3pm \'Undercover\' (Pop, Jazz, Rock \'n\' Roll) at Bandstand\r\n\r\nSAT 16 SEPT - 11am-3pm \'Greg Bird &amp; Friends\' (Jazz, Swing, Latin, Evergreen) at Bandstand\r\n3:30pm-5:30pm \'Webb Family Band\' (Folk, Retro Classics) at Lookout Area\r\n\r\nSUN 17 SEPT - 9am-10:45am \'Toowoomba Concert Band &amp; Second Wind Community Band\' (Concert Band) at Lookout Area\r\n11am-3pm \'Around the Corner\' (Irish Folk Songs - traditional, classical) at Bandstand\r\n\r\nMON 18 SEPT - 11am-3pm \'Swing Magic\' (Swing Jazz) at Bandstand\r\n\r\nTUE 19 SEPT - 11am-3pm \'Toowoomba Grammar School R\'n\'B Band\' (School Band) at Bandstand\r\n\r\nWED 20 SEPT - 11am-3pm \'Blue Room Blues\' (Blues) at Bandstand\r\n\r\nTHU 21 SEPT - 11am-3pm \'Zephyr Project\' (Rockabilly) at Bandstand\r\n\r\nFRI 22 SEPT - 11am-3pm \'Top Gear\' (Rock \'n\' Roll) at Bandstand\r\n\r\nSAT 23 SEPT - 11am-3pm \'2 Timing\' (Swing, Rock \'n\' Roll, Pop, Country) at Bandstand\r\n\r\nSUN 24 SEPT - 11am-3pm \'Slow Train Coming\' (Rock, Pop, Blues, Jazz, Soul, Memphis) at Bandstand *correct at time of printing\r\n<h3>Picnic in the Park</h3>\r\nWhy not pre-pack a picnic, get up close to nature and enjoy the parkland scenery? The restaurant is a tasty option, offering stunning views over the valley and a relaxing rest-stop after a busy morning exploring the parklands.\r\n<h3>Feeling peckish?</h3>\r\nDon\'t miss an opportunity to lick your lips around an iconic violet ice cream at Picnic Point café! It\'s a must do when in Toowoomba! The café is perched on the escarpment with views for miles. Café opens 8:30am to 5pm Monday to Thursday and 8am to 5pm Friday to Sunday.\r\n<h3>Information Hub</h3>\r\nWant more info about Carnival or know what to see while you\'re in town? Visit our Information Hub on Tourist Road for the Carnival low-down, to pick up a map, book bus tickets, or even browse the official merchandise.\r\n<h2>Location</h2>\r\n164 Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/zYDD24uw3w82" target="_blank" rel="noopener">Google map</a>)', 'Picnic Point', '', 'inherit', 'closed', 'closed', '', '251-revision-v1', '', '', '2018-01-25 15:17:19', '2018-01-25 05:17:19', '', 251, 'http://www.toowoombaregionalcouncil.com.au/tcof/251-revision-v1/', 0, 'revision', '', 0),
 (260, 1, '2017-09-16 15:17:32', '2017-09-16 05:17:32', '<h2>Sat 16 Sep</h2>\r\nBuy direct from the farmer and get to know the people behind the food as these proud producers show off their wares at this exciting market. Talk to the growers, watch exciting food demos, enjoy free live music and buskers and treat the kids to great children’s activities such as pot a seed, face painting and a designated play area. Now that’s fresh!\r\n\r\nWHEN: Saturday 16 Sept\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 0439 844 849 or fiona@toowoombafarmersmarket.com.au.\r\n<h2>Times</h2>\r\nSaturday 16 Sept 7am - 11am\r\n<h2>Location</h2>\r\nWalton Stores, 476-482 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/6HJr4unSesE2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Farmers Markets', '', 'publish', 'closed', 'closed', '', 'toowoomba-farmers-markets-2', '', '', '2018-02-01 10:34:26', '2018-02-01 00:34:26', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=260', 52, 'post', '', 0),
 (261, 1, '2018-01-25 15:22:06', '2018-01-25 05:22:06', '', 'Farmers Markets produce', '', 'inherit', 'closed', 'closed', '', 'farmersmarkets2', '', '', '2018-01-25 15:22:17', '2018-01-25 05:22:17', '', 260, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/FarmersMarkets2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (262, 1, '2018-01-25 15:22:35', '2018-01-25 05:22:35', 'Buy direct from the farmer and get to know the people behind the food as these proud producers show off their wares at this exciting market. Talk to the growers, watch exciting food demos, enjoy free live music and buskers and treat the kids to great children’s activities such as pot a seed, face painting and a designated play area. Now that’s fresh!\r\n\r\nWHEN: Saturday 16 Sept\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 0439 844 849 or fiona@toowoombafarmersmarket.com.au\r\n<h2>Times</h2>\r\nSaturday 16 Sept 7am - 11am\r\n<h2>Location</h2>\r\nWalton Stores, 476-482 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/6HJr4unSesE2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Farmers Markets', '', 'inherit', 'closed', 'closed', '', '260-revision-v1', '', '', '2018-01-25 15:22:35', '2018-01-25 05:22:35', '', 260, 'http://www.toowoombaregionalcouncil.com.au/tcof/260-revision-v1/', 0, 'revision', '', 0),
 (263, 1, '2017-09-15 15:29:10', '2017-09-15 05:29:10', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nCelebrate the pure love of flowers, gardening and all things horticultural.\r\n\r\nThe specially selected Exhibition Gardens are chosen because they are so unique and creative that they deserve a special show all of their own. Be inspired, and perhaps learn a tip or two, at the five private gardens selected as Toowoomba’s finest for 2017.\r\n\r\nFor more information visit the website <a href="http://www.toowoombaexhibitiongardens.com">http://www.toowoombaexhibitiongardens.com</a>\r\n\r\nENQUIRIES: 0459 080 035\r\n<h3>GARDEN LOCATIONS</h3>\r\n#1 Philip &amp; Marjorie Martin, 17 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/LragB2JL6PS2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#2 Kelly &amp; Cheryl Fry, 21 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/aGnVrzpCotM2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#3 Val Peachy, 5 Fern Dve, Toowoomba (<a href="https://goo.gl/maps/TC2ckw9wSh42" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#4 Sue Hawkins, 37 Murphys Creek Rd, Toowoomba (<a href="https://goo.gl/maps/fb5qmPhoAxS2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#5 Mark &amp; Anne O’Brien, 79 North St, Toowoomba (<a href="https://goo.gl/maps/cc72KjWfSWv" target="_blank" rel="noopener">Google map</a>)\r\n<h3>COST</h3>\r\n5 gardens $12 per person\r\n\r\n3 gardens $10 per person\r\n\r\n1 garden $5 per person\r\n\r\nTickets can be purchased at any of the gardens.\r\n<h2>Times</h2>\r\n9am - 5pm daily.', 'The Chronicle exhibition gardens', '', 'publish', 'closed', 'closed', '', '263-2', '', '', '2018-01-30 12:01:38', '2018-01-30 02:01:38', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=263', 51, 'post', '', 0),
 (264, 1, '2018-01-25 15:48:28', '2018-01-25 05:48:28', 'Celebrate the pure love of flowers, gardening and all things horticultural.\r\n\r\nThe specially selected Exhibition Gardens are chosen because they are so unique and creative that they deserve a special show all of their own. Be inspired, and perhaps learn a tip or two, at the five private gardens selected as Toowoomba’s finest for 2017.\r\n\r\nFor more information visit the website <a href="http://www.toowoombaexhibitiongardens.com">http://www.toowoombaexhibitiongardens.com</a>\r\n\r\nENQUIRIES: 0459 080 035\r\n<h3>GARDEN LOCATIONS</h3>\r\n#1 Philip &amp; Marjorie Martin, 17 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/LragB2JL6PS2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#2 Kelly &amp; Cheryl Fry, 21 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/aGnVrzpCotM2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#3 Val Peachy, 5 Fern Dve, Toowoomba (<a href="https://goo.gl/maps/TC2ckw9wSh42" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#4 Sue Hawkins, 37 Murphys Creek Rd, Toowoomba (<a href="https://goo.gl/maps/fb5qmPhoAxS2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#5 Mark &amp; Anne O’Brien, 79 North St, Toowoomba (<a href="https://goo.gl/maps/cc72KjWfSWv" target="_blank" rel="noopener">Google map</a>)\r\n<h3>COST</h3>\r\n5 gardens $12 per person\r\n\r\n3 gardens $10 per person\r\n\r\n1 garden $5 per person\r\n\r\nTickets can be purchased at any of the gardens.\r\n<h2>Times</h2>\r\n9am - 5pm daily.', '', '', 'inherit', 'closed', 'closed', '', '263-revision-v1', '', '', '2018-01-25 15:48:28', '2018-01-25 05:48:28', '', 263, 'http://www.toowoombaregionalcouncil.com.au/tcof/263-revision-v1/', 0, 'revision', '', 0),
 (265, 1, '2018-01-25 15:49:56', '2018-01-25 05:49:56', '', 'Cottage garden', '', 'inherit', 'closed', 'closed', '', 'chrongardenexhib2', '', '', '2018-01-25 15:50:24', '2018-01-25 05:50:24', '', 263, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/ChronGardenExhib2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (266, 1, '2018-01-25 15:51:04', '2018-01-25 05:51:04', 'Celebrate the pure love of flowers, gardening and all things horticultural.\n\nThe specially selected Exhibition Gardens are chosen because they are so unique and creative that they deserve a special show all of their own. Be inspired, and perhaps learn a tip or two, at the five private gardens selected as Toowoomba’s finest for 2017.\n\nFor more information visit the website <a href="http://www.toowoombaexhibitiongardens.com">http://www.toowoombaexhibitiongardens.com</a>\n\nENQUIRIES: 0459 080 035\n<h3>GARDEN LOCATIONS</h3>\n#1 Philip &amp; Marjorie Martin, 17 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/LragB2JL6PS2" target="_blank" rel="noopener">Google map</a>)\n\n#2 Kelly &amp; Cheryl Fry, 21 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/aGnVrzpCotM2" target="_blank" rel="noopener">Google map</a>)\n\n#3 Val Peachy, 5 Fern Dve, Toowoomba (<a href="https://goo.gl/maps/TC2ckw9wSh42" target="_blank" rel="noopener">Google map</a>)\n\n#4 Sue Hawkins, 37 Murphys Creek Rd, Toowoomba (<a href="https://goo.gl/maps/fb5qmPhoAxS2" target="_blank" rel="noopener">Google map</a>)\n\n#5 Mark &amp; Anne O’Brien, 79 North St, Toowoomba (<a href="https://goo.gl/maps/cc72KjWfSWv" target="_blank" rel="noopener">Google map</a>)\n<h3>COST</h3>\n5 gardens $12 per person\n\n3 gardens $10 per person\n\n1 garden $5 per person\n\nTickets can be purchased at any of the gardens.\n<h2>Times</h2>\n9am - 5pm daily.', 'The Chronicle exhibiEXHIBITION GARDENS', '', 'inherit', 'closed', 'closed', '', '263-autosave-v1', '', '', '2018-01-25 15:51:04', '2018-01-25 05:51:04', '', 263, 'http://www.toowoombaregionalcouncil.com.au/tcof/263-autosave-v1/', 0, 'revision', '', 0),
 (267, 1, '2018-01-25 15:51:13', '2018-01-25 05:51:13', 'Celebrate the pure love of flowers, gardening and all things horticultural.\r\n\r\nThe specially selected Exhibition Gardens are chosen because they are so unique and creative that they deserve a special show all of their own. Be inspired, and perhaps learn a tip or two, at the five private gardens selected as Toowoomba’s finest for 2017.\r\n\r\nFor more information visit the website <a href="http://www.toowoombaexhibitiongardens.com">http://www.toowoombaexhibitiongardens.com</a>\r\n\r\nENQUIRIES: 0459 080 035\r\n<h3>GARDEN LOCATIONS</h3>\r\n#1 Philip &amp; Marjorie Martin, 17 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/LragB2JL6PS2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#2 Kelly &amp; Cheryl Fry, 21 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/aGnVrzpCotM2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#3 Val Peachy, 5 Fern Dve, Toowoomba (<a href="https://goo.gl/maps/TC2ckw9wSh42" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#4 Sue Hawkins, 37 Murphys Creek Rd, Toowoomba (<a href="https://goo.gl/maps/fb5qmPhoAxS2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#5 Mark &amp; Anne O’Brien, 79 North St, Toowoomba (<a href="https://goo.gl/maps/cc72KjWfSWv" target="_blank" rel="noopener">Google map</a>)\r\n<h3>COST</h3>\r\n5 gardens $12 per person\r\n\r\n3 gardens $10 per person\r\n\r\n1 garden $5 per person\r\n\r\nTickets can be purchased at any of the gardens.\r\n<h2>Times</h2>\r\n9am - 5pm daily.', 'The Chronicle exhibition gardens', '', 'inherit', 'closed', 'closed', '', '263-revision-v1', '', '', '2018-01-25 15:51:13', '2018-01-25 05:51:13', '', 263, 'http://www.toowoombaregionalcouncil.com.au/tcof/263-revision-v1/', 0, 'revision', '', 0),
 (269, 1, '2017-09-15 11:39:32', '2017-09-15 01:39:32', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nHeritage-listed Spring Bluff Railway Station is home to 150 years of railway history and beautifully landscaped gardens. Nestled on the main railway line between Ipswich and Toowoomba, the splendour of the gardens will stop you in your tracks. The Spring exhibit is absolutely stunning with thousands of visitors each September enjoying the magnificent display with an array of poppies, ranunculus, stock, snapdragons, petunias and many other annuals bursting into colour under the warm sunshine.\r\n\r\nPop in to Spring Bluff Café for a delicious lunch or a hot cup of coffee. It\'s open every day during Carnival from 9:30am to 4:30pm.\r\n<h2>BIG BAND AT THE BLUFF</h2>\r\nThe Jim Miller Big Band plays the tunes of yesteryear in the picturesque gardens at Spring Bluff Railway Station. Chill out on the lawn or dust off your dancing shoes to swing to the Big Band sounds. Picnic-makers and BBQ-lovers descend on the gardens to soak up the music and atmosphere. Come along and don\'t forget a picnic basket and blanket!\r\n\r\nWHEN: Sunday 17 Sept\r\n\r\nTIME: 11:30am – 3pm\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6883 or claire.mcgovern@tr.qld.gov.au\r\n<h2>Location</h2>\r\nMcCormack Drive, Murphys Creek (<a href="https://goo.gl/maps/WTkFKknWZU22" target="_blank" rel="noopener">Google map</a>)\r\n\r\n&nbsp;', 'Spring Bluff Railway Station gardens', '', 'publish', 'closed', 'closed', '', 'spring-bluff-railway-station-gardens', '', '', '2018-01-30 12:00:53', '2018-01-30 02:00:53', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=269', 50, 'post', '', 0),
 (270, 1, '2018-01-29 11:54:37', '2018-01-29 01:54:37', '', 'Spring Bluff flowers', '', 'inherit', 'closed', 'closed', '', 'springbluff2', '', '', '2018-01-29 11:54:45', '2018-01-29 01:54:45', '', 269, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/SpringBluff2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (271, 1, '2018-01-29 11:55:06', '2018-01-29 01:55:06', 'Heritage-listed Spring Bluff Railway Station is home to 150 years of railway history and beautifully landscaped gardens. Nestled on the main railway line between Ipswich and Toowoomba, the splendour of the gardens will stop you in your tracks. The Spring exhibit is absolutely stunning with thousands of visitors each September enjoying the magnificent display with an array of poppies, ranunculus, stock, snapdragons, petunias and many other annuals bursting into colour under the warm sunshine.\r\n\r\nPop in to Spring Bluff Café for a delicious lunch or a hot cup of coffee. It\'s open every day during Carnival from 9:30am to 4:30pm.\r\n<h2>BIG BAND AT THE BLUFF</h2>\r\nThe Jim Miller Big Band plays the tunes of yesteryear in the picturesque gardens at Spring Bluff Railway Station. Chill out on the lawn or dust off your dancing shoes to swing to the Big Band sounds. Picnic-makers and BBQ-lovers descend on the gardens to soak up the music and atmosphere. Come along and don\'t forget a picnic basket and blanket!\r\n\r\nWHEN: Sunday 17 Sept\r\n\r\nTIME: 11:30am – 3pm\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6883 or claire.mcgovern@tr.qld.gov.au\r\n<h2>Location</h2>\r\nMcCormack Drive, Murphys Creek (<a href="https://goo.gl/maps/WTkFKknWZU22" target="_blank" rel="noopener">Google map</a>)\r\n\r\n&nbsp;', 'Spring Bluff Railway Station gardens', '', 'inherit', 'closed', 'closed', '', '269-revision-v1', '', '', '2018-01-29 11:55:06', '2018-01-29 01:55:06', '', 269, 'http://www.toowoombaregionalcouncil.com.au/tcof/269-revision-v1/', 0, 'revision', '', 0),
 (272, 1, '2017-09-17 11:55:44', '2017-09-17 01:55:44', '<h2>Sun 17 - Sat 23 Sep</h2>\r\nTrains leave Toowoomba twice daily for the beautifully scenic journey down to the glorious prize-winning gardens of Spring Bluff where there’s a warm welcome by the “Acting” Station Master. You’ll be greeted with a real song and dance! Pack a picnic, grab a coffee and enjoy a great day at South East Queensland\'s prettiest railway station.\r\n\r\nTrain journey times are approximately 35 - 40 minutes between Toowoomba and Spring Bluff.\r\n\r\nCOST: Adult $20 | Child (4–15yrs) $10 | Child (3 years &amp; under not occupying a seat) Free. Limit of one free child ticket per paying adult.\r\n\r\nBOOKINGS: 1300 131 722 (Tickets on sale 1st August)\r\n<h2>Times</h2>\r\nDeparts Toowoomba Railway Station at 9am &amp; 1pm\r\n\r\nDeparts Spring Bluff Railway Station at 11am &amp; 3pm\r\n\r\nLocation\r\n\r\nDeparts Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://goo.gl/maps/NJERBWdPs892" target="_blank" rel="noopener">Google map</a>).', 'Diesel-hauled train rides to Spring Bluff', '', 'publish', 'closed', 'closed', '', 'diesel-hauled-train-rides-to-spring-bluff', '', '', '2018-01-30 12:00:20', '2018-01-30 02:00:20', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=272', 49, 'post', '', 0),
 (273, 1, '2018-01-29 12:00:33', '2018-01-29 02:00:33', '', 'Spring Bluff Flowers And Rail Line', '', 'inherit', 'closed', 'closed', '', 'springbluffflowersandrailline2', '', '', '2018-01-29 12:00:48', '2018-01-29 02:00:48', '', 272, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/SpringBluffFlowersAndRailLine2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (274, 1, '2018-01-29 12:00:58', '2018-01-29 02:00:58', 'Trains leave Toowoomba twice daily for the beautifully scenic journey down to the glorious prize-winning gardens of Spring Bluff where there’s a warm welcome by the “Acting” Station Master. You’ll be greeted with a real song and dance! Pack a picnic, grab a coffee and enjoy a great day at South East Queensland\'s prettiest railway station.\r\n\r\nTrain journey times are approximately 35 - 40 minutes between Toowoomba and Spring Bluff.\r\n\r\nCOST: Adult $20 | Child (4–15yrs) $10 | Child (3 years &amp; under not occupying a seat) Free. Limit of one free child ticket per paying adult.\r\n\r\nBOOKINGS: 1300 131 722 (Tickets on sale 1st August)\r\n<h2>Times</h2>\r\nDeparts Toowoomba Railway Station at 9am &amp; 1pm\r\n\r\nDeparts Spring Bluff Railway Station at 11am &amp; 3pm\r\n\r\nLocation\r\n\r\nDeparts Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://goo.gl/maps/NJERBWdPs892" target="_blank" rel="noopener">Google map</a>).', 'Diesel-hauled train rides to Spring Bluff', '', 'inherit', 'closed', 'closed', '', '272-revision-v1', '', '', '2018-01-29 12:00:58', '2018-01-29 02:00:58', '', 272, 'http://www.toowoombaregionalcouncil.com.au/tcof/272-revision-v1/', 0, 'revision', '', 0),
 (275, 1, '2017-09-20 12:02:49', '2017-09-20 02:02:49', '<h2>Wed 20 Sep</h2>\r\nTravel by specially chartered 2000 class rail-car past farmlands and quaint Lockyer Valley townships to Toowoomba, with a pause at the beautiful Spring Bluff Station gardens for photos. In Toowoomba you’ll join a coach tour around some of the prize-winning gardens. You can pre-order a 2 course lunch with your ticket at a well-known Toowoomba restaurant (additional cost of $25).\r\n\r\nCOST: $150 per person\r\n\r\nBOOKINGS: Sunshine Express Rail Tours 07 3252 1759 (10am – 3pm, Tue–Thu).\r\n<h2>Times</h2>\r\nDeparts Roma St Station Brisbane at 7:15am | Returns 6:50pm.\r\n<h2>Location</h2>\r\nRoma St Station, Brisbane (<a href="https://goo.gl/maps/MWckUeGfDHo" target="_blank" rel="noopener">Google map</a>).', 'Silver Bullet Express tour', '', 'publish', 'closed', 'closed', '', 'silver-bullet-express-tour', '', '', '2018-01-30 11:59:38', '2018-01-30 01:59:38', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=275', 48, 'post', '', 0),
 (276, 1, '2018-01-29 12:04:11', '2018-01-29 02:04:11', 'Travel by specially chartered 2000 class rail-car past farmlands and quaint Lockyer Valley townships to Toowoomba, with a pause at the beautiful Spring Bluff Station gardens for photos. In Toowoomba you’ll join a coach tour around some of the prize-winning gardens. You can pre-order a 2 course lunch with your ticket at a well-known Toowoomba restaurant (additional cost of $25).\r\n\r\nCOST: $150 per person\r\n\r\nBOOKINGS: Sunshine Express Rail Tours 07 3252 1759 (10am – 3pm, Tue–Thu).\r\n\r\n&nbsp;', 'Silver Bullet Express tour', '', 'inherit', 'closed', 'closed', '', '275-revision-v1', '', '', '2018-01-29 12:04:11', '2018-01-29 02:04:11', '', 275, 'http://www.toowoombaregionalcouncil.com.au/tcof/275-revision-v1/', 0, 'revision', '', 0),
 (277, 1, '2018-01-29 12:06:22', '2018-01-29 02:06:22', 'Travel by specially chartered 2000 class rail-car past farmlands and quaint Lockyer Valley townships to Toowoomba, with a pause at the beautiful Spring Bluff Station gardens for photos. In Toowoomba you’ll join a coach tour around some of the prize-winning gardens. You can pre-order a 2 course lunch with your ticket at a well-known Toowoomba restaurant (additional cost of $25).\n\nCOST: $150 per person\n\nBOOKINGS: Sunshine Express Rail Tours 07 3252 1759 (10am – 3pm, Tue–Thu).\n<h2>Times</h2>\nDeparts Roma St Station Brisbane at 7:15am | Returns 6:50pm.\n<h2>Location</h2>\nRoma St Station, Brisbane (<a href="https://goo.gl/maps/MWckUeGfDHo" target="_blank" rel="noopener">Google map</a>).', 'Silver Bullet Express tour', '', 'inherit', 'closed', 'closed', '', '275-autosave-v1', '', '', '2018-01-29 12:06:22', '2018-01-29 02:06:22', '', 275, 'http://www.toowoombaregionalcouncil.com.au/tcof/275-autosave-v1/', 0, 'revision', '', 0),
 (278, 1, '2018-01-29 12:06:35', '2018-01-29 02:06:35', '', 'Silver Bullet Express', '', 'inherit', 'closed', 'closed', '', 'silverbulletexpress2', '', '', '2018-01-29 12:06:45', '2018-01-29 02:06:45', '', 275, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/SilverBulletExpress2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (279, 1, '2018-01-29 12:06:52', '2018-01-29 02:06:52', 'Travel by specially chartered 2000 class rail-car past farmlands and quaint Lockyer Valley townships to Toowoomba, with a pause at the beautiful Spring Bluff Station gardens for photos. In Toowoomba you’ll join a coach tour around some of the prize-winning gardens. You can pre-order a 2 course lunch with your ticket at a well-known Toowoomba restaurant (additional cost of $25).\r\n\r\nCOST: $150 per person\r\n\r\nBOOKINGS: Sunshine Express Rail Tours 07 3252 1759 (10am – 3pm, Tue–Thu).\r\n<h2>Times</h2>\r\nDeparts Roma St Station Brisbane at 7:15am | Returns 6:50pm.\r\n<h2>Location</h2>\r\nRoma St Station, Brisbane (<a href="https://goo.gl/maps/MWckUeGfDHo" target="_blank" rel="noopener">Google map</a>).', 'Silver Bullet Express tour', '', 'inherit', 'closed', 'closed', '', '275-revision-v1', '', '', '2018-01-29 12:06:52', '2018-01-29 02:06:52', '', 275, 'http://www.toowoombaregionalcouncil.com.au/tcof/275-revision-v1/', 0, 'revision', '', 0),
 (280, 1, '2017-09-16 12:07:20', '2017-09-16 02:07:20', '<h2>Sat 16 - Sun 17 Sep</h2>\r\nReturn to yesteryear on a steam train tour from Brisbane to Toowoomba operated by the Australian Railway Historical Society. In Toowoomba you’ll join a coach tour around some of the prize-winning gardens. You can pre-order a 2 course lunch with your ticket at a well-known Toowoomba restaurant (additional cost of $28.50).\r\n\r\nCOST: Adult $129 | Concession $119 | Child (4-15yrs) $65 | Family $380\r\n\r\nBOOKINGS: Sunshine Express Rail Tours 07 3252 1759 (10am - 3pm, Tue–Thu)\r\n<h2>Times</h2>\r\nSat – Departs Roma St Station Brisbane at 6:55am | Returns 6:45pm\r\n\r\nSun – Departs Roma St Station Brisbane at 7:15am | Returns 7:45pm.\r\n<h2>Location</h2>\r\nRoma St Station, Brisbane (<a href="https://goo.gl/maps/MWckUeGfDHo" target="_blank" rel="noopener">Google map</a>).', 'Full day Steam Train tour', '', 'publish', 'closed', 'closed', '', 'full-day-steam-train-tour', '', '', '2018-01-30 11:58:54', '2018-01-30 01:58:54', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=280', 47, 'post', '', 0),
 (281, 1, '2018-01-29 12:12:10', '2018-01-29 02:12:10', 'Return to yesteryear on a steam train tour from Brisbane to Toowoomba operated by the Australian Railway Historical Society. In Toowoomba you’ll join a coach tour around some of the prize-winning gardens. You can pre-order a 2 course lunch with your ticket at a well-known Toowoomba restaurant (additional cost of $28.50).\r\n\r\nCOST: Adult $129 | Concession $119 | Child (4-15yrs) $65 | Family $380\r\n\r\nBOOKINGS: Sunshine Express Rail Tours 07 3252 1759 (10am - 3pm, Tue–Thu)\r\n<h2>Times</h2>\r\nSat – Departs Roma St Station Brisbane at 6:55am | Returns 6:45pm\r\n\r\nSun – Departs Roma St Station Brisbane at 7:15am | Returns 7:45pm.\r\n<h2>Location</h2>\r\nRoma St Station, Brisbane (<a href="https://goo.gl/maps/MWckUeGfDHo" target="_blank" rel="noopener">Google map</a>).', 'Full day Steam Train tour', '', 'inherit', 'closed', 'closed', '', '280-revision-v1', '', '', '2018-01-29 12:12:10', '2018-01-29 02:12:10', '', 280, 'http://www.toowoombaregionalcouncil.com.au/tcof/280-revision-v1/', 0, 'revision', '', 0),
 (282, 1, '2018-01-29 12:12:32', '2018-01-29 02:12:32', '', 'Steam Train', '', 'inherit', 'closed', 'closed', '', 'steamtrain2', '', '', '2018-01-29 12:12:39', '2018-01-29 02:12:39', '', 280, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/SteamTrain2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (283, 1, '2017-09-15 12:13:02', '2017-09-15 02:13:02', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nTo make getting around the city as enjoyable and hassle-free as possible, a Park Shuttle Bus will operate each day during the Toowoomba Carnival of Flowers. The shuttle bus will travel a loop of the public parks and the CBD.\r\n\r\nSimply park the car at Picnic Point (there\'s lots of parking!), purchase your ticket and jump on the next shuttle bus. Tickets will be available to purchase at Toowoomba Carnival of Flowers Info Hubs located in the Parks from Thursday 14th September.\r\n\r\nIMPORTANT: Last departure from Picnic Point is 4pm each day.\r\n<h4>DAILY COST</h4>\r\nAdult $10 | Child (13 years &amp; under) $5 per day\r\n<h4>TIMES</h4>\r\n9am - 5pm daily.\r\n\r\nEvery hour Monday-Thursday\r\nEvery 30 minutes Friday-Sunday\r\n<h4>LOCATIONS</h4>\r\nPicnic Point (Tourist Rd - <a href="https://goo.gl/maps/ixMmPX82wzs" target="_blank" rel="noopener">Google map</a>)\r\nQueens Park Botanic Gardens (Lindsay St)\r\nToowoomba CBD (Bus Interchange, Neil St)\r\nLaurel Bank Park (Hill St)\r\n<h4>BOOKINGS</h4>\r\nTickets available at Toowoomba Carnival of Flowers Info Hubs', 'Park shuttle bus', '', 'publish', 'closed', 'closed', '', 'park-shuttle-bus', '', '', '2018-01-30 11:58:21', '2018-01-30 01:58:21', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=283', 46, 'post', '', 0),
 (284, 1, '2018-01-29 12:16:56', '2018-01-29 02:16:56', 'To make getting around the city as enjoyable and hassle-free as possible, a Park Shuttle Bus will operate each day during the Toowoomba Carnival of Flowers. The shuttle bus will travel a loop of the public parks and the CBD.\r\n\r\nSimply park the car at Picnic Point (there\'s lots of parking!), purchase your ticket and jump on the next shuttle bus. Tickets will be available to purchase at Toowoomba Carnival of Flowers Info Hubs located in the Parks from Thursday 14th September.\r\n\r\nIMPORTANT: Last departure from Picnic Point is 4pm each day.\r\n<h4>DAILY COST</h4>\r\nAdult $10 | Child (13 years &amp; under) $5 per day\r\n<h4>TIMES</h4>\r\n9am - 5pm daily.\r\n\r\nEvery hour Monday-Thursday\r\nEvery 30 minutes Friday-Sunday\r\n<h4>LOCATIONS</h4>\r\nPicnic Point (Tourist Rd - <a href="https://goo.gl/maps/ixMmPX82wzs" target="_blank" rel="noopener">Google map</a>)\r\nQueens Park Botanic Gardens (Lindsay St)\r\nToowoomba CBD (Bus Interchange, Neil St)\r\nLaurel Bank Park (Hill St)\r\n<h4>BOOKINGS</h4>\r\nTickets available at Toowoomba Carnival of Flowers Info Hubs', 'Park shuttle bus', '', 'inherit', 'closed', 'closed', '', '283-revision-v1', '', '', '2018-01-29 12:16:56', '2018-01-29 02:16:56', '', 283, 'http://www.toowoombaregionalcouncil.com.au/tcof/283-revision-v1/', 0, 'revision', '', 0),
 (285, 1, '2017-09-18 12:17:18', '2017-09-18 02:17:18', '<h2>Mon 18 - Thu 21 Sep</h2>\r\nEnter the twilight zone and discover the secret world of the parklands by night. This is your chance to see and hear from the experts about the darker side of plant life in a one-hour nocturnal tour of Laurel Bank Park.\r\n\r\nThrow the spotlight on some shady characters from far off places like English and Spanish oaks, Gingko trees and Japanese maples. Track down exotic and rare species, and find out what goes on behind the scenes to create our picture-perfect park.\r\n\r\nThe tour meets on the northern side of Laurel Bank Park Hall on Hill St. Book now to secure your spot on a guided tour with a Laurel Bank Park gardener!\r\n\r\nCOST: $5 per person, book now to secure your place.\r\n<h2>Times</h2>\r\n6:30pm daily.\r\n<h2>Location</h2>\r\nLaurel Bank Park Hall, 50 Hill St, Toowoomba (<a href="https://goo.gl/maps/Tbr4xDgja9U2" target="_blank" rel="noopener">Google map</a>).', 'Twilight tours of Laurel Bank Park', '', 'publish', 'closed', 'closed', '', 'twilight-tours-of-laurel-bank-park', '', '', '2018-01-30 11:57:39', '2018-01-30 01:57:39', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=285', 45, 'post', '', 0),
 (286, 1, '2018-01-29 12:21:02', '2018-01-29 02:21:02', '', 'Twilight Tours', '', 'inherit', 'closed', 'closed', '', 'twilighttours2', '', '', '2018-01-29 12:21:12', '2018-01-29 02:21:12', '', 285, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/TwilightTours2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (287, 1, '2018-01-29 12:21:28', '2018-01-29 02:21:28', 'Enter the twilight zone and discover the secret world of the parklands by night. This is your chance to see and hear from the experts about the darker side of plant life in a one-hour nocturnal tour of Laurel Bank Park.\r\n\r\nThrow the spotlight on some shady characters from far off places like English and Spanish oaks, Gingko trees and Japanese maples. Track down exotic and rare species, and find out what goes on behind the scenes to create our picture-perfect park.\r\n\r\nThe tour meets on the northern side of Laurel Bank Park Hall on Hill St. Book now to secure your spot on a guided tour with a Laurel Bank Park gardener!\r\n\r\nCOST: $5 per person, book now to secure your place.\r\n<h2>Times</h2>\r\n6:30pm daily.\r\n<h2>Location</h2>\r\nLaurel Bank Park Hall, 50 Hill St, Toowoomba (<a href="https://goo.gl/maps/Tbr4xDgja9U2" target="_blank" rel="noopener">Google map</a>).', 'Twilight tours of Laurel Bank Park', '', 'inherit', 'closed', 'closed', '', '285-revision-v1', '', '', '2018-01-29 12:21:28', '2018-01-29 02:21:28', '', 285, 'http://www.toowoombaregionalcouncil.com.au/tcof/285-revision-v1/', 0, 'revision', '', 0),
 (288, 1, '2017-09-15 12:21:55', '2017-09-15 02:21:55', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nPack a picnic and bring the family along to musical delight and activities among the flower beds. Throughout Carnival our parks will come alive with music, entertainment and blooms.\r\n\r\nThere will be something for everyone - specific bands, musicians and locations will be announced soon.\r\n\r\nCOST: Free\r\n<h3>PICNIC POINT</h3>\r\n<h4>FRI 15 SEPT</h4>\r\n11am-3pm \'Undercover\' (Pop, Jazz, Rock \'n\' Roll) at Bandstand\r\n<h4>SAT 16 SEPT</h4>\r\n11am-3pm \'Greg Bird &amp; Friends\' (Jazz, Swing, Latin, Evergreen) at Bandstand\r\n3:30pm-5:30pm \'Webb Family Band\' (Folk, Retro Classics) at Lookout Area\r\n<h4>SUN 17 SEPT</h4>\r\n9am-10:45am \'Toowoomba Concert Band &amp; Second Wind Community Band\' (Concert Band) at Lookout Area\r\n11am-3pm \'Around the Corner\' (Irish Folk Songs - traditional, classical) at Bandstand\r\n<h4>MON 18 SEPT</h4>\r\n11am-3pm \'Swing Magic\' (Swing Jazz) at Bandstand\r\n<h4>TUE 19 SEPT</h4>\r\n11am-3pm \'Toowoomba Grammar School R\'n\'B Band\' (School Band) at Bandstand\r\n<h4>WED 20 SEPT</h4>\r\n11am-3pm \'Blue Room Blues\' (Blues) at Bandstand\r\n<h4>THU 21 SEPT</h4>\r\n11am-3pm \'Zephyr Project\' (Rockabilly) at Bandstand\r\n<h4>FRI 22 SEPT</h4>\r\n11am-3pm \'Top Gear\' (Rock \'n\' Roll) at Bandstand\r\n<h4>SAT 23 SEPT</h4>\r\n11am-3pm \'2 Timing\' (Swing, Rock \'n\' Roll, Pop, Country) at Bandstand\r\n<h4>SUN 24 SEPT</h4>\r\n11am-3pm \'Slow Train Coming\' (Rock, Pop, Blues, Jazz, Soul, Memphis) at Bandstand\r\n\r\n*correct at time of printing\r\n<h3>QUEENS PARK</h3>\r\n<h4>FRI 15 SEPT</h4>\r\n11am-3pm \'Risky Business\' (Old Time Music) at Cannon Area\r\n<h4>SAT 16 SEPT</h4>\r\n10am-2pm \'Black Velvet Quartet\' (Latin, Traditional Jazz) at Cannon Area\r\n1pm-5pm \'Mirrors of Mirth\' (Acoustic Rock) at Historical Society\r\n2:30pm-5:30pm \'Lenna-Maree Moxey Trio\' (Jazz) at Cannon Area\r\n4pm-5:45pm \'High Altitude Harmony\' (Gospel, Rock, A cappella) Roving Entertainment\r\n<h4>SUN 17 SEPT</h4>\r\n10am-10:35am, 12pm-12:35pm \'Divas in the Park\' (Opera) at Cannon Area\r\n10:40am-11:20am, 11:25am-11:55am \'Women in Harmony &amp; Toowoomba Vocal Ensemble\' (Choral) at Cannon Area\r\n11am-12pm, 1pm-3pm \'Julie Witney\' (Swing Jazz) at Historical Society\r\n4pm-6pm \'Jungle Detour\' (Folk, Indie, Easy Listening Pop) at Cannon Area\r\n<h4>MON 18 SEPT</h4>\r\n9am-9:30am Rugbytots Darling Downs (2-7 years) at Godsall St Oval\r\n10am-10:45am General Yoga with Shannon Townsend at Gypsy Camp\r\n11am-3pm \'Alison Bryant Band\' (Pop, Swing, Latin, Blues) at Cannon Area\r\n<h4>TUE 19 SEPT</h4>\r\n11am-3pm \'The Fes\' (Pop, Acoustic) Roving Entertainment\r\n<h4>WED 20 SEPT</h4>\r\n10am-10:45am General Yoga with Shannon Townsend at Gypsy Camp\r\n11am-3pm \'Stu Bacca\' (One Man Band) at Cannon Area\r\n<h4>THU 21 SEPT</h4>\r\n11am-3pm \'The Pioneers\' (Folk, Bush Ballads, Country, Celtic) at Flower Beds\r\n<h4>FRI 22 SEPT</h4>\r\n10:30am-11am Zumba Gold for Beginners with FITness FIXXation at Central Flower Beds\r\n11am-11:30am Zumba Fitness for All Ages with FITness FIXXation at Central Flower Beds\r\n11am-3pm \'Darlington String Quartet\' (String Quartet) at Cannon Area\r\n<h4>SAT 23 SEPT</h4>\r\n11am-3pm \'Jazzy Chats\' (Jazz, Swing, Contemporary) at Cannon Area\r\n<h4>SUN 24 SEPT</h4>\r\n9:30am-10:15am Tai Chi with Chinese Martial Arts &amp; Health Centre Australia at Gypsy Camp\r\n11am-3pm \'Connect the Dots Jazz Band\' (Jazz, Swing) at Cannon Area\r\n\r\n*correct at time of printing\r\n<h3>LAUREL BANK PARK</h3>\r\n<h4>FRI 15 SEPT</h4>\r\n11am-3pm \'The Range\' (Pop, Timeless Classics) at Music Tent\r\n<h4>SAT 16 SEPT</h4>\r\n9:30am-10am Tai Chi with Taoist Tai Chi Society at Middle Park\r\n9:30am-11:10am, 12:30pm-1:30pm \'Jim Miller Big Band\' (Swing Band) at Music Tent\r\n10am-11am Spring into Yoga Display at Perch Garden\r\n10am-12pm \'Connor Sharpe\' (Saxophone) at Perch Garden\r\n11am-3pm Face Painting with Big Top Face Painting at Herries St\r\n11am-3pm Balloon Sculpture with Cleo the Clown at Herries St\r\n11:30am-12:15pm \'Vavachi Entertainment\' (Great Disney Movie Songs) at Topiary Garden\r\n2pm-5:30pm \'Vavachi Entertainment\' (Jazz, Swing, Musical Theatre) at Music Tent\r\n<h4>SUN 17 SEPT</h4>\r\n9:30am-11am \'Nancy Webb\' (Harp) at Perch Garden\r\n11am-3pm \'Let\'s Dance Band\' (Dance in the Park) at Music Tent\r\n11am-3pm Face Painting with Big Top Face Painting at Herries St\r\n11am-3pm Balloon Sculpture with Cleo the Clown at Herries St\r\n<h4>MON 18 SEPT</h4>\r\n11am-3pm \'Whisky Mac\' (Pop, Folk, Rock \'n\' Roll) at Music Tent\r\n<h4>TUE 19 SEPT</h4>\r\n11am-3pm \'Paul Edwards Quartet\' (Jazz) at Music Tent\r\n<h4>WED 20 SEPT</h4>\r\n8am-9am Energise for Adults with Resolutions Fitness at Gazebo\r\n11am-3pm \'Timeless\' (Timeless Tunes) at Music Tent\r\n<h4>THU 21 SEPT</h4>\r\n11am-3pm \'Flashback\' (Rock \'n\' Roll, Country Rock) at Music Tent\r\n<h4>FRI 22 SEPT</h4>\r\n11am-3pm \'Special Guest\' (Pop, Rock, Funk) at Music Tent\r\n3pm-5:30pm Kids Hotshot Tennis with Tennis Queensland at Middle Park\r\n<h4>SAT 23 SEPT</h4>\r\n11am-3pm \'Local Toowoomba Catholic Schools\' (School Musical Performances) at Music Tent\r\n3pm-5:30pm Kids Hotshot Tennis with Tennis Queensland at Middle Park\r\n<h4>SUN 24 SEPT</h4>\r\n10:30am-11:30am Konga for All Ages with FITness FIXXation at Gazebo\r\n12pm-4pm \'Harlaxton RSL Brass Band\' (Traditional Brass Band Music) at Music Tent\r\n\r\n*correct at time of printing\r\n<h2>Locations</h2>\r\nPicnic Point Park\r\n\r\nLaurel Bank Park\r\n\r\nQueens Park Botanic Garden', 'Parkland Entertainment', '', 'publish', 'closed', 'closed', '', 'parkland-entertainment', '', '', '2018-01-30 11:56:30', '2018-01-30 01:56:30', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=288', 44, 'post', '', 0),
 (289, 1, '2018-01-29 12:37:53', '2018-01-29 02:37:53', 'Pack a picnic and bring the family along to musical delight and activities among the flower beds. Throughout Carnival our parks will come alive with music, entertainment and blooms.\r\n\r\nThere will be something for everyone - specific bands, musicians and locations will be announced soon.\r\n\r\nCOST: Free\r\n<h3>PICNIC POINT</h3>\r\n<h4>FRI 15 SEPT</h4>\r\n11am-3pm \'Undercover\' (Pop, Jazz, Rock \'n\' Roll) at Bandstand\r\n<h4>SAT 16 SEPT</h4>\r\n11am-3pm \'Greg Bird &amp; Friends\' (Jazz, Swing, Latin, Evergreen) at Bandstand\r\n3:30pm-5:30pm \'Webb Family Band\' (Folk, Retro Classics) at Lookout Area\r\n<h4>SUN 17 SEPT</h4>\r\n9am-10:45am \'Toowoomba Concert Band &amp; Second Wind Community Band\' (Concert Band) at Lookout Area\r\n11am-3pm \'Around the Corner\' (Irish Folk Songs - traditional, classical) at Bandstand\r\n<h4>MON 18 SEPT</h4>\r\n11am-3pm \'Swing Magic\' (Swing Jazz) at Bandstand\r\n<h4>TUE 19 SEPT</h4>\r\n11am-3pm \'Toowoomba Grammar School R\'n\'B Band\' (School Band) at Bandstand\r\n<h4>WED 20 SEPT</h4>\r\n11am-3pm \'Blue Room Blues\' (Blues) at Bandstand\r\n<h4>THU 21 SEPT</h4>\r\n11am-3pm \'Zephyr Project\' (Rockabilly) at Bandstand\r\n<h4>FRI 22 SEPT</h4>\r\n11am-3pm \'Top Gear\' (Rock \'n\' Roll) at Bandstand\r\n<h4>SAT 23 SEPT</h4>\r\n11am-3pm \'2 Timing\' (Swing, Rock \'n\' Roll, Pop, Country) at Bandstand\r\n<h4>SUN 24 SEPT</h4>\r\n11am-3pm \'Slow Train Coming\' (Rock, Pop, Blues, Jazz, Soul, Memphis) at Bandstand\r\n\r\n*correct at time of printing\r\n<h3>QUEENS PARK</h3>\r\n<h4>FRI 15 SEPT</h4>\r\n11am-3pm \'Risky Business\' (Old Time Music) at Cannon Area\r\n<h4>SAT 16 SEPT</h4>\r\n10am-2pm \'Black Velvet Quartet\' (Latin, Traditional Jazz) at Cannon Area\r\n1pm-5pm \'Mirrors of Mirth\' (Acoustic Rock) at Historical Society\r\n2:30pm-5:30pm \'Lenna-Maree Moxey Trio\' (Jazz) at Cannon Area\r\n4pm-5:45pm \'High Altitude Harmony\' (Gospel, Rock, A cappella) Roving Entertainment\r\n<h4>SUN 17 SEPT</h4>\r\n10am-10:35am, 12pm-12:35pm \'Divas in the Park\' (Opera) at Cannon Area\r\n10:40am-11:20am, 11:25am-11:55am \'Women in Harmony &amp; Toowoomba Vocal Ensemble\' (Choral) at Cannon Area\r\n11am-12pm, 1pm-3pm \'Julie Witney\' (Swing Jazz) at Historical Society\r\n4pm-6pm \'Jungle Detour\' (Folk, Indie, Easy Listening Pop) at Cannon Area\r\n<h4>MON 18 SEPT</h4>\r\n9am-9:30am Rugbytots Darling Downs (2-7 years) at Godsall St Oval\r\n10am-10:45am General Yoga with Shannon Townsend at Gypsy Camp\r\n11am-3pm \'Alison Bryant Band\' (Pop, Swing, Latin, Blues) at Cannon Area\r\n<h4>TUE 19 SEPT</h4>\r\n11am-3pm \'The Fes\' (Pop, Acoustic) Roving Entertainment\r\n<h4>WED 20 SEPT</h4>\r\n10am-10:45am General Yoga with Shannon Townsend at Gypsy Camp\r\n11am-3pm \'Stu Bacca\' (One Man Band) at Cannon Area\r\n<h4>THU 21 SEPT</h4>\r\n11am-3pm \'The Pioneers\' (Folk, Bush Ballads, Country, Celtic) at Flower Beds\r\n<h4>FRI 22 SEPT</h4>\r\n10:30am-11am Zumba Gold for Beginners with FITness FIXXation at Central Flower Beds\r\n11am-11:30am Zumba Fitness for All Ages with FITness FIXXation at Central Flower Beds\r\n11am-3pm \'Darlington String Quartet\' (String Quartet) at Cannon Area\r\n<h4>SAT 23 SEPT</h4>\r\n11am-3pm \'Jazzy Chats\' (Jazz, Swing, Contemporary) at Cannon Area\r\n<h4>SUN 24 SEPT</h4>\r\n9:30am-10:15am Tai Chi with Chinese Martial Arts &amp; Health Centre Australia at Gypsy Camp\r\n11am-3pm \'Connect the Dots Jazz Band\' (Jazz, Swing) at Cannon Area\r\n\r\n*correct at time of printing\r\n<h3>LAUREL BANK PARK</h3>\r\n<h4>FRI 15 SEPT</h4>\r\n11am-3pm \'The Range\' (Pop, Timeless Classics) at Music Tent\r\n<h4>SAT 16 SEPT</h4>\r\n9:30am-10am Tai Chi with Taoist Tai Chi Society at Middle Park\r\n9:30am-11:10am, 12:30pm-1:30pm \'Jim Miller Big Band\' (Swing Band) at Music Tent\r\n10am-11am Spring into Yoga Display at Perch Garden\r\n10am-12pm \'Connor Sharpe\' (Saxophone) at Perch Garden\r\n11am-3pm Face Painting with Big Top Face Painting at Herries St\r\n11am-3pm Balloon Sculpture with Cleo the Clown at Herries St\r\n11:30am-12:15pm \'Vavachi Entertainment\' (Great Disney Movie Songs) at Topiary Garden\r\n2pm-5:30pm \'Vavachi Entertainment\' (Jazz, Swing, Musical Theatre) at Music Tent\r\n<h4>SUN 17 SEPT</h4>\r\n9:30am-11am \'Nancy Webb\' (Harp) at Perch Garden\r\n11am-3pm \'Let\'s Dance Band\' (Dance in the Park) at Music Tent\r\n11am-3pm Face Painting with Big Top Face Painting at Herries St\r\n11am-3pm Balloon Sculpture with Cleo the Clown at Herries St\r\n<h4>MON 18 SEPT</h4>\r\n11am-3pm \'Whisky Mac\' (Pop, Folk, Rock \'n\' Roll) at Music Tent\r\n<h4>TUE 19 SEPT</h4>\r\n11am-3pm \'Paul Edwards Quartet\' (Jazz) at Music Tent\r\n<h4>WED 20 SEPT</h4>\r\n8am-9am Energise for Adults with Resolutions Fitness at Gazebo\r\n11am-3pm \'Timeless\' (Timeless Tunes) at Music Tent\r\n<h4>THU 21 SEPT</h4>\r\n11am-3pm \'Flashback\' (Rock \'n\' Roll, Country Rock) at Music Tent\r\n<h4>FRI 22 SEPT</h4>\r\n11am-3pm \'Special Guest\' (Pop, Rock, Funk) at Music Tent\r\n3pm-5:30pm Kids Hotshot Tennis with Tennis Queensland at Middle Park\r\n<h4>SAT 23 SEPT</h4>\r\n11am-3pm \'Local Toowoomba Catholic Schools\' (School Musical Performances) at Music Tent\r\n3pm-5:30pm Kids Hotshot Tennis with Tennis Queensland at Middle Park\r\n<h4>SUN 24 SEPT</h4>\r\n10:30am-11:30am Konga for All Ages with FITness FIXXation at Gazebo\r\n12pm-4pm \'Harlaxton RSL Brass Band\' (Traditional Brass Band Music) at Music Tent\r\n\r\n*correct at time of printing\r\n<h2>Locations</h2>\r\nPicnic Point Park\r\n\r\nLaurel Bank Park\r\n\r\nQueens Park Botanic Garden', 'Parkland Entertainment', '', 'inherit', 'closed', 'closed', '', '288-revision-v1', '', '', '2018-01-29 12:37:53', '2018-01-29 02:37:53', '', 288, 'http://www.toowoombaregionalcouncil.com.au/tcof/288-revision-v1/', 0, 'revision', '', 0),
 (290, 1, '2018-01-29 12:38:35', '2018-01-29 02:38:35', '', 'Parkland Entertainment', '', 'inherit', 'closed', 'closed', '', 'parklandentertainment2', '', '', '2018-01-29 12:38:44', '2018-01-29 02:38:44', '', 288, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/ParklandEntertainment2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (291, 1, '2017-09-26 12:40:02', '2017-09-26 02:40:02', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nFor three mouth-watering days, you can sample the world-famous produce of Southern Queensland Country, all in one place. Treat yourself to incredible flavours, produce and wine fresh from the bountiful pastures, orchards and wine vineyards of the region. Plus, meet one of the nation\'s favourite gardening presenters, Sophie Thomson and celebrity chef TV personality, Anna Gare. Both are appearing live to show us how they create their magic!\r\n\r\nErgon Energy Food &amp; Wine Festival incorporating Heritage Bank Live Concert Series 2017.\r\n<div class="issuuembed" style="width: 617px; height: 435px;" data-configid="9079663/53124039"></div>\r\n<script type="text/javascript" src="//e.issuu.com/embed.js" async="true"></script>\r\n\r\n[table id=18 /]\r\n\r\n[table id=19 /]\r\n<h4>SPECIAL PENSIONER PRICE FOR FRIDAY ONLY - $15 AT THE GATE</h4>\r\nTo see what is included and for more information visit our <a href="http://tcof.com.au/visitor-information/ticketing-information/">Ticketing Information</a>.\r\n<h2>Times</h2>\r\nFriday 15 Sept 10am – 10pm\r\nSaturday 16 Sept 10am – 10pm\r\nSunday 17 Sept 10am – 9pm.\r\n<h2>Location</h2>\r\nUpper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Ergon Energy Food & Wine Festival', '', 'publish', 'closed', 'closed', '', 'ergon-energy-food-wine-festival', '', '', '2018-01-30 11:54:44', '2018-01-30 01:54:44', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=291', 43, 'post', '', 0),
 (292, 1, '2018-01-29 12:56:59', '2018-01-29 02:56:59', 'For three mouth-watering days, you can sample the world-famous produce of Southern Queensland Country, all in one place. Treat yourself to incredible flavours, produce and wine fresh from the bountiful pastures, orchards and wine vineyards of the region. Plus, meet one of the nation\'s favourite gardening presenters, Sophie Thomson and celebrity chef TV personality, Anna Gare. Both are appearing live to show us how they create their magic!\r\n\r\nErgon Energy Food &amp; Wine Festival incorporating Heritage Bank Live Concert Series 2017.\r\n<div class="issuuembed" style="width: 617px; height: 435px;" data-configid="9079663/53124039"></div>\r\n<script type="text/javascript" src="//e.issuu.com/embed.js" async="true"></script>\r\n\r\n[table id=18 /]\r\n\r\n[table id=19 /]\r\n<h4>SPECIAL PENSIONER PRICE FOR FRIDAY ONLY - $15 AT THE GATE</h4>\r\nTo see what is included and for more information visit our <a href="http://tcof.com.au/visitor-information/ticketing-information/">Ticketing Information</a>.\r\n<h2>Times</h2>\r\nFriday 15 Sept 10am – 10pm\r\nSaturday 16 Sept 10am – 10pm\r\nSunday 17 Sept 10am – 9pm.\r\n<h2>Location</h2>\r\nUpper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Ergon Energy Food & Wine Festival', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2018-01-29 12:56:59', '2018-01-29 02:56:59', '', 291, 'http://www.toowoombaregionalcouncil.com.au/tcof/291-revision-v1/', 0, 'revision', '', 0),
 (293, 1, '2018-01-29 12:58:26', '2018-01-29 02:58:26', '', 'Ladies At Cafe', '', 'inherit', 'closed', 'closed', '', 'ladiesatcafe2', '', '', '2018-01-29 12:58:37', '2018-01-29 02:58:37', '', 291, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/LadiesAtCafe2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (294, 1, '2017-09-15 12:59:16', '2017-09-15 02:59:16', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nIt\'s been another vintage year for our boutique wineries and the twenty plus cellar doors in our region. Local family-owned wineries come together at Carnival to showcase their wines - don\'t miss a chance to savour and sample the grape varieties.\r\n\r\nLearn how to taste and describe wine like an expert at free sessions in our Wine Bar. Now there\'s an afternoon well spent!\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 4pm, 5pm\r\nSaturday 16 Sept 12:30pm, 2:30pm, 4:30pm\r\nSunday 17 Sept 12:30pm, 2:30pm, 4:30pm\r\n<h2>Location</h2>\r\nWine Bar - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba.', 'Wine appreciation', '', 'publish', 'closed', 'closed', '', 'wine-appreciation', '', '', '2018-01-30 11:53:24', '2018-01-30 01:53:24', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=294', 42, 'post', '', 0),
 (295, 1, '2018-01-29 13:01:56', '2018-01-29 03:01:56', 'It\'s been another vintage year for our boutique wineries and the twenty plus cellar doors in our region. Local family-owned wineries come together at Carnival to showcase their wines - don\'t miss a chance to savour and sample the grape varieties.\r\n\r\nLearn how to taste and describe wine like an expert at free sessions in our Wine Bar. Now there\'s an afternoon well spent!\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 4pm, 5pm\r\nSaturday 16 Sept 12:30pm, 2:30pm, 4:30pm\r\nSunday 17 Sept 12:30pm, 2:30pm, 4:30pm\r\n<h2>Location</h2>\r\nWine Bar - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba.', 'Wine appreciation', '', 'inherit', 'closed', 'closed', '', '294-revision-v1', '', '', '2018-01-29 13:01:56', '2018-01-29 03:01:56', '', 294, 'http://www.toowoombaregionalcouncil.com.au/tcof/294-revision-v1/', 0, 'revision', '', 0),
 (296, 1, '2018-01-29 13:05:48', '2018-01-29 03:05:48', '', 'Wine Appreciation', '', 'inherit', 'closed', 'closed', '', 'wineappreciation2', '', '', '2018-01-29 13:05:57', '2018-01-29 03:05:57', '', 294, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/WineAppreciation2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (297, 1, '2017-09-15 13:07:29', '2017-09-15 03:07:29', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nCan\'t tell your pale ale from your pilsner? No worries, our tasting sessions will soon fix that. Find out all about beer styles, flavours and food-matching. Pair your brew with traditional low and slow BBQ wood-fired meats and you\'ve got yourself a perfect match.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 12:30pm, 2:30pm\r\nSaturday 16 Sept 12pm, 2pm\r\nSunday 17 Sept 12pm, 2pm\r\n<h2>Location</h2>\r\nThe Kitchen, Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Beer & BBQ tasting', '', 'publish', 'closed', 'closed', '', 'beer-bbq-tasting', '', '', '2018-01-30 11:52:50', '2018-01-30 01:52:50', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=297', 41, 'post', '', 0),
 (298, 1, '2018-01-29 13:46:10', '2018-01-29 03:46:10', '', 'Disposable beer cups', '', 'inherit', 'closed', 'closed', '', 'eeffw-beerclass2', '', '', '2018-01-29 13:46:26', '2018-01-29 03:46:26', '', 297, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/EEFFW-BeerClass2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (299, 1, '2018-01-29 13:46:37', '2018-01-29 03:46:37', 'Can\'t tell your pale ale from your pilsner? No worries, our tasting sessions will soon fix that. Find out all about beer styles, flavours and food-matching. Pair your brew with traditional low and slow BBQ wood-fired meats and you\'ve got yourself a perfect match.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 12:30pm, 2:30pm\r\nSaturday 16 Sept 12pm, 2pm\r\nSunday 17 Sept 12pm, 2pm\r\n<h2>Location</h2>\r\nThe Kitchen, Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Beer & BBQ tasting', '', 'inherit', 'closed', 'closed', '', '297-revision-v1', '', '', '2018-01-29 13:46:37', '2018-01-29 03:46:37', '', 297, 'http://www.toowoombaregionalcouncil.com.au/tcof/297-revision-v1/', 0, 'revision', '', 0),
 (300, 1, '2017-09-15 13:47:26', '2017-09-15 03:47:26', 'In breaking food-news, internationally acclaimed Australian star chef TOBIE PUTTOCK will lead the flavour-charge at this weekend’s Ergon Energy Food &amp; Wine Festival in Queens Park following news that chef Anna Gare is too unwell to attend.\r\n\r\nBoasting an extraordinary list of awards, TV series, books and food moments to his name, and close friends with the one and only Jamie Oliver, Tobie is a huge champion of local produce.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 11:30am, 1:30pm, 3:30pm\r\nSaturday 16 Sept 11am, 1pm, 4pm\r\nSunday 17 Sept 11am, 1pm, 4pm.\r\n<h3>Location</h3>\r\nThe Kitchen - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>)', 'Tobie Puttock', '', 'draft', 'closed', 'closed', '', 'tobie-puttock', '', '', '2018-01-29 14:06:30', '2018-01-29 04:06:30', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=300', 40, 'post', '', 0),
 (301, 1, '2018-01-29 13:49:23', '2018-01-29 03:49:23', 'In breaking food-news, internationally acclaimed Australian star chef TOBIE PUTTOCK will lead the flavour-charge at this weekend’s Ergon Energy Food &amp; Wine Festival in Queens Park following news that chef Anna Gare is too unwell to attend.\r\n\r\nBoasting an extraordinary list of awards, TV series, books and food moments to his name, and close friends with the one and only Jamie Oliver, Tobie is a huge champion of local produce.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 11:30am, 1:30pm, 3:30pm\r\nSaturday 16 Sept 11am, 1pm, 4pm\r\nSunday 17 Sept 11am, 1pm, 4pm.\r\n<h3>Location</h3>\r\nThe Kitchen - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>)', 'Tobie Puttock', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2018-01-29 13:49:23', '2018-01-29 03:49:23', '', 300, 'http://www.toowoombaregionalcouncil.com.au/tcof/300-revision-v1/', 0, 'revision', '', 0),
 (302, 1, '2018-01-29 13:51:43', '2018-01-29 03:51:43', '', 'Tobie Puttock profile photo', '', 'inherit', 'closed', 'closed', '', 'tobieputtock2', '', '', '2018-01-29 13:51:57', '2018-01-29 03:51:57', '', 300, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/TobiePuttock2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (303, 1, '2017-09-15 13:52:30', '2017-09-15 03:52:30', 'Sophie Thomson lights up the screen as ABC television\'s Gardening Australia South Australian presenter, where her enthusiasm for gardening inspires people of all ages. She is also a popular newspaper columnist, national public speaker, TEDx presenter, author of three gardening books, broadcaster and horticulturalist. Sophie is known for her environmental outlook, infectious enthusiasm, vitality and love of sustainable gardening.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 11am, 1pm, 3pm\r\nSaturday 16 Sept 11:30am, 1:30pm, 4pm\r\nSunday 17 Sept 10:30am, 12:30pm, 2:30pm.\r\n<h2>Location</h2>\r\nThe Greenhouse - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Sophie Thomson', '', 'draft', 'closed', 'closed', '', 'sophie-thomson', '', '', '2018-01-29 14:06:24', '2018-01-29 04:06:24', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=303', 39, 'post', '', 0),
 (304, 1, '2018-01-29 13:54:28', '2018-01-29 03:54:28', 'Sophie Thomson lights up the screen as ABC television\'s Gardening Australia South Australian presenter, where her enthusiasm for gardening inspires people of all ages. She is also a popular newspaper columnist, national public speaker, TEDx presenter, author of three gardening books, broadcaster and horticulturalist. Sophie is known for her environmental outlook, infectious enthusiasm, vitality and love of sustainable gardening.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 11am, 1pm, 3pm\r\nSaturday 16 Sept 11:30am, 1:30pm, 4pm\r\nSunday 17 Sept 10:30am, 12:30pm, 2:30pm.\r\n<h2>Location</h2>\r\nThe Greenhouse - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (Google map).', 'Sophie Thomson', '', 'inherit', 'closed', 'closed', '', '303-revision-v1', '', '', '2018-01-29 13:54:28', '2018-01-29 03:54:28', '', 303, 'http://www.toowoombaregionalcouncil.com.au/tcof/303-revision-v1/', 0, 'revision', '', 0),
 (305, 1, '2018-01-29 13:56:53', '2018-01-29 03:56:53', 'Sophie Thomson lights up the screen as ABC television\'s Gardening Australia South Australian presenter, where her enthusiasm for gardening inspires people of all ages. She is also a popular newspaper columnist, national public speaker, TEDx presenter, author of three gardening books, broadcaster and horticulturalist. Sophie is known for her environmental outlook, infectious enthusiasm, vitality and love of sustainable gardening.\n\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\n<h2>Times</h2>\nFriday 15 Sept 11am, 1pm, 3pm\nSaturday 16 Sept 11:30am, 1:30pm, 4pm\nSunday 17 Sept 10:30am, 12:30pm, 2:30pm.\n<h2>Location</h2>\nThe Greenhouse - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Sophie Thomson', '', 'inherit', 'closed', 'closed', '', '303-autosave-v1', '', '', '2018-01-29 13:56:53', '2018-01-29 03:56:53', '', 303, 'http://www.toowoombaregionalcouncil.com.au/tcof/303-autosave-v1/', 0, 'revision', '', 0),
 (306, 1, '2018-01-29 13:57:02', '2018-01-29 03:57:02', '', 'Sophie Thomson profile photo', '', 'inherit', 'closed', 'closed', '', 'sophiethomson', '', '', '2018-01-29 13:57:10', '2018-01-29 03:57:10', '', 303, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/SophieThomson.jpg', 0, 'attachment', 'image/jpeg', 0),
 (307, 1, '2018-01-29 13:57:18', '2018-01-29 03:57:18', 'Sophie Thomson lights up the screen as ABC television\'s Gardening Australia South Australian presenter, where her enthusiasm for gardening inspires people of all ages. She is also a popular newspaper columnist, national public speaker, TEDx presenter, author of three gardening books, broadcaster and horticulturalist. Sophie is known for her environmental outlook, infectious enthusiasm, vitality and love of sustainable gardening.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 11am, 1pm, 3pm\r\nSaturday 16 Sept 11:30am, 1:30pm, 4pm\r\nSunday 17 Sept 10:30am, 12:30pm, 2:30pm.\r\n<h2>Location</h2>\r\nThe Greenhouse - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Sophie Thomson', '', 'inherit', 'closed', 'closed', '', '303-revision-v1', '', '', '2018-01-29 13:57:18', '2018-01-29 03:57:18', '', 303, 'http://www.toowoombaregionalcouncil.com.au/tcof/303-revision-v1/', 0, 'revision', '', 0),
 (308, 1, '2017-09-16 13:58:01', '2017-09-16 03:58:01', '<h2>Sat 16 - Sun 17 Sep</h2>\r\nYour kids will love the amazing interactive space designed just for them. During Carnival the space hosts performances on the main stage by Ben &amp; Holly\'s Little Kingdom as well as a dedicated children\'s program encouraging kids of all ages to play, design, build and create.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h3>Ben &amp; Holly\'s Little Kingdom</h3>\r\nJoin the adventures of Holly, a young fairy princess and her best friend Ben the elf, in a funny and enchanting world where elves and fairies live alongside animals and insects and the flowers and grass rise above the tallest towers.\r\n\r\nWHEN: Sat 16 Sept\r\n\r\nTIME: 11am &amp; 12:30pm\r\n<h3>Super size sandpit</h3>\r\nThe mega sandpit brings the builder out in every kid with tools, pipes and wheelbarrows for them to construct, destruct and enjoy.\r\n<h3>Blooming Bunnings</h3>\r\nThe hardware experts will show kids how to make planter boxes.\r\n<h3>Free face painting</h3>\r\nButterflies, princesses and superheroes will unleash their artistic powers on those cute little Carnival faces.\r\n<h3>City chicks</h3>\r\nChildren can pat ducklings as well as fluffy and heritage chickens. There will also be a native bee display with real hives, bees and accessories.\r\n<h3>Kath Dickson Family Care</h3>\r\nEnjoy garden-themed craft projects for the young (and young at heart) with the early childhood experts from Kath Dickson Family Centre.\r\n<h3>Chef Carmel</h3>\r\nChildren will create their very own tasty savoury muffin from scratch. Join Chef Carmel in the kitchen and learn how to use fresh ingredients to make fluffy, delicious muffins. Lunch is served!\r\n\r\nWHEN: Sat 16 &amp; Sun 17 Sept\r\n\r\nTIME: 10am - 4pm\'\r\n<h2>Times</h2>\r\nSaturday 16 &amp; Sunday 17 Sept 10am - 5pm.\r\n<h2>Location</h2>\r\nThe Cubby House - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'The Cubby House', '', 'publish', 'closed', 'closed', '', 'the-cubby-house', '', '', '2018-01-30 11:51:54', '2018-01-30 01:51:54', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=308', 38, 'post', '', 0),
 (309, 1, '2018-01-29 14:01:54', '2018-01-29 04:01:54', '', 'Children with cooking aprons', '', 'inherit', 'closed', 'closed', '', 'thecubbyhouse2', '', '', '2018-01-29 14:02:08', '2018-01-29 04:02:08', '', 308, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/TheCubbyHouse2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (310, 1, '2018-01-29 14:02:25', '2018-01-29 04:02:25', 'Your kids will love the amazing interactive space designed just for them. During Carnival the space hosts performances on the main stage by Ben &amp; Holly\'s Little Kingdom as well as a dedicated children\'s program encouraging kids of all ages to play, design, build and create.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h3>Ben &amp; Holly\'s Little Kingdom</h3>\r\nJoin the adventures of Holly, a young fairy princess and her best friend Ben the elf, in a funny and enchanting world where elves and fairies live alongside animals and insects and the flowers and grass rise above the tallest towers.\r\n\r\nWHEN: Sat 16 Sept\r\n\r\nTIME: 11am &amp; 12:30pm\r\n<h3>Super size sandpit</h3>\r\nThe mega sandpit brings the builder out in every kid with tools, pipes and wheelbarrows for them to construct, destruct and enjoy.\r\n<h3>Blooming Bunnings</h3>\r\nThe hardware experts will show kids how to make planter boxes.\r\n<h3>Free face painting</h3>\r\nButterflies, princesses and superheroes will unleash their artistic powers on those cute little Carnival faces.\r\n<h3>City chicks</h3>\r\nChildren can pat ducklings as well as fluffy and heritage chickens. There will also be a native bee display with real hives, bees and accessories.\r\n<h3>Kath Dickson Family Care</h3>\r\nEnjoy garden-themed craft projects for the young (and young at heart) with the early childhood experts from Kath Dickson Family Centre.\r\n<h3>Chef Carmel</h3>\r\nChildren will create their very own tasty savoury muffin from scratch. Join Chef Carmel in the kitchen and learn how to use fresh ingredients to make fluffy, delicious muffins. Lunch is served!\r\n\r\nWHEN: Sat 16 &amp; Sun 17 Sept\r\n\r\nTIME: 10am - 4pm\'\r\n<h2>Times</h2>\r\nSaturday 16 &amp; Sunday 17 Sept 10am - 5pm.\r\n<h2>Location</h2>\r\nThe Cubby House - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'The Cubby House', '', 'inherit', 'closed', 'closed', '', '308-revision-v1', '', '', '2018-01-29 14:02:25', '2018-01-29 04:02:25', '', 308, 'http://www.toowoombaregionalcouncil.com.au/tcof/308-revision-v1/', 0, 'revision', '', 0),
 (311, 1, '2017-09-15 14:03:23', '2017-09-15 04:03:23', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nWhen the music is this good you just have to go with it. Let your hair down and enjoy another sublime line-up. The Heritage Bank Live Concert Series is held in conjunction with the Ergon Energy Food &amp; Wine Festival. One ticket gets you into both so you can enjoy fine food and wine while soaking up cool concert sounds.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>MAIN STAGE<img class="alignnone size-thumbnail wp-image-1340" src="/wp-content/uploads/2017/04/P1010034ret-web-550wd-150x150.jpg" alt="" width="150" height="150" /></h2>\r\n<h3>Friday 15 Sept</h3>\r\n5:30pm Alex Lahey\r\n\r\n7:00pm The Paper Kites\r\n\r\n8:30pm The Temper Trap\r\n\r\n&nbsp;\r\n\r\n<img class="alignnone size-thumbnail wp-image-1491" src="/wp-content/uploads/2017/05/HotPotatoBand_1302x852-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1496" src="/wp-content/uploads/2017/05/TheVoices_1302x852-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1502" src="/wp-content/uploads/2017/05/TheAngels_1302x852-150x150.jpg" alt="" width="150" height="150" />\r\n<h3>Saturday 16 Sept</h3>\r\n5:30pm Hot Potato Band\r\n\r\n7:00pm The Voices\r\n\r\n8:30pm The Angels\r\n\r\n&nbsp;\r\n\r\n<img class="alignnone size-thumbnail wp-image-1345" src="/wp-content/uploads/2017/04/The-Diamonds-MR_0011-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1347" src="/wp-content/uploads/2017/04/Boys-in-the-Band-HR-image-3-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1349" src="/wp-content/uploads/2017/04/Darryl-150x150.jpg" alt="" width="150" height="150" />\r\n<h3>Sunday 17 Sept</h3>\r\n5:00pm The Diamonds\r\n\r\n6:15pm Boys in the Band\r\n\r\n7:45pm Daryl Braithwaite\r\n\r\n&nbsp;\r\n<h2>Times</h2>\r\nFriday 15 Sept 10am – 10pm\r\nSaturday 16 Sept 10am – 10pm\r\nSunday 17 Sept 10am – 9pm.\r\n<h2>Location</h2>\r\nThe Heritage Bank Community Stage - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Heritage Bank live concert series', '', 'publish', 'closed', 'closed', '', 'heritage-bank-live-concert-series', '', '', '2018-01-30 11:51:16', '2018-01-30 01:51:16', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=311', 37, 'post', '', 0),
 (312, 1, '2018-01-29 14:12:42', '2018-01-29 04:12:42', '', 'Hands in the air at concert', '', 'inherit', 'closed', 'closed', '', 'liveconcert', '', '', '2018-01-29 14:12:54', '2018-01-29 04:12:54', '', 311, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/LiveConcert.jpg', 0, 'attachment', 'image/jpeg', 0),
 (313, 1, '2018-01-29 14:15:04', '2018-01-29 04:15:04', 'When the music is this good you just have to go with it. Let your hair down and enjoy another sublime line-up. The Heritage Bank Live Concert Series is held in conjunction with the Ergon Energy Food &amp; Wine Festival. One ticket gets you into both so you can enjoy fine food and wine while soaking up cool concert sounds.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>MAIN STAGE</h2>\r\n<h3><img class="alignnone size-thumbnail wp-image-1494" src="/wp-content/uploads/2017/05/AlexLAhey_1302x852-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1512" src="/wp-content/uploads/2017/05/ThePaperKites_1302x852-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1340" src="/wp-content/uploads/2017/04/P1010034ret-web-550wd-150x150.jpg" alt="" width="150" height="150" /></h3>\r\n<h3>Friday 15 Sept</h3>\r\n5:30pm Alex Lahey\r\n\r\n7:00pm The Paper Kites\r\n\r\n8:30pm The Temper Trap\r\n\r\n&nbsp;\r\n\r\n<img class="alignnone size-thumbnail wp-image-1491" src="/wp-content/uploads/2017/05/HotPotatoBand_1302x852-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1496" src="/wp-content/uploads/2017/05/TheVoices_1302x852-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1502" src="/wp-content/uploads/2017/05/TheAngels_1302x852-150x150.jpg" alt="" width="150" height="150" />\r\n<h3>Saturday 16 Sept</h3>\r\n5:30pm Hot Potato Band\r\n\r\n7:00pm The Voices\r\n\r\n8:30pm The Angels\r\n\r\n&nbsp;\r\n\r\n<img class="alignnone size-thumbnail wp-image-1345" src="/wp-content/uploads/2017/04/The-Diamonds-MR_0011-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1347" src="/wp-content/uploads/2017/04/Boys-in-the-Band-HR-image-3-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1349" src="/wp-content/uploads/2017/04/Darryl-150x150.jpg" alt="" width="150" height="150" />\r\n<h3>Sunday 17 Sept</h3>\r\n5:00pm The Diamonds\r\n\r\n6:15pm Boys in the Band\r\n\r\n7:45pm Daryl Braithwaite\r\n\r\n&nbsp;\r\n<h2>Times</h2>\r\nFriday 15 Sept 10am – 10pm\r\nSaturday 16 Sept 10am – 10pm\r\nSunday 17 Sept 10am – 9pm.\r\n<h2>Location</h2>\r\nThe Heritage Bank Community Stage - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Heritage Bank live concert series', '', 'inherit', 'closed', 'closed', '', '311-revision-v1', '', '', '2018-01-29 14:15:04', '2018-01-29 04:15:04', '', 311, 'http://www.toowoombaregionalcouncil.com.au/tcof/311-revision-v1/', 0, 'revision', '', 0),
 (314, 1, '2017-09-14 14:15:23', '2017-09-14 04:15:23', '<h2>Thu 14 Sep</h2>\r\nYou\'re invited to dine in style with celebrity chef special guest, Anna Gare, in beautiful Laurel Bank Park to officially celebrate the start of the 2017 Toowoomba Carnival of Flowers with an opening night gala dinner. This unforgettable degustation dining experience combines the very best of local produce and delicious matching wines.\r\n\r\nCOST: Adult $185\r\n<h3>DEGUSTATION MENU</h3>\r\n<h4>CANAPÉS</h4>\r\nBorrowdale’s pork terrine on croutes, apple brandy gel from Sutton’s farm, UB’s Farm cherry tomato\r\nStrawberry field explosion, Emmo Farms goat cheese mousse, Lirah\'s aged balsamic glaze\r\nFour Brothers tempura batter zucchini flower, black garlic aioli\r\n<h4>FIRST COURSE</h4>\r\nCarnival of Flowers Edible Garden Inspired by the Carnival of Flowers, Downs Farm fresh cauliflower puree, smoked semi dried tomatoes from UB’s Farm, mushroom soil, pickled radish from Preston Peak, Baker’s Duck croutons, asparagus, baby red sorrel, gribiche sauce and edible flowers.\r\n<h4>SECOND COURSE</h4>\r\nThe Carnival Catch Pan seared jade perch from 9Dorf Farms, charred endive infused with saffron grown especially for this dinner from UB’s Farm, smoked capsicum coulis from Downs Farm fresh, beetroot dust from Preston Peak and roasted pecan nuts from Stahmann Farms.\r\n<h4>VEGETARIAN OPTION</h4>\r\nStuffed Zucchini Cannelloni (v) Charred endive infused with saffron grown especially for this dinner from UB’s Farm, smoked capsicum coulis from Downs Farm fresh, beetroot dust from Preston Peak and roasted pecan nuts from Stahmann Farms.\r\n<h4>THIRD COURSE</h4>\r\nCarnival Canard Sous vide duck breast from Darling Downs Hatchery, Hampton blueberry gel, pickled grapes, sweet potato from Wickham Farms, seasonal baby vegetables, served with a Preston Peak red wine emulsion.\r\n<h4>VEGETARIAN OPTION</h4>\r\nCarrot timbale (v) Sweet potato puree, baby vegetable, chives cream sauce and micro herb.\r\n<h4>FOURTH COURSE</h4>\r\nThe Carnival Ball Seatonfire Chocolate sphere, vanilla lemon crème patisserie, Hampton blueberries ,micro mint, lemon balm, macadamia crumble from Stahmann Farms.\r\n<h2>Times</h2>\r\n6pm.\r\n<h2>Location</h2>\r\nLaurel Bank Park, 50 Hill St, Toowoomba (<a href="https://goo.gl/maps/wB2J5mp5twJ2" target="_blank" rel="noopener">Google map</a>).', 'Qantaslink gala dinner – A magical night under the stars', '', 'publish', 'closed', 'closed', '', 'qantaslink-gala-dinner-a-magical-night-under-the-stars', '', '', '2018-01-30 11:50:29', '2018-01-30 01:50:29', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=314', 36, 'post', '', 0),
 (316, 1, '2018-01-29 14:22:03', '2018-01-29 04:22:03', '', 'Gala Dinner', '', 'inherit', 'closed', 'closed', '', 'galadinner-2', '', '', '2018-01-29 14:22:14', '2018-01-29 04:22:14', '', 314, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/GalaDinner-1.jpg', 0, 'attachment', 'image/jpeg', 0),
 (317, 1, '2018-01-29 14:22:38', '2018-01-29 04:22:38', 'You\'re invited to dine in style with celebrity chef special guest, Anna Gare, in beautiful Laurel Bank Park to officially celebrate the start of the 2017 Toowoomba Carnival of Flowers with an opening night gala dinner. This unforgettable degustation dining experience combines the very best of local produce and delicious matching wines.\r\n\r\nCOST: Adult $185\r\n<h3>DEGUSTATION MENU</h3>\r\n<h4>CANAPÉS</h4>\r\nBorrowdale’s pork terrine on croutes, apple brandy gel from Sutton’s farm, UB’s Farm cherry tomato\r\nStrawberry field explosion, Emmo Farms goat cheese mousse, Lirah\'s aged balsamic glaze\r\nFour Brothers tempura batter zucchini flower, black garlic aioli\r\n<h4>FIRST COURSE</h4>\r\nCarnival of Flowers Edible Garden Inspired by the Carnival of Flowers, Downs Farm fresh cauliflower puree, smoked semi dried tomatoes from UB’s Farm, mushroom soil, pickled radish from Preston Peak, Baker’s Duck croutons, asparagus, baby red sorrel, gribiche sauce and edible flowers.\r\n<h4>SECOND COURSE</h4>\r\nThe Carnival Catch Pan seared jade perch from 9Dorf Farms, charred endive infused with saffron grown especially for this dinner from UB’s Farm, smoked capsicum coulis from Downs Farm fresh, beetroot dust from Preston Peak and roasted pecan nuts from Stahmann Farms.\r\n<h4>VEGETARIAN OPTION</h4>\r\nStuffed Zucchini Cannelloni (v) Charred endive infused with saffron grown especially for this dinner from UB’s Farm, smoked capsicum coulis from Downs Farm fresh, beetroot dust from Preston Peak and roasted pecan nuts from Stahmann Farms.\r\n<h4>THIRD COURSE</h4>\r\nCarnival Canard Sous vide duck breast from Darling Downs Hatchery, Hampton blueberry gel, pickled grapes, sweet potato from Wickham Farms, seasonal baby vegetables, served with a Preston Peak red wine emulsion.\r\n<h4>VEGETARIAN OPTION</h4>\r\nCarrot timbale (v) Sweet potato puree, baby vegetable, chives cream sauce and micro herb.\r\n<h4>FOURTH COURSE</h4>\r\nThe Carnival Ball Seatonfire Chocolate sphere, vanilla lemon crème patisserie, Hampton blueberries ,micro mint, lemon balm, macadamia crumble from Stahmann Farms.\r\n<h2>Times</h2>\r\n6pm.\r\n<h2>Location</h2>\r\nLaurel Bank Park, 50 Hill St, Toowoomba (<a href="https://goo.gl/maps/wB2J5mp5twJ2" target="_blank" rel="noopener">Google map</a>).', 'Qantaslink gala dinner – A magical night under the stars', '', 'inherit', 'closed', 'closed', '', '314-revision-v1', '', '', '2018-01-29 14:22:38', '2018-01-29 04:22:38', '', 314, 'http://www.toowoombaregionalcouncil.com.au/tcof/314-revision-v1/', 0, 'revision', '', 0),
 (318, 1, '2017-09-16 14:22:59', '2017-09-16 04:22:59', '<h2><span class="uppercase">Sat 16 Sep - Starts 3pm</span></h2>\r\n100,000 people line the street as hundreds of flowery floats wind their way through the heart of the city. This year’s wonderful theme is "Carnival Comes to Town – Laugh, Play, Hooray!". Street performers, carnival characters, incredible inflatables and stilt walkers escort the stunning floral floats on their journey to Queens Park.\r\n\r\nBe early to grab a good viewing spot because the whole town and thousands of visitors turn out for the Parade! There’s free chalk so you can make your own artistic mark on the parade route and when it’s over, head for the Godsall Oval where the floats are on display and the flowers, fruit and veges that decorated them will be available for sale!\r\n\r\nThe parade departs from the corner of Herries &amp; Hume Streets, continues along Herries St, turns right into Ruthven St, right into Margaret St, left onto Hume St and finishes on Godsall Oval on the corner of Hume &amp; Godsall Streets.\r\n\r\nPLAN YOUR DAY: For Parade Road Closure details and times, please click <a href="http://tcof.com.au/wp-content/uploads/2017/05/TCOF-Road-Closure-Map.pdf" target="_blank" rel="noopener">here</a>.\r\n<h2></h2>\r\n<img class="alignnone size-medium wp-image-1527" src="/wp-content/uploads/2017/05/Floral-Parade-Map-2017-300x189.png" alt="" width="300" height="189" />\r\n\r\n&nbsp;\r\n<h3>Hot Tip:</h3>\r\nJump on the <a href="http://tcof.com.au/events/full-day-grand-parade-garden-tour/">Full Day Garden and Parade Tour</a> and see the best private gardens and secure your very own reserved seat at the Grand Central Floral Parade!\r\n\r\n&nbsp;', 'Grand Central floral parade', '', 'publish', 'closed', 'closed', '', 'grand-central-floral-parade', '', '', '2018-01-30 11:49:49', '2018-01-30 01:49:49', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=318', 35, 'post', '', 0),
 (319, 1, '2018-01-29 14:26:47', '2018-01-29 04:26:47', '', 'Parade Float', '', 'inherit', 'closed', 'closed', '', 'paradefloat2', '', '', '2018-01-29 14:26:55', '2018-01-29 04:26:55', '', 318, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/ParadeFloat2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (320, 1, '2018-01-29 14:27:28', '2018-01-29 04:27:28', '<h2><span class="uppercase">Starts 3pm</span></h2>\r\n100,000 people line the street as hundreds of flowery floats wind their way through the heart of the city. This year’s wonderful theme is "Carnival Comes to Town – Laugh, Play, Hooray!". Street performers, carnival characters, incredible inflatables and stilt walkers escort the stunning floral floats on their journey to Queens Park.\r\n\r\nBe early to grab a good viewing spot because the whole town and thousands of visitors turn out for the Parade! There’s free chalk so you can make your own artistic mark on the parade route and when it’s over, head for the Godsall Oval where the floats are on display and the flowers, fruit and veges that decorated them will be available for sale!\r\n\r\nThe parade departs from the corner of Herries &amp; Hume Streets, continues along Herries St, turns right into Ruthven St, right into Margaret St, left onto Hume St and finishes on Godsall Oval on the corner of Hume &amp; Godsall Streets.\r\n\r\nPLAN YOUR DAY: For Parade Road Closure details and times, please click <a href="http://tcof.com.au/wp-content/uploads/2017/05/TCOF-Road-Closure-Map.pdf" target="_blank" rel="noopener">here</a>.\r\n<h2></h2>\r\n<img class="alignnone size-medium wp-image-1527" src="/wp-content/uploads/2017/05/Floral-Parade-Map-2017-300x189.png" alt="" width="300" height="189" />\r\n\r\n&nbsp;\r\n<h3>Hot Tip:</h3>\r\nJump on the <a href="http://tcof.com.au/events/full-day-grand-parade-garden-tour/">Full Day Garden and Parade Tour</a> and see the best private gardens and secure your very own reserved seat at the Grand Central Floral Parade!\r\n\r\n&nbsp;', 'Grand Central floral parade', '', 'inherit', 'closed', 'closed', '', '318-revision-v1', '', '', '2018-01-29 14:27:28', '2018-01-29 04:27:28', '', 318, 'http://www.toowoombaregionalcouncil.com.au/tcof/318-revision-v1/', 0, 'revision', '', 0),
 (321, 1, '2017-09-15 15:42:11', '2017-09-15 05:42:11', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nIt\'s Sideshow Alley, it\'s Adrenaline Avenue, it\'s Extreme Street! Head to Lower Queens Park for thrill-seeking rides, fairy floss, dagwood dogs and show bags! Have a shot at winning a top shelf prize at one of the sideshow games or take in a birdseye view upside down from the heart-stopping 360º ride. Presented by Storage King.\r\n<h3>FREE ENTRY</h3>\r\nRides and some activities require coupons.\r\n$2 = one coupon, $30 = 18 coupons, $60 = 40 coupons, $99 = 70 coupons\r\n<h2>Isaiah</h2>\r\nAt just 17 years of age, Isaiah is a global success. After winning The X Factor in 2016, Isaiah released his debut album that charted all over the world and notched up millions of international streams. Don\'t miss seeing the 2017 Australian entrant for Eurovision live in action at Sideshow Alley.\r\n\r\nTIMES: Sunday 4pm\r\n<h2>Fireworks</h2>\r\nThe skies over Toowoomba will light up with breathtaking displays over three nights. The trees will light up and so will the kids\' faces!\r\n\r\nTIMES: Friday &amp; Saturday 8:30pm, Sunday 7:30pm\r\n<h3>Matt Hollywood</h3>\r\nYou are in for a serve of side splitting laughter and magic that you won\'t want to end. Matt Hollywood is one of Australia\'s most recognised comedy entertainers and magicians. Mind-blowing acts will shock and astound you in this grand illusions magic show.\r\n\r\nTIMES: Friday &amp; Saturday 7pm\r\n<h3>Creating Science</h3>\r\nJoin Dr Joe in amazing \'wizz bang\' science experiments. He is not only going to entertain you with explosions, he is going to blow your minds.. This real-life scientist will leave you amazed with his flower explosions!\r\n\r\nTIMES: Saturday 1:30pm &amp; 4:45pm\r\n<h3>Dr Hubble\'s Big Bubble Show</h3>\r\nEveryone loves bubbles but Dr Hubble really loves bubbles and he wants to show you why. Join Dr Hubble on a fun journey into the beautiful world of bubbles. You\'ll see bubbles inside bubbles, square bubbles, explode-a-bubbles and the world famous kid-in-a-bubble.\r\n\r\nTIMES: Sunday 1:45pm &amp; 6pm.\r\n<h2>Times</h2>\r\nFriday 15 Sept 4pm - 10pm\r\nSaturday 16 Sept 10am - 10pm\r\nSunday 17 Sept 10am - 9pm.\r\n<h2>Location</h2>\r\nFrogs Hollow, Lower Queens Park, Margaret St, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Sideshow alley', '', 'publish', 'closed', 'closed', '', 'sideshow-alley', '', '', '2018-01-30 11:48:58', '2018-01-30 01:48:58', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=321', 34, 'post', '', 0),
 (322, 1, '2018-01-29 15:45:42', '2018-01-29 05:45:42', 'It\'s Sideshow Alley, it\'s Adrenaline Avenue, it\'s Extreme Street! Head to Lower Queens Park for thrill-seeking rides, fairy floss, dagwood dogs and show bags! Have a shot at winning a top shelf prize at one of the sideshow games or take in a birdseye view upside down from the heart-stopping 360º ride. Presented by Storage King.\r\n<h3>FREE ENTRY</h3>\r\nRides and some activities require coupons.\r\n$2 = one coupon, $30 = 18 coupons, $60 = 40 coupons, $99 = 70 coupons\r\n<h2>Isaiah</h2>\r\nAt just 17 years of age, Isaiah is a global success. After winning The X Factor in 2016, Isaiah released his debut album that charted all over the world and notched up millions of international streams. Don\'t miss seeing the 2017 Australian entrant for Eurovision live in action at Sideshow Alley.\r\n\r\nTIMES: Sunday 4pm\r\n<h2>Fireworks</h2>\r\nThe skies over Toowoomba will light up with breathtaking displays over three nights. The trees will light up and so will the kids\' faces!\r\n\r\nTIMES: Friday &amp; Saturday 8:30pm, Sunday 7:30pm\r\n<h3>Matt Hollywood</h3>\r\nYou are in for a serve of side splitting laughter and magic that you won\'t want to end. Matt Hollywood is one of Australia\'s most recognised comedy entertainers and magicians. Mind-blowing acts will shock and astound you in this grand illusions magic show.\r\n\r\nTIMES: Friday &amp; Saturday 7pm\r\n<h3>Creating Science</h3>\r\nJoin Dr Joe in amazing \'wizz bang\' science experiments. He is not only going to entertain you with explosions, he is going to blow your minds.. This real-life scientist will leave you amazed with his flower explosions!\r\n\r\nTIMES: Saturday 1:30pm &amp; 4:45pm\r\n<h3>Dr Hubble\'s Big Bubble Show</h3>\r\nEveryone loves bubbles but Dr Hubble really loves bubbles and he wants to show you why. Join Dr Hubble on a fun journey into the beautiful world of bubbles. You\'ll see bubbles inside bubbles, square bubbles, explode-a-bubbles and the world famous kid-in-a-bubble.\r\n\r\nTIMES: Sunday 1:45pm &amp; 6pm.\r\n<h2>Times</h2>\r\nFriday 15 Sept 4pm - 10pm\r\nSaturday 16 Sept 10am - 10pm\r\nSunday 17 Sept 10am - 9pm.\r\n<h2>Location</h2>\r\nFrogs Hollow, Lower Queens Park, Margaret St, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Sideshow alley', '', 'inherit', 'closed', 'closed', '', '321-revision-v1', '', '', '2018-01-29 15:45:42', '2018-01-29 05:45:42', '', 321, 'http://www.toowoombaregionalcouncil.com.au/tcof/321-revision-v1/', 0, 'revision', '', 0),
 (323, 1, '2018-01-29 15:47:25', '2018-01-29 05:47:25', '', 'Sideshow Alley boy with icecream', '', 'inherit', 'closed', 'closed', '', 'sideshowalley2', '', '', '2018-01-29 15:47:38', '2018-01-29 05:47:38', '', 321, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/SideshowAlley2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (324, 1, '2017-09-22 15:49:09', '2017-09-22 05:49:09', '<h2>Fri 22 Sep</h2>\r\nJoin us on our gourmet progressive dinner tour beginning with sunset drinks and entrees at Picnic Point Restaurant. Enjoy mains at Inbound Restaurant adjoining the historic Railway Station and a decadent dessert at Artisan Pizza. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Friday 22 Sept (dinner tour)\r\n\r\nCOST: Adult $129\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>ENTRÉE - PICNIC POINT</h4>\r\nDrinks: Glass of wine, beer or soft drink\r\n\r\nFood: Confit of duck leg on Asian salad with sesame lime dressing and turkish delight pearls OR Finely sliced chicken laksa curry on lemon grass infused sweet potato topped with a pak choi and bean sprout salad (alternate drop).\r\n<h4>MAIN MEAL - INBOUND</h4>\r\nDrinks: Glass of Shiraz Cabernet or Sauvignon Blanc\r\n\r\nFood: Seared fillet of Darling Downs beef, caramelised onion tart, port wine jus OR Slow roasted local pork belly, smooth green apple and jus (alternate drop).\r\n\r\nAll served with house bread and seasonal vegetables.\r\n<h4>DESSERT - ARTISAN PIZZA</h4>\r\nDrinks: Glass of dessert wine\r\n\r\nFood: Dessert plate consisting of petite Artisan Italian doughnuts with a berry compote, complimented with a vanilla pannacotta, fruit jelly and macadamia praline, served with white chocolate and raspberry ice cream.\r\n<h2>Times</h2>\r\nPick-up at 5:30pm, Returns 8:45pm.\r\n<h2>Location</h2>\r\nPick-up Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://goo.gl/maps/NJERBWdPs892" target="_blank" rel="noopener">Google map</a>).', 'Progressive food & wine tour - 1', '', 'publish', 'closed', 'closed', '', 'progressive-food-wine-tour-1', '', '', '2018-01-30 11:47:11', '2018-01-30 01:47:11', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=324', 33, 'post', '', 0),
 (325, 1, '2018-01-29 15:54:08', '2018-01-29 05:54:08', '', 'Waitress with glasses', '', 'inherit', 'closed', 'closed', '', 'toursfoodwine2', '', '', '2018-01-29 15:54:30', '2018-01-29 05:54:30', '', 324, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/ToursFoodWine2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (326, 1, '2018-01-29 15:54:38', '2018-01-29 05:54:38', 'Join us on our gourmet progressive dinner tour beginning with sunset drinks and entrees at Picnic Point Restaurant. Enjoy mains at Inbound Restaurant adjoining the historic Railway Station and a decadent dessert at Artisan Pizza. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Friday 22 Sept (dinner tour)\r\n\r\nCOST: Adult $129\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>ENTRÉE - PICNIC POINT</h4>\r\nDrinks: Glass of wine, beer or soft drink\r\n\r\nFood: Confit of duck leg on Asian salad with sesame lime dressing and turkish delight pearls OR Finely sliced chicken laksa curry on lemon grass infused sweet potato topped with a pak choi and bean sprout salad (alternate drop).\r\n<h4>MAIN MEAL - INBOUND</h4>\r\nDrinks: Glass of Shiraz Cabernet or Sauvignon Blanc\r\n\r\nFood: Seared fillet of Darling Downs beef, caramelised onion tart, port wine jus OR Slow roasted local pork belly, smooth green apple and jus (alternate drop).\r\n\r\nAll served with house bread and seasonal vegetables.\r\n<h4>DESSERT - ARTISAN PIZZA</h4>\r\nDrinks: Glass of dessert wine\r\n\r\nFood: Dessert plate consisting of petite Artisan Italian doughnuts with a berry compote, complimented with a vanilla pannacotta, fruit jelly and macadamia praline, served with white chocolate and raspberry ice cream.\r\n<h2>Times</h2>\r\nPick-up at 5:30pm, Returns 8:45pm.\r\n<h2>Location</h2>\r\nPick-up Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://goo.gl/maps/NJERBWdPs892" target="_blank" rel="noopener">Google map</a>).', 'Progressive food & wine tour - 1', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2018-01-29 15:54:38', '2018-01-29 05:54:38', '', 324, 'http://www.toowoombaregionalcouncil.com.au/tcof/324-revision-v1/', 0, 'revision', '', 0),
 (327, 1, '2017-09-23 15:56:01', '2017-09-23 05:56:01', '<h2>Sat 23 Sep</h2>\r\nDiscover more of Toowoomba\'s flavours on this progressive dinner tour beginning with canapes and an exclusive guided tour of Cobb &amp; Co Museum\'s Carriage Room. Enjoy mains at the historic Gip\'s Restaurant, formerly an 1860s mansion, followed by scrumptious dessert at Picnic Point Restaurant. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Saturday 23 Sept (dinner tour)\r\n\r\nCOST: Adult $129\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>CANAPÉS - COBB &amp; CO MUSEUM</h4>\r\nDrinks: Glass of white wine, sparkling wine of beer\r\n\r\nFood: Crab Spring rolls infused with chilli and lime, Gourmet peppercorn beef pies and Bruschetta (Mushroom, mascarpone &amp; toasted hazelnuts or Tomato, basil olives &amp; roast capsicum)\r\n<h4>MAIN MEAL - GIP\'S RESTAURANT</h4>\r\nDrinks: Glass of red wine or white wine\r\n\r\nFood: MSA fillet of beef, confit garlic &amp; horseradish mash, buttered spinach &amp; beetroot relish GF OR Pan seared Tasmanian salmon with chilli, lime sambal &amp; pickled vegetable salad GF (alternate drop).\r\n\r\nAll served with seasonal vegetables.\r\n<h4>DESSERT - PICNIC POINT</h4>\r\nDrinks: Glass of wine, beer or soft drink\r\n\r\nFood: Rosewater and vanilla brulee with sugared flowers and glass biscuits OR Chocolate marquise with honey crème fraiche and pistachio biscotti (alternate drop).\r\n<h2>Times</h2>\r\nPick-up at 5:15pm, Returns 9pm.\r\n<h2>Location</h2>\r\nPick-up Picnic Point Bus Stop, Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/8RMveBTcMn32" target="_blank" rel="noopener">Google map</a>).', 'Progressive food & wine tour - 2', '', 'publish', 'closed', 'closed', '', 'progressive-food-wine-tour-2', '', '', '2018-01-30 11:46:35', '2018-01-30 01:46:35', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=327', 32, 'post', '', 0),
 (328, 1, '2018-01-29 16:03:28', '2018-01-29 06:03:28', '', 'Food On Plate with Wine', '', 'inherit', 'closed', 'closed', '', 'foodonplatewine2', '', '', '2018-01-29 16:03:41', '2018-01-29 06:03:41', '', 327, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/FoodOnPlateWine2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (329, 1, '2018-01-29 16:03:50', '2018-01-29 06:03:50', 'Discover more of Toowoomba\'s flavours on this progressive dinner tour beginning with canapes and an exclusive guided tour of Cobb &amp; Co Museum\'s Carriage Room. Enjoy mains at the historic Gip\'s Restaurant, formerly an 1860s mansion, followed by scrumptious dessert at Picnic Point Restaurant. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Saturday 23 Sept (dinner tour)\r\n\r\nCOST: Adult $129\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>CANAPÉS - COBB &amp; CO MUSEUM</h4>\r\nDrinks: Glass of white wine, sparkling wine of beer\r\n\r\nFood: Crab Spring rolls infused with chilli and lime, Gourmet peppercorn beef pies and Bruschetta (Mushroom, mascarpone &amp; toasted hazelnuts or Tomato, basil olives &amp; roast capsicum)\r\n<h4>MAIN MEAL - GIP\'S RESTAURANT</h4>\r\nDrinks: Glass of red wine or white wine\r\n\r\nFood: MSA fillet of beef, confit garlic &amp; horseradish mash, buttered spinach &amp; beetroot relish GF OR Pan seared Tasmanian salmon with chilli, lime sambal &amp; pickled vegetable salad GF (alternate drop).\r\n\r\nAll served with seasonal vegetables.\r\n<h4>DESSERT - PICNIC POINT</h4>\r\nDrinks: Glass of wine, beer or soft drink\r\n\r\nFood: Rosewater and vanilla brulee with sugared flowers and glass biscuits OR Chocolate marquise with honey crème fraiche and pistachio biscotti (alternate drop).\r\n<h2>Times</h2>\r\nPick-up at 5:15pm, Returns 9pm.\r\n<h2>Location</h2>\r\nPick-up Picnic Point Bus Stop, Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/8RMveBTcMn32" target="_blank" rel="noopener">Google map</a>).', 'Progressive food & wine tour - 2', '', 'inherit', 'closed', 'closed', '', '327-revision-v1', '', '', '2018-01-29 16:03:50', '2018-01-29 06:03:50', '', 327, 'http://www.toowoombaregionalcouncil.com.au/tcof/327-revision-v1/', 0, 'revision', '', 0),
 (330, 1, '2017-09-17 16:05:00', '2017-09-17 06:05:00', '<h2>Sun 17 Sep</h2>\r\nThis walking tour of new chic Toowoomba venues begins with Korean and Japanese entrees at Kajoku. Enjoy mains, sourced from local ingredients, at Zev\'s Bistro, Toowoomba\'s only AGFG Chef Hatted restaurant, finishing with dessert in the warehouse-style setting of Muller Bros. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Sunday 17 Sept (lunch tour)\r\n\r\nCOST: Adult $99\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>ENTRÉE - KAJOKU</h4>\r\nDrinks: Glass of beer, soft drink, red or white wine\r\n\r\nFood: Korean - Japchae, a traditional small dish of sweet potato noodles, beef and vegetables with a sweet soy flavour OR Japanese - small serve of Kara-age chicken, a common pub snack or a few pieces of marinated and fried tender chicken served with fresh lemon and Japanese mayonnaise, and Wakame salad, shredded kelp seasoned with vinegar and sesame (alternate drop).\r\n<h4>MAIN MEAL - ZEV\'S BISTRO</h4>\r\nDrinks: Glass of beer, red or white wine\r\n\r\nFood: Pulled duck, hand cut spelt pappardelle, asparagus and tarragon OR Market fish, white bean and kimchi broth, charred greens, salted lemon (alternate drop).\r\n<h4>DESSERT - MULLER BROS</h4>\r\nDrinks: Glass of house beer, house wine or soft drink\r\n\r\nFood: White chocolate pannacotta with coconut yoghurt, berries and toasted coconut OR Tiramisu-layered espresso trifle (alternate drop).\r\n<h2>Times</h2>\r\nPick-up at 11:45am, Returns 3:15pm.\r\n<h2>Location</h2>\r\nPick-up at Kajoku, 1/430 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/tLHP2Ecmvct" target="_blank" rel="noopener">Google map</a>).', 'Private: Progressive food & wine walking tour', '', 'publish', 'closed', 'closed', '', 'private-progressive-food-wine-walking-tour', '', '', '2018-01-30 11:45:16', '2018-01-30 01:45:16', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=330', 31, 'post', '', 0),
 (331, 1, '2018-01-29 16:08:55', '2018-01-29 06:08:55', '', 'Food On Plate', '', 'inherit', 'closed', 'closed', '', 'foodonplate', '', '', '2018-01-29 16:09:02', '2018-01-29 06:09:02', '', 330, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/FoodOnPlate.jpg', 0, 'attachment', 'image/jpeg', 0),
 (332, 1, '2018-01-29 16:09:04', '2018-01-29 06:09:04', 'This walking tour of new chic Toowoomba venues begins with Korean and Japanese entrees at Kajoku. Enjoy mains, sourced from local ingredients, at Zev\'s Bistro, Toowoomba\'s only AGFG Chef Hatted restaurant, finishing with dessert in the warehouse-style setting of Muller Bros. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Sunday 17 Sept (lunch tour)\r\n\r\nCOST: Adult $99\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>ENTRÉE - KAJOKU</h4>\r\nDrinks: Glass of beer, soft drink, red or white wine\r\n\r\nFood: Korean - Japchae, a traditional small dish of sweet potato noodles, beef and vegetables with a sweet soy flavour OR Japanese - small serve of Kara-age chicken, a common pub snack or a few pieces of marinated and fried tender chicken served with fresh lemon and Japanese mayonnaise, and Wakame salad, shredded kelp seasoned with vinegar and sesame (alternate drop).\r\n<h4>MAIN MEAL - ZEV\'S BISTRO</h4>\r\nDrinks: Glass of beer, red or white wine\r\n\r\nFood: Pulled duck, hand cut spelt pappardelle, asparagus and tarragon OR Market fish, white bean and kimchi broth, charred greens, salted lemon (alternate drop).\r\n<h4>DESSERT - MULLER BROS</h4>\r\nDrinks: Glass of house beer, house wine or soft drink\r\n\r\nFood: White chocolate pannacotta with coconut yoghurt, berries and toasted coconut OR Tiramisu-layered espresso trifle (alternate drop).\r\n<h2>Times</h2>\r\nPick-up at 11:45am, Returns 3:15pm.\r\n<h2>Location</h2>\r\nPick-up at Kajoku, 1/430 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/tLHP2Ecmvct" target="_blank" rel="noopener">Google map</a>).', 'Private: Progressive food & wine walking tour', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2018-01-29 16:09:04', '2018-01-29 06:09:04', '', 330, 'http://www.toowoombaregionalcouncil.com.au/tcof/330-revision-v1/', 0, 'revision', '', 0),
 (333, 1, '2017-09-16 16:13:45', '2017-09-16 06:13:45', '<h2>Sat 16 - Tue 19 Sep</h2>\r\n<h4>If you want to see some of the region\'s award-winning large gardens and a little of the country surrounding Toowoomba in one day, then this is the tour for you!</h4>\r\nGuided by renowned local horticulturalist, Brian Sams and tour specialist, Wendy Allen, the four daily tours will visit some of the hidden gems that are often missed by visitors - the beautiful country gardens including the Grand Champion and Reserve Grand Champion and other winning and specialist country gardens.\r\n\r\nThis tour will take people on the roads less travelled through our rural countryside and give them the chance to discover the secrets of success from the garden owners themselves at each garden. Brian will be on hand to identify plants and to answer gardening questions.\r\n\r\nGuests will enjoy a lovely morning tea in a local garden as well as a delicious lunch in a unique country spot.\r\n\r\nGreat for people keen to see some of the rural areas and visit a number of great gardens. This is a small friendly group tour and numbers are limited.\r\n\r\nCOST: $135 per person\r\n\r\nENQUIRIES: 0409 814 200 or info@activateevents.net.au\r\n<h2>Times</h2>\r\n9am - 5:30pm each day.\r\n<h2>Location</h2>\r\nPick up from Toowoomba Visitor information Centre, 86 James St, Toowoomba (<a href="https://goo.gl/maps/HdPWYrJTGvp" target="_blank" rel="noopener">Google map</a>).', 'Cultivate carnival country garden day tour', '', 'publish', 'closed', 'closed', '', 'cultivate-carnival-country-garden-day-tour', '', '', '2018-01-30 11:44:43', '2018-01-30 01:44:43', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=333', 30, 'post', '', 0),
 (334, 1, '2018-01-29 16:17:16', '2018-01-29 06:17:16', '<h4>If you want to see some of the region\'s award-winning large gardens and a little of the country surrounding Toowoomba in one day, then this is the tour for you!</h4>\r\nGuided by renowned local horticulturalist, Brian Sams and tour specialist, Wendy Allen, the four daily tours will visit some of the hidden gems that are often missed by visitors - the beautiful country gardens including the Grand Champion and Reserve Grand Champion and other winning and specialist country gardens.\r\n\r\nThis tour will take people on the roads less travelled through our rural countryside and give them the chance to discover the secrets of success from the garden owners themselves at each garden. Brian will be on hand to identify plants and to answer gardening questions.\r\n\r\nGuests will enjoy a lovely morning tea in a local garden as well as a delicious lunch in a unique country spot.\r\n\r\nGreat for people keen to see some of the rural areas and visit a number of great gardens. This is a small friendly group tour and numbers are limited.\r\n\r\nCOST: $135 per person\r\n\r\nENQUIRIES: 0409 814 200 or info@activateevents.net.au\r\n<h2>Times</h2>\r\n9am - 5:30pm each day.\r\n<h2>Location</h2>\r\nPick up from Toowoomba Visitor information Centre, 86 James St, Toowoomba (<a href="https://goo.gl/maps/HdPWYrJTGvp" target="_blank" rel="noopener">Google map</a>).', 'Cultivate carnival country garden day tour', '', 'inherit', 'closed', 'closed', '', '333-revision-v1', '', '', '2018-01-29 16:17:16', '2018-01-29 06:17:16', '', 333, 'http://www.toowoombaregionalcouncil.com.au/tcof/333-revision-v1/', 0, 'revision', '', 0),
 (335, 1, '2018-01-29 16:18:31', '2018-01-29 06:18:31', '', 'Flowers in garden', '', 'inherit', 'closed', 'closed', '', 'countrygardentour2', '', '', '2018-01-29 16:18:48', '2018-01-29 06:18:48', '', 333, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/CountryGardenTour2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (336, 1, '2017-09-15 16:20:46', '2017-09-15 06:20:46', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nTake a relaxing walk on the farm and engage in interactive experiences with the animals. On-farm tours give your family every opportunity to pet, hand feed and learn basic husbandry skills. You will experience such things as cradling baby chickens, collecting fresh farm eggs, hand feeding the young pigs, picking a Protea to take home or walking through the established olive grove. You\'ll even be able to witness a hand milking demonstration!\r\n\r\nWhilst your children are kept busy, adults will touch on such topics of feeding your family on a budget using home grown food, food labels, processes to get your food to plate and how to tap into local producers and buy direct.\r\n\r\nAfter your tour, indulge in a \'picnic in the paddock\'. Picnic hampers are available to purchase, filled with an abundance of local produce grown on the farm and from reputable stallholders from Toowoomba Farmers Market.\r\n\r\nCOST: Adult $15 | Family (2 Adults, 2 Children) $50 | Children under 2 years Free\r\n\r\nENQUIRIES: 0439 844 849 or fiona@paddocktopotager.com.au\r\n<h2>Times</h2>\r\n9:30am - 11:30am daily.\r\n<h2>Location</h2>\r\n176 Merritts Creek Rd, Pechey (<a href="https://goo.gl/maps/y1MMmiM4CG32" target="_blank" rel="noopener">Google map</a>).', 'Paddock to Potager on-farm tours', '', 'publish', 'closed', 'closed', '', 'paddock-to-potager-on-farm-tours', '', '', '2018-01-30 11:44:07', '2018-01-30 01:44:07', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=336', 29, 'post', '', 0),
 (338, 1, '2018-01-29 16:30:30', '2018-01-29 06:30:30', 'Take a relaxing walk on the farm and engage in interactive experiences with the animals. On-farm tours give your family every opportunity to pet, hand feed and learn basic husbandry skills. You will experience such things as cradling baby chickens, collecting fresh farm eggs, hand feeding the young pigs, picking a Protea to take home or walking through the established olive grove. You\'ll even be able to witness a hand milking demonstration!\r\n\r\nWhilst your children are kept busy, adults will touch on such topics of feeding your family on a budget using home grown food, food labels, processes to get your food to plate and how to tap into local producers and buy direct.\r\n\r\nAfter your tour, indulge in a \'picnic in the paddock\'. Picnic hampers are available to purchase, filled with an abundance of local produce grown on the farm and from reputable stallholders from Toowoomba Farmers Market.\r\n\r\nCOST: Adult $15 | Family (2 Adults, 2 Children) $50 | Children under 2 years Free\r\n\r\nENQUIRIES: 0439 844 849 or fiona@paddocktopotager.com.au\r\n<h2>Times</h2>\r\n9:30am - 11:30am daily.\r\n<h2>Location</h2>\r\n176 Merritts Creek Rd, Pechey (<a href="https://goo.gl/maps/y1MMmiM4CG32" target="_blank" rel="noopener">Google map</a>).', 'Paddock to Potager on-farm tours', '', 'inherit', 'closed', 'closed', '', '336-revision-v1', '', '', '2018-01-29 16:30:30', '2018-01-29 06:30:30', '', 336, 'http://www.toowoombaregionalcouncil.com.au/tcof/336-revision-v1/', 0, 'revision', '', 0),
 (339, 1, '2018-01-29 16:31:38', '2018-01-29 06:31:38', '', 'Family in barn', '', 'inherit', 'closed', 'closed', '', 'paddocktopotager2', '', '', '2018-01-29 16:31:49', '2018-01-29 06:31:49', '', 336, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/PaddockToPotager2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (340, 1, '2017-09-15 08:56:30', '2017-09-14 22:56:30', '<h2>Fri 15 - Wed 20 Sep</h2>\r\nSt Luke’s Anglican Church puts on magnificent floral displays by the Toowoomba Floral Art Group, with music concerts daily at 12:30pm. Drop into the hall to see a range of arts and crafts by local artisans and enjoy St Luke’s beautiful gardens.\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 07 4639 1910 or stluke.tmba@bigpond.com\r\n<h2>Times</h2>\r\n9am - 4pm daily.\r\n<h2>Location</h2>\r\nSt Luke\'s Anglican Church, 152 Herries St, Toowoomba (<a href="https://goo.gl/maps/nvVcEUbL41Q2" target="_blank" rel="noopener">Google map</a>).', 'St Luke\'s flower & music festival', '', 'publish', 'closed', 'closed', '', 'st-lukes-flower-music-festival', '', '', '2018-01-30 11:43:32', '2018-01-30 01:43:32', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=340', 28, 'post', '', 0),
 (341, 1, '2018-01-30 09:32:18', '2018-01-29 23:32:18', '', 'St Lukes Flowers In Guitar', '', 'inherit', 'closed', 'closed', '', 'stlukesflowersinguitar2', '', '', '2018-01-30 09:32:31', '2018-01-29 23:32:31', '', 340, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/StLukesFlowersInGuitar2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (342, 1, '2018-01-30 09:32:35', '2018-01-29 23:32:35', 'St Luke’s Anglican Church puts on magnificent floral displays by the Toowoomba Floral Art Group, with music concerts daily at 12:30pm. Drop into the hall to see a range of arts and crafts by local artisans and enjoy St Luke’s beautiful gardens.\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 07 4639 1910 or stluke.tmba@bigpond.com\r\n<h2>Times</h2>\r\n9am - 4pm daily.\r\n<h2>Location</h2>\r\nSt Luke\'s Anglican Church, 152 Herries St, Toowoomba (<a href="https://goo.gl/maps/nvVcEUbL41Q2" target="_blank" rel="noopener">Google map</a>).', 'St Luke\'s flower & music festival', '', 'inherit', 'closed', 'closed', '', '340-revision-v1', '', '', '2018-01-30 09:32:35', '2018-01-29 23:32:35', '', 340, 'http://www.toowoombaregionalcouncil.com.au/tcof/340-revision-v1/', 0, 'revision', '', 0),
 (343, 1, '2017-09-15 09:33:09', '2017-09-14 23:33:09', '<h2>Fri 15 - Wed 20 Sep</h2>\r\nClivia lovers come from all over Australia, and the world, to see the spectacular Toowoomba clivias. With the perfect climate and conditions to grow these gorgeous blooms, Toowoomba’s clivias come out in all their glory for Carnival. This world class display offers hands-on demonstrations and information on how to cultivate and grow clivia. Plants and seeds will also be available to purchase.\r\n\r\n2017 proceeds donated to St Vincent\'s Hospital.\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 0437 533 982 or rayandkerry@bigpond.com\r\n<h2>Times</h2>\r\n9am - 5pm daily.\r\n<h2>Location</h2>\r\nHorticultural Pavilion, Southern Queensland Institute of TAFE, 100 Bridge St, Toowoomba (<a href="https://goo.gl/maps/YEscRDzquKS2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Clivia Society show', '', 'publish', 'closed', 'closed', '', 'toowoomba-clivia-society-show', '', '', '2018-01-30 11:43:01', '2018-01-30 01:43:01', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=343', 27, 'post', '', 0),
 (344, 1, '2018-01-30 09:42:57', '2018-01-29 23:42:57', '', 'Yellow Clivias', '', 'inherit', 'closed', 'closed', '', 'cliviashow2', '', '', '2018-01-30 09:43:11', '2018-01-29 23:43:11', '', 343, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/CliviaShow2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (345, 1, '2018-01-30 09:43:18', '2018-01-29 23:43:18', 'Clivia lovers come from all over Australia, and the world, to see the spectacular Toowoomba clivias. With the perfect climate and conditions to grow these gorgeous blooms, Toowoomba’s clivias come out in all their glory for Carnival. This world class display offers hands-on demonstrations and information on how to cultivate and grow clivia. Plants and seeds will also be available to purchase.\r\n\r\n2017 proceeds donated to St Vincent\'s Hospital.\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 0437 533 982 or rayandkerry@bigpond.com\r\n<h2>Times</h2>\r\n9am - 5pm daily.\r\n<h2>Location</h2>\r\nHorticultural Pavilion, Southern Queensland Institute of TAFE, 100 Bridge St, Toowoomba (<a href="https://goo.gl/maps/YEscRDzquKS2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Clivia Society show', '', 'inherit', 'closed', 'closed', '', '343-revision-v1', '', '', '2018-01-30 09:43:18', '2018-01-29 23:43:18', '', 343, 'http://www.toowoombaregionalcouncil.com.au/tcof/343-revision-v1/', 0, 'revision', '', 0),
 (346, 1, '2017-09-15 09:43:43', '2017-09-14 23:43:43', '<h2>Fri 15 - Mon 18 Sep</h2>\r\nNOSTI presents a delightful display of Australian native orchids, exotic orchids, ferns, bromeliads and foliage plants. Plants, floral art and crafts are for sale with experienced growers and enthusiasts on hand to assist with growing and cultivation tips.\r\n\r\nCOST: Adult $3 | Child (14 years &amp; under) Free\r\n\r\nENQUIRIES: 0418 153 003 or 07 4630 1825.\r\n<h2>Times</h2>\r\n9am - 5pm daily (Monday 9am - 3pm).\r\n<h2>Location</h2>\r\nSt John\'s Lutheran Church Hall, 431 Bridge St, Toowoomba (<a href="https://goo.gl/maps/v7b9xfYQFby" target="_blank" rel="noopener">Google map</a>).', 'Native Orchid Society of Toowoomba spring show', '', 'publish', 'closed', 'closed', '', 'native-orchid-society-of-toowoomba-spring-show', '', '', '2018-03-14 16:31:46', '2018-03-14 06:31:46', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=346', 26, 'post', '', 0),
 (347, 1, '2018-01-30 09:46:40', '2018-01-29 23:46:40', 'NOSTI presents a delightful display of Australian native orchids, exotic orchids, ferns, bromeliads and foliage plants. Plants, floral art and crafts are for sale with experienced growers and enthusiasts on hand to assist with growing and cultivation tips.\r\n\r\nCOST: Adult $3 | Child (14 years &amp; under) Free\r\n\r\nENQUIRIES: 0418 153 003 or 07 4630 1825.\r\n\r\n&nbsp;', 'Native Orchid Society of Toowoomba spring show', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2018-01-30 09:46:40', '2018-01-29 23:46:40', '', 346, 'http://www.toowoombaregionalcouncil.com.au/tcof/346-revision-v1/', 0, 'revision', '', 0),
 (348, 1, '2018-01-30 09:49:02', '2018-01-29 23:49:02', 'NOSTI presents a delightful display of Australian native orchids, exotic orchids, ferns, bromeliads and foliage plants. Plants, floral art and crafts are for sale with experienced growers and enthusiasts on hand to assist with growing and cultivation tips.\n\nCOST: Adult $3 | Child (14 years &amp; under) Free\n\nENQUIRIES: 0418 153 003 or 07 4630 1825.\n<h2>Times</h2>\n9am - 5pm daily (Monday 9am - 3pm).\n<h2>Location</h2>\nSt John\'s Lutheran Church Hall, 431 Bridge St, Toowoomba (<a href="https://goo.gl/maps/v7b9xfYQFby" target="_blank" rel="noopener">Google map</a>).', 'Native Orchid Society of Toowoomba spring show', '', 'inherit', 'closed', 'closed', '', '346-autosave-v1', '', '', '2018-01-30 09:49:02', '2018-01-29 23:49:02', '', 346, 'http://www.toowoombaregionalcouncil.com.au/tcof/346-autosave-v1/', 0, 'revision', '', 0),
 (349, 1, '2018-01-30 09:49:58', '2018-01-29 23:49:58', '', 'Nosti Flowers', '', 'inherit', 'closed', 'closed', '', 'nostiflowers2', '', '', '2018-01-30 09:50:06', '2018-01-29 23:50:06', '', 346, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/NostiFlowers2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (350, 1, '2018-01-30 09:50:11', '2018-01-29 23:50:11', 'NOSTI presents a delightful display of Australian native orchids, exotic orchids, ferns, bromeliads and foliage plants. Plants, floral art and crafts are for sale with experienced growers and enthusiasts on hand to assist with growing and cultivation tips.\r\n\r\nCOST: Adult $3 | Child (14 years &amp; under) Free\r\n\r\nENQUIRIES: 0418 153 003 or 07 4630 1825.\r\n<h2>Times</h2>\r\n9am - 5pm daily (Monday 9am - 3pm).\r\n<h2>Location</h2>\r\nSt John\'s Lutheran Church Hall, 431 Bridge St, Toowoomba (<a href="https://goo.gl/maps/v7b9xfYQFby" target="_blank" rel="noopener">Google map</a>).', 'Native Orchid Society of Toowoomba spring show', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2018-01-30 09:50:11', '2018-01-29 23:50:11', '', 346, 'http://www.toowoombaregionalcouncil.com.au/tcof/346-revision-v1/', 0, 'revision', '', 0),
 (351, 1, '2017-09-14 09:50:36', '2017-09-13 23:50:36', '<h2>Thu 14 - Wed 20 Sep</h2>\r\nToowoomba Floristry School will be working their magic during Carnival with spectacular floral artistry adorning St Patrick’s Cathedral. The already welcoming interior of the Cathedral is enhanced with beautiful flowers and the enthusiasm of creative arrangers.\r\n\r\nEnjoy the ambience as stirring musical notes fill the Cathedral during your visit. Guided tours of the Cathedral are available each day, except Saturday.\r\n\r\nCOST: Free (gold coin donation appreciated)\r\n\r\nENQUIRIES: 07 4637 1507 or admin@stpats.org.au.\r\n<h2>Times</h2>\r\n9am - 5pm daily.\r\n<h2>Location</h2>\r\nSt Patrick\'s Cathedral, Cnr James &amp; Neil Sts, Toowoomba (<a href="https://goo.gl/maps/B184f8z8GMt" target="_blank" rel="noopener">Google map</a>).', 'St Patrick\'s Cathedral floral display', '', 'publish', 'closed', 'closed', '', 'st-patricks-cathedral-floral-display', '', '', '2018-01-30 11:41:41', '2018-01-30 01:41:41', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=351', 25, 'post', '', 0),
 (353, 2, '2018-01-30 10:12:29', '2018-01-30 00:12:29', '\n', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-30 10:12:29', '2018-01-30 00:12:29', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (354, 1, '2018-01-30 10:23:03', '2018-01-30 00:23:03', '', 'St Patrick\'s Cathedral floral display', '', 'inherit', 'closed', 'closed', '', '351-revision-v1', '', '', '2018-01-30 10:23:03', '2018-01-30 00:23:03', '', 351, 'http://www.toowoombaregionalcouncil.com.au/tcof/351-revision-v1/', 0, 'revision', '', 0),
 (355, 1, '2018-01-30 10:27:06', '2018-01-30 00:27:06', 'Toowoomba Floristry School will be working their magic during Carnival with spectacular floral artistry adorning St Patrick’s Cathedral. The already welcoming interior of the Cathedral is enhanced with beautiful flowers and the enthusiasm of creative arrangers.\n\nEnjoy the ambience as stirring musical notes fill the Cathedral during your visit. Guided tours of the Cathedral are available each day, except Saturday.\n\nCOST: Free (gold coin donation appreciated)\n\nENQUIRIES: 07 4637 1507 or admin@stpats.org.au.\n<h2>Times</h2>\n9am - 5pm daily.\n<h2>Location</h2>\nSt Patrick\'s Cathedral, Cnr James &amp; Neil Sts, Toowoomba (<a href="https://goo.gl/maps/B184f8z8GMt" target="_blank" rel="noopener">Google map</a>).', 'St Patrick\'s Cathedral floral display', '', 'inherit', 'closed', 'closed', '', '351-autosave-v1', '', '', '2018-01-30 10:27:06', '2018-01-30 00:27:06', '', 351, 'http://www.toowoombaregionalcouncil.com.au/tcof/351-autosave-v1/', 0, 'revision', '', 0),
 (356, 1, '2018-01-30 10:27:14', '2018-01-30 00:27:14', '', 'St Patricks Flower', '', 'inherit', 'closed', 'closed', '', 'stpatricksflower2', '', '', '2018-01-30 10:27:31', '2018-01-30 00:27:31', '', 351, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/StPatricksFlower2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (357, 1, '2018-01-30 10:27:37', '2018-01-30 00:27:37', 'Toowoomba Floristry School will be working their magic during Carnival with spectacular floral artistry adorning St Patrick’s Cathedral. The already welcoming interior of the Cathedral is enhanced with beautiful flowers and the enthusiasm of creative arrangers.\r\n\r\nEnjoy the ambience as stirring musical notes fill the Cathedral during your visit. Guided tours of the Cathedral are available each day, except Saturday.\r\n\r\nCOST: Free (gold coin donation appreciated)\r\n\r\nENQUIRIES: 07 4637 1507 or admin@stpats.org.au.\r\n<h2>Times</h2>\r\n9am - 5pm daily.\r\n<h2>Location</h2>\r\nSt Patrick\'s Cathedral, Cnr James &amp; Neil Sts, Toowoomba (<a href="https://goo.gl/maps/B184f8z8GMt" target="_blank" rel="noopener">Google map</a>).', 'St Patrick\'s Cathedral floral display', '', 'inherit', 'closed', 'closed', '', '351-revision-v1', '', '', '2018-01-30 10:27:37', '2018-01-30 00:27:37', '', 351, 'http://www.toowoombaregionalcouncil.com.au/tcof/351-revision-v1/', 0, 'revision', '', 0),
 (359, 1, '2017-09-23 10:30:53', '2017-09-23 00:30:53', '<h2>Sat 23 Sep</h2>\r\nSt David\'s Presbyterian Church holds its annual Carnival celebration with floral displays, cakes, crafts, plants and white elephant stalls set in the beautiful church gardens. See the displays and demonstrations and take home a great bargain from one of the many stalls.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4573 4942 or serendipity48bev@gmail.com.\r\n<h2>Times</h2>\r\n8am - 2pm.\r\n<h2>Location</h2>\r\nSt David\'s Presbyterian Church, 46 Mary St, Toowoomba (<a href="https://goo.gl/maps/r22tgz8x4Yx" target="_blank" rel="noopener">Google map</a>).', 'St David\'s on display', '', 'publish', 'closed', 'closed', '', 'st-davids-on-display', '', '', '2018-01-30 11:40:59', '2018-01-30 01:40:59', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=359', 24, 'post', '', 0),
 (360, 1, '2018-01-30 10:34:43', '2018-01-30 00:34:43', 'St David\'s Presbyterian Church holds its annual Carnival celebration with floral displays, cakes, crafts, plants and white elephant stalls set in the beautiful church gardens. See the displays and demonstrations and take home a great bargain from one of the many stalls.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4573 4942 or serendipity48bev@gmail.com.\r\n<h2>Times</h2>\r\n8am - 2pm.\r\n<h2>Location</h2>\r\nSt David\'s Presbyterian Church, 46 Mary St, Toowoomba (Google map).', 'St David\'s on display', '', 'inherit', 'closed', 'closed', '', '359-revision-v1', '', '', '2018-01-30 10:34:43', '2018-01-30 00:34:43', '', 359, 'http://www.toowoombaregionalcouncil.com.au/tcof/359-revision-v1/', 0, 'revision', '', 0),
 (361, 2, '2018-01-30 10:35:44', '2018-01-30 00:35:44', '<div id="pl-361"  class="panel-layout" ><div id="pg-361-0"  class="panel-grid panel-no-style" ><div id="pgc-361-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-361-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-361-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-361-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-361-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-361-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1516683734973&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-361-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 10:35:44', '2018-01-30 00:35:44', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (362, 2, '2018-01-30 10:35:44', '2018-01-30 00:35:44', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1516683734973&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 10:35:44', '2018-01-30 00:35:44', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (363, 1, '2018-01-30 11:40:50', '2018-01-30 01:40:50', '&nbsp;\n\nSt David\'s Presbyterian Church holds its annual Carnival celebration with floral displays, cakes, crafts, plants and white elephant stalls set in the beautiful church gardens. See the displays and demonstrations and take home a great bargain from one of the many stalls.\n\nCOST: Free\n\nENQUIRIES: 07 4573 4942 or serendipity48bev@gmail.com.\n<h2>Times</h2>\n8am - 2pm.\n<h2>Location</h2>\nSt David\'s Presbyterian Church, 46 Mary St, Toowoomba (<a href="https://goo.gl/maps/r22tgz8x4Yx" target="_blank" rel="noopener">Google map</a>).', 'St David\'s on display', '', 'inherit', 'closed', 'closed', '', '359-autosave-v1', '', '', '2018-01-30 11:40:50', '2018-01-30 01:40:50', '', 359, 'http://www.toowoombaregionalcouncil.com.au/tcof/359-autosave-v1/', 0, 'revision', '', 0),
 (364, 1, '2018-01-30 10:36:36', '2018-01-30 00:36:36', '', 'St Davids Cup Cakes', '', 'inherit', 'closed', 'closed', '', 'stdavidscupcakes2', '', '', '2018-01-30 10:36:46', '2018-01-30 00:36:46', '', 359, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/StDavidsCupCakes2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (365, 1, '2018-01-30 10:36:49', '2018-01-30 00:36:49', 'St David\'s Presbyterian Church holds its annual Carnival celebration with floral displays, cakes, crafts, plants and white elephant stalls set in the beautiful church gardens. See the displays and demonstrations and take home a great bargain from one of the many stalls.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4573 4942 or serendipity48bev@gmail.com.\r\n<h2>Times</h2>\r\n8am - 2pm.\r\n<h2>Location</h2>\r\nSt David\'s Presbyterian Church, 46 Mary St, Toowoomba (<a href="https://goo.gl/maps/r22tgz8x4Yx" target="_blank" rel="noopener">Google map</a>).', 'St David\'s on display', '', 'inherit', 'closed', 'closed', '', '359-revision-v1', '', '', '2018-01-30 10:36:49', '2018-01-30 00:36:49', '', 359, 'http://www.toowoombaregionalcouncil.com.au/tcof/359-revision-v1/', 0, 'revision', '', 0),
 (366, 1, '2017-09-16 10:37:37', '2017-09-16 00:37:37', '<h2>Sat 16 - Sun 24 Sep</h2>\r\nThe Toowoomba Regional Art Gallery proudly presents a display in the Japanese art of flower arrangement by the Toowoomba Ikebana Group, Sogetsu School. From traditional use of minimalism to emphasise shape, line and form, Ikebana has become boldly experimental and new designs that continue to push the boundaries of materials used. The members of the Toowoomba Ikebana Group have all studied for many years to reach high levels of proficiency, and enjoy the opportunity to practise their art. Make time to drop in to the gallery, conveniently located in Toowoomba CBD.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6652 or art@tr.qld.gov.au.\r\n<h2>Times</h2>\r\n10am - 4pm (Sundays 1pm - 4pm).\r\n<h2>Location</h2>\r\nToowoomba Regional Art Gallery, 531 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/R1ygEvf8jmL2" target="_blank" rel="noopener">Google map</a>).', 'Ikebana display', '', 'publish', 'closed', 'closed', '', 'ikebana-display', '', '', '2018-01-30 11:08:36', '2018-01-30 01:08:36', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=366', 23, 'post', '', 0),
 (367, 1, '2018-01-30 10:40:05', '2018-01-30 00:40:05', 'The Toowoomba Regional Art Gallery proudly presents a display in the Japanese art of flower arrangement by the Toowoomba Ikebana Group, Sogetsu School. From traditional use of minimalism to emphasise shape, line and form, Ikebana has become boldly experimental and new designs that continue to push the boundaries of materials used. The members of the Toowoomba Ikebana Group have all studied for many years to reach high levels of proficiency, and enjoy the opportunity to practise their art. Make time to drop in to the gallery, conveniently located in Toowoomba CBD.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6652 or art@tr.qld.gov.au.\r\n<h2>Times</h2>\r\n10am - 4pm (Sundays 1pm - 4pm).\r\n<h2>Location</h2>\r\nToowoomba Regional Art Gallery, 531 Ruthven St, Toowoomba (Google map).', 'Ikebana display', '', 'inherit', 'closed', 'closed', '', '366-revision-v1', '', '', '2018-01-30 10:40:05', '2018-01-30 00:40:05', '', 366, 'http://www.toowoombaregionalcouncil.com.au/tcof/366-revision-v1/', 0, 'revision', '', 0),
 (368, 1, '2018-01-30 10:41:20', '2018-01-30 00:41:20', 'The Toowoomba Regional Art Gallery proudly presents a display in the Japanese art of flower arrangement by the Toowoomba Ikebana Group, Sogetsu School. From traditional use of minimalism to emphasise shape, line and form, Ikebana has become boldly experimental and new designs that continue to push the boundaries of materials used. The members of the Toowoomba Ikebana Group have all studied for many years to reach high levels of proficiency, and enjoy the opportunity to practise their art. Make time to drop in to the gallery, conveniently located in Toowoomba CBD.\n\nCOST: Free\n\nENQUIRIES: 07 4688 6652 or art@tr.qld.gov.au.\n<h2>Times</h2>\n10am - 4pm (Sundays 1pm - 4pm).\n<h2>Location</h2>\nToowoomba Regional Art Gallery, 531 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/R1ygEvf8jmL2" target="_blank" rel="noopener">Google map</a>).', 'Ikebana display', '', 'inherit', 'closed', 'closed', '', '366-autosave-v1', '', '', '2018-01-30 10:41:20', '2018-01-30 00:41:20', '', 366, 'http://www.toowoombaregionalcouncil.com.au/tcof/366-autosave-v1/', 0, 'revision', '', 0),
 (369, 1, '2018-01-30 10:47:17', '2018-01-30 00:47:17', '', 'Ikebana Floral Display', '', 'inherit', 'closed', 'closed', '', 'ikebanafloraldisplay2', '', '', '2018-01-30 10:47:30', '2018-01-30 00:47:30', '', 366, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/IkebanaFloralDisplay2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (370, 2, '2018-01-30 10:47:39', '2018-01-30 00:47:39', '<div id="pl-370"  class="panel-layout" ><div id="pg-370-0"  class="panel-grid panel-no-style" ><div id="pgc-370-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-370-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-370-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-370-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-370-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-370-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1516683734973&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-370-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 10:47:39', '2018-01-30 00:47:39', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (371, 2, '2018-01-30 10:47:39', '2018-01-30 00:47:39', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1516683734973&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 10:47:39', '2018-01-30 00:47:39', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (372, 1, '2018-01-30 10:47:45', '2018-01-30 00:47:45', 'The Toowoomba Regional Art Gallery proudly presents a display in the Japanese art of flower arrangement by the Toowoomba Ikebana Group, Sogetsu School. From traditional use of minimalism to emphasise shape, line and form, Ikebana has become boldly experimental and new designs that continue to push the boundaries of materials used. The members of the Toowoomba Ikebana Group have all studied for many years to reach high levels of proficiency, and enjoy the opportunity to practise their art. Make time to drop in to the gallery, conveniently located in Toowoomba CBD.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6652 or art@tr.qld.gov.au.\r\n<h2>Times</h2>\r\n10am - 4pm (Sundays 1pm - 4pm).\r\n<h2>Location</h2>\r\nToowoomba Regional Art Gallery, 531 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/R1ygEvf8jmL2" target="_blank" rel="noopener">Google map</a>).', 'Ikebana display', '', 'inherit', 'closed', 'closed', '', '366-revision-v1', '', '', '2018-01-30 10:47:45', '2018-01-30 00:47:45', '', 366, 'http://www.toowoombaregionalcouncil.com.au/tcof/366-revision-v1/', 0, 'revision', '', 0),
 (373, 2, '2018-01-30 10:48:59', '2018-01-30 00:48:59', '', '2017 Events', '', 'publish', 'closed', 'closed', '', '373', '', '', '2018-03-15 13:14:13', '2018-03-15 03:14:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=373', 2, 'nav_menu_item', '', 0),
 (374, 1, '2017-09-15 10:48:52', '2017-09-15 00:48:52', '<h2>Fri 15 - Tue 19 Sep</h2>\r\nAn absolute must for orchid lovers, with culture talks and potting demonstrations to help you with your own cultivations.\r\n\r\nCOST: $4 per person | $10 per person (bus groups only includes a light lunch)\r\n\r\nENQUIRIES: tanbark_toowoomba@hotmail.com.\r\n<h2>Times</h2>\r\n8:30am - 4pm daily.\r\n<h2>Location</h2>\r\nSt Paul\'s Church Hall, Cnr James &amp; Phillips Sts, Toowoomba (<a href="https://goo.gl/maps/6YuCjQFPFjT2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Orchid Society show', '', 'publish', 'closed', 'closed', '', 'toowoomba-orchid-society-show', '', '', '2018-01-30 11:07:45', '2018-01-30 01:07:45', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=374', 22, 'post', '', 0),
 (375, 1, '2018-01-30 10:55:31', '2018-01-30 00:55:31', '', 'Orchids', '', 'inherit', 'closed', 'closed', '', 'orchidsociety2', '', '', '2018-01-30 10:55:45', '2018-01-30 00:55:45', '', 374, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/OrchidSociety2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (376, 1, '2018-01-30 10:56:00', '2018-01-30 00:56:00', 'An absolute must for orchid lovers, with culture talks and potting demonstrations to help you with your own cultivations.\r\n\r\nCOST: $4 per person | $10 per person (bus groups only includes a light lunch)\r\n\r\nENQUIRIES: tanbark_toowoomba@hotmail.com.\r\n<h2>Times</h2>\r\n8:30am - 4pm daily.\r\n<h2>Location</h2>\r\nSt Paul\'s Church Hall, Cnr James &amp; Phillips Sts, Toowoomba (<a href="https://goo.gl/maps/6YuCjQFPFjT2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Orchid Society show', '', 'inherit', 'closed', 'closed', '', '374-revision-v1', '', '', '2018-01-30 10:56:00', '2018-01-30 00:56:00', '', 374, 'http://www.toowoombaregionalcouncil.com.au/tcof/374-revision-v1/', 0, 'revision', '', 0),
 (377, 1, '2017-09-15 10:56:13', '2017-09-15 00:56:13', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nThe Toowoomba climate is ideal for growing a wide variety of bonsai, from alpine through to tropical. The annual show features a display of bonsai trees showcasing many styles and species traditionally used by the bonsai masters in Japan and China. Members will be on hand to give advice and recommendations and don’t miss the daily bonsai demonstrations!\r\n\r\nCOST: Adult $3 | Child (14 years &amp; under) Free\r\n\r\nENQUIRIES: 07 4635 5445 or wallib.richards@gmail.com.\r\n<h2>Times</h2>\r\n9:30am - 4:30pm daily.\r\n<h2>Location</h2>\r\nRose Cottage, Newtown Park, Cnr Holberton &amp; Pottinger Sts, Toowoomba (Google map).', 'Toowoomba Bonsai Group annual show', '', 'publish', 'closed', 'closed', '', 'toowoomba-bonsai-group-annual-show', '', '', '2018-01-30 11:04:07', '2018-01-30 01:04:07', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=377', 21, 'post', '', 0),
 (379, 2, '2018-01-30 10:59:03', '2018-01-30 00:59:03', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n	padding: 0 .3em;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-30 10:59:03', '2018-01-30 00:59:03', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (380, 1, '2018-01-30 11:03:53', '2018-01-30 01:03:53', '', 'Bonsai Tree', '', 'inherit', 'closed', 'closed', '', 'bonsaitree2', '', '', '2018-01-30 11:04:03', '2018-01-30 01:04:03', '', 377, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/BonsaiTree2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (381, 1, '2018-01-30 11:04:07', '2018-01-30 01:04:07', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nThe Toowoomba climate is ideal for growing a wide variety of bonsai, from alpine through to tropical. The annual show features a display of bonsai trees showcasing many styles and species traditionally used by the bonsai masters in Japan and China. Members will be on hand to give advice and recommendations and don’t miss the daily bonsai demonstrations!\r\n\r\nCOST: Adult $3 | Child (14 years &amp; under) Free\r\n\r\nENQUIRIES: 07 4635 5445 or wallib.richards@gmail.com.\r\n<h2>Times</h2>\r\n9:30am - 4:30pm daily.\r\n<h2>Location</h2>\r\nRose Cottage, Newtown Park, Cnr Holberton &amp; Pottinger Sts, Toowoomba (Google map).', 'Toowoomba Bonsai Group annual show', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2018-01-30 11:04:07', '2018-01-30 01:04:07', '', 377, 'http://www.toowoombaregionalcouncil.com.au/tcof/377-revision-v1/', 0, 'revision', '', 0),
 (384, 2, '2018-01-30 11:05:10', '2018-01-30 01:05:10', '.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n/*.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}*/\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n	padding: 0 .3em;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-30 11:05:10', '2018-01-30 01:05:10', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (385, 1, '2018-01-30 11:07:19', '2018-01-30 01:07:19', '<h2>Fri 15 - Sun 19 Sep</h2>\nAn absolute must for orchid lovers, with culture talks and potting demonstrations to help you with your own cultivations.\n\nCOST: $4 per person | $10 per person (bus groups only includes a light lunch)\n\nENQUIRIES: tanbark_toowoomba@hotmail.com.\n<h2>Times</h2>\n8:30am - 4pm daily.\n<h2>Location</h2>\nSt Paul\'s Church Hall, Cnr James &amp; Phillips Sts, Toowoomba (<a href="https://goo.gl/maps/6YuCjQFPFjT2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Orchid Society show', '', 'inherit', 'closed', 'closed', '', '374-autosave-v1', '', '', '2018-01-30 11:07:19', '2018-01-30 01:07:19', '', 374, 'http://www.toowoombaregionalcouncil.com.au/tcof/374-autosave-v1/', 0, 'revision', '', 0),
 (386, 1, '2018-01-30 11:07:45', '2018-01-30 01:07:45', '<h2>Fri 15 - Tue 19 Sep</h2>\r\nAn absolute must for orchid lovers, with culture talks and potting demonstrations to help you with your own cultivations.\r\n\r\nCOST: $4 per person | $10 per person (bus groups only includes a light lunch)\r\n\r\nENQUIRIES: tanbark_toowoomba@hotmail.com.\r\n<h2>Times</h2>\r\n8:30am - 4pm daily.\r\n<h2>Location</h2>\r\nSt Paul\'s Church Hall, Cnr James &amp; Phillips Sts, Toowoomba (<a href="https://goo.gl/maps/6YuCjQFPFjT2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Orchid Society show', '', 'inherit', 'closed', 'closed', '', '374-revision-v1', '', '', '2018-01-30 11:07:45', '2018-01-30 01:07:45', '', 374, 'http://www.toowoombaregionalcouncil.com.au/tcof/374-revision-v1/', 0, 'revision', '', 0),
 (387, 1, '2018-01-30 11:08:36', '2018-01-30 01:08:36', '<h2>Sat 16 - Sun 24 Sep</h2>\r\nThe Toowoomba Regional Art Gallery proudly presents a display in the Japanese art of flower arrangement by the Toowoomba Ikebana Group, Sogetsu School. From traditional use of minimalism to emphasise shape, line and form, Ikebana has become boldly experimental and new designs that continue to push the boundaries of materials used. The members of the Toowoomba Ikebana Group have all studied for many years to reach high levels of proficiency, and enjoy the opportunity to practise their art. Make time to drop in to the gallery, conveniently located in Toowoomba CBD.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6652 or art@tr.qld.gov.au.\r\n<h2>Times</h2>\r\n10am - 4pm (Sundays 1pm - 4pm).\r\n<h2>Location</h2>\r\nToowoomba Regional Art Gallery, 531 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/R1ygEvf8jmL2" target="_blank" rel="noopener">Google map</a>).', 'Ikebana display', '', 'inherit', 'closed', 'closed', '', '366-revision-v1', '', '', '2018-01-30 11:08:36', '2018-01-30 01:08:36', '', 366, 'http://www.toowoombaregionalcouncil.com.au/tcof/366-revision-v1/', 0, 'revision', '', 0),
 (392, 2, '2018-01-30 11:36:26', '2018-01-30 01:36:26', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1516683734973&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="121">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-121-0-0 , #pgc-121-1-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pg-121-0 , #pl-121 .so-panel { margin-bottom:30px } #pl-121 .so-panel:last-child { margin-bottom:0px } #pg-121-1.panel-no-style, #pg-121-1.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style , #pg-121-1.panel-no-style, #pg-121-1.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-121-0 .panel-grid-cell , #pg-121-1 .panel-grid-cell { margin-right:0 } #pg-121-0 .panel-grid-cell , #pg-121-1 .panel-grid-cell { width:100% } #pl-121 .panel-grid-cell { padding:0 } #pl-121 .panel-grid .panel-grid-cell-empty { display:none } #pl-121 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 11:36:26', '2018-01-30 01:36:26', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (393, 2, '2018-01-30 11:40:18', '2018-01-30 01:40:18', '<div id="pl-393"  class="panel-layout" ><div id="pg-393-0"  class="panel-grid panel-no-style" ><div id="pgc-393-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-393-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-393-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-393-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-393-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-393-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:1,\\&quot;unit\\&quot;:\\&quot;years\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=none&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517276399065&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-393-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="393">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-393-0-0 , #pgc-393-1-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pg-393-0 , #pl-393 .so-panel { margin-bottom:30px } #pl-393 .so-panel:last-child { margin-bottom:0px } #pg-393-1.panel-no-style, #pg-393-1.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-393-0.panel-no-style, #pg-393-0.panel-has-style > .panel-row-style , #pg-393-1.panel-no-style, #pg-393-1.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-393-0 .panel-grid-cell , #pg-393-1 .panel-grid-cell { margin-right:0 } #pg-393-0 .panel-grid-cell , #pg-393-1 .panel-grid-cell { width:100% } #pl-393 .panel-grid-cell { padding:0 } #pl-393 .panel-grid .panel-grid-cell-empty { display:none } #pl-393 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 11:40:18', '2018-01-30 01:40:18', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (394, 2, '2018-01-30 11:40:18', '2018-01-30 01:40:18', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=relative&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:1,\\&quot;unit\\&quot;:\\&quot;years\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=none&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517276399065&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="121">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-121-0-0 , #pgc-121-1-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pg-121-0 , #pl-121 .so-panel { margin-bottom:30px } #pl-121 .so-panel:last-child { margin-bottom:0px } #pg-121-1.panel-no-style, #pg-121-1.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style , #pg-121-1.panel-no-style, #pg-121-1.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-121-0 .panel-grid-cell , #pg-121-1 .panel-grid-cell { margin-right:0 } #pg-121-0 .panel-grid-cell , #pg-121-1 .panel-grid-cell { width:100% } #pl-121 .panel-grid-cell { padding:0 } #pl-121 .panel-grid .panel-grid-cell-empty { display:none } #pl-121 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 11:40:18', '2018-01-30 01:40:18', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (395, 1, '2018-01-30 11:40:59', '2018-01-30 01:40:59', '<h2>Sat 23 Sep</h2>\r\nSt David\'s Presbyterian Church holds its annual Carnival celebration with floral displays, cakes, crafts, plants and white elephant stalls set in the beautiful church gardens. See the displays and demonstrations and take home a great bargain from one of the many stalls.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4573 4942 or serendipity48bev@gmail.com.\r\n<h2>Times</h2>\r\n8am - 2pm.\r\n<h2>Location</h2>\r\nSt David\'s Presbyterian Church, 46 Mary St, Toowoomba (<a href="https://goo.gl/maps/r22tgz8x4Yx" target="_blank" rel="noopener">Google map</a>).', 'St David\'s on display', '', 'inherit', 'closed', 'closed', '', '359-revision-v1', '', '', '2018-01-30 11:40:59', '2018-01-30 01:40:59', '', 359, 'http://www.toowoombaregionalcouncil.com.au/tcof/359-revision-v1/', 0, 'revision', '', 0),
 (396, 1, '2018-01-30 11:41:41', '2018-01-30 01:41:41', '<h2>Thu 14 - Wed 20 Sep</h2>\r\nToowoomba Floristry School will be working their magic during Carnival with spectacular floral artistry adorning St Patrick’s Cathedral. The already welcoming interior of the Cathedral is enhanced with beautiful flowers and the enthusiasm of creative arrangers.\r\n\r\nEnjoy the ambience as stirring musical notes fill the Cathedral during your visit. Guided tours of the Cathedral are available each day, except Saturday.\r\n\r\nCOST: Free (gold coin donation appreciated)\r\n\r\nENQUIRIES: 07 4637 1507 or admin@stpats.org.au.\r\n<h2>Times</h2>\r\n9am - 5pm daily.\r\n<h2>Location</h2>\r\nSt Patrick\'s Cathedral, Cnr James &amp; Neil Sts, Toowoomba (<a href="https://goo.gl/maps/B184f8z8GMt" target="_blank" rel="noopener">Google map</a>).', 'St Patrick\'s Cathedral floral display', '', 'inherit', 'closed', 'closed', '', '351-revision-v1', '', '', '2018-01-30 11:41:41', '2018-01-30 01:41:41', '', 351, 'http://www.toowoombaregionalcouncil.com.au/tcof/351-revision-v1/', 0, 'revision', '', 0),
 (397, 1, '2018-01-30 11:42:19', '2018-01-30 01:42:19', '<h2>Fri 15 - Mon 18 Sep</h2>\r\nNOSTI presents a delightful display of Australian native orchids, exotic orchids, ferns, bromeliads and foliage plants. Plants, floral art and crafts are for sale with experienced growers and enthusiasts on hand to assist with growing and cultivation tips.\r\n\r\nCOST: Adult $3 | Child (14 years &amp; under) Free\r\n\r\nENQUIRIES: 0418 153 003 or 07 4630 1825.\r\n<h2>Times</h2>\r\n9am - 5pm daily (Monday 9am - 3pm).\r\n<h2>Location</h2>\r\nSt John\'s Lutheran Church Hall, 431 Bridge St, Toowoomba (<a href="https://goo.gl/maps/v7b9xfYQFby" target="_blank" rel="noopener">Google map</a>).', 'Native Orchid Society of Toowoomba spring show', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2018-01-30 11:42:19', '2018-01-30 01:42:19', '', 346, 'http://www.toowoombaregionalcouncil.com.au/tcof/346-revision-v1/', 0, 'revision', '', 0),
 (398, 2, '2018-01-30 11:42:46', '2018-01-30 01:42:46', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;Test content&quot;,&quot;content&quot;:&quot;Just a test...&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div><div id="pg-121-1"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-1-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-1-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="1" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:1,\\&quot;unit\\&quot;:\\&quot;years\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=none&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517276550158&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-1-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;1\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-1-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="121">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-121-0-0 , #pgc-121-1-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pg-121-0 , #pl-121 .so-panel { margin-bottom:30px } #pl-121 .so-panel:last-child { margin-bottom:0px } #pg-121-1.panel-no-style, #pg-121-1.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style , #pg-121-1.panel-no-style, #pg-121-1.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-121-0 .panel-grid-cell , #pg-121-1 .panel-grid-cell { margin-right:0 } #pg-121-0 .panel-grid-cell , #pg-121-1 .panel-grid-cell { width:100% } #pl-121 .panel-grid-cell { padding:0 } #pl-121 .panel-grid .panel-grid-cell-empty { display:none } #pl-121 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 11:42:46', '2018-01-30 01:42:46', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (399, 1, '2018-01-30 11:43:01', '2018-01-30 01:43:01', '<h2>Fri 15 - Wed 20 Sep</h2>\r\nClivia lovers come from all over Australia, and the world, to see the spectacular Toowoomba clivias. With the perfect climate and conditions to grow these gorgeous blooms, Toowoomba’s clivias come out in all their glory for Carnival. This world class display offers hands-on demonstrations and information on how to cultivate and grow clivia. Plants and seeds will also be available to purchase.\r\n\r\n2017 proceeds donated to St Vincent\'s Hospital.\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 0437 533 982 or rayandkerry@bigpond.com\r\n<h2>Times</h2>\r\n9am - 5pm daily.\r\n<h2>Location</h2>\r\nHorticultural Pavilion, Southern Queensland Institute of TAFE, 100 Bridge St, Toowoomba (<a href="https://goo.gl/maps/YEscRDzquKS2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Clivia Society show', '', 'inherit', 'closed', 'closed', '', '343-revision-v1', '', '', '2018-01-30 11:43:01', '2018-01-30 01:43:01', '', 343, 'http://www.toowoombaregionalcouncil.com.au/tcof/343-revision-v1/', 0, 'revision', '', 0),
 (400, 1, '2018-01-30 11:43:32', '2018-01-30 01:43:32', '<h2>Fri 15 - Wed 20 Sep</h2>\r\nSt Luke’s Anglican Church puts on magnificent floral displays by the Toowoomba Floral Art Group, with music concerts daily at 12:30pm. Drop into the hall to see a range of arts and crafts by local artisans and enjoy St Luke’s beautiful gardens.\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 07 4639 1910 or stluke.tmba@bigpond.com\r\n<h2>Times</h2>\r\n9am - 4pm daily.\r\n<h2>Location</h2>\r\nSt Luke\'s Anglican Church, 152 Herries St, Toowoomba (<a href="https://goo.gl/maps/nvVcEUbL41Q2" target="_blank" rel="noopener">Google map</a>).', 'St Luke\'s flower & music festival', '', 'inherit', 'closed', 'closed', '', '340-revision-v1', '', '', '2018-01-30 11:43:32', '2018-01-30 01:43:32', '', 340, 'http://www.toowoombaregionalcouncil.com.au/tcof/340-revision-v1/', 0, 'revision', '', 0),
 (401, 1, '2018-01-30 11:44:07', '2018-01-30 01:44:07', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nTake a relaxing walk on the farm and engage in interactive experiences with the animals. On-farm tours give your family every opportunity to pet, hand feed and learn basic husbandry skills. You will experience such things as cradling baby chickens, collecting fresh farm eggs, hand feeding the young pigs, picking a Protea to take home or walking through the established olive grove. You\'ll even be able to witness a hand milking demonstration!\r\n\r\nWhilst your children are kept busy, adults will touch on such topics of feeding your family on a budget using home grown food, food labels, processes to get your food to plate and how to tap into local producers and buy direct.\r\n\r\nAfter your tour, indulge in a \'picnic in the paddock\'. Picnic hampers are available to purchase, filled with an abundance of local produce grown on the farm and from reputable stallholders from Toowoomba Farmers Market.\r\n\r\nCOST: Adult $15 | Family (2 Adults, 2 Children) $50 | Children under 2 years Free\r\n\r\nENQUIRIES: 0439 844 849 or fiona@paddocktopotager.com.au\r\n<h2>Times</h2>\r\n9:30am - 11:30am daily.\r\n<h2>Location</h2>\r\n176 Merritts Creek Rd, Pechey (<a href="https://goo.gl/maps/y1MMmiM4CG32" target="_blank" rel="noopener">Google map</a>).', 'Paddock to Potager on-farm tours', '', 'inherit', 'closed', 'closed', '', '336-revision-v1', '', '', '2018-01-30 11:44:07', '2018-01-30 01:44:07', '', 336, 'http://www.toowoombaregionalcouncil.com.au/tcof/336-revision-v1/', 0, 'revision', '', 0),
 (402, 1, '2018-01-30 11:44:43', '2018-01-30 01:44:43', '<h2>Sat 16 - Tue 19 Sep</h2>\r\n<h4>If you want to see some of the region\'s award-winning large gardens and a little of the country surrounding Toowoomba in one day, then this is the tour for you!</h4>\r\nGuided by renowned local horticulturalist, Brian Sams and tour specialist, Wendy Allen, the four daily tours will visit some of the hidden gems that are often missed by visitors - the beautiful country gardens including the Grand Champion and Reserve Grand Champion and other winning and specialist country gardens.\r\n\r\nThis tour will take people on the roads less travelled through our rural countryside and give them the chance to discover the secrets of success from the garden owners themselves at each garden. Brian will be on hand to identify plants and to answer gardening questions.\r\n\r\nGuests will enjoy a lovely morning tea in a local garden as well as a delicious lunch in a unique country spot.\r\n\r\nGreat for people keen to see some of the rural areas and visit a number of great gardens. This is a small friendly group tour and numbers are limited.\r\n\r\nCOST: $135 per person\r\n\r\nENQUIRIES: 0409 814 200 or info@activateevents.net.au\r\n<h2>Times</h2>\r\n9am - 5:30pm each day.\r\n<h2>Location</h2>\r\nPick up from Toowoomba Visitor information Centre, 86 James St, Toowoomba (<a href="https://goo.gl/maps/HdPWYrJTGvp" target="_blank" rel="noopener">Google map</a>).', 'Cultivate carnival country garden day tour', '', 'inherit', 'closed', 'closed', '', '333-revision-v1', '', '', '2018-01-30 11:44:43', '2018-01-30 01:44:43', '', 333, 'http://www.toowoombaregionalcouncil.com.au/tcof/333-revision-v1/', 0, 'revision', '', 0),
 (403, 2, '2018-01-30 11:44:45', '2018-01-30 01:44:45', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:1,\\&quot;unit\\&quot;:\\&quot;years\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=none&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517276550158&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="121">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-121-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-121 .so-panel { margin-bottom:30px } #pl-121 .so-panel:last-child { margin-bottom:0px } #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-121-0 .panel-grid-cell { margin-right:0 } #pg-121-0 .panel-grid-cell { width:100% } #pl-121 .panel-grid-cell { padding:0 } #pl-121 .panel-grid .panel-grid-cell-empty { display:none } #pl-121 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 11:44:45', '2018-01-30 01:44:45', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (404, 2, '2018-01-30 11:45:06', '2018-01-30 01:45:06', '<div id="pl-404"  class="panel-layout" ><div id="pg-404-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-404-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-404-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:1,\\&quot;unit\\&quot;:\\&quot;years\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=none&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517276550158&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-404-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="404">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-404-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-404 .so-panel { margin-bottom:30px } #pl-404 .so-panel:last-child { margin-bottom:0px } #pg-404-0.panel-no-style, #pg-404-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-404-0.panel-no-style, #pg-404-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-404-0 .panel-grid-cell { margin-right:0 } #pg-404-0 .panel-grid-cell { width:100% } #pl-404 .panel-grid-cell { padding:0 } #pl-404 .panel-grid .panel-grid-cell-empty { display:none } #pl-404 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Festival Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 11:45:06', '2018-01-30 01:45:06', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (405, 2, '2018-01-30 11:45:06', '2018-01-30 01:45:06', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:1,\\&quot;unit\\&quot;:\\&quot;years\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=none&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517276550158&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="121">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-121-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-121 .so-panel { margin-bottom:30px } #pl-121 .so-panel:last-child { margin-bottom:0px } #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-121-0 .panel-grid-cell { margin-right:0 } #pg-121-0 .panel-grid-cell { width:100% } #pl-121 .panel-grid-cell { padding:0 } #pl-121 .panel-grid .panel-grid-cell-empty { display:none } #pl-121 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Festival Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 11:45:06', '2018-01-30 01:45:06', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (406, 1, '2018-01-30 11:45:16', '2018-01-30 01:45:16', '<h2>Sun 17 Sep</h2>\r\nThis walking tour of new chic Toowoomba venues begins with Korean and Japanese entrees at Kajoku. Enjoy mains, sourced from local ingredients, at Zev\'s Bistro, Toowoomba\'s only AGFG Chef Hatted restaurant, finishing with dessert in the warehouse-style setting of Muller Bros. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Sunday 17 Sept (lunch tour)\r\n\r\nCOST: Adult $99\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>ENTRÉE - KAJOKU</h4>\r\nDrinks: Glass of beer, soft drink, red or white wine\r\n\r\nFood: Korean - Japchae, a traditional small dish of sweet potato noodles, beef and vegetables with a sweet soy flavour OR Japanese - small serve of Kara-age chicken, a common pub snack or a few pieces of marinated and fried tender chicken served with fresh lemon and Japanese mayonnaise, and Wakame salad, shredded kelp seasoned with vinegar and sesame (alternate drop).\r\n<h4>MAIN MEAL - ZEV\'S BISTRO</h4>\r\nDrinks: Glass of beer, red or white wine\r\n\r\nFood: Pulled duck, hand cut spelt pappardelle, asparagus and tarragon OR Market fish, white bean and kimchi broth, charred greens, salted lemon (alternate drop).\r\n<h4>DESSERT - MULLER BROS</h4>\r\nDrinks: Glass of house beer, house wine or soft drink\r\n\r\nFood: White chocolate pannacotta with coconut yoghurt, berries and toasted coconut OR Tiramisu-layered espresso trifle (alternate drop).\r\n<h2>Times</h2>\r\nPick-up at 11:45am, Returns 3:15pm.\r\n<h2>Location</h2>\r\nPick-up at Kajoku, 1/430 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/tLHP2Ecmvct" target="_blank" rel="noopener">Google map</a>).', 'Private: Progressive food & wine walking tour', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2018-01-30 11:45:16', '2018-01-30 01:45:16', '', 330, 'http://www.toowoombaregionalcouncil.com.au/tcof/330-revision-v1/', 0, 'revision', '', 0),
 (407, 1, '2018-01-30 11:46:35', '2018-01-30 01:46:35', '<h2>Sat 23 Sep</h2>\r\nDiscover more of Toowoomba\'s flavours on this progressive dinner tour beginning with canapes and an exclusive guided tour of Cobb &amp; Co Museum\'s Carriage Room. Enjoy mains at the historic Gip\'s Restaurant, formerly an 1860s mansion, followed by scrumptious dessert at Picnic Point Restaurant. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Saturday 23 Sept (dinner tour)\r\n\r\nCOST: Adult $129\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>CANAPÉS - COBB &amp; CO MUSEUM</h4>\r\nDrinks: Glass of white wine, sparkling wine of beer\r\n\r\nFood: Crab Spring rolls infused with chilli and lime, Gourmet peppercorn beef pies and Bruschetta (Mushroom, mascarpone &amp; toasted hazelnuts or Tomato, basil olives &amp; roast capsicum)\r\n<h4>MAIN MEAL - GIP\'S RESTAURANT</h4>\r\nDrinks: Glass of red wine or white wine\r\n\r\nFood: MSA fillet of beef, confit garlic &amp; horseradish mash, buttered spinach &amp; beetroot relish GF OR Pan seared Tasmanian salmon with chilli, lime sambal &amp; pickled vegetable salad GF (alternate drop).\r\n\r\nAll served with seasonal vegetables.\r\n<h4>DESSERT - PICNIC POINT</h4>\r\nDrinks: Glass of wine, beer or soft drink\r\n\r\nFood: Rosewater and vanilla brulee with sugared flowers and glass biscuits OR Chocolate marquise with honey crème fraiche and pistachio biscotti (alternate drop).\r\n<h2>Times</h2>\r\nPick-up at 5:15pm, Returns 9pm.\r\n<h2>Location</h2>\r\nPick-up Picnic Point Bus Stop, Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/8RMveBTcMn32" target="_blank" rel="noopener">Google map</a>).', 'Progressive food & wine tour - 2', '', 'inherit', 'closed', 'closed', '', '327-revision-v1', '', '', '2018-01-30 11:46:35', '2018-01-30 01:46:35', '', 327, 'http://www.toowoombaregionalcouncil.com.au/tcof/327-revision-v1/', 0, 'revision', '', 0),
 (408, 1, '2018-01-30 11:47:11', '2018-01-30 01:47:11', '<h2>Fri 22 Sep</h2>\r\nJoin us on our gourmet progressive dinner tour beginning with sunset drinks and entrees at Picnic Point Restaurant. Enjoy mains at Inbound Restaurant adjoining the historic Railway Station and a decadent dessert at Artisan Pizza. Tour includes all meals and a drink at each venue.\r\n\r\nWHEN: Friday 22 Sept (dinner tour)\r\n\r\nCOST: Adult $129\r\n<h3>FOOD &amp; WINE MENU</h3>\r\n<h4>ENTRÉE - PICNIC POINT</h4>\r\nDrinks: Glass of wine, beer or soft drink\r\n\r\nFood: Confit of duck leg on Asian salad with sesame lime dressing and turkish delight pearls OR Finely sliced chicken laksa curry on lemon grass infused sweet potato topped with a pak choi and bean sprout salad (alternate drop).\r\n<h4>MAIN MEAL - INBOUND</h4>\r\nDrinks: Glass of Shiraz Cabernet or Sauvignon Blanc\r\n\r\nFood: Seared fillet of Darling Downs beef, caramelised onion tart, port wine jus OR Slow roasted local pork belly, smooth green apple and jus (alternate drop).\r\n\r\nAll served with house bread and seasonal vegetables.\r\n<h4>DESSERT - ARTISAN PIZZA</h4>\r\nDrinks: Glass of dessert wine\r\n\r\nFood: Dessert plate consisting of petite Artisan Italian doughnuts with a berry compote, complimented with a vanilla pannacotta, fruit jelly and macadamia praline, served with white chocolate and raspberry ice cream.\r\n<h2>Times</h2>\r\nPick-up at 5:30pm, Returns 8:45pm.\r\n<h2>Location</h2>\r\nPick-up Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://goo.gl/maps/NJERBWdPs892" target="_blank" rel="noopener">Google map</a>).', 'Progressive food & wine tour - 1', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2018-01-30 11:47:11', '2018-01-30 01:47:11', '', 324, 'http://www.toowoombaregionalcouncil.com.au/tcof/324-revision-v1/', 0, 'revision', '', 0),
 (409, 1, '2018-01-30 11:48:58', '2018-01-30 01:48:58', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nIt\'s Sideshow Alley, it\'s Adrenaline Avenue, it\'s Extreme Street! Head to Lower Queens Park for thrill-seeking rides, fairy floss, dagwood dogs and show bags! Have a shot at winning a top shelf prize at one of the sideshow games or take in a birdseye view upside down from the heart-stopping 360º ride. Presented by Storage King.\r\n<h3>FREE ENTRY</h3>\r\nRides and some activities require coupons.\r\n$2 = one coupon, $30 = 18 coupons, $60 = 40 coupons, $99 = 70 coupons\r\n<h2>Isaiah</h2>\r\nAt just 17 years of age, Isaiah is a global success. After winning The X Factor in 2016, Isaiah released his debut album that charted all over the world and notched up millions of international streams. Don\'t miss seeing the 2017 Australian entrant for Eurovision live in action at Sideshow Alley.\r\n\r\nTIMES: Sunday 4pm\r\n<h2>Fireworks</h2>\r\nThe skies over Toowoomba will light up with breathtaking displays over three nights. The trees will light up and so will the kids\' faces!\r\n\r\nTIMES: Friday &amp; Saturday 8:30pm, Sunday 7:30pm\r\n<h3>Matt Hollywood</h3>\r\nYou are in for a serve of side splitting laughter and magic that you won\'t want to end. Matt Hollywood is one of Australia\'s most recognised comedy entertainers and magicians. Mind-blowing acts will shock and astound you in this grand illusions magic show.\r\n\r\nTIMES: Friday &amp; Saturday 7pm\r\n<h3>Creating Science</h3>\r\nJoin Dr Joe in amazing \'wizz bang\' science experiments. He is not only going to entertain you with explosions, he is going to blow your minds.. This real-life scientist will leave you amazed with his flower explosions!\r\n\r\nTIMES: Saturday 1:30pm &amp; 4:45pm\r\n<h3>Dr Hubble\'s Big Bubble Show</h3>\r\nEveryone loves bubbles but Dr Hubble really loves bubbles and he wants to show you why. Join Dr Hubble on a fun journey into the beautiful world of bubbles. You\'ll see bubbles inside bubbles, square bubbles, explode-a-bubbles and the world famous kid-in-a-bubble.\r\n\r\nTIMES: Sunday 1:45pm &amp; 6pm.\r\n<h2>Times</h2>\r\nFriday 15 Sept 4pm - 10pm\r\nSaturday 16 Sept 10am - 10pm\r\nSunday 17 Sept 10am - 9pm.\r\n<h2>Location</h2>\r\nFrogs Hollow, Lower Queens Park, Margaret St, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Sideshow alley', '', 'inherit', 'closed', 'closed', '', '321-revision-v1', '', '', '2018-01-30 11:48:58', '2018-01-30 01:48:58', '', 321, 'http://www.toowoombaregionalcouncil.com.au/tcof/321-revision-v1/', 0, 'revision', '', 0),
 (410, 1, '2018-01-30 11:49:49', '2018-01-30 01:49:49', '<h2><span class="uppercase">Sat 16 Sep - Starts 3pm</span></h2>\r\n100,000 people line the street as hundreds of flowery floats wind their way through the heart of the city. This year’s wonderful theme is "Carnival Comes to Town – Laugh, Play, Hooray!". Street performers, carnival characters, incredible inflatables and stilt walkers escort the stunning floral floats on their journey to Queens Park.\r\n\r\nBe early to grab a good viewing spot because the whole town and thousands of visitors turn out for the Parade! There’s free chalk so you can make your own artistic mark on the parade route and when it’s over, head for the Godsall Oval where the floats are on display and the flowers, fruit and veges that decorated them will be available for sale!\r\n\r\nThe parade departs from the corner of Herries &amp; Hume Streets, continues along Herries St, turns right into Ruthven St, right into Margaret St, left onto Hume St and finishes on Godsall Oval on the corner of Hume &amp; Godsall Streets.\r\n\r\nPLAN YOUR DAY: For Parade Road Closure details and times, please click <a href="http://tcof.com.au/wp-content/uploads/2017/05/TCOF-Road-Closure-Map.pdf" target="_blank" rel="noopener">here</a>.\r\n<h2></h2>\r\n<img class="alignnone size-medium wp-image-1527" src="/wp-content/uploads/2017/05/Floral-Parade-Map-2017-300x189.png" alt="" width="300" height="189" />\r\n\r\n&nbsp;\r\n<h3>Hot Tip:</h3>\r\nJump on the <a href="http://tcof.com.au/events/full-day-grand-parade-garden-tour/">Full Day Garden and Parade Tour</a> and see the best private gardens and secure your very own reserved seat at the Grand Central Floral Parade!\r\n\r\n&nbsp;', 'Grand Central floral parade', '', 'inherit', 'closed', 'closed', '', '318-revision-v1', '', '', '2018-01-30 11:49:49', '2018-01-30 01:49:49', '', 318, 'http://www.toowoombaregionalcouncil.com.au/tcof/318-revision-v1/', 0, 'revision', '', 0),
 (411, 1, '2018-01-30 11:50:29', '2018-01-30 01:50:29', '<h2>Thu 14 Sep</h2>\r\nYou\'re invited to dine in style with celebrity chef special guest, Anna Gare, in beautiful Laurel Bank Park to officially celebrate the start of the 2017 Toowoomba Carnival of Flowers with an opening night gala dinner. This unforgettable degustation dining experience combines the very best of local produce and delicious matching wines.\r\n\r\nCOST: Adult $185\r\n<h3>DEGUSTATION MENU</h3>\r\n<h4>CANAPÉS</h4>\r\nBorrowdale’s pork terrine on croutes, apple brandy gel from Sutton’s farm, UB’s Farm cherry tomato\r\nStrawberry field explosion, Emmo Farms goat cheese mousse, Lirah\'s aged balsamic glaze\r\nFour Brothers tempura batter zucchini flower, black garlic aioli\r\n<h4>FIRST COURSE</h4>\r\nCarnival of Flowers Edible Garden Inspired by the Carnival of Flowers, Downs Farm fresh cauliflower puree, smoked semi dried tomatoes from UB’s Farm, mushroom soil, pickled radish from Preston Peak, Baker’s Duck croutons, asparagus, baby red sorrel, gribiche sauce and edible flowers.\r\n<h4>SECOND COURSE</h4>\r\nThe Carnival Catch Pan seared jade perch from 9Dorf Farms, charred endive infused with saffron grown especially for this dinner from UB’s Farm, smoked capsicum coulis from Downs Farm fresh, beetroot dust from Preston Peak and roasted pecan nuts from Stahmann Farms.\r\n<h4>VEGETARIAN OPTION</h4>\r\nStuffed Zucchini Cannelloni (v) Charred endive infused with saffron grown especially for this dinner from UB’s Farm, smoked capsicum coulis from Downs Farm fresh, beetroot dust from Preston Peak and roasted pecan nuts from Stahmann Farms.\r\n<h4>THIRD COURSE</h4>\r\nCarnival Canard Sous vide duck breast from Darling Downs Hatchery, Hampton blueberry gel, pickled grapes, sweet potato from Wickham Farms, seasonal baby vegetables, served with a Preston Peak red wine emulsion.\r\n<h4>VEGETARIAN OPTION</h4>\r\nCarrot timbale (v) Sweet potato puree, baby vegetable, chives cream sauce and micro herb.\r\n<h4>FOURTH COURSE</h4>\r\nThe Carnival Ball Seatonfire Chocolate sphere, vanilla lemon crème patisserie, Hampton blueberries ,micro mint, lemon balm, macadamia crumble from Stahmann Farms.\r\n<h2>Times</h2>\r\n6pm.\r\n<h2>Location</h2>\r\nLaurel Bank Park, 50 Hill St, Toowoomba (<a href="https://goo.gl/maps/wB2J5mp5twJ2" target="_blank" rel="noopener">Google map</a>).', 'Qantaslink gala dinner – A magical night under the stars', '', 'inherit', 'closed', 'closed', '', '314-revision-v1', '', '', '2018-01-30 11:50:29', '2018-01-30 01:50:29', '', 314, 'http://www.toowoombaregionalcouncil.com.au/tcof/314-revision-v1/', 0, 'revision', '', 0),
 (412, 1, '2018-01-30 11:51:16', '2018-01-30 01:51:16', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nWhen the music is this good you just have to go with it. Let your hair down and enjoy another sublime line-up. The Heritage Bank Live Concert Series is held in conjunction with the Ergon Energy Food &amp; Wine Festival. One ticket gets you into both so you can enjoy fine food and wine while soaking up cool concert sounds.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>MAIN STAGE<img class="alignnone size-thumbnail wp-image-1340" src="/wp-content/uploads/2017/04/P1010034ret-web-550wd-150x150.jpg" alt="" width="150" height="150" /></h2>\r\n<h3>Friday 15 Sept</h3>\r\n5:30pm Alex Lahey\r\n\r\n7:00pm The Paper Kites\r\n\r\n8:30pm The Temper Trap\r\n\r\n&nbsp;\r\n\r\n<img class="alignnone size-thumbnail wp-image-1491" src="/wp-content/uploads/2017/05/HotPotatoBand_1302x852-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1496" src="/wp-content/uploads/2017/05/TheVoices_1302x852-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1502" src="/wp-content/uploads/2017/05/TheAngels_1302x852-150x150.jpg" alt="" width="150" height="150" />\r\n<h3>Saturday 16 Sept</h3>\r\n5:30pm Hot Potato Band\r\n\r\n7:00pm The Voices\r\n\r\n8:30pm The Angels\r\n\r\n&nbsp;\r\n\r\n<img class="alignnone size-thumbnail wp-image-1345" src="/wp-content/uploads/2017/04/The-Diamonds-MR_0011-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1347" src="/wp-content/uploads/2017/04/Boys-in-the-Band-HR-image-3-150x150.jpg" alt="" width="150" height="150" /> <img class="alignnone size-thumbnail wp-image-1349" src="/wp-content/uploads/2017/04/Darryl-150x150.jpg" alt="" width="150" height="150" />\r\n<h3>Sunday 17 Sept</h3>\r\n5:00pm The Diamonds\r\n\r\n6:15pm Boys in the Band\r\n\r\n7:45pm Daryl Braithwaite\r\n\r\n&nbsp;\r\n<h2>Times</h2>\r\nFriday 15 Sept 10am – 10pm\r\nSaturday 16 Sept 10am – 10pm\r\nSunday 17 Sept 10am – 9pm.\r\n<h2>Location</h2>\r\nThe Heritage Bank Community Stage - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Heritage Bank live concert series', '', 'inherit', 'closed', 'closed', '', '311-revision-v1', '', '', '2018-01-30 11:51:16', '2018-01-30 01:51:16', '', 311, 'http://www.toowoombaregionalcouncil.com.au/tcof/311-revision-v1/', 0, 'revision', '', 0),
 (413, 1, '2018-01-30 11:51:54', '2018-01-30 01:51:54', '<h2>Sat 16 - Sun 17 Sep</h2>\r\nYour kids will love the amazing interactive space designed just for them. During Carnival the space hosts performances on the main stage by Ben &amp; Holly\'s Little Kingdom as well as a dedicated children\'s program encouraging kids of all ages to play, design, build and create.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h3>Ben &amp; Holly\'s Little Kingdom</h3>\r\nJoin the adventures of Holly, a young fairy princess and her best friend Ben the elf, in a funny and enchanting world where elves and fairies live alongside animals and insects and the flowers and grass rise above the tallest towers.\r\n\r\nWHEN: Sat 16 Sept\r\n\r\nTIME: 11am &amp; 12:30pm\r\n<h3>Super size sandpit</h3>\r\nThe mega sandpit brings the builder out in every kid with tools, pipes and wheelbarrows for them to construct, destruct and enjoy.\r\n<h3>Blooming Bunnings</h3>\r\nThe hardware experts will show kids how to make planter boxes.\r\n<h3>Free face painting</h3>\r\nButterflies, princesses and superheroes will unleash their artistic powers on those cute little Carnival faces.\r\n<h3>City chicks</h3>\r\nChildren can pat ducklings as well as fluffy and heritage chickens. There will also be a native bee display with real hives, bees and accessories.\r\n<h3>Kath Dickson Family Care</h3>\r\nEnjoy garden-themed craft projects for the young (and young at heart) with the early childhood experts from Kath Dickson Family Centre.\r\n<h3>Chef Carmel</h3>\r\nChildren will create their very own tasty savoury muffin from scratch. Join Chef Carmel in the kitchen and learn how to use fresh ingredients to make fluffy, delicious muffins. Lunch is served!\r\n\r\nWHEN: Sat 16 &amp; Sun 17 Sept\r\n\r\nTIME: 10am - 4pm\'\r\n<h2>Times</h2>\r\nSaturday 16 &amp; Sunday 17 Sept 10am - 5pm.\r\n<h2>Location</h2>\r\nThe Cubby House - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'The Cubby House', '', 'inherit', 'closed', 'closed', '', '308-revision-v1', '', '', '2018-01-30 11:51:54', '2018-01-30 01:51:54', '', 308, 'http://www.toowoombaregionalcouncil.com.au/tcof/308-revision-v1/', 0, 'revision', '', 0),
 (414, 1, '2018-01-30 11:52:50', '2018-01-30 01:52:50', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nCan\'t tell your pale ale from your pilsner? No worries, our tasting sessions will soon fix that. Find out all about beer styles, flavours and food-matching. Pair your brew with traditional low and slow BBQ wood-fired meats and you\'ve got yourself a perfect match.\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 12:30pm, 2:30pm\r\nSaturday 16 Sept 12pm, 2pm\r\nSunday 17 Sept 12pm, 2pm\r\n<h2>Location</h2>\r\nThe Kitchen, Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Beer & BBQ tasting', '', 'inherit', 'closed', 'closed', '', '297-revision-v1', '', '', '2018-01-30 11:52:50', '2018-01-30 01:52:50', '', 297, 'http://www.toowoombaregionalcouncil.com.au/tcof/297-revision-v1/', 0, 'revision', '', 0),
 (415, 1, '2018-01-30 11:53:24', '2018-01-30 01:53:24', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nIt\'s been another vintage year for our boutique wineries and the twenty plus cellar doors in our region. Local family-owned wineries come together at Carnival to showcase their wines - don\'t miss a chance to savour and sample the grape varieties.\r\n\r\nLearn how to taste and describe wine like an expert at free sessions in our Wine Bar. Now there\'s an afternoon well spent!\r\n\r\nThis is included in the tickets for Ergon Energy Food &amp; Wine Festival, incorporating Heritage Bank Live Concert Series.\r\n<h2>Times</h2>\r\nFriday 15 Sept 4pm, 5pm\r\nSaturday 16 Sept 12:30pm, 2:30pm, 4:30pm\r\nSunday 17 Sept 12:30pm, 2:30pm, 4:30pm\r\n<h2>Location</h2>\r\nWine Bar - Upper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba.', 'Wine appreciation', '', 'inherit', 'closed', 'closed', '', '294-revision-v1', '', '', '2018-01-30 11:53:24', '2018-01-30 01:53:24', '', 294, 'http://www.toowoombaregionalcouncil.com.au/tcof/294-revision-v1/', 0, 'revision', '', 0),
 (416, 1, '2018-01-30 11:54:01', '2018-01-30 01:54:01', '<h2>Fri 15 - Sun 17 Sep</h2>\r\nFor three mouth-watering days, you can sample the world-famous produce of Southern Queensland Country, all in one place. Treat yourself to incredible flavours, produce and wine fresh from the bountiful pastures, orchards and wine vineyards of the region. Plus, meet one of the nation\'s favourite gardening presenters, Sophie Thomson and celebrity chef TV personality, Anna Gare. Both are appearing live to show us how they create their magic!\r\n\r\nErgon Energy Food &amp; Wine Festival incorporating Heritage Bank Live Concert Series 2017.\r\n<div class="issuuembed" style="width: 617px; height: 435px;" data-configid="9079663/53124039"></div>\r\n<script type="text/javascript" src="//e.issuu.com/embed.js" async="true"></script>\r\n\r\n[table id=18 /]\r\n\r\n[table id=19 /]\r\n<h4>SPECIAL PENSIONER PRICE FOR FRIDAY ONLY - $15 AT THE GATE</h4>\r\nTo see what is included and for more information visit our <a href="http://tcof.com.au/visitor-information/ticketing-information/">Ticketing Information</a>.\r\n<h2>Times</h2>\r\nFriday 15 Sept 10am – 10pm\r\nSaturday 16 Sept 10am – 10pm\r\nSunday 17 Sept 10am – 9pm.\r\n<h2>Location</h2>\r\nUpper Queens Park, Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/hFeY1K1kCHR2" target="_blank" rel="noopener">Google map</a>).', 'Ergon Energy Food & Wine Festival', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2018-01-30 11:54:01', '2018-01-30 01:54:01', '', 291, 'http://www.toowoombaregionalcouncil.com.au/tcof/291-revision-v1/', 0, 'revision', '', 0),
 (417, 1, '2018-01-30 11:56:30', '2018-01-30 01:56:30', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nPack a picnic and bring the family along to musical delight and activities among the flower beds. Throughout Carnival our parks will come alive with music, entertainment and blooms.\r\n\r\nThere will be something for everyone - specific bands, musicians and locations will be announced soon.\r\n\r\nCOST: Free\r\n<h3>PICNIC POINT</h3>\r\n<h4>FRI 15 SEPT</h4>\r\n11am-3pm \'Undercover\' (Pop, Jazz, Rock \'n\' Roll) at Bandstand\r\n<h4>SAT 16 SEPT</h4>\r\n11am-3pm \'Greg Bird &amp; Friends\' (Jazz, Swing, Latin, Evergreen) at Bandstand\r\n3:30pm-5:30pm \'Webb Family Band\' (Folk, Retro Classics) at Lookout Area\r\n<h4>SUN 17 SEPT</h4>\r\n9am-10:45am \'Toowoomba Concert Band &amp; Second Wind Community Band\' (Concert Band) at Lookout Area\r\n11am-3pm \'Around the Corner\' (Irish Folk Songs - traditional, classical) at Bandstand\r\n<h4>MON 18 SEPT</h4>\r\n11am-3pm \'Swing Magic\' (Swing Jazz) at Bandstand\r\n<h4>TUE 19 SEPT</h4>\r\n11am-3pm \'Toowoomba Grammar School R\'n\'B Band\' (School Band) at Bandstand\r\n<h4>WED 20 SEPT</h4>\r\n11am-3pm \'Blue Room Blues\' (Blues) at Bandstand\r\n<h4>THU 21 SEPT</h4>\r\n11am-3pm \'Zephyr Project\' (Rockabilly) at Bandstand\r\n<h4>FRI 22 SEPT</h4>\r\n11am-3pm \'Top Gear\' (Rock \'n\' Roll) at Bandstand\r\n<h4>SAT 23 SEPT</h4>\r\n11am-3pm \'2 Timing\' (Swing, Rock \'n\' Roll, Pop, Country) at Bandstand\r\n<h4>SUN 24 SEPT</h4>\r\n11am-3pm \'Slow Train Coming\' (Rock, Pop, Blues, Jazz, Soul, Memphis) at Bandstand\r\n\r\n*correct at time of printing\r\n<h3>QUEENS PARK</h3>\r\n<h4>FRI 15 SEPT</h4>\r\n11am-3pm \'Risky Business\' (Old Time Music) at Cannon Area\r\n<h4>SAT 16 SEPT</h4>\r\n10am-2pm \'Black Velvet Quartet\' (Latin, Traditional Jazz) at Cannon Area\r\n1pm-5pm \'Mirrors of Mirth\' (Acoustic Rock) at Historical Society\r\n2:30pm-5:30pm \'Lenna-Maree Moxey Trio\' (Jazz) at Cannon Area\r\n4pm-5:45pm \'High Altitude Harmony\' (Gospel, Rock, A cappella) Roving Entertainment\r\n<h4>SUN 17 SEPT</h4>\r\n10am-10:35am, 12pm-12:35pm \'Divas in the Park\' (Opera) at Cannon Area\r\n10:40am-11:20am, 11:25am-11:55am \'Women in Harmony &amp; Toowoomba Vocal Ensemble\' (Choral) at Cannon Area\r\n11am-12pm, 1pm-3pm \'Julie Witney\' (Swing Jazz) at Historical Society\r\n4pm-6pm \'Jungle Detour\' (Folk, Indie, Easy Listening Pop) at Cannon Area\r\n<h4>MON 18 SEPT</h4>\r\n9am-9:30am Rugbytots Darling Downs (2-7 years) at Godsall St Oval\r\n10am-10:45am General Yoga with Shannon Townsend at Gypsy Camp\r\n11am-3pm \'Alison Bryant Band\' (Pop, Swing, Latin, Blues) at Cannon Area\r\n<h4>TUE 19 SEPT</h4>\r\n11am-3pm \'The Fes\' (Pop, Acoustic) Roving Entertainment\r\n<h4>WED 20 SEPT</h4>\r\n10am-10:45am General Yoga with Shannon Townsend at Gypsy Camp\r\n11am-3pm \'Stu Bacca\' (One Man Band) at Cannon Area\r\n<h4>THU 21 SEPT</h4>\r\n11am-3pm \'The Pioneers\' (Folk, Bush Ballads, Country, Celtic) at Flower Beds\r\n<h4>FRI 22 SEPT</h4>\r\n10:30am-11am Zumba Gold for Beginners with FITness FIXXation at Central Flower Beds\r\n11am-11:30am Zumba Fitness for All Ages with FITness FIXXation at Central Flower Beds\r\n11am-3pm \'Darlington String Quartet\' (String Quartet) at Cannon Area\r\n<h4>SAT 23 SEPT</h4>\r\n11am-3pm \'Jazzy Chats\' (Jazz, Swing, Contemporary) at Cannon Area\r\n<h4>SUN 24 SEPT</h4>\r\n9:30am-10:15am Tai Chi with Chinese Martial Arts &amp; Health Centre Australia at Gypsy Camp\r\n11am-3pm \'Connect the Dots Jazz Band\' (Jazz, Swing) at Cannon Area\r\n\r\n*correct at time of printing\r\n<h3>LAUREL BANK PARK</h3>\r\n<h4>FRI 15 SEPT</h4>\r\n11am-3pm \'The Range\' (Pop, Timeless Classics) at Music Tent\r\n<h4>SAT 16 SEPT</h4>\r\n9:30am-10am Tai Chi with Taoist Tai Chi Society at Middle Park\r\n9:30am-11:10am, 12:30pm-1:30pm \'Jim Miller Big Band\' (Swing Band) at Music Tent\r\n10am-11am Spring into Yoga Display at Perch Garden\r\n10am-12pm \'Connor Sharpe\' (Saxophone) at Perch Garden\r\n11am-3pm Face Painting with Big Top Face Painting at Herries St\r\n11am-3pm Balloon Sculpture with Cleo the Clown at Herries St\r\n11:30am-12:15pm \'Vavachi Entertainment\' (Great Disney Movie Songs) at Topiary Garden\r\n2pm-5:30pm \'Vavachi Entertainment\' (Jazz, Swing, Musical Theatre) at Music Tent\r\n<h4>SUN 17 SEPT</h4>\r\n9:30am-11am \'Nancy Webb\' (Harp) at Perch Garden\r\n11am-3pm \'Let\'s Dance Band\' (Dance in the Park) at Music Tent\r\n11am-3pm Face Painting with Big Top Face Painting at Herries St\r\n11am-3pm Balloon Sculpture with Cleo the Clown at Herries St\r\n<h4>MON 18 SEPT</h4>\r\n11am-3pm \'Whisky Mac\' (Pop, Folk, Rock \'n\' Roll) at Music Tent\r\n<h4>TUE 19 SEPT</h4>\r\n11am-3pm \'Paul Edwards Quartet\' (Jazz) at Music Tent\r\n<h4>WED 20 SEPT</h4>\r\n8am-9am Energise for Adults with Resolutions Fitness at Gazebo\r\n11am-3pm \'Timeless\' (Timeless Tunes) at Music Tent\r\n<h4>THU 21 SEPT</h4>\r\n11am-3pm \'Flashback\' (Rock \'n\' Roll, Country Rock) at Music Tent\r\n<h4>FRI 22 SEPT</h4>\r\n11am-3pm \'Special Guest\' (Pop, Rock, Funk) at Music Tent\r\n3pm-5:30pm Kids Hotshot Tennis with Tennis Queensland at Middle Park\r\n<h4>SAT 23 SEPT</h4>\r\n11am-3pm \'Local Toowoomba Catholic Schools\' (School Musical Performances) at Music Tent\r\n3pm-5:30pm Kids Hotshot Tennis with Tennis Queensland at Middle Park\r\n<h4>SUN 24 SEPT</h4>\r\n10:30am-11:30am Konga for All Ages with FITness FIXXation at Gazebo\r\n12pm-4pm \'Harlaxton RSL Brass Band\' (Traditional Brass Band Music) at Music Tent\r\n\r\n*correct at time of printing\r\n<h2>Locations</h2>\r\nPicnic Point Park\r\n\r\nLaurel Bank Park\r\n\r\nQueens Park Botanic Garden', 'Parkland Entertainment', '', 'inherit', 'closed', 'closed', '', '288-revision-v1', '', '', '2018-01-30 11:56:30', '2018-01-30 01:56:30', '', 288, 'http://www.toowoombaregionalcouncil.com.au/tcof/288-revision-v1/', 0, 'revision', '', 0),
 (418, 1, '2018-01-30 11:57:39', '2018-01-30 01:57:39', '<h2>Mon 18 - Thu 21 Sep</h2>\r\nEnter the twilight zone and discover the secret world of the parklands by night. This is your chance to see and hear from the experts about the darker side of plant life in a one-hour nocturnal tour of Laurel Bank Park.\r\n\r\nThrow the spotlight on some shady characters from far off places like English and Spanish oaks, Gingko trees and Japanese maples. Track down exotic and rare species, and find out what goes on behind the scenes to create our picture-perfect park.\r\n\r\nThe tour meets on the northern side of Laurel Bank Park Hall on Hill St. Book now to secure your spot on a guided tour with a Laurel Bank Park gardener!\r\n\r\nCOST: $5 per person, book now to secure your place.\r\n<h2>Times</h2>\r\n6:30pm daily.\r\n<h2>Location</h2>\r\nLaurel Bank Park Hall, 50 Hill St, Toowoomba (<a href="https://goo.gl/maps/Tbr4xDgja9U2" target="_blank" rel="noopener">Google map</a>).', 'Twilight tours of Laurel Bank Park', '', 'inherit', 'closed', 'closed', '', '285-revision-v1', '', '', '2018-01-30 11:57:39', '2018-01-30 01:57:39', '', 285, 'http://www.toowoombaregionalcouncil.com.au/tcof/285-revision-v1/', 0, 'revision', '', 0),
 (419, 1, '2018-01-30 11:58:21', '2018-01-30 01:58:21', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nTo make getting around the city as enjoyable and hassle-free as possible, a Park Shuttle Bus will operate each day during the Toowoomba Carnival of Flowers. The shuttle bus will travel a loop of the public parks and the CBD.\r\n\r\nSimply park the car at Picnic Point (there\'s lots of parking!), purchase your ticket and jump on the next shuttle bus. Tickets will be available to purchase at Toowoomba Carnival of Flowers Info Hubs located in the Parks from Thursday 14th September.\r\n\r\nIMPORTANT: Last departure from Picnic Point is 4pm each day.\r\n<h4>DAILY COST</h4>\r\nAdult $10 | Child (13 years &amp; under) $5 per day\r\n<h4>TIMES</h4>\r\n9am - 5pm daily.\r\n\r\nEvery hour Monday-Thursday\r\nEvery 30 minutes Friday-Sunday\r\n<h4>LOCATIONS</h4>\r\nPicnic Point (Tourist Rd - <a href="https://goo.gl/maps/ixMmPX82wzs" target="_blank" rel="noopener">Google map</a>)\r\nQueens Park Botanic Gardens (Lindsay St)\r\nToowoomba CBD (Bus Interchange, Neil St)\r\nLaurel Bank Park (Hill St)\r\n<h4>BOOKINGS</h4>\r\nTickets available at Toowoomba Carnival of Flowers Info Hubs', 'Park shuttle bus', '', 'inherit', 'closed', 'closed', '', '283-revision-v1', '', '', '2018-01-30 11:58:21', '2018-01-30 01:58:21', '', 283, 'http://www.toowoombaregionalcouncil.com.au/tcof/283-revision-v1/', 0, 'revision', '', 0),
 (420, 1, '2018-01-30 11:58:54', '2018-01-30 01:58:54', '<h2>Sat 16 - Sun 17 Sep</h2>\r\nReturn to yesteryear on a steam train tour from Brisbane to Toowoomba operated by the Australian Railway Historical Society. In Toowoomba you’ll join a coach tour around some of the prize-winning gardens. You can pre-order a 2 course lunch with your ticket at a well-known Toowoomba restaurant (additional cost of $28.50).\r\n\r\nCOST: Adult $129 | Concession $119 | Child (4-15yrs) $65 | Family $380\r\n\r\nBOOKINGS: Sunshine Express Rail Tours 07 3252 1759 (10am - 3pm, Tue–Thu)\r\n<h2>Times</h2>\r\nSat – Departs Roma St Station Brisbane at 6:55am | Returns 6:45pm\r\n\r\nSun – Departs Roma St Station Brisbane at 7:15am | Returns 7:45pm.\r\n<h2>Location</h2>\r\nRoma St Station, Brisbane (<a href="https://goo.gl/maps/MWckUeGfDHo" target="_blank" rel="noopener">Google map</a>).', 'Full day Steam Train tour', '', 'inherit', 'closed', 'closed', '', '280-revision-v1', '', '', '2018-01-30 11:58:54', '2018-01-30 01:58:54', '', 280, 'http://www.toowoombaregionalcouncil.com.au/tcof/280-revision-v1/', 0, 'revision', '', 0),
 (421, 1, '2018-01-30 11:59:38', '2018-01-30 01:59:38', '<h2>Wed 20 Sep</h2>\r\nTravel by specially chartered 2000 class rail-car past farmlands and quaint Lockyer Valley townships to Toowoomba, with a pause at the beautiful Spring Bluff Station gardens for photos. In Toowoomba you’ll join a coach tour around some of the prize-winning gardens. You can pre-order a 2 course lunch with your ticket at a well-known Toowoomba restaurant (additional cost of $25).\r\n\r\nCOST: $150 per person\r\n\r\nBOOKINGS: Sunshine Express Rail Tours 07 3252 1759 (10am – 3pm, Tue–Thu).\r\n<h2>Times</h2>\r\nDeparts Roma St Station Brisbane at 7:15am | Returns 6:50pm.\r\n<h2>Location</h2>\r\nRoma St Station, Brisbane (<a href="https://goo.gl/maps/MWckUeGfDHo" target="_blank" rel="noopener">Google map</a>).', 'Silver Bullet Express tour', '', 'inherit', 'closed', 'closed', '', '275-revision-v1', '', '', '2018-01-30 11:59:38', '2018-01-30 01:59:38', '', 275, 'http://www.toowoombaregionalcouncil.com.au/tcof/275-revision-v1/', 0, 'revision', '', 0),
 (422, 1, '2018-01-30 12:00:20', '2018-01-30 02:00:20', '<h2>Sun 17 - Sat 23 Sep</h2>\r\nTrains leave Toowoomba twice daily for the beautifully scenic journey down to the glorious prize-winning gardens of Spring Bluff where there’s a warm welcome by the “Acting” Station Master. You’ll be greeted with a real song and dance! Pack a picnic, grab a coffee and enjoy a great day at South East Queensland\'s prettiest railway station.\r\n\r\nTrain journey times are approximately 35 - 40 minutes between Toowoomba and Spring Bluff.\r\n\r\nCOST: Adult $20 | Child (4–15yrs) $10 | Child (3 years &amp; under not occupying a seat) Free. Limit of one free child ticket per paying adult.\r\n\r\nBOOKINGS: 1300 131 722 (Tickets on sale 1st August)\r\n<h2>Times</h2>\r\nDeparts Toowoomba Railway Station at 9am &amp; 1pm\r\n\r\nDeparts Spring Bluff Railway Station at 11am &amp; 3pm\r\n\r\nLocation\r\n\r\nDeparts Toowoomba Railway Station, Railway St, Toowoomba (<a href="https://goo.gl/maps/NJERBWdPs892" target="_blank" rel="noopener">Google map</a>).', 'Diesel-hauled train rides to Spring Bluff', '', 'inherit', 'closed', 'closed', '', '272-revision-v1', '', '', '2018-01-30 12:00:20', '2018-01-30 02:00:20', '', 272, 'http://www.toowoombaregionalcouncil.com.au/tcof/272-revision-v1/', 0, 'revision', '', 0),
 (423, 1, '2018-01-30 12:00:53', '2018-01-30 02:00:53', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nHeritage-listed Spring Bluff Railway Station is home to 150 years of railway history and beautifully landscaped gardens. Nestled on the main railway line between Ipswich and Toowoomba, the splendour of the gardens will stop you in your tracks. The Spring exhibit is absolutely stunning with thousands of visitors each September enjoying the magnificent display with an array of poppies, ranunculus, stock, snapdragons, petunias and many other annuals bursting into colour under the warm sunshine.\r\n\r\nPop in to Spring Bluff Café for a delicious lunch or a hot cup of coffee. It\'s open every day during Carnival from 9:30am to 4:30pm.\r\n<h2>BIG BAND AT THE BLUFF</h2>\r\nThe Jim Miller Big Band plays the tunes of yesteryear in the picturesque gardens at Spring Bluff Railway Station. Chill out on the lawn or dust off your dancing shoes to swing to the Big Band sounds. Picnic-makers and BBQ-lovers descend on the gardens to soak up the music and atmosphere. Come along and don\'t forget a picnic basket and blanket!\r\n\r\nWHEN: Sunday 17 Sept\r\n\r\nTIME: 11:30am – 3pm\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6883 or claire.mcgovern@tr.qld.gov.au\r\n<h2>Location</h2>\r\nMcCormack Drive, Murphys Creek (<a href="https://goo.gl/maps/WTkFKknWZU22" target="_blank" rel="noopener">Google map</a>)\r\n\r\n&nbsp;', 'Spring Bluff Railway Station gardens', '', 'inherit', 'closed', 'closed', '', '269-revision-v1', '', '', '2018-01-30 12:00:53', '2018-01-30 02:00:53', '', 269, 'http://www.toowoombaregionalcouncil.com.au/tcof/269-revision-v1/', 0, 'revision', '', 0),
 (424, 1, '2018-01-30 12:01:38', '2018-01-30 02:01:38', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nCelebrate the pure love of flowers, gardening and all things horticultural.\r\n\r\nThe specially selected Exhibition Gardens are chosen because they are so unique and creative that they deserve a special show all of their own. Be inspired, and perhaps learn a tip or two, at the five private gardens selected as Toowoomba’s finest for 2017.\r\n\r\nFor more information visit the website <a href="http://www.toowoombaexhibitiongardens.com">http://www.toowoombaexhibitiongardens.com</a>\r\n\r\nENQUIRIES: 0459 080 035\r\n<h3>GARDEN LOCATIONS</h3>\r\n#1 Philip &amp; Marjorie Martin, 17 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/LragB2JL6PS2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#2 Kelly &amp; Cheryl Fry, 21 Dallang Rd, Toowoomba (<a href="https://goo.gl/maps/aGnVrzpCotM2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#3 Val Peachy, 5 Fern Dve, Toowoomba (<a href="https://goo.gl/maps/TC2ckw9wSh42" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#4 Sue Hawkins, 37 Murphys Creek Rd, Toowoomba (<a href="https://goo.gl/maps/fb5qmPhoAxS2" target="_blank" rel="noopener">Google map</a>)\r\n\r\n#5 Mark &amp; Anne O’Brien, 79 North St, Toowoomba (<a href="https://goo.gl/maps/cc72KjWfSWv" target="_blank" rel="noopener">Google map</a>)\r\n<h3>COST</h3>\r\n5 gardens $12 per person\r\n\r\n3 gardens $10 per person\r\n\r\n1 garden $5 per person\r\n\r\nTickets can be purchased at any of the gardens.\r\n<h2>Times</h2>\r\n9am - 5pm daily.', 'The Chronicle exhibition gardens', '', 'inherit', 'closed', 'closed', '', '263-revision-v1', '', '', '2018-01-30 12:01:38', '2018-01-30 02:01:38', '', 263, 'http://www.toowoombaregionalcouncil.com.au/tcof/263-revision-v1/', 0, 'revision', '', 0),
 (425, 1, '2018-01-30 12:04:16', '2018-01-30 02:04:16', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nPerched atop the crest of the Great Dividing Range is the heritage listed Picnic Point. The panoramic 180 degree views will take your breath away stretching out over the valley to surrounding mountains, the deep gorges below and the world heritage listed area of The Scenic Rim. On a clear day you can see all the way to Brisbane. Picnic Point is 160 precious acres of priceless landscape.\r\n\r\nWhen you enter the park you\'re greeted with an avenue of mature hoop pine and South Queensland kauri before the parklands open into gorgeous manicured lawns.\r\n\r\nA stroll along the beautiful Pardalote Walk is a great way to take in spectacular views of the Lockyer Valley. The Pardalote Walk follows the very edge of the escarpment. The full length of the walk is about 1.9km with access at a number of points along the escarpment. Allow around 45 minutes to enjoy the walk.\r\n\r\nPicnic Point is one of those special places that will stay in your memory. You\'ll be glad you took the time to soak up the incredible views and breathe the fresh, crisp air.\r\n<h3>What\'s on during Carnival?</h3>\r\nA host of talented musos will play at the park during Carnival. Whatever your taste in music, you’ll hear it – jazz, blues, folk, funk, soul, country, rock and roll, and big brass acts.\r\n\r\nFRI 15 SEPT - 11am-3pm \'Undercover\' (Pop, Jazz, Rock \'n\' Roll) at Bandstand\r\n\r\nSAT 16 SEPT - 11am-3pm \'Greg Bird &amp; Friends\' (Jazz, Swing, Latin, Evergreen) at Bandstand\r\n3:30pm-5:30pm \'Webb Family Band\' (Folk, Retro Classics) at Lookout Area\r\n\r\nSUN 17 SEPT - 9am-10:45am \'Toowoomba Concert Band &amp; Second Wind Community Band\' (Concert Band) at Lookout Area\r\n11am-3pm \'Around the Corner\' (Irish Folk Songs - traditional, classical) at Bandstand\r\n\r\nMON 18 SEPT - 11am-3pm \'Swing Magic\' (Swing Jazz) at Bandstand\r\n\r\nTUE 19 SEPT - 11am-3pm \'Toowoomba Grammar School R\'n\'B Band\' (School Band) at Bandstand\r\n\r\nWED 20 SEPT - 11am-3pm \'Blue Room Blues\' (Blues) at Bandstand\r\n\r\nTHU 21 SEPT - 11am-3pm \'Zephyr Project\' (Rockabilly) at Bandstand\r\n\r\nFRI 22 SEPT - 11am-3pm \'Top Gear\' (Rock \'n\' Roll) at Bandstand\r\n\r\nSAT 23 SEPT - 11am-3pm \'2 Timing\' (Swing, Rock \'n\' Roll, Pop, Country) at Bandstand\r\n\r\nSUN 24 SEPT - 11am-3pm \'Slow Train Coming\' (Rock, Pop, Blues, Jazz, Soul, Memphis) at Bandstand *correct at time of printing\r\n<h3>Picnic in the Park</h3>\r\nWhy not pre-pack a picnic, get up close to nature and enjoy the parkland scenery? The restaurant is a tasty option, offering stunning views over the valley and a relaxing rest-stop after a busy morning exploring the parklands.\r\n<h3>Feeling peckish?</h3>\r\nDon\'t miss an opportunity to lick your lips around an iconic violet ice cream at Picnic Point café! It\'s a must do when in Toowoomba! The café is perched on the escarpment with views for miles. Café opens 8:30am to 5pm Monday to Thursday and 8am to 5pm Friday to Sunday.\r\n<h3>Information Hub</h3>\r\nWant more info about Carnival or know what to see while you\'re in town? Visit our Information Hub on Tourist Road for the Carnival low-down, to pick up a map, book bus tickets, or even browse the official merchandise.\r\n<h2>Location</h2>\r\n164 Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/zYDD24uw3w82" target="_blank" rel="noopener">Google map</a>)', 'Picnic Point', '', 'inherit', 'closed', 'closed', '', '251-revision-v1', '', '', '2018-01-30 12:04:16', '2018-01-30 02:04:16', '', 251, 'http://www.toowoombaregionalcouncil.com.au/tcof/251-revision-v1/', 0, 'revision', '', 0),
 (427, 2, '2018-01-30 12:21:40', '2018-01-30 02:21:40', '[the-post-grid id="598" title="Family"]', 'Family', '', 'publish', 'closed', 'closed', '', 'family', '', '', '2018-03-14 14:52:11', '2018-03-14 04:52:11', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=427', 9, 'page', '', 0),
 (428, 2, '2018-01-30 12:21:40', '2018-01-30 02:21:40', '<div id="pl-428"  class="panel-layout" ><div id="pg-428-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-428-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-428-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a6fd69ab260a&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517278893263&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-428-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="428">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-428-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-428 .so-panel { margin-bottom:30px } #pl-428 .so-panel:last-child { margin-bottom:0px } #pg-428-0.panel-no-style, #pg-428-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-428-0.panel-no-style, #pg-428-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-428-0 .panel-grid-cell { margin-right:0 } #pg-428-0 .panel-grid-cell { width:100% } #pl-428 .panel-grid-cell { padding:0 } #pl-428 .panel-grid .panel-grid-cell-empty { display:none } #pl-428 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'Family', '', 'inherit', 'closed', 'closed', '', '427-revision-v1', '', '', '2018-01-30 12:21:40', '2018-01-30 02:21:40', '', 427, 'http://www.toowoombaregionalcouncil.com.au/tcof/427-revision-v1/', 0, 'revision', '', 0),
 (429, 2, '2018-01-30 12:21:40', '2018-01-30 02:21:40', '<div id="pl-427"  class="panel-layout" ><div id="pg-427-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-427-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-427-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a6fd69ab260a&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517278893263&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-427-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="427">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-427-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-427 .so-panel { margin-bottom:30px } #pl-427 .so-panel:last-child { margin-bottom:0px } #pg-427-0.panel-no-style, #pg-427-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-427-0.panel-no-style, #pg-427-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-427-0 .panel-grid-cell { margin-right:0 } #pg-427-0 .panel-grid-cell { width:100% } #pl-427 .panel-grid-cell { padding:0 } #pl-427 .panel-grid .panel-grid-cell-empty { display:none } #pl-427 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'Family', '', 'inherit', 'closed', 'closed', '', '427-revision-v1', '', '', '2018-01-30 12:21:40', '2018-01-30 02:21:40', '', 427, 'http://www.toowoombaregionalcouncil.com.au/tcof/427-revision-v1/', 0, 'revision', '', 0),
 (430, 2, '2018-01-30 12:28:08', '2018-01-30 02:28:08', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-page.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:1,\\&quot;unit\\&quot;:\\&quot;years\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=none&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517279282806&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="121">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-121-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-121 .so-panel { margin-bottom:30px } #pl-121 .so-panel:last-child { margin-bottom:0px } #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-121-0 .panel-grid-cell { margin-right:0 } #pg-121-0 .panel-grid-cell { width:100% } #pl-121 .panel-grid-cell { padding:0 } #pl-121 .panel-grid .panel-grid-cell-empty { display:none } #pl-121 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Festival Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 12:28:08', '2018-01-30 02:28:08', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (431, 2, '2018-01-30 12:28:45', '2018-01-30 02:28:45', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:1,\\&quot;unit\\&quot;:\\&quot;years\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=none&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517279321054&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="121">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-121-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-121 .so-panel { margin-bottom:30px } #pl-121 .so-panel:last-child { margin-bottom:0px } #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-121-0 .panel-grid-cell { margin-right:0 } #pg-121-0 .panel-grid-cell { width:100% } #pl-121 .panel-grid-cell { padding:0 } #pl-121 .panel-grid .panel-grid-cell-empty { display:none } #pl-121 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Festival Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 12:28:45', '2018-01-30 02:28:45', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (432, 2, '2018-01-30 12:28:58', '2018-01-30 02:28:58', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-121-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:tours,post_tag:parks-gardens,post_tag:family,post_tag:music,post_tag:food-wine,post_tag:floral&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:1,\\&quot;unit\\&quot;:\\&quot;years\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=none&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5a66c1479fbfd&quot;,&quot;_sow_form_timestamp&quot;:&quot;1517279321054&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-121-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="121">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-121-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-121 .so-panel { margin-bottom:30px } #pl-121 .so-panel:last-child { margin-bottom:0px } #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-121-0 .panel-grid-cell { margin-right:0 } #pg-121-0 .panel-grid-cell { width:100% } #pl-121 .panel-grid-cell { padding:0 } #pl-121 .panel-grid .panel-grid-cell-empty { display:none } #pl-121 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Festival Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 12:28:58', '2018-01-30 02:28:58', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (433, 2, '2018-01-30 12:35:18', '2018-01-30 02:35:18', '<div id="pl-433"  class="panel-layout" ><div id="pg-433-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-433-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="433">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-433-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-433 .so-panel { margin-bottom:30px } #pl-433 .so-panel:last-child { margin-bottom:0px } #pg-433-0.panel-no-style, #pg-433-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-433-0.panel-no-style, #pg-433-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-433-0 .panel-grid-cell { margin-right:0 } #pg-433-0 .panel-grid-cell { width:100% } #pl-433 .panel-grid-cell { padding:0 } #pl-433 .panel-grid .panel-grid-cell-empty { display:none } #pl-433 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Festival Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 12:35:18', '2018-01-30 02:35:18', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (434, 2, '2018-01-30 12:35:18', '2018-01-30 02:35:18', '<div id="pl-121"  class="panel-layout" ><div id="pg-121-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-121-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="121">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-121-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-121 .so-panel { margin-bottom:30px } #pl-121 .so-panel:last-child { margin-bottom:0px } #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-121-0.panel-no-style, #pg-121-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-121-0 .panel-grid-cell { margin-right:0 } #pg-121-0 .panel-grid-cell { width:100% } #pl-121 .panel-grid-cell { padding:0 } #pl-121 .panel-grid .panel-grid-cell-empty { display:none } #pl-121 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', '2017 Festival Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-01-30 12:35:18', '2018-01-30 02:35:18', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (435, 2, '2018-01-30 12:42:41', '2018-01-30 02:42:41', '<div id="pl-427"  class="panel-layout" ><div id="pg-427-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-427-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="427">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.css); #pgc-427-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-427 .so-panel { margin-bottom:30px } #pl-427 .so-panel:last-child { margin-bottom:0px } #pg-427-0.panel-no-style, #pg-427-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-427-0.panel-no-style, #pg-427-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-427-0 .panel-grid-cell { margin-right:0 } #pg-427-0 .panel-grid-cell { width:100% } #pl-427 .panel-grid-cell { padding:0 } #pl-427 .panel-grid .panel-grid-cell-empty { display:none } #pl-427 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'Family', '', 'inherit', 'closed', 'closed', '', '427-revision-v1', '', '', '2018-01-30 12:42:41', '2018-01-30 02:42:41', '', 427, 'http://www.toowoombaregionalcouncil.com.au/tcof/427-revision-v1/', 0, 'revision', '', 0),
 (443, 2, '2018-01-30 13:54:27', '2018-01-30 03:54:27', '.header-centered .site-header {\n	padding-top: 0;\n}\n.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n/*.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}*/\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n	padding: 0 .3em;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-30 13:54:27', '2018-01-30 03:54:27', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (446, 2, '2018-01-30 14:08:10', '2018-01-30 04:08:10', '', 'OpenSans-Regular', '', 'inherit', 'closed', 'closed', '', 'opensans-regular', '', '', '2018-01-30 14:08:10', '2018-01-30 04:08:10', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/OpenSans-Regular.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
 (448, 2, '2018-01-30 14:10:34', '2018-01-30 04:10:34', '', 'OpenSans-Bold', '', 'inherit', 'closed', 'closed', '', 'opensans-bold', '', '', '2018-01-30 14:10:34', '2018-01-30 04:10:34', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/OpenSans-Bold.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
 (451, 2, '2018-01-30 14:12:37', '2018-01-30 04:12:37', '', 'Raleway-Italic', '', 'inherit', 'closed', 'closed', '', 'raleway-italic', '', '', '2018-01-30 14:12:37', '2018-01-30 04:12:37', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Raleway-Italic.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
 (453, 2, '2018-01-30 14:16:16', '2018-01-30 04:16:16', '', 'Lora-Italic', '', 'inherit', 'closed', 'closed', '', 'lora-italic', '', '', '2018-01-30 14:16:16', '2018-01-30 04:16:16', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Lora-Italic.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
 (454, 2, '2018-01-30 14:16:20', '2018-01-30 04:16:20', '', 'Lora-BoldItalic', '', 'inherit', 'closed', 'closed', '', 'lora-bolditalic', '', '', '2018-01-30 14:16:20', '2018-01-30 04:16:20', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Lora-BoldItalic.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
 (455, 2, '2018-01-30 14:19:37', '2018-01-30 04:19:37', '', 'Roboto-Bold', '', 'inherit', 'closed', 'closed', '', 'roboto-bold', '', '', '2018-01-30 14:19:37', '2018-01-30 04:19:37', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Roboto-Bold.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
 (460, 2, '2018-01-30 15:05:13', '2018-01-30 05:05:13', '.header-menu {\n	margin-top: -3em;\n}\n.header-centered .site-header {\n	padding-top: 0;\n}\n.site-header:before {\n    content: "";\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 20px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/bunting.png);\n    background-repeat: repeat-x;\n    background-size: 20px 20px;\n    background-position: center top;\n}\n.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}\n.post-header {\n	padding-top: 172px;\n}\n/*.site-content {\n    background-size: 8px 8px;\n    background-image: linear-gradient(-45deg, #962068 25%, #a13777 25%, #a13777 50%, #962068 50%, #962068 75%, #a13777 75%, #a13777);\n}*/\n.breadcrumbs {\n	background-color: #F4F4F4;\n	padding-top: 36px;\n}\n.breadcrumbs span {\n	padding: 0 .3em;\n}\n.site-content:before {\n    content: "";\n    position: relative;\n    top: 9px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 9px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n    background-position: center bottom;\n}\n.site-footer:before {\n    content: "";\n    display: block;\n    height: 15px;\n    width: 100%;\n    position: relative;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n}\n.bottom-footer:before {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: -9px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n.bottom-footer:after {\n    content: "";\n    display: block;\n    height: 18px;\n    width: 100%;\n    position: relative;\n    top: 7px;\n    left: 0px;\n    right: 0px;\n    background-image: url(wp-content/uploads/2018/01/diamonds.png);\n    background-repeat: repeat-x;\n    background-size: 32px 18px;\n}\n', 'bento', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2018-01-30 15:05:13', '2018-01-30 05:05:13', '', 193, 'http://www.toowoombaregionalcouncil.com.au/tcof/193-revision-v1/', 0, 'revision', '', 0),
 (464, 1, '2017-09-16 11:15:55', '2017-09-16 01:15:55', '<h2>Sat 16 - Mon 18 Sep</h2>\r\nThere are hundreds of bromeliads at the Bromeliad Show with numerous species on display. Advice on growing bromeliads will be available as well as the best varieties that suit the region\'s climate. It\'s a great opportunity to expand your bromeliad collection. Plants are for sale including cacti, succulents and foliage.\r\n\r\nCOST: Adult $3 | Child Free\r\n\r\nENQUIRIES: 0412 263 332 or toowoombabroms@gmail.com.\r\n<h2>Times</h2>\r\n8am - 4pm daily.\r\n<h2>Location</h2>\r\nSacred Heart Primary School Hall, Cnr North &amp; Tor Sts, Toowoomba (<a href="https://goo.gl/maps/gLJzV5kDCTG2" target="_blank" rel="noopener">Google map</a>)', 'Bromeliad Society show', '', 'publish', 'closed', 'closed', '', 'bromeliad-society-show', '', '', '2018-01-31 11:33:25', '2018-01-31 01:33:25', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=464', 20, 'post', '', 0),
 (465, 2, '2018-01-31 11:24:50', '2018-01-31 01:24:50', 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/cropped-TCOF_Logo_White_Green-1.png', 'cropped-TCOF_Logo_White_Green-1.png', '', 'inherit', 'closed', 'closed', '', 'cropped-tcof_logo_white_green-1-png', '', '', '2018-01-31 11:24:50', '2018-01-31 01:24:50', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/cropped-TCOF_Logo_White_Green-1.png', 0, 'attachment', 'image/png', 0),
 (471, 1, '2018-01-31 11:33:14', '2018-01-31 01:33:14', '', 'Red Bromeliad', '', 'inherit', 'closed', 'closed', '', 'bromeliad2', '', '', '2018-01-31 11:33:22', '2018-01-31 01:33:22', '', 464, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Bromeliad2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (472, 1, '2018-01-31 11:33:25', '2018-01-31 01:33:25', '<h2>Sat 16 - Mon 18 Sep</h2>\r\nThere are hundreds of bromeliads at the Bromeliad Show with numerous species on display. Advice on growing bromeliads will be available as well as the best varieties that suit the region\'s climate. It\'s a great opportunity to expand your bromeliad collection. Plants are for sale including cacti, succulents and foliage.\r\n\r\nCOST: Adult $3 | Child Free\r\n\r\nENQUIRIES: 0412 263 332 or toowoombabroms@gmail.com.\r\n<h2>Times</h2>\r\n8am - 4pm daily.\r\n<h2>Location</h2>\r\nSacred Heart Primary School Hall, Cnr North &amp; Tor Sts, Toowoomba (<a href="https://goo.gl/maps/gLJzV5kDCTG2" target="_blank" rel="noopener">Google map</a>)', 'Bromeliad Society show', '', 'inherit', 'closed', 'closed', '', '464-revision-v1', '', '', '2018-01-31 11:33:25', '2018-01-31 01:33:25', '', 464, 'http://www.toowoombaregionalcouncil.com.au/tcof/464-revision-v1/', 0, 'revision', '', 0),
 (473, 1, '2017-09-18 11:33:44', '2017-09-18 01:33:44', '<h2>Mon 18 - Thu 21 Sep</h2>\r\nStained glass windows, fantastic floral displays, craft, jams, pickles, home cooking, fabric colouring workshops and Devonshire teas!\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 07 4635 4673 or kstep@iinet.net.au.\r\n<h2>Times</h2>\r\n9am - 4pm daily.\r\n<h2>Location</h2>\r\nSt Stephen\'s Uniting Church, 51 Neil St, Toowoomba (<a href="https://goo.gl/maps/qVyRhCpzEK12" target="_blank" rel="noopener">Google map</a>).', 'St Stephen\'s craft display', '', 'publish', 'closed', 'closed', '', 'st-stephens-craft-display', '', '', '2018-01-31 11:39:10', '2018-01-31 01:39:10', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=473', 19, 'post', '', 0),
 (477, 1, '2018-01-31 11:37:29', '2018-01-31 01:37:29', '', 'St Stephens Church', '', 'inherit', 'closed', 'closed', '', 'ststephenschurch2', '', '', '2018-01-31 11:37:44', '2018-01-31 01:37:44', '', 473, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/StStephensChurch2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (478, 1, '2018-01-31 11:37:55', '2018-01-31 01:37:55', '&nbsp;\r\n\r\nStained glass windows, fantastic floral displays, craft, jams, pickles, home cooking, fabric colouring workshops and Devonshire teas!\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 07 4635 4673 or kstep@iinet.net.au.\r\n<h2>Times</h2>\r\n9am - 4pm daily.\r\n<h2>Location</h2>\r\nSt Stephen\'s Uniting Church, 51 Neil St, Toowoomba (<a href="https://goo.gl/maps/qVyRhCpzEK12" target="_blank" rel="noopener">Google map</a>).', 'St Stephen\'s craft display', '', 'inherit', 'closed', 'closed', '', '473-revision-v1', '', '', '2018-01-31 11:37:55', '2018-01-31 01:37:55', '', 473, 'http://www.toowoombaregionalcouncil.com.au/tcof/473-revision-v1/', 0, 'revision', '', 0),
 (482, 1, '2018-01-31 11:39:10', '2018-01-31 01:39:10', '<h2>Mon 18 - Thu 21 Sep</h2>\r\nStained glass windows, fantastic floral displays, craft, jams, pickles, home cooking, fabric colouring workshops and Devonshire teas!\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 07 4635 4673 or kstep@iinet.net.au.\r\n<h2>Times</h2>\r\n9am - 4pm daily.\r\n<h2>Location</h2>\r\nSt Stephen\'s Uniting Church, 51 Neil St, Toowoomba (<a href="https://goo.gl/maps/qVyRhCpzEK12" target="_blank" rel="noopener">Google map</a>).', 'St Stephen\'s craft display', '', 'inherit', 'closed', 'closed', '', '473-revision-v1', '', '', '2018-01-31 11:39:10', '2018-01-31 01:39:10', '', 473, 'http://www.toowoombaregionalcouncil.com.au/tcof/473-revision-v1/', 0, 'revision', '', 0),
 (483, 1, '2017-09-15 11:39:28', '2017-09-15 01:39:28', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nCobb+Co Museum proudly presents a spectacular display of 60 hanging baskets. Each basket was lovingly created by community members from the Toowoomba region as part of a design competition. This year\'s display is sure to delight with categories from floral arrangements to artisan creations. While visiting the Museum discover a variety of interactive displays, exhibits, heritage trade workshops and relax in Cobb\'s Coffee Shop.\r\n\r\nCOST: Museum entry Adult $12.50 | Concession $10 | Child (3-15 years) $6.50 | Family (1 Adult, 3 Children) $25 | Family (2 Adults, 4 Children) $32\r\n\r\nENQUIRIES: 07 4659 4900.\r\n<h2>Times</h2>\r\n9:30am - 4pm daily\r\n<h2>Location</h2>\r\nCobb+Co Museum, 27 Lindsay St, Toowoomba (<a href="https://goo.gl/maps/kX3eyUF4VpN2" target="_blank" rel="noopener">Google map</a>).', 'Hanging basket display', '', 'publish', 'closed', 'closed', '', 'hanging-basket-display', '', '', '2018-01-31 14:46:15', '2018-01-31 04:46:15', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=483', 18, 'post', '', 0),
 (485, 2, '2018-01-31 11:46:42', '2018-01-31 01:46:42', '', 'bento-child-tcof', '', 'publish', 'closed', 'closed', '', 'bento-child-tcof', '', '', '2018-02-02 13:19:24', '2018-02-02 03:19:24', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/bento-child-tcof/', 0, 'custom_css', '', 0),
 (486, 2, '2018-01-31 11:46:42', '2018-01-31 01:46:42', '.post-header {\n	padding-top: 3em;\n}', 'bento-child-tcof', '', 'inherit', 'closed', 'closed', '', '485-revision-v1', '', '', '2018-01-31 11:46:42', '2018-01-31 01:46:42', '', 485, 'http://www.toowoombaregionalcouncil.com.au/tcof/485-revision-v1/', 0, 'revision', '', 0),
 (488, 2, '2018-01-31 11:53:33', '2018-01-31 01:53:33', '', 'bento-child-tcof', '', 'inherit', 'closed', 'closed', '', '485-revision-v1', '', '', '2018-01-31 11:53:33', '2018-01-31 01:53:33', '', 485, 'http://www.toowoombaregionalcouncil.com.au/tcof/485-revision-v1/', 0, 'revision', '', 0),
 (489, 1, '2018-01-31 14:45:52', '2018-01-31 04:45:52', '', 'Hanging Baskets', '', 'inherit', 'closed', 'closed', '', 'hangingbaskets2', '', '', '2018-01-31 14:45:58', '2018-01-31 04:45:58', '', 483, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/HangingBaskets2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (490, 1, '2018-01-31 14:46:15', '2018-01-31 04:46:15', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nCobb+Co Museum proudly presents a spectacular display of 60 hanging baskets. Each basket was lovingly created by community members from the Toowoomba region as part of a design competition. This year\'s display is sure to delight with categories from floral arrangements to artisan creations. While visiting the Museum discover a variety of interactive displays, exhibits, heritage trade workshops and relax in Cobb\'s Coffee Shop.\r\n\r\nCOST: Museum entry Adult $12.50 | Concession $10 | Child (3-15 years) $6.50 | Family (1 Adult, 3 Children) $25 | Family (2 Adults, 4 Children) $32\r\n\r\nENQUIRIES: 07 4659 4900.\r\n<h2>Times</h2>\r\n9:30am - 4pm daily\r\n<h2>Location</h2>\r\nCobb+Co Museum, 27 Lindsay St, Toowoomba (<a href="https://goo.gl/maps/kX3eyUF4VpN2" target="_blank" rel="noopener">Google map</a>).', 'Hanging basket display', '', 'inherit', 'closed', 'closed', '', '483-revision-v1', '', '', '2018-01-31 14:46:15', '2018-01-31 04:46:15', '', 483, 'http://www.toowoombaregionalcouncil.com.au/tcof/483-revision-v1/', 0, 'revision', '', 0),
 (491, 1, '2017-09-23 14:46:34', '2017-09-23 04:46:34', '<h2>Sat 23 Sep</h2>\r\nTake in the atmosphere you can only get at a day at the polo. The food, the wine... and of course the ponies and their riders putting on a show for you. Throughout the afternoon, guests will take part in traditional events such as divot stomps and the men\'s and ladies dashes. Eat and sip the best produce the region has to offer in a day you\'ll never forget.\r\n\r\nCOST: General Admission (early bird) $75 | General Admission $95 | VIP Marquee (early bird) $200 | VIP Marquee $220.\r\n<h2>Times</h2>\r\n11:30am - 5:30pm.\r\n<h2>Location</h2>\r\nQueens Park, Cnr Godsall &amp; Hume Sts, Toowoomba (<a href="https://goo.gl/maps/pBF4mzEXM7G2" target="_blank" rel="noopener">Google map</a>).', 'Spring polo', '', 'publish', 'closed', 'closed', '', 'spring-polo', '', '', '2018-01-31 14:51:04', '2018-01-31 04:51:04', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=491', 17, 'post', '', 0),
 (492, 1, '2018-01-31 14:50:51', '2018-01-31 04:50:51', '', 'Polo Ball Hat', '', 'inherit', 'closed', 'closed', '', 'poloballhat2', '', '', '2018-01-31 14:50:58', '2018-01-31 04:50:58', '', 491, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/PoloBallHat2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (493, 1, '2018-01-31 14:51:04', '2018-01-31 04:51:04', '<h2>Sat 23 Sep</h2>\r\nTake in the atmosphere you can only get at a day at the polo. The food, the wine... and of course the ponies and their riders putting on a show for you. Throughout the afternoon, guests will take part in traditional events such as divot stomps and the men\'s and ladies dashes. Eat and sip the best produce the region has to offer in a day you\'ll never forget.\r\n\r\nCOST: General Admission (early bird) $75 | General Admission $95 | VIP Marquee (early bird) $200 | VIP Marquee $220.\r\n<h2>Times</h2>\r\n11:30am - 5:30pm.\r\n<h2>Location</h2>\r\nQueens Park, Cnr Godsall &amp; Hume Sts, Toowoomba (<a href="https://goo.gl/maps/pBF4mzEXM7G2" target="_blank" rel="noopener">Google map</a>).', 'Spring polo', '', 'inherit', 'closed', 'closed', '', '491-revision-v1', '', '', '2018-01-31 14:51:04', '2018-01-31 04:51:04', '', 491, 'http://www.toowoombaregionalcouncil.com.au/tcof/491-revision-v1/', 0, 'revision', '', 0),
 (494, 1, '2017-09-16 14:51:19', '2017-09-16 04:51:19', '<h2>Sat 16 - Sun 24 Sep</h2>\r\nCome along and see the world of model railways where the grass is green and flowers bright and colourful. Trains run through the beautiful scenery with a Model Railway Museum to visit as well. Enter the Tunnel Portal - an exciting adventure of model railroading awaits.\r\n\r\nCOST: Free (gold coin donation appreciated)\r\n\r\nENQUIRIES: 07 4638 1408 or info-ddmrc@ddmrc.com.au.\r\n<h2>Times</h2>\r\n10am - 4pm daily.\r\n<h2>Location</h2>\r\nToowoomba Showgrounds, Glenvale Rd, Toowoomba (<a href="https://goo.gl/maps/4WtTfiLg3wy" target="_blank" rel="noopener">Google map</a>).', 'Carnival of trains', '', 'publish', 'closed', 'closed', '', 'carnival-of-trains', '', '', '2018-01-31 15:00:57', '2018-01-31 05:00:57', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=494', 16, 'post', '', 0),
 (495, 1, '2018-01-31 14:54:17', '2018-01-31 04:54:17', '', 'Miniature train on track', '', 'inherit', 'closed', 'closed', '', 'carnivaloftrains2', '', '', '2018-01-31 14:54:45', '2018-01-31 04:54:45', '', 494, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/CarnivalofTrains2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (496, 1, '2018-01-31 14:56:25', '2018-01-31 04:56:25', '<h2>Sat 16 - Sun 24 Sep</h2>\r\nCome along and see the world of model railways where the grass is green and flowers bright and colourful. Trains run through the beautiful scenery with a Model Railway Museum to visit as well. Enter the Tunnel Portal - an exciting adventure of model railroading awaits.\r\n\r\nCOST: Free (gold coin donation appreciated)\r\n\r\nENQUIRIES: 07 4638 1408 or info-ddmrc@ddmrc.com.au.\r\n<h2>Times</h2>\r\n10am - 4pm daily.\r\n<h2>Location</h2>\r\nToowoomba Showgrounds, Glenvale Rd, Toowoomba (<a href="https://goo.gl/maps/4WtTfiLg3wy" target="_blank" rel="noopener">Google map</a>).', 'Carnival of trains', '', 'inherit', 'closed', 'closed', '', '494-revision-v1', '', '', '2018-01-31 14:56:25', '2018-01-31 04:56:25', '', 494, 'http://www.toowoombaregionalcouncil.com.au/tcof/494-revision-v1/', 0, 'revision', '', 0),
 (498, 1, '2018-01-31 15:01:57', '2018-01-31 05:01:57', '<h2>Fri 22 - Sat 23 Sep</h2>\r\nA National Trust building, Drayton’s Royal Bull’s Head Inn is a beautiful historic building which served as a resting place for travellers in the 1800s. With a floral theme and some ‘scary’ fun, visitors will relish the atmosphere of the 155 year old Inn at night time. BYO torches and lanterns and arrive 10 minutes prior to tour time. Be aware that stairs to the first floor are quite steep and unfortunately there is no wheelchair access.\r\n\r\nCOST: Adult $12 | Concession/Child $8 | Family (2 Adults, 2 Children) $30\r\n\r\nBOOKINGS: 0402 138 751 or toowoomba@nationaltrustqld.org\r\n<h2>Times</h2>\r\n6:30pm - 7:30pm\r\n\r\n8pm - 9pm\r\n<h2>Location</h2>\r\nRoyal Bull\'s Head Inn, 59 Brisbane St, Drayton (<a href="https://goo.gl/maps/B5GkvC3aNu82" target="_blank" rel="noopener">Google map</a>)', 'A bloomin\' scary night at the inn', '', 'inherit', 'closed', 'closed', '', '246-revision-v1', '', '', '2018-01-31 15:01:57', '2018-01-31 05:01:57', '', 246, 'http://www.toowoombaregionalcouncil.com.au/tcof/246-revision-v1/', 0, 'revision', '', 0),
 (499, 1, '2017-09-16 15:02:08', '2017-09-16 05:02:08', '<h2>Sat 16 - Sat 23 Sep</h2>\r\nThe Teapot Extravaganza is a one-of-a-kind display that features over 400 decorative, functional, novelty and antique teapots. Browse through the book, craft, food and plant stalls or enjoy a relaxing Devonshire tea.\r\n\r\nCOST: $3 per person\r\n\r\nENQUIRIES: 07 4634 6236 or juanettakrause@aapt.net.au.\r\n<h2>Times</h2>\r\n9:30am - 4:30pm daily.\r\n<h2>Location</h2>\r\nSt Alban\'s Church Hall, Cnr Anzac Ave &amp; Hill St, Toowoomba (<a href="https://goo.gl/maps/7UQbvKCrd3v" target="_blank" rel="noopener">Google map</a>).', 'Teapot extravaganza', '', 'publish', 'closed', 'closed', '', 'teapot-extravaganza', '', '', '2018-01-31 15:52:43', '2018-01-31 05:52:43', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=499', 15, 'post', '', 0),
 (500, 1, '2018-01-31 15:52:07', '2018-01-31 05:52:07', '', 'Teapot', '', 'inherit', 'closed', 'closed', '', 'teapot2', '', '', '2018-01-31 15:52:18', '2018-01-31 05:52:18', '', 499, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/Teapot2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (501, 1, '2018-01-31 15:52:43', '2018-01-31 05:52:43', '<h2>Sat 16 - Sat 23 Sep</h2>\r\nThe Teapot Extravaganza is a one-of-a-kind display that features over 400 decorative, functional, novelty and antique teapots. Browse through the book, craft, food and plant stalls or enjoy a relaxing Devonshire tea.\r\n\r\nCOST: $3 per person\r\n\r\nENQUIRIES: 07 4634 6236 or juanettakrause@aapt.net.au.\r\n<h2>Times</h2>\r\n9:30am - 4:30pm daily.\r\n<h2>Location</h2>\r\nSt Alban\'s Church Hall, Cnr Anzac Ave &amp; Hill St, Toowoomba (<a href="https://goo.gl/maps/7UQbvKCrd3v" target="_blank" rel="noopener">Google map</a>).', 'Teapot extravaganza', '', 'inherit', 'closed', 'closed', '', '499-revision-v1', '', '', '2018-01-31 15:52:43', '2018-01-31 05:52:43', '', 499, 'http://www.toowoombaregionalcouncil.com.au/tcof/499-revision-v1/', 0, 'revision', '', 0),
 (502, 1, '2017-09-16 15:55:14', '2017-09-16 05:55:14', '<h2>Sat 16 - Sun 17 Sep</h2>\r\nTake home something handmade with love from the quaint country town of Geham. There are more than 65 stalls full of country crafts and arts, upcycled furniture, patchwork, woodcrafts, jewellery, leather goods and more. There\'s a range of entertainment for the whole family with live music, a classic car display, demonstrating artists and art and craft activities for the kids.\r\n\r\nCOST: Adult $5 | Child (11 years &amp; under) Free\r\n\r\nENQUIRIES: 0429 941 250 or craftshow@gehamss.eq.edu.au.\r\n<h2>Times</h2>\r\nSaturday 16 Sept 9am – 5pm\r\nSunday 17 Sept 9am – 3pm\r\n<h2>Location</h2>\r\nGeham State School, 9625 New England Highway, Geham (<a href="https://goo.gl/maps/2GUMEwNZa8C2" target="_blank" rel="noopener">Google map</a>).', 'Geham craft & garden show', '', 'publish', 'closed', 'closed', '', 'geham-craft-garden-show', '', '', '2018-01-31 16:00:27', '2018-01-31 06:00:27', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=502', 14, 'post', '', 0),
 (503, 1, '2018-01-31 15:58:48', '2018-01-31 05:58:48', '', 'Geham Craft basket', '', 'inherit', 'closed', 'closed', '', 'gehamcraft2', '', '', '2018-01-31 15:59:05', '2018-01-31 05:59:05', '', 502, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/GehamCraft2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (504, 1, '2018-01-31 16:00:27', '2018-01-31 06:00:27', '<h2>Sat 16 - Sun 17 Sep</h2>\r\nTake home something handmade with love from the quaint country town of Geham. There are more than 65 stalls full of country crafts and arts, upcycled furniture, patchwork, woodcrafts, jewellery, leather goods and more. There\'s a range of entertainment for the whole family with live music, a classic car display, demonstrating artists and art and craft activities for the kids.\r\n\r\nCOST: Adult $5 | Child (11 years &amp; under) Free\r\n\r\nENQUIRIES: 0429 941 250 or craftshow@gehamss.eq.edu.au.\r\n<h2>Times</h2>\r\nSaturday 16 Sept 9am – 5pm\r\nSunday 17 Sept 9am – 3pm\r\n<h2>Location</h2>\r\nGeham State School, 9625 New England Highway, Geham (<a href="https://goo.gl/maps/2GUMEwNZa8C2" target="_blank" rel="noopener">Google map</a>).', 'Geham craft & garden show', '', 'inherit', 'closed', 'closed', '', '502-revision-v1', '', '', '2018-01-31 16:00:27', '2018-01-31 06:00:27', '', 502, 'http://www.toowoombaregionalcouncil.com.au/tcof/502-revision-v1/', 0, 'revision', '', 0),
 (506, 1, '2018-01-31 16:01:42', '2018-01-31 06:01:42', '<h2>Fri 22 - Sun 24 Sep</h2>\r\nCountry Heart Events presents fairy activities and fun for all ages at this 3 day event. With fairy wing and fairy garden workshops for the kids, adults can enjoy the artisan stalls, fashion march and auctions.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 0488 404 637 or ddieckmann1@bigpond.com\r\n<h2>Times</h2>\r\nFriday 22 Sept 10am - 5pm\r\n\r\nSaturday 23 Sept 7:30am - 5pm\r\n\r\nSunday 7:30am - 1pm\r\n<h2>Location</h2>\r\nGlennie School Hall, 246a Herries St, Toowoomba (<a href="https://goo.gl/maps/kR9esJaHNcr" target="_blank" rel="noopener">Google map</a>)', 'Fairy & flowers fantasy', '', 'inherit', 'closed', 'closed', '', '254-revision-v1', '', '', '2018-01-31 16:01:42', '2018-01-31 06:01:42', '', 254, 'http://www.toowoombaregionalcouncil.com.au/tcof/254-revision-v1/', 0, 'revision', '', 0),
 (507, 1, '2017-09-17 16:02:15', '2017-09-17 06:02:15', 'Sun 17 Sep\r\n\r\nTake part in the Darling Downs Potters\' Club event, where there\'ll be market stalls, spring-themed ceramics and light food and refreshments. Don\'t miss the music and entertainment throughout the day, with activities such as interactive clay demonstrations for children and adults.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4632 7021 or toowoombapotters@gmail.com.\r\n<h2>Times</h2>\r\n7am - 4pm.\r\n<h2>Location</h2>\r\nDarling Downs Potters\' Club, 145 West St, Toowoomba (<a href="https://goo.gl/maps/ux1UWmknDns" target="_blank" rel="noopener">Google map</a>).', 'A potter\'s picnic', '', 'publish', 'closed', 'closed', '', 'a-potters-picnic', '', '', '2018-01-31 16:06:16', '2018-01-31 06:06:16', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=507', 13, 'post', '', 0),
 (508, 1, '2018-01-31 16:05:53', '2018-01-31 06:05:53', '', 'Potter molding clay', '', 'inherit', 'closed', 'closed', '', 'potterspicnic2', '', '', '2018-01-31 16:06:08', '2018-01-31 06:06:08', '', 507, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/PottersPicnic2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (509, 1, '2018-01-31 16:06:16', '2018-01-31 06:06:16', 'Sun 17 Sep\r\n\r\nTake part in the Darling Downs Potters\' Club event, where there\'ll be market stalls, spring-themed ceramics and light food and refreshments. Don\'t miss the music and entertainment throughout the day, with activities such as interactive clay demonstrations for children and adults.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4632 7021 or toowoombapotters@gmail.com.\r\n<h2>Times</h2>\r\n7am - 4pm.\r\n<h2>Location</h2>\r\nDarling Downs Potters\' Club, 145 West St, Toowoomba (<a href="https://goo.gl/maps/ux1UWmknDns" target="_blank" rel="noopener">Google map</a>).', 'A potter\'s picnic', '', 'inherit', 'closed', 'closed', '', '507-revision-v1', '', '', '2018-01-31 16:06:16', '2018-01-31 06:06:16', '', 507, 'http://www.toowoombaregionalcouncil.com.au/tcof/507-revision-v1/', 0, 'revision', '', 0),
 (510, 1, '2017-09-17 09:21:57', '2017-09-16 23:21:57', '<h2>Sun 17 Sep</h2>\r\nThe heritage-listed Woolshed at Jondaryan is the oldest and largest operating woolshed of its kind in the world with over 150 years of history. Step back in time and see what the Darling Downs was like in the 1800s. The event will feature sheep shearing, rope making, whip cracking, blacksmithing, working dog displays, horse and cart rides, spinners and weavers, mini train rides, bee keeping, damper making and much more.\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 07 4692 2229 or info@jondaryanwoolshed.com.au.\r\n<h2>Times</h2>\r\n8:30am - 4:30pm.\r\n<h2>Location</h2>\r\nJondaryan Woolshed, 264 Jondaryan-Evanslea Rd, Jondaryan (<a href="https://goo.gl/maps/QQ1M4fRiEuo" target="_blank" rel="noopener">Google map</a>).', 'The Woolshed at Jondaryan open day', '', 'publish', 'closed', 'closed', '', 'the-woolshed-at-jondaryan-open-day', '', '', '2018-02-01 09:30:12', '2018-01-31 23:30:12', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=510', 12, 'post', '', 0),
 (511, 1, '2018-02-01 09:26:08', '2018-01-31 23:26:08', '<h2>Sun 17 Sep</h2>\r\nThe heritage-listed Woolshed at Jondaryan is the oldest and largest operating woolshed of its kind in the world with over 150 years of history. Step back in time and see what the Darling Downs was like in the 1800s. The event will feature sheep shearing, rope making, whip cracking, blacksmithing, working dog displays, horse and cart rides, spinners and weavers, mini train rides, bee keeping, damper making and much more.\r\n\r\nCOST: Gold coin donation\r\n\r\nENQUIRIES: 07 4692 2229 or info@jondaryanwoolshed.com.au.\r\n<h2>Times</h2>\r\n8:30am - 4:30pm.\r\n<h2>Location</h2>\r\nJondaryan Woolshed, 264 Jondaryan-Evanslea Rd, Jondaryan (<a href="https://goo.gl/maps/QQ1M4fRiEuo" target="_blank" rel="noopener">Google map</a>).', 'The Woolshed at Jondaryan open day', '', 'inherit', 'closed', 'closed', '', '510-revision-v1', '', '', '2018-02-01 09:26:08', '2018-01-31 23:26:08', '', 510, 'http://www.toowoombaregionalcouncil.com.au/tcof/510-revision-v1/', 0, 'revision', '', 0),
 (512, 1, '2017-09-16 09:30:47', '2017-09-15 23:30:47', '<h2>Sat 16 Sep</h2>\r\nEnjoy a wonderful day touring stunning prize-winning gardens including the Grand Champion and top exhibition gardens. Enjoy a sit down lunch, then watch the spectacle of the Grand Central Floral Parade from your reserved seating.\r\n\r\nCOST: Adult $93.50 | Child (13 years &amp; under) $69\r\n\r\nThese tours are hosted by Stonestreets Coaches. Click on BOOK TICKETS to be directed to the Stonestreets website.\r\n<h2>Times</h2>\r\nPick-up at 9am.\r\n<h2>Location</h2>\r\nPick-up Picnic Point Bus Stop, Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/1heb6MiG2zS2" target="_blank" rel="noopener">Google map</a>).', 'Full day Grand Parade & garden tour', '', 'publish', 'closed', 'closed', '', 'full-day-grand-parade-garden-tour', '', '', '2018-02-01 09:36:52', '2018-01-31 23:36:52', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=512', 11, 'post', '', 0),
 (513, 1, '2018-02-01 09:36:31', '2018-01-31 23:36:31', '<h2>Sat 16 Sep</h2>\r\nEnjoy a wonderful day touring stunning prize-winning gardens including the Grand Champion and top exhibition gardens. Enjoy a sit down lunch, then watch the spectacle of the Grand Central Floral Parade from your reserved seating.\r\n\r\nCOST: Adult $93.50 | Child (13 years &amp; under) $69\r\n\r\nThese tours are hosted by Stonestreets Coaches. Click on BOOK TICKETS to be directed to the Stonestreets website.\r\n<h2>Times</h2>\r\nPick-up at 9am\r\n<h2>Location</h2>\r\nPick-up Picnic Point Bus Stop, Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/1heb6MiG2zS2" target="_blank" rel="noopener">Google map</a>).', 'Full day Grand Parade & garden tour', '', 'inherit', 'closed', 'closed', '', '512-revision-v1', '', '', '2018-02-01 09:36:31', '2018-01-31 23:36:31', '', 512, 'http://www.toowoombaregionalcouncil.com.au/tcof/512-revision-v1/', 0, 'revision', '', 0),
 (514, 1, '2018-02-01 09:36:52', '2018-01-31 23:36:52', '<h2>Sat 16 Sep</h2>\r\nEnjoy a wonderful day touring stunning prize-winning gardens including the Grand Champion and top exhibition gardens. Enjoy a sit down lunch, then watch the spectacle of the Grand Central Floral Parade from your reserved seating.\r\n\r\nCOST: Adult $93.50 | Child (13 years &amp; under) $69\r\n\r\nThese tours are hosted by Stonestreets Coaches. Click on BOOK TICKETS to be directed to the Stonestreets website.\r\n<h2>Times</h2>\r\nPick-up at 9am.\r\n<h2>Location</h2>\r\nPick-up Picnic Point Bus Stop, Tourist Rd, Toowoomba (<a href="https://goo.gl/maps/1heb6MiG2zS2" target="_blank" rel="noopener">Google map</a>).', 'Full day Grand Parade & garden tour', '', 'inherit', 'closed', 'closed', '', '512-revision-v1', '', '', '2018-02-01 09:36:52', '2018-01-31 23:36:52', '', 512, 'http://www.toowoombaregionalcouncil.com.au/tcof/512-revision-v1/', 0, 'revision', '', 0),
 (515, 1, '2017-09-16 09:37:17', '2017-09-15 23:37:17', '<h2>Sat 16 - Wed 20 Sep</h2>\r\nJoin this fully inclusive four-night package from Brisbane or Toowoomba. Highlights include prize-winning garden touring, reserved Grand Central Floral Parade seating, Ergon Energy Food &amp; Wine Festival entry, themed dinners and regional touring.\r\n\r\nFull details available by clicking BOOK TICKETS below.\r\n\r\nCOST: $1,199 per person twin share | $489 single supplement\r\n\r\nBOOKINGS: 07 4687 5555.\r\n<h2>Times</h2>\r\nPick-up at Brisbane Airport 10am\r\n\r\nPick-up at Roma St Station 10:30am.\r\n<h2>Location</h2>\r\nPick-up Brisbane Airport (<a href="https://goo.gl/maps/PNGTjLsqzxQ2" target="_blank" rel="noopener">Google map</a>), Roma Street Station (<a href="https://goo.gl/maps/Kac2t4DVKSF2" target="_blank" rel="noopener">Google map</a>) or Wellcamp Airport (<a href="https://goo.gl/maps/wEF5qRB3nu12" target="_blank" rel="noopener">Google map</a>).', 'Stonestreets Coaches 5 day tour', '', 'publish', 'closed', 'closed', '', 'stonestreets-coaches-5-day-tour', '', '', '2018-02-01 09:44:37', '2018-01-31 23:44:37', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=515', 10, 'post', '', 0),
 (516, 1, '2018-02-01 09:44:18', '2018-01-31 23:44:18', '', 'Stonestreets Coaches Tour with flowers', '', 'inherit', 'closed', 'closed', '', 'stonestreetscoachestour2', '', '', '2018-02-01 09:44:34', '2018-01-31 23:44:34', '', 515, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/02/StonestreetsCoachesTour2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (517, 1, '2018-02-01 09:44:37', '2018-01-31 23:44:37', '<h2>Sat 16 - Wed 20 Sep</h2>\r\nJoin this fully inclusive four-night package from Brisbane or Toowoomba. Highlights include prize-winning garden touring, reserved Grand Central Floral Parade seating, Ergon Energy Food &amp; Wine Festival entry, themed dinners and regional touring.\r\n\r\nFull details available by clicking BOOK TICKETS below.\r\n\r\nCOST: $1,199 per person twin share | $489 single supplement\r\n\r\nBOOKINGS: 07 4687 5555.\r\n<h2>Times</h2>\r\nPick-up at Brisbane Airport 10am\r\n\r\nPick-up at Roma St Station 10:30am.\r\n<h2>Location</h2>\r\nPick-up Brisbane Airport (<a href="https://goo.gl/maps/PNGTjLsqzxQ2" target="_blank" rel="noopener">Google map</a>), Roma Street Station (<a href="https://goo.gl/maps/Kac2t4DVKSF2" target="_blank" rel="noopener">Google map</a>) or Wellcamp Airport (<a href="https://goo.gl/maps/wEF5qRB3nu12" target="_blank" rel="noopener">Google map</a>).', 'Stonestreets Coaches 5 day tour', '', 'inherit', 'closed', 'closed', '', '515-revision-v1', '', '', '2018-02-01 09:44:37', '2018-01-31 23:44:37', '', 515, 'http://www.toowoombaregionalcouncil.com.au/tcof/515-revision-v1/', 0, 'revision', '', 0),
 (518, 1, '2017-09-20 09:44:57', '2017-09-19 23:44:57', '<h2>Wed 20 Sep</h2>\r\nPresent day Toowoomba is built on the bones of a gracious Victorian era city. Look carefully and the city\'s historic past comes to life.\r\n\r\nJoin local Heritage Architect Stephanie Keays on this walk through the CBD and take a fascinating glimpse into Toowoomba’s architecture and history. Starting at the Art Deco style Empire Theatre, visitors will be guided through Toowoomba’s rich architectural legacy. Explore a range of building styles and the design details that make them unique to our town with a mix of history, street art, cafes, shops and interesting stories along the way.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at the Walton Stores complex, Annand Street, one of Toowoomba’s newest architecturally designed dining districts.\r\n\r\nWHEN: Wednesday 20 Sept\r\n\r\nCOST: Adult $33 | Concession $29.\r\n<h2>Times</h2>\r\nWednesday 20 Sept 3pm - 4:30pm.\r\n<h2>Location</h2>\r\nPick-up at Empire Theatre Lawn, 56 Neil St, Toowoomba (<a href="https://goo.gl/maps/zyqVPAfF3gn" target="_blank" rel="noopener">Google map</a>).', 'Walking tour CBD architecture', '', 'publish', 'closed', 'closed', '', 'walking-tour-cbd-architecture-2', '', '', '2018-02-01 09:50:35', '2018-01-31 23:50:35', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=518', 9, 'post', '', 0),
 (519, 1, '2018-02-01 09:50:13', '2018-01-31 23:50:13', '', 'Empire Theatre', '', 'inherit', 'closed', 'closed', '', 'empiretheatre-walkingtour2', '', '', '2018-02-01 09:50:24', '2018-01-31 23:50:24', '', 518, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/02/EmpireTheatre-WalkingTour2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (520, 1, '2018-02-01 09:50:35', '2018-01-31 23:50:35', '<h2>Wed 20 Sep</h2>\r\nPresent day Toowoomba is built on the bones of a gracious Victorian era city. Look carefully and the city\'s historic past comes to life.\r\n\r\nJoin local Heritage Architect Stephanie Keays on this walk through the CBD and take a fascinating glimpse into Toowoomba’s architecture and history. Starting at the Art Deco style Empire Theatre, visitors will be guided through Toowoomba’s rich architectural legacy. Explore a range of building styles and the design details that make them unique to our town with a mix of history, street art, cafes, shops and interesting stories along the way.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at the Walton Stores complex, Annand Street, one of Toowoomba’s newest architecturally designed dining districts.\r\n\r\nWHEN: Wednesday 20 Sept\r\n\r\nCOST: Adult $33 | Concession $29.\r\n<h2>Times</h2>\r\nWednesday 20 Sept 3pm - 4:30pm.\r\n<h2>Location</h2>\r\nPick-up at Empire Theatre Lawn, 56 Neil St, Toowoomba (<a href="https://goo.gl/maps/zyqVPAfF3gn" target="_blank" rel="noopener">Google map</a>).', 'Walking tour CBD architecture', '', 'inherit', 'closed', 'closed', '', '518-revision-v1', '', '', '2018-02-01 09:50:35', '2018-01-31 23:50:35', '', 518, 'http://www.toowoombaregionalcouncil.com.au/tcof/518-revision-v1/', 0, 'revision', '', 0),
 (521, 1, '2017-09-21 09:50:53', '2017-09-20 23:50:53', '<h2>Thu 21 Sep</h2>\r\nThe state heritage listed Railway precinct is a must visit destination. Join your guide, Paul Herbert, as he develops the argument as to why the Toowoomba Railway is the most important piece of transport infrastructure ever built in Queensland. Explore the commercial, social and engineering significance of this intact historical treasure. Learn about the importance of the railway during World War II and explore one of Queensland’s best preserved air raid shelters. Uncover some of the fascinating stories accumulated over 150 years, from the antics of the young ladies working in the refreshment rooms to the ghost that is said to haunt the tracks.\r\n\r\nThe Railway precinct is a true treasure. Come and explore it with a passionate local.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary coffee at Inbound café located in the historic Railway refreshment rooms or at another nearby café.\r\n\r\nWHEN: Thursday 21 Sept\r\n\r\nCOST: Adult $33 | Concession $29.\r\n<h2>Times</h2>\r\n10am - 11:30am.\r\n<h2>Location</h2>\r\nToowoomba Railway Station, Platform 1, Railway St, Toowoomba (<a href="https://goo.gl/maps/jdAQeqCWkGF2" target="_blank" rel="noopener">Google map</a>).', 'Walking tour 150 years of rail', '', 'publish', 'closed', 'closed', '', 'walking-tour-150-years-of-rail-2', '', '', '2018-02-01 09:56:59', '2018-01-31 23:56:59', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=521', 8, 'post', '', 0),
 (522, 1, '2018-02-01 09:56:43', '2018-01-31 23:56:43', '', 'Toowoomba Railway Platform', '', 'inherit', 'closed', 'closed', '', 'railwayplatform2', '', '', '2018-02-01 09:56:52', '2018-01-31 23:56:52', '', 521, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/02/RailwayPlatform2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (523, 1, '2018-02-01 09:56:59', '2018-01-31 23:56:59', '<h2>Thu 21 Sep</h2>\r\nThe state heritage listed Railway precinct is a must visit destination. Join your guide, Paul Herbert, as he develops the argument as to why the Toowoomba Railway is the most important piece of transport infrastructure ever built in Queensland. Explore the commercial, social and engineering significance of this intact historical treasure. Learn about the importance of the railway during World War II and explore one of Queensland’s best preserved air raid shelters. Uncover some of the fascinating stories accumulated over 150 years, from the antics of the young ladies working in the refreshment rooms to the ghost that is said to haunt the tracks.\r\n\r\nThe Railway precinct is a true treasure. Come and explore it with a passionate local.\r\n\r\nDURATION: 1.5 hours\r\n\r\nFINISH: With a complimentary coffee at Inbound café located in the historic Railway refreshment rooms or at another nearby café.\r\n\r\nWHEN: Thursday 21 Sept\r\n\r\nCOST: Adult $33 | Concession $29.\r\n<h2>Times</h2>\r\n10am - 11:30am.\r\n<h2>Location</h2>\r\nToowoomba Railway Station, Platform 1, Railway St, Toowoomba (<a href="https://goo.gl/maps/jdAQeqCWkGF2" target="_blank" rel="noopener">Google map</a>).', 'Walking tour 150 years of rail', '', 'inherit', 'closed', 'closed', '', '521-revision-v1', '', '', '2018-02-01 09:56:59', '2018-01-31 23:56:59', '', 521, 'http://www.toowoombaregionalcouncil.com.au/tcof/521-revision-v1/', 0, 'revision', '', 0),
 (524, 1, '2017-09-23 09:57:32', '2017-09-22 23:57:32', 'Sat 23 Sep\r\n\r\nToowoomba has its secrets. A city of prisons and unsavoury characters as well the eccentric and funny, Toowoomba’s dark side is opened up on this fascinating tour. Join local, Paul Herbert, as he explores the many stories of Toowoomba not found in the historical postcards or letters posted home to mothers. Come away with a new found awareness of the city of Toowoomba.\r\n\r\nDURATION: 2 hours\r\n\r\nFINISH: With a cool complimentary beer or soft drink at the historic Irish Club Hotel, Russell St, Toowoomba\r\n\r\nWHEN: Saturday 23 Sept\r\n\r\nCOST: Adult $35 | Concession $30.\r\n<h2>Times</h2>\r\n3pm - 5pm.\r\n<h2>Location</h2>\r\nUpper Queens Park, Cnr Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/nsjCHge2bAn" target="_blank" rel="noopener">Google map</a>).', 'Walking tour darker side', '', 'publish', 'closed', 'closed', '', 'walking-tour-darker-side', '', '', '2018-02-01 10:03:08', '2018-02-01 00:03:08', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=524', 7, 'post', '', 0),
 (525, 1, '2018-02-01 10:02:07', '2018-02-01 00:02:07', '', 'Ghosts walking on railway platform', '', 'inherit', 'closed', 'closed', '', 'walkingtourdarkerside2', '', '', '2018-02-01 10:02:57', '2018-02-01 00:02:57', '', 524, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/02/WalkingTourDarkerSide2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (526, 1, '2018-02-01 10:03:08', '2018-02-01 00:03:08', 'Sat 23 Sep\r\n\r\nToowoomba has its secrets. A city of prisons and unsavoury characters as well the eccentric and funny, Toowoomba’s dark side is opened up on this fascinating tour. Join local, Paul Herbert, as he explores the many stories of Toowoomba not found in the historical postcards or letters posted home to mothers. Come away with a new found awareness of the city of Toowoomba.\r\n\r\nDURATION: 2 hours\r\n\r\nFINISH: With a cool complimentary beer or soft drink at the historic Irish Club Hotel, Russell St, Toowoomba\r\n\r\nWHEN: Saturday 23 Sept\r\n\r\nCOST: Adult $35 | Concession $30.\r\n<h2>Times</h2>\r\n3pm - 5pm.\r\n<h2>Location</h2>\r\nUpper Queens Park, Cnr Margaret &amp; Lindsay Sts, Toowoomba (<a href="https://goo.gl/maps/nsjCHge2bAn" target="_blank" rel="noopener">Google map</a>).', 'Walking tour darker side', '', 'inherit', 'closed', 'closed', '', '524-revision-v1', '', '', '2018-02-01 10:03:08', '2018-02-01 00:03:08', '', 524, 'http://www.toowoombaregionalcouncil.com.au/tcof/524-revision-v1/', 0, 'revision', '', 0),
 (527, 1, '2017-09-22 10:03:26', '2017-09-22 00:03:26', 'Fri 22 Sep\r\n\r\nWith its developing street art culture and vibrant laneway life, Toowoomba is earning a reputation as a culturally diverse urban environment. Combining art and architecture, this walk takes the visitor through some of Toowoomba’s famous street art laneways. Learn about the art, the world renowned artists and the architecture on display. Sharing a mix of stories about the art and the buildings, our guides will show you a side of Toowoomba visitors rarely see. Take a walk on the wild side through the arcades, backstreets and laneways.\r\n\r\nDURATION: 2 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at Muller Brothers Rooftop Bar, a clever adaption of a former warehouse space.\r\n\r\nWHEN: Friday 22 Sept\r\n\r\nCOST: Adult $35 | Concession $30.\r\n<h2>Times</h2>\r\nFriday 22 Sept 4:30pm - 6:30pm.\r\n<h2>Location</h2>\r\nBell St Mall Entrance, 400 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/N8xuiYSgybq" target="_blank" rel="noopener">Google map</a>).', 'Walking tour hidden laneways', '', 'publish', 'closed', 'closed', '', 'walking-tour-hidden-laneways-2', '', '', '2018-02-01 10:33:07', '2018-02-01 00:33:07', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=527', 6, 'post', '', 0),
 (528, 1, '2018-02-01 10:32:45', '2018-02-01 00:32:45', '', 'Hidden Laneways mural', '', 'inherit', 'closed', 'closed', '', 'walkingtourhiddenlaneways2-2', '', '', '2018-02-01 10:33:00', '2018-02-01 00:33:00', '', 527, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/02/WalkingTourHiddenLaneways2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (529, 1, '2018-02-01 10:33:07', '2018-02-01 00:33:07', 'Fri 22 Sep\r\n\r\nWith its developing street art culture and vibrant laneway life, Toowoomba is earning a reputation as a culturally diverse urban environment. Combining art and architecture, this walk takes the visitor through some of Toowoomba’s famous street art laneways. Learn about the art, the world renowned artists and the architecture on display. Sharing a mix of stories about the art and the buildings, our guides will show you a side of Toowoomba visitors rarely see. Take a walk on the wild side through the arcades, backstreets and laneways.\r\n\r\nDURATION: 2 hours\r\n\r\nFINISH: With a complimentary glass of wine or soft drink at Muller Brothers Rooftop Bar, a clever adaption of a former warehouse space.\r\n\r\nWHEN: Friday 22 Sept\r\n\r\nCOST: Adult $35 | Concession $30.\r\n<h2>Times</h2>\r\nFriday 22 Sept 4:30pm - 6:30pm.\r\n<h2>Location</h2>\r\nBell St Mall Entrance, 400 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/N8xuiYSgybq" target="_blank" rel="noopener">Google map</a>).', 'Walking tour hidden laneways', '', 'inherit', 'closed', 'closed', '', '527-revision-v1', '', '', '2018-02-01 10:33:07', '2018-02-01 00:33:07', '', 527, 'http://www.toowoombaregionalcouncil.com.au/tcof/527-revision-v1/', 0, 'revision', '', 0),
 (530, 1, '2018-02-01 10:34:26', '2018-02-01 00:34:26', '<h2>Sat 16 Sep</h2>\r\nBuy direct from the farmer and get to know the people behind the food as these proud producers show off their wares at this exciting market. Talk to the growers, watch exciting food demos, enjoy free live music and buskers and treat the kids to great children’s activities such as pot a seed, face painting and a designated play area. Now that’s fresh!\r\n\r\nWHEN: Saturday 16 Sept\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 0439 844 849 or fiona@toowoombafarmersmarket.com.au.\r\n<h2>Times</h2>\r\nSaturday 16 Sept 7am - 11am\r\n<h2>Location</h2>\r\nWalton Stores, 476-482 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/6HJr4unSesE2" target="_blank" rel="noopener">Google map</a>).', 'Toowoomba Farmers Markets', '', 'inherit', 'closed', 'closed', '', '260-revision-v1', '', '', '2018-02-01 10:34:26', '2018-02-01 00:34:26', '', 260, 'http://www.toowoombaregionalcouncil.com.au/tcof/260-revision-v1/', 0, 'revision', '', 0),
 (531, 1, '2017-09-17 10:34:35', '2017-09-17 00:34:35', '<h2>Sun 17 Sep</h2>\r\nLet your creativity run wild as colourful artist, Anna Bartlett, guides you through a three hour Paint Along, all in the name of charity. You\'ll be treated to a glass of champagne on arrival, with morning tea and materials included, to recreate Anna\'s original painting, taking home your very own masterpiece. All funds raised go towards Mount Lofty Heights Nursing home.\r\n\r\nCOST: $75 per person\r\n\r\nENQUIRIES: 07 4616 6166.\r\n<h2>Times</h2>\r\n10am - 1pm.\r\n<h2>Location</h2>\r\nSt Saviour\'s Hall, Neil St, Toowoomba (<a href="https://goo.gl/maps/jQtf7VjiQyP2" target="_blank" rel="noopener">Google map</a>).', 'Pop-up paint along', '', 'publish', 'closed', 'closed', '', 'pop-up-paint-along', '', '', '2018-02-01 10:42:09', '2018-02-01 00:42:09', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=531', 5, 'post', '', 0),
 (532, 1, '2018-02-01 10:37:56', '2018-02-01 00:37:56', '<h2>Sun 17 Sep</h2>\r\nLet your creativity run wild as colourful artist, Anna Bartlett, guides you through a three hour Paint Along, all in the name of charity. You\'ll be treated to a glass of champagne on arrival, with morning tea and materials included, to recreate Anna\'s original painting, taking home your very own masterpiece. All funds raised go towards Mount Lofty Heights Nursing home.\r\n\r\nCOST: $75 per person\r\n\r\nENQUIRIES: 07 4616 6166.\r\n<h2>Times</h2>\r\n10am - 1pm.\r\n<h2>Location</h2>\r\nSt Saviour\'s Hall, Neil St, Toowoomba (<a href="https://goo.gl/maps/jQtf7VjiQyP2" target="_blank" rel="noopener">Google map</a>).', 'Pop-up paint along', '', 'inherit', 'closed', 'closed', '', '531-revision-v1', '', '', '2018-02-01 10:37:56', '2018-02-01 00:37:56', '', 531, 'http://www.toowoombaregionalcouncil.com.au/tcof/531-revision-v1/', 0, 'revision', '', 0),
 (533, 1, '2018-02-01 10:41:57', '2018-02-01 00:41:57', '', 'Painters Pallete', '', 'inherit', 'closed', 'closed', '', 'painterspallete2', '', '', '2018-02-01 10:42:02', '2018-02-01 00:42:02', '', 531, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2017/09/PaintersPallete2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (534, 1, '2017-09-15 10:42:25', '2017-09-15 00:42:25', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nWord on the street is that First Coat Mural Festival is ground-breaking. See the work of First Coat\'s 30 plus internationally acclaimed street artists on Toowoomba CBD\'s walls. Discover the outstanding art work in hidden laneways.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: www.firstcoat.com.au.\r\n\r\n&nbsp;', 'First Coat', '', 'publish', 'closed', 'closed', '', 'first-coat', '', '', '2018-02-01 11:14:39', '2018-02-01 01:14:39', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=534', 4, 'post', '', 0),
 (535, 1, '2018-02-01 11:14:05', '2018-02-01 01:14:05', '', 'First Coat Festival wall mural', '', 'inherit', 'closed', 'closed', '', 'firstcoatfestival2', '', '', '2018-02-01 11:14:15', '2018-02-01 01:14:15', '', 534, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/02/FirstCoatFestival2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (536, 1, '2018-02-01 11:14:39', '2018-02-01 01:14:39', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nWord on the street is that First Coat Mural Festival is ground-breaking. See the work of First Coat\'s 30 plus internationally acclaimed street artists on Toowoomba CBD\'s walls. Discover the outstanding art work in hidden laneways.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: www.firstcoat.com.au.\r\n\r\n&nbsp;', 'First Coat', '', 'inherit', 'closed', 'closed', '', '534-revision-v1', '', '', '2018-02-01 11:14:39', '2018-02-01 01:14:39', '', 534, 'http://www.toowoombaregionalcouncil.com.au/tcof/534-revision-v1/', 0, 'revision', '', 0),
 (537, 1, '2017-09-24 11:14:58', '2017-09-24 01:14:58', '<h2>Sun 24 Sep</h2>\r\nJoin Toowoomba Regional Art Gallery in conversation with local artist Monica Usher as she discusses her solo exhibition <em>Remnants of a Night Garden</em>. This is a free event and all are welcome. Monica\'s exhibition will be on display from 9 September - 8 October 2017.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6652 or art@tr.qld.gov.au.\r\n<h2>Times</h2>\r\n1:30pm.\r\n<h2>Location</h2>\r\nToowoomba Regional Art Gallery, 531 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/nCiXHS6Q41E2" target="_blank" rel="noopener">Google map</a>).', 'Artist talk', '', 'publish', 'closed', 'closed', '', 'artist-talk', '', '', '2018-02-01 11:21:24', '2018-02-01 01:21:24', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=537', 3, 'post', '', 0),
 (538, 1, '2018-02-01 11:21:04', '2018-02-01 01:21:04', '', 'Monica Usher exibit', '', 'inherit', 'closed', 'closed', '', 'monicausher2', '', '', '2018-02-01 11:21:21', '2018-02-01 01:21:21', '', 537, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/02/MonicaUsher2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (539, 1, '2018-02-01 11:21:24', '2018-02-01 01:21:24', '<h2>Sun 24 Sep</h2>\r\nJoin Toowoomba Regional Art Gallery in conversation with local artist Monica Usher as she discusses her solo exhibition <em>Remnants of a Night Garden</em>. This is a free event and all are welcome. Monica\'s exhibition will be on display from 9 September - 8 October 2017.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6652 or art@tr.qld.gov.au.\r\n<h2>Times</h2>\r\n1:30pm.\r\n<h2>Location</h2>\r\nToowoomba Regional Art Gallery, 531 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/nCiXHS6Q41E2" target="_blank" rel="noopener">Google map</a>).', 'Artist talk', '', 'inherit', 'closed', 'closed', '', '537-revision-v1', '', '', '2018-02-01 11:21:24', '2018-02-01 01:21:24', '', 537, 'http://www.toowoombaregionalcouncil.com.au/tcof/537-revision-v1/', 0, 'revision', '', 0),
 (540, 1, '2017-09-15 11:21:46', '2017-09-15 01:21:46', 'Fri 15 - Sat 23 Sep\r\n\r\nThe Trail provides an opportunity for visitors to see Spring immortalized in the colourful and unique heritage crafts of quilting, embroidery, spinning, weaving, felting and more. Exhibitions include \'Carnivale of Quilts\' from the Toowoomba Quilters Club, \'a Quilt Garden\' from Robyn Ginn, \'Toowoomba in Stitch\' from the Toowoomba Embroiderers\' Guild, \'Textiles from the Garden\' by Toowoomba Spinners, Weavers &amp; Dyers Group and a display by Quilt Journeys.\r\n\r\nThe Trail will showcase:\r\n<ul>\r\n 	<li>never before displayed quilts, embroidery and unique handcrafted garments and items</li>\r\n 	<li>hands-on demonstrations of techniques and mini classes</li>\r\n 	<li>colour and textures from the garden</li>\r\n 	<li>unique collections of original designed articles</li>\r\n</ul>\r\nENQUIRIES: 07 4637 0205 or http://www.facebook.com/quiltstitchtextile/\r\n<h3><span style="color: #993366;">DETAILS</span></h3>\r\n<h4>Toowoomba Quilters Club</h4>\r\n16 Sept - 21 Sept from 9am - 4:30pm\r\n22 Sept from 9am - 2:30pm\r\nCost: Adult $5 | Student $2.50\r\nLocation: Salo Centre, St Ursula\'s College, Rome St, Toowoomba\r\n<h4>Quilt Journeys</h4>\r\n17 Sept - 20 Sept from 9am - 5pm\r\nCost: Adult $5 | Child Free\r\nLocation: The Homestead, Fairholme College, Wirra Wirra St, Toowoomba\r\n<h4>Robyn Ginn\'s Quilts</h4>\r\n19 Sept - 20 Sept from 9:30am - 5pm\r\nCost: Gold coin donation\r\nLocation: 4 Kelsall Crt, Toowoomba\r\n<h4>Toowoomba Embroiderers\' Guild</h4>\r\n22 Sept - 23 Sept from 10am - 3pm\r\nCost: $5 per person\r\nLocation: Chapel &amp; Dining Room, St Ursula\'s College, Cnr Rome &amp; Warra Sts, Toowoomba\r\n<h4>Toowoomba Spinners, Weavers &amp; Dyers Group</h4>\r\n15 Sept - 20 Sept from 9am - 4pm (16 Sept 9am - 5pm)\r\nCost: Free\r\nLocation: St Luke\'s Hall, 152 Herries St, Toowoomba.', 'Quilts, stitches & textiles trail', '', 'publish', 'closed', 'closed', '', 'quilts-stitches-textiles-trail', '', '', '2018-02-01 11:35:37', '2018-02-01 01:35:37', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=540', 2, 'post', '', 0),
 (541, 1, '2018-02-01 11:35:17', '2018-02-01 01:35:17', '', 'Quilt Stitches Trail examples', '', 'inherit', 'closed', 'closed', '', 'quiltstitchestrail2', '', '', '2018-02-01 11:35:30', '2018-02-01 01:35:30', '', 540, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/02/QuiltStitchesTrail2.jpg', 0, 'attachment', 'image/jpeg', 0),
 (542, 1, '2018-02-01 11:35:37', '2018-02-01 01:35:37', 'Fri 15 - Sat 23 Sep\r\n\r\nThe Trail provides an opportunity for visitors to see Spring immortalized in the colourful and unique heritage crafts of quilting, embroidery, spinning, weaving, felting and more. Exhibitions include \'Carnivale of Quilts\' from the Toowoomba Quilters Club, \'a Quilt Garden\' from Robyn Ginn, \'Toowoomba in Stitch\' from the Toowoomba Embroiderers\' Guild, \'Textiles from the Garden\' by Toowoomba Spinners, Weavers &amp; Dyers Group and a display by Quilt Journeys.\r\n\r\nThe Trail will showcase:\r\n<ul>\r\n 	<li>never before displayed quilts, embroidery and unique handcrafted garments and items</li>\r\n 	<li>hands-on demonstrations of techniques and mini classes</li>\r\n 	<li>colour and textures from the garden</li>\r\n 	<li>unique collections of original designed articles</li>\r\n</ul>\r\nENQUIRIES: 07 4637 0205 or http://www.facebook.com/quiltstitchtextile/\r\n<h3><span style="color: #993366;">DETAILS</span></h3>\r\n<h4>Toowoomba Quilters Club</h4>\r\n16 Sept - 21 Sept from 9am - 4:30pm\r\n22 Sept from 9am - 2:30pm\r\nCost: Adult $5 | Student $2.50\r\nLocation: Salo Centre, St Ursula\'s College, Rome St, Toowoomba\r\n<h4>Quilt Journeys</h4>\r\n17 Sept - 20 Sept from 9am - 5pm\r\nCost: Adult $5 | Child Free\r\nLocation: The Homestead, Fairholme College, Wirra Wirra St, Toowoomba\r\n<h4>Robyn Ginn\'s Quilts</h4>\r\n19 Sept - 20 Sept from 9:30am - 5pm\r\nCost: Gold coin donation\r\nLocation: 4 Kelsall Crt, Toowoomba\r\n<h4>Toowoomba Embroiderers\' Guild</h4>\r\n22 Sept - 23 Sept from 10am - 3pm\r\nCost: $5 per person\r\nLocation: Chapel &amp; Dining Room, St Ursula\'s College, Cnr Rome &amp; Warra Sts, Toowoomba\r\n<h4>Toowoomba Spinners, Weavers &amp; Dyers Group</h4>\r\n15 Sept - 20 Sept from 9am - 4pm (16 Sept 9am - 5pm)\r\nCost: Free\r\nLocation: St Luke\'s Hall, 152 Herries St, Toowoomba.', 'Quilts, stitches & textiles trail', '', 'inherit', 'closed', 'closed', '', '540-revision-v1', '', '', '2018-02-01 11:35:37', '2018-02-01 01:35:37', '', 540, 'http://www.toowoombaregionalcouncil.com.au/tcof/540-revision-v1/', 0, 'revision', '', 0),
 (544, 2, '2018-02-02 13:17:34', '2018-02-02 03:17:34', '.site-header:after {\n    content: "";\n    position: relative;\n    bottom: 0px;\n    left: 0px;\n    right: 0px;\n    display: block;\n    height: 15px;\n    width: 100%;\n    background-image: url(wp-content/uploads/2018/01/herringbone.png);\n    background-repeat: repeat-x;\n    background-size: 33px 15px;\n    background-position: center top;\n}', 'bento-child-tcof', '', 'inherit', 'closed', 'closed', '', '485-revision-v1', '', '', '2018-02-02 13:17:34', '2018-02-02 03:17:34', '', 485, 'http://www.toowoombaregionalcouncil.com.au/tcof/485-revision-v1/', 0, 'revision', '', 0),
 (546, 2, '2018-02-02 13:19:24', '2018-02-02 03:19:24', '', 'bento-child-tcof', '', 'inherit', 'closed', 'closed', '', '485-revision-v1', '', '', '2018-02-02 13:19:24', '2018-02-02 03:19:24', '', 485, 'http://www.toowoombaregionalcouncil.com.au/tcof/485-revision-v1/', 0, 'revision', '', 0),
 (547, 2, '2018-03-12 11:12:12', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-12 11:12:12', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=547', 0, 'post', '', 0),
 (548, 2, '2018-03-12 14:16:13', '2018-03-12 04:16:13', '{\n    "bento-child-tcof::bento_front_header_primary_cta_text": {\n        "value": "",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-12 04:16:13"\n    },\n    "bento-child-tcof::bento_front_header_primary_cta_link": {\n        "value": "",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-12 04:16:13"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'f58afbfd-6346-4db8-a5de-51640c164579', '', '', '2018-03-12 14:16:13', '2018-03-12 04:16:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=548', 0, 'customize_changeset', '', 0),
 (549, 2, '2018-03-12 14:22:57', '2018-03-12 04:22:57', '{\n    "bento-child-tcof::bento_front_header_primary_cta_text": {\n        "value": "test",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-12 04:22:57"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'c46c2e66-aea2-424f-b27a-e9b19df31a55', '', '', '2018-03-12 14:22:57', '2018-03-12 04:22:57', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/c46c2e66-aea2-424f-b27a-e9b19df31a55/', 0, 'customize_changeset', '', 0),
 (550, 2, '2018-03-12 14:23:54', '2018-03-12 04:23:54', '{\n    "bento-child-tcof::bento_front_header_primary_cta_text": {\n        "value": "place-holder-change-in-theme-and-child",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-12 04:23:54"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '09494225-653b-43fe-9d17-d9d49ccd7959', '', '', '2018-03-12 14:23:54', '2018-03-12 04:23:54', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/09494225-653b-43fe-9d17-d9d49ccd7959/', 0, 'customize_changeset', '', 0),
 (551, 2, '2018-03-12 14:31:37', '2018-03-12 04:31:37', '{\n    "bento-child-tcof::bento_front_header_primary_cta_text": {\n        "value": "Summer Tunes - Jan 2018",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-12 04:31:37"\n    },\n    "bento-child-tcof::bento_front_header_primary_cta_link": {\n        "value": "http://www.tr.qld.gov.au/summertunes",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-12 04:31:37"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '320eef31-33aa-434d-a048-04d465899881', '', '', '2018-03-12 14:31:37', '2018-03-12 04:31:37', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/320eef31-33aa-434d-a048-04d465899881/', 0, 'customize_changeset', '', 0),
 (552, 2, '2018-03-13 10:56:53', '2018-03-13 00:56:53', '{\n    "bento-child-tcof::bento_front_meta_title": {\n        "value": "The Carnival of Flowers",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-13 00:55:20"\n    },\n    "bento-child-tcof::bento_front_meta_description": {\n        "value": "The award-winning Toowoomba Carnival of Flowers continues to grow. Spectacular gardens, country touring, live music and local food & wine plus much more.",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-13 00:56:14"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '6bff50be-320b-4d70-a5a4-5885fe2a9141', '', '', '2018-03-13 10:56:53', '2018-03-13 00:56:53', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=552', 0, 'customize_changeset', '', 0),
 (553, 2, '2018-03-13 11:06:02', '2018-03-13 01:06:02', '[the-post-grid id="598" title="Family"]', 'test', '', 'publish', 'closed', 'closed', '', 'test', '', '', '2018-03-14 14:02:23', '2018-03-14 04:02:23', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=553', 8, 'page', '', 0),
 (554, 2, '2018-03-13 11:06:02', '2018-03-13 01:06:02', '<div id="pl-554"  class="panel-layout" ><div id="pg-554-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-554-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="554">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-554-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-554 .so-panel { margin-bottom:30px } #pl-554 .so-panel:last-child { margin-bottom:0px } #pg-554-0.panel-no-style, #pg-554-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-554-0.panel-no-style, #pg-554-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-554-0 .panel-grid-cell { margin-right:0 } #pg-554-0 .panel-grid-cell { width:100% } #pl-554 .panel-grid-cell { padding:0 } #pl-554 .panel-grid .panel-grid-cell-empty { display:none } #pl-554 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:06:02', '2018-03-13 01:06:02', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (555, 2, '2018-03-13 11:06:02', '2018-03-13 01:06:02', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:06:02', '2018-03-13 01:06:02', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (556, 2, '2018-03-13 11:06:46', '2018-03-13 01:06:46', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:06:46', '2018-03-13 01:06:46', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (558, 2, '2018-03-13 13:42:37', '2018-03-13 03:42:37', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:[],&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', 'test', '', 'inherit', 'closed', 'closed', '', '553-autosave-v1', '', '', '2018-03-13 13:42:37', '2018-03-13 03:42:37', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-autosave-v1/', 0, 'revision', '', 0),
 (559, 2, '2018-03-13 11:11:05', '2018-03-13 01:11:05', '<div id="pl-559"  class="panel-layout" ><div id="pg-559-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-559-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-559-0-0-0" class="so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostContent"]<input type="hidden" value="{&quot;instance&quot;:{&quot;type&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-559-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="559">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-559-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-559 .so-panel { margin-bottom:30px } #pl-559 .so-panel:last-child { margin-bottom:0px } #pg-559-0.panel-no-style, #pg-559-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-559-0.panel-no-style, #pg-559-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-559-0 .panel-grid-cell { margin-right:0 } #pg-559-0 .panel-grid-cell { width:100% } #pl-559 .panel-grid-cell { padding:0 } #pl-559 .panel-grid .panel-grid-cell-empty { display:none } #pl-559 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:11:05', '2018-03-13 01:11:05', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (560, 2, '2018-03-13 11:11:05', '2018-03-13 01:11:05', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostContent"]<input type="hidden" value="{&quot;instance&quot;:{&quot;type&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:11:05', '2018-03-13 01:11:05', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (561, 2, '2018-03-13 11:12:29', '2018-03-13 01:12:29', '<div id="pl-561"  class="panel-layout" ><div id="pg-561-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-561-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-561-0-0-0" class="so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostContent"]<input type="hidden" value="{&quot;instance&quot;:{&quot;type&quot;:&quot;featured&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-561-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="561">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-561-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-561 .so-panel { margin-bottom:30px } #pl-561 .so-panel:last-child { margin-bottom:0px } #pg-561-0.panel-no-style, #pg-561-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-561-0.panel-no-style, #pg-561-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-561-0 .panel-grid-cell { margin-right:0 } #pg-561-0 .panel-grid-cell { width:100% } #pl-561 .panel-grid-cell { padding:0 } #pl-561 .panel-grid .panel-grid-cell-empty { display:none } #pl-561 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:12:29', '2018-03-13 01:12:29', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (562, 2, '2018-03-13 11:12:29', '2018-03-13 01:12:29', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostContent"]<input type="hidden" value="{&quot;instance&quot;:{&quot;type&quot;:&quot;featured&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:12:29', '2018-03-13 01:12:29', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (563, 2, '2018-03-13 11:13:01', '2018-03-13 01:13:01', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostContent"]<input type="hidden" value="{&quot;instance&quot;:{&quot;type&quot;:&quot;featured&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:13:01', '2018-03-13 01:13:01', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (564, 2, '2018-03-13 11:13:42', '2018-03-13 01:13:42', '<div id="pl-564"  class="panel-layout" ><div id="pg-564-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-564-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-564-0-0-0" class="so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostContent"]<input type="hidden" value="{&quot;instance&quot;:{&quot;type&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-564-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="564">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-564-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-564 .so-panel { margin-bottom:30px } #pl-564 .so-panel:last-child { margin-bottom:0px } #pg-564-0.panel-no-style, #pg-564-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-564-0.panel-no-style, #pg-564-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-564-0 .panel-grid-cell { margin-right:0 } #pg-564-0 .panel-grid-cell { width:100% } #pl-564 .panel-grid-cell { padding:0 } #pl-564 .panel-grid .panel-grid-cell-empty { display:none } #pl-564 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:13:42', '2018-03-13 01:13:42', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (565, 2, '2018-03-13 11:13:42', '2018-03-13 01:13:42', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostContent"]<input type="hidden" value="{&quot;instance&quot;:{&quot;type&quot;:&quot;&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-post-content panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:13:42', '2018-03-13 01:13:42', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (566, 2, '2018-03-13 11:14:06', '2018-03-13 01:14:06', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:14:06', '2018-03-13 01:14:06', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (567, 2, '2018-03-13 11:23:00', '2018-03-13 01:23:00', '<div id="pl-567"  class="panel-layout" ><div id="pg-567-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-567-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-567-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[catlist tags=\\&quot;family\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-567-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="567">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-567-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-567 .so-panel { margin-bottom:30px } #pl-567 .so-panel:last-child { margin-bottom:0px } #pg-567-0.panel-no-style, #pg-567-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-567-0.panel-no-style, #pg-567-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-567-0 .panel-grid-cell { margin-right:0 } #pg-567-0 .panel-grid-cell { width:100% } #pl-567 .panel-grid-cell { padding:0 } #pl-567 .panel-grid .panel-grid-cell-empty { display:none } #pl-567 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:23:00', '2018-03-13 01:23:00', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (568, 2, '2018-03-13 11:23:00', '2018-03-13 01:23:00', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[catlist tags=\\&quot;family\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:23:00', '2018-03-13 01:23:00', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (569, 2, '2018-03-13 11:30:08', '2018-03-13 01:30:08', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[catlist tags=\\&quot;family\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:30:08', '2018-03-13 01:30:08', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (570, 2, '2018-03-13 11:43:04', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-13 11:43:04', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=post_grid&p=570', 0, 'post_grid', '', 0),
 (571, 2, '2018-03-13 11:50:08', '2018-03-13 01:50:08', '<div id="pl-571"  class="panel-layout" ><div id="pg-571-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-571-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-571-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[display-posts tag=\\&quot;family\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-571-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="571">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-571-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-571 .so-panel { margin-bottom:30px } #pl-571 .so-panel:last-child { margin-bottom:0px } #pg-571-0.panel-no-style, #pg-571-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-571-0.panel-no-style, #pg-571-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-571-0 .panel-grid-cell { margin-right:0 } #pg-571-0 .panel-grid-cell { width:100% } #pl-571 .panel-grid-cell { padding:0 } #pl-571 .panel-grid .panel-grid-cell-empty { display:none } #pl-571 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:50:08', '2018-03-13 01:50:08', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (572, 2, '2018-03-13 11:50:08', '2018-03-13 01:50:08', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[display-posts tag=\\&quot;family\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:50:08', '2018-03-13 01:50:08', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (573, 2, '2018-03-13 11:52:10', '2018-03-13 01:52:10', '<div id="pl-573"  class="panel-layout" ><div id="pg-573-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-573-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-573-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[display-posts tag=\\&quot;family\\&quot; wrapper=\\&quot;div\\&quot; wrapper_class=\\&quot;items-container grid-container grid-rows grid-columns-3\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-573-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="573">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-573-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-573 .so-panel { margin-bottom:30px } #pl-573 .so-panel:last-child { margin-bottom:0px } #pg-573-0.panel-no-style, #pg-573-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-573-0.panel-no-style, #pg-573-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-573-0 .panel-grid-cell { margin-right:0 } #pg-573-0 .panel-grid-cell { width:100% } #pl-573 .panel-grid-cell { padding:0 } #pl-573 .panel-grid .panel-grid-cell-empty { display:none } #pl-573 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:52:10', '2018-03-13 01:52:10', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (574, 2, '2018-03-13 11:52:10', '2018-03-13 01:52:10', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[display-posts tag=\\&quot;family\\&quot; wrapper=\\&quot;div\\&quot; wrapper_class=\\&quot;items-container grid-container grid-rows grid-columns-3\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:52:10', '2018-03-13 01:52:10', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (575, 2, '2018-03-13 11:54:15', '2018-03-13 01:54:15', '<div id="pl-575"  class="panel-layout" ><div id="pg-575-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-575-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-575-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[display-posts category_display=\\&quot;true\\&quot; tag=\\&quot;family\\&quot; wrapper=\\&quot;div\\&quot; wrapper_class=\\&quot;items-container grid-container grid-rows grid-columns-3\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-575-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="575">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-575-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-575 .so-panel { margin-bottom:30px } #pl-575 .so-panel:last-child { margin-bottom:0px } #pg-575-0.panel-no-style, #pg-575-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-575-0.panel-no-style, #pg-575-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-575-0 .panel-grid-cell { margin-right:0 } #pg-575-0 .panel-grid-cell { width:100% } #pl-575 .panel-grid-cell { padding:0 } #pl-575 .panel-grid .panel-grid-cell-empty { display:none } #pl-575 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:54:15', '2018-03-13 01:54:15', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (576, 2, '2018-03-13 11:54:15', '2018-03-13 01:54:15', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[display-posts category_display=\\&quot;true\\&quot; tag=\\&quot;family\\&quot; wrapper=\\&quot;div\\&quot; wrapper_class=\\&quot;items-container grid-container grid-rows grid-columns-3\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:54:15', '2018-03-13 01:54:15', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (577, 2, '2018-03-13 11:55:07', '2018-03-13 01:55:07', '<div id="pl-577"  class="panel-layout" ><div id="pg-577-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-577-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-577-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[display-posts category_display=\\&quot;true\\&quot; tag=\\&quot;family\\&quot; wrapper=\\&quot;div\\&quot; wrapper_class=\\&quot;items-container grid-container grid-rows grid-columns-3\\&quot; image_size=\\&quot;thumbnail\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-577-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="577">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-577-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-577 .so-panel { margin-bottom:30px } #pl-577 .so-panel:last-child { margin-bottom:0px } #pg-577-0.panel-no-style, #pg-577-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-577-0.panel-no-style, #pg-577-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-577-0 .panel-grid-cell { margin-right:0 } #pg-577-0 .panel-grid-cell { width:100% } #pl-577 .panel-grid-cell { padding:0 } #pl-577 .panel-grid .panel-grid-cell-empty { display:none } #pl-577 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:55:08', '2018-03-13 01:55:08', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (578, 2, '2018-03-13 11:55:08', '2018-03-13 01:55:08', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[display-posts category_display=\\&quot;true\\&quot; tag=\\&quot;family\\&quot; wrapper=\\&quot;div\\&quot; wrapper_class=\\&quot;items-container grid-container grid-rows grid-columns-3\\&quot; image_size=\\&quot;thumbnail\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 11:55:08', '2018-03-13 01:55:08', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (579, 2, '2018-03-13 13:38:01', '2018-03-13 03:38:01', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:38:01', '2018-03-13 03:38:01', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (580, 2, '2018-03-13 13:38:25', '2018-03-13 03:38:25', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:38:25', '2018-03-13 03:38:25', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (581, 2, '2018-03-13 13:38:53', '2018-03-13 03:38:53', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:38:53', '2018-03-13 03:38:53', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (582, 2, '2018-03-13 13:43:03', '2018-03-13 03:43:03', '<div id="pl-582"  class="panel-layout" ><div id="pg-582-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-582-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-582-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5aa748852c51d&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520912568035&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-582-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="582">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-582-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-582 .so-panel { margin-bottom:30px } #pl-582 .so-panel:last-child { margin-bottom:0px } #pg-582-0.panel-no-style, #pg-582-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-582-0.panel-no-style, #pg-582-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-582-0 .panel-grid-cell { margin-right:0 } #pg-582-0 .panel-grid-cell { width:100% } #pl-582 .panel-grid-cell { padding:0 } #pl-582 .panel-grid .panel-grid-cell-empty { display:none } #pl-582 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:43:03', '2018-03-13 03:43:03', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (583, 2, '2018-03-13 13:43:03', '2018-03-13 03:43:03', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5aa748852c51d&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520912568035&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:43:03', '2018-03-13 03:43:03', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (584, 2, '2018-03-13 13:43:37', '2018-03-13 03:43:37', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5aa748852c51d&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520912568035&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:43:37', '2018-03-13 03:43:37', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (585, 2, '2018-03-13 13:45:57', '2018-03-13 03:45:57', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;more&quot;:true,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5aa748852c51d&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520912745356&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:45:57', '2018-03-13 03:45:57', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (586, 2, '2018-03-13 13:46:57', '2018-03-13 03:46:57', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;more&quot;:true,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5aa748852c51d&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520912745356&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:46:57', '2018-03-13 03:46:57', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (587, 2, '2018-03-13 13:49:49', '2018-03-13 03:49:49', '<div id="pl-587"  class="panel-layout" ><div id="pg-587-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-587-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-587-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-page.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5aa748852c51d&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520912979151&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-587-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="587">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-587-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-587 .so-panel { margin-bottom:30px } #pl-587 .so-panel:last-child { margin-bottom:0px } #pg-587-0.panel-no-style, #pg-587-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-587-0.panel-no-style, #pg-587-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-587-0 .panel-grid-cell { margin-right:0 } #pg-587-0 .panel-grid-cell { width:100% } #pl-587 .panel-grid-cell { padding:0 } #pl-587 .panel-grid .panel-grid-cell-empty { display:none } #pl-587 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:49:50', '2018-03-13 03:49:50', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (588, 2, '2018-03-13 13:49:50', '2018-03-13 03:49:50', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-page.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5aa748852c51d&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520912979151&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:49:50', '2018-03-13 03:49:50', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (589, 2, '2018-03-13 13:50:43', '2018-03-13 03:50:43', '<div id="pl-589"  class="panel-layout" ><div id="pg-589-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-589-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-589-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;class&quot;:&quot;grid&quot;,&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" ><div class="grid panel-widget-style panel-widget-style-for-589-0-0-0" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5aa748852c51d&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520913006990&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-589-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;class&amp;quot;:&amp;quot;grid&amp;quot;,&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&lt;div class=\\&quot;grid panel-widget-style panel-widget-style-for-589-0-0-0\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="589">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-589-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-589 .so-panel { margin-bottom:30px } #pl-589 .so-panel:last-child { margin-bottom:0px } #pg-589-0.panel-no-style, #pg-589-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-589-0.panel-no-style, #pg-589-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-589-0 .panel-grid-cell { margin-right:0 } #pg-589-0 .panel-grid-cell { width:100% } #pl-589 .panel-grid-cell { padding:0 } #pl-589 .panel-grid .panel-grid-cell-empty { display:none } #pl-589 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:50:44', '2018-03-13 03:50:44', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (590, 2, '2018-03-13 13:50:44', '2018-03-13 03:50:44', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;class&quot;:&quot;grid&quot;,&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" ><div class="grid panel-widget-style panel-widget-style-for-553-0-0-0" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;},\\&quot;to\\&quot;:{\\&quot;value\\&quot;:0,\\&quot;unit\\&quot;:\\&quot;days\\&quot;}}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;5aa748852c51d&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520913006990&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;class&amp;quot;:&amp;quot;grid&amp;quot;,&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&lt;div class=\\&quot;grid panel-widget-style panel-widget-style-for-553-0-0-0\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-13 13:50:44', '2018-03-13 03:50:44', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (591, 2, '2018-03-14 12:32:08', '2018-03-14 02:32:08', '<div id="pl-427"  class="panel-layout" ><div id="pg-427-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-427-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-427-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:[],&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-427-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>', 'Family', '', 'inherit', 'closed', 'closed', '', '427-autosave-v1', '', '', '2018-03-14 12:32:08', '2018-03-14 02:32:08', '', 427, 'http://www.toowoombaregionalcouncil.com.au/tcof/427-autosave-v1/', 0, 'revision', '', 0),
 (592, 2, '2018-03-14 12:32:48', '2018-03-14 02:32:48', '<div id="pl-592"  class="panel-layout" ><div id="pg-592-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-592-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-592-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;9386346125aa8898971d34165935526&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520994745332&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-592-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="592">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-592-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-592 .so-panel { margin-bottom:30px } #pl-592 .so-panel:last-child { margin-bottom:0px } #pg-592-0.panel-no-style, #pg-592-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-592-0.panel-no-style, #pg-592-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-592-0 .panel-grid-cell { margin-right:0 } #pg-592-0 .panel-grid-cell { width:100% } #pl-592 .panel-grid-cell { padding:0 } #pl-592 .panel-grid .panel-grid-cell-empty { display:none } #pl-592 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'Family', '', 'inherit', 'closed', 'closed', '', '427-revision-v1', '', '', '2018-03-14 12:32:48', '2018-03-14 02:32:48', '', 427, 'http://www.toowoombaregionalcouncil.com.au/tcof/427-revision-v1/', 0, 'revision', '', 0),
 (593, 2, '2018-03-14 12:32:48', '2018-03-14 02:32:48', '<div id="pl-427"  class="panel-layout" ><div id="pg-427-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-427-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-427-0-0-0" class="so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="SiteOrigin_Panels_Widgets_PostLoop"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;template&quot;:&quot;content-grid.php&quot;,&quot;posts&quot;:&quot;post_type=post&amp;tax_query=post_tag:family&amp;date_type=specific&amp;date_query={\\&quot;after\\&quot;:\\&quot;\\&quot;,\\&quot;before\\&quot;:\\&quot;\\&quot;}&amp;date_query_relative={\\&quot;from\\&quot;:[],\\&quot;to\\&quot;:[]}&amp;orderby=date&amp;order=DESC&quot;,&quot;_sow_form_id&quot;:&quot;9386346125aa8898971d34165935526&quot;,&quot;_sow_form_timestamp&quot;:&quot;1520994745332&quot;,&quot;more&quot;:false},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-427-0-0-0\\&quot; class=\\&quot;so-panel widget widget_siteorigin-panels-postloop panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="427">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-427-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-427 .so-panel { margin-bottom:30px } #pl-427 .so-panel:last-child { margin-bottom:0px } #pg-427-0.panel-no-style, #pg-427-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-427-0.panel-no-style, #pg-427-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-427-0 .panel-grid-cell { margin-right:0 } #pg-427-0 .panel-grid-cell { width:100% } #pl-427 .panel-grid-cell { padding:0 } #pl-427 .panel-grid .panel-grid-cell-empty { display:none } #pl-427 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'Family', '', 'inherit', 'closed', 'closed', '', '427-revision-v1', '', '', '2018-03-14 12:32:48', '2018-03-14 02:32:48', '', 427, 'http://www.toowoombaregionalcouncil.com.au/tcof/427-revision-v1/', 0, 'revision', '', 0),
 (594, 2, '2018-03-14 12:33:18', '2018-03-14 02:33:18', '<div id="pl-427"  class="panel-layout" ><div id="pg-427-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-427-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="427">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-427-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-427 .so-panel { margin-bottom:30px } #pl-427 .so-panel:last-child { margin-bottom:0px } #pg-427-0.panel-no-style, #pg-427-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-427-0.panel-no-style, #pg-427-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-427-0 .panel-grid-cell { margin-right:0 } #pg-427-0 .panel-grid-cell { width:100% } #pl-427 .panel-grid-cell { padding:0 } #pl-427 .panel-grid .panel-grid-cell-empty { display:none } #pl-427 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'Family', '', 'inherit', 'closed', 'closed', '', '427-revision-v1', '', '', '2018-03-14 12:33:18', '2018-03-14 02:33:18', '', 427, 'http://www.toowoombaregionalcouncil.com.au/tcof/427-revision-v1/', 0, 'revision', '', 0),
 (595, 2, '2018-03-14 13:00:29', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-14 13:00:29', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=post_grid&p=595', 0, 'post_grid', '', 0),
 (596, 2, '2018-03-14 13:05:49', '2018-03-14 03:05:49', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell panel-grid-cell-empty"  data-weight="1" ></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-14 13:05:49', '2018-03-14 03:05:49', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (597, 2, '2018-03-14 13:06:47', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-14 13:06:47', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=wpupg_grid&p=597', 0, 'wpupg_grid', '', 0),
 (598, 2, '2018-03-14 13:11:10', '2018-03-14 03:11:10', '', 'Family', '', 'publish', 'closed', 'closed', '', 'family', '', '', '2018-03-14 16:27:53', '2018-03-14 06:27:53', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&#038;p=598', 0, 'rttpg', '', 0),
 (599, 2, '2018-03-14 13:14:37', '2018-03-14 03:14:37', '<div id="pl-599"  class="panel-layout" ><div id="pg-599-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-599-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-599-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[the-post-grid id=\\&quot;598\\&quot; title=\\&quot;Family\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-599-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="599">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-599-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-599 .so-panel { margin-bottom:30px } #pl-599 .so-panel:last-child { margin-bottom:0px } #pg-599-0.panel-no-style, #pg-599-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-599-0.panel-no-style, #pg-599-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-599-0 .panel-grid-cell { margin-right:0 } #pg-599-0 .panel-grid-cell { width:100% } #pl-599 .panel-grid-cell { padding:0 } #pl-599 .panel-grid .panel-grid-cell-empty { display:none } #pl-599 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-14 13:14:37', '2018-03-14 03:14:37', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (600, 2, '2018-03-14 13:14:37', '2018-03-14 03:14:37', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_image_attachment&quot;:false,&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[the-post-grid id=\\&quot;598\\&quot; title=\\&quot;Family\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_image_attachment&amp;quot;:false,&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-14 13:14:37', '2018-03-14 03:14:37', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (601, 2, '2018-03-14 13:21:44', '2018-03-14 03:21:44', '<div id="pl-553"  class="panel-layout" ><div id="pg-553-0"  class="panel-grid panel-no-style"  data-style="{&quot;background_display&quot;:&quot;tile&quot;,&quot;cell_alignment&quot;:&quot;flex-start&quot;}"  data-ratio="1"  data-ratio-direction="right" ><div id="pgc-553-0-0"  class="panel-grid-cell"  data-weight="1" ><div id="panel-553-0-0-0" class="so-panel widget widget_custom_html panel-first-child panel-last-child" data-index="0" data-style="{&quot;background_display&quot;:&quot;tile&quot;}" >[siteorigin_widget class="WP_Widget_Custom_HTML"]<input type="hidden" value="{&quot;instance&quot;:{&quot;title&quot;:&quot;&quot;,&quot;content&quot;:&quot;[the-post-grid id=\\&quot;598\\&quot; title=\\&quot;Family\\&quot;]&quot;},&quot;args&quot;:{&quot;before_widget&quot;:&quot;&lt;div id=\\&quot;panel-553-0-0-0\\&quot; class=\\&quot;so-panel widget widget_custom_html panel-first-child panel-last-child\\&quot; data-index=\\&quot;0\\&quot; data-style=\\&quot;{&amp;quot;background_display&amp;quot;:&amp;quot;tile&amp;quot;}\\&quot; &gt;&quot;,&quot;after_widget&quot;:&quot;&lt;\\/div&gt;&quot;,&quot;before_title&quot;:&quot;&lt;h3 class=\\&quot;widget-title\\&quot;&gt;&quot;,&quot;after_title&quot;:&quot;&lt;\\/h3&gt;&quot;,&quot;widget_id&quot;:&quot;widget-0-0-0&quot;}}" />[/siteorigin_widget]</div></div></div></div>\n\n<style type="text/css" class="panels-style" data-panels-style-for-post="553">@import url(http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/plugins/siteorigin-panels/css/front-flex.min.css); #pgc-553-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-553 .so-panel { margin-bottom:30px } #pl-553 .so-panel:last-child { margin-bottom:0px } #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-align-items:flex-start;align-items:flex-start } @media (max-width:780px){ #pg-553-0.panel-no-style, #pg-553-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-553-0 .panel-grid-cell { margin-right:0 } #pg-553-0 .panel-grid-cell { width:100% } #pl-553 .panel-grid-cell { padding:0 } #pl-553 .panel-grid .panel-grid-cell-empty { display:none } #pl-553 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px }  } </style>', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-14 13:21:44', '2018-03-14 03:21:44', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (603, 2, '2018-03-14 14:00:32', '2018-03-14 04:00:32', '', 'Floral', '', 'publish', 'closed', 'closed', '', 'floral', '', '', '2018-03-14 16:28:52', '2018-03-14 06:28:52', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&#038;p=603', 0, 'rttpg', '', 0),
 (604, 2, '2018-03-14 14:01:38', '2018-03-14 04:01:38', '[the-post-grid id="603" title="Floral"]', 'Floral', '', 'publish', 'closed', 'closed', '', 'floral', '', '', '2018-03-14 14:58:22', '2018-03-14 04:58:22', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=604', 7, 'page', '', 0),
 (605, 2, '2018-03-14 14:01:38', '2018-03-14 04:01:38', '', 'Floral', '', 'inherit', 'closed', 'closed', '', '604-revision-v1', '', '', '2018-03-14 14:01:38', '2018-03-14 04:01:38', '', 604, 'http://www.toowoombaregionalcouncil.com.au/tcof/604-revision-v1/', 0, 'revision', '', 0),
 (606, 2, '2018-03-14 14:02:23', '2018-03-14 04:02:23', '[the-post-grid id="598" title="Family"]', 'test', '', 'inherit', 'closed', 'closed', '', '553-revision-v1', '', '', '2018-03-14 14:02:23', '2018-03-14 04:02:23', '', 553, 'http://www.toowoombaregionalcouncil.com.au/tcof/553-revision-v1/', 0, 'revision', '', 0),
 (607, 2, '2018-03-14 14:02:59', '2018-03-14 04:02:59', '[the-post-grid id="603" title="Floral"]', 'Floral', '', 'inherit', 'closed', 'closed', '', '604-revision-v1', '', '', '2018-03-14 14:02:59', '2018-03-14 04:02:59', '', 604, 'http://www.toowoombaregionalcouncil.com.au/tcof/604-revision-v1/', 0, 'revision', '', 0),
 (608, 2, '2018-03-14 14:04:13', '2018-03-14 04:04:13', '[the-post-grid id="598" title="Family"]', 'Family', '', 'inherit', 'closed', 'closed', '', '427-revision-v1', '', '', '2018-03-14 14:04:13', '2018-03-14 04:04:13', '', 427, 'http://www.toowoombaregionalcouncil.com.au/tcof/427-revision-v1/', 0, 'revision', '', 0),
 (609, 2, '2018-03-14 14:04:42', '2018-03-14 04:04:42', '[the-post-grid id="617" title="Tours"]', 'Tours', '', 'publish', 'closed', 'closed', '', 'tours', '', '', '2018-03-14 14:58:00', '2018-03-14 04:58:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=609', 6, 'page', '', 0),
 (610, 2, '2018-03-14 14:04:42', '2018-03-14 04:04:42', '', 'Tours', '', 'inherit', 'closed', 'closed', '', '609-revision-v1', '', '', '2018-03-14 14:04:42', '2018-03-14 04:04:42', '', 609, 'http://www.toowoombaregionalcouncil.com.au/tcof/609-revision-v1/', 0, 'revision', '', 0),
 (611, 2, '2018-03-14 14:05:03', '2018-03-14 04:05:03', '[the-post-grid id="618" title="Parks & Gardens"]', 'Parks & Gardens', '', 'publish', 'closed', 'closed', '', 'parks-gardens', '', '', '2018-03-14 14:57:26', '2018-03-14 04:57:26', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=611', 5, 'page', '', 0),
 (612, 2, '2018-03-14 14:05:03', '2018-03-14 04:05:03', '', 'Parks & Gardens', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2018-03-14 14:05:03', '2018-03-14 04:05:03', '', 611, 'http://www.toowoombaregionalcouncil.com.au/tcof/611-revision-v1/', 0, 'revision', '', 0),
 (613, 2, '2018-03-14 14:05:19', '2018-03-14 04:05:19', '[the-post-grid id="619" title="Music"]', 'Music', '', 'publish', 'closed', 'closed', '', 'music', '', '', '2018-03-14 14:57:03', '2018-03-14 04:57:03', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=613', 4, 'page', '', 0),
 (614, 2, '2018-03-14 14:05:19', '2018-03-14 04:05:19', '', 'Music', '', 'inherit', 'closed', 'closed', '', '613-revision-v1', '', '', '2018-03-14 14:05:19', '2018-03-14 04:05:19', '', 613, 'http://www.toowoombaregionalcouncil.com.au/tcof/613-revision-v1/', 0, 'revision', '', 0),
 (615, 2, '2018-03-14 14:05:37', '2018-03-14 04:05:37', '[the-post-grid id="620" title="Food & Wine"]', 'Food & Wine', '', 'publish', 'closed', 'closed', '', 'food-wine', '', '', '2018-03-14 14:56:39', '2018-03-14 04:56:39', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=615', 3, 'page', '', 0),
 (616, 2, '2018-03-14 14:05:37', '2018-03-14 04:05:37', '', 'Food & Wine', '', 'inherit', 'closed', 'closed', '', '615-revision-v1', '', '', '2018-03-14 14:05:37', '2018-03-14 04:05:37', '', 615, 'http://www.toowoombaregionalcouncil.com.au/tcof/615-revision-v1/', 0, 'revision', '', 0),
 (617, 2, '2018-03-14 14:07:00', '2018-03-14 04:07:00', '', 'Tours', '', 'publish', 'closed', 'closed', '', 'tours', '', '', '2018-03-14 16:29:57', '2018-03-14 06:29:57', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&#038;p=617', 0, 'rttpg', '', 0),
 (618, 2, '2018-03-14 14:07:54', '2018-03-14 04:07:54', '', 'Parks & Gardens', '', 'publish', 'closed', 'closed', '', 'parks-gardens', '', '', '2018-03-14 16:29:41', '2018-03-14 06:29:41', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&#038;p=618', 0, 'rttpg', '', 0),
 (619, 2, '2018-03-14 14:08:47', '2018-03-14 04:08:47', '', 'Music', '', 'publish', 'closed', 'closed', '', 'music', '', '', '2018-03-14 16:29:25', '2018-03-14 06:29:25', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&#038;p=619', 0, 'rttpg', '', 0),
 (620, 2, '2018-03-14 14:09:45', '2018-03-14 04:09:45', '', 'Food & Wine', '', 'publish', 'closed', 'closed', '', 'food-wine', '', '', '2018-03-14 16:29:08', '2018-03-14 06:29:08', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&#038;p=620', 0, 'rttpg', '', 0),
 (621, 2, '2018-03-14 14:11:46', '2018-03-14 04:11:46', '', 'All events', '', 'publish', 'closed', 'closed', '', 'all-events', '', '', '2018-03-15 10:17:17', '2018-03-15 00:17:17', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&#038;p=621', 0, 'rttpg', '', 0),
 (622, 2, '2018-03-14 14:12:38', '2018-03-14 04:12:38', '[the-post-grid id="617" title="Tours"]', 'Tours', '', 'inherit', 'closed', 'closed', '', '609-revision-v1', '', '', '2018-03-14 14:12:38', '2018-03-14 04:12:38', '', 609, 'http://www.toowoombaregionalcouncil.com.au/tcof/609-revision-v1/', 0, 'revision', '', 0),
 (623, 2, '2018-03-14 14:13:02', '2018-03-14 04:13:02', '[the-post-grid id="618" title="Parks & Gardens"]', 'Parks & Gardens', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2018-03-14 14:13:02', '2018-03-14 04:13:02', '', 611, 'http://www.toowoombaregionalcouncil.com.au/tcof/611-revision-v1/', 0, 'revision', '', 0),
 (624, 2, '2018-03-14 14:13:28', '2018-03-14 04:13:28', '[the-post-grid id="619" title="Music"]', 'Music', '', 'inherit', 'closed', 'closed', '', '613-revision-v1', '', '', '2018-03-14 14:13:28', '2018-03-14 04:13:28', '', 613, 'http://www.toowoombaregionalcouncil.com.au/tcof/613-revision-v1/', 0, 'revision', '', 0),
 (625, 2, '2018-03-14 14:13:46', '2018-03-14 04:13:46', '[the-post-grid id="620" title="Food & Wine"]', 'Food & Wine', '', 'inherit', 'closed', 'closed', '', '615-revision-v1', '', '', '2018-03-14 14:13:46', '2018-03-14 04:13:46', '', 615, 'http://www.toowoombaregionalcouncil.com.au/tcof/615-revision-v1/', 0, 'revision', '', 0),
 (626, 2, '2018-03-14 14:14:44', '2018-03-14 04:14:44', '[the-post-grid id="621" title="All events"]', 'All events', '', 'publish', 'closed', 'closed', '', 'all-events', '', '', '2018-03-14 14:56:19', '2018-03-14 04:56:19', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=626', 2, 'page', '', 0),
 (627, 2, '2018-03-14 14:14:44', '2018-03-14 04:14:44', '[the-post-grid id="621" title="All events"]', 'All events', '', 'inherit', 'closed', 'closed', '', '626-revision-v1', '', '', '2018-03-14 14:14:44', '2018-03-14 04:14:44', '', 626, 'http://www.toowoombaregionalcouncil.com.au/tcof/626-revision-v1/', 0, 'revision', '', 0),
 (628, 2, '2018-03-14 14:22:14', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-14 14:22:14', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&p=628', 0, 'rttpg', '', 0),
 (629, 2, '2018-03-14 14:22:41', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-14 14:22:41', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&p=629', 0, 'rttpg', '', 0),
 (630, 2, '2018-03-14 14:59:10', '2018-03-14 04:59:10', '', '2017 Festival Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-03-14 14:59:10', '2018-03-14 04:59:10', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (631, 2, '2018-03-14 15:02:23', '2018-03-14 05:02:23', '[the-post-grid id="621" title="All events"]', '2017 Festival Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-03-14 15:02:23', '2018-03-14 05:02:23', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (632, 2, '2018-03-14 16:39:07', '0000-00-00 00:00:00', '<p>Events that featured our many Carnivals of the past.</p>\n', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2018-03-14 16:39:07', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=632', 1, 'nav_menu_item', '', 0),
 (633, 2, '2018-03-14 16:40:36', '2018-03-14 06:40:36', '', 'History', '', 'publish', 'closed', 'closed', '', 'history', '', '', '2018-03-15 13:14:13', '2018-03-15 03:14:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=633', 1, 'nav_menu_item', '', 0),
 (634, 2, '2018-03-14 16:41:44', '2018-03-14 06:41:44', '', 'Helpful info', '', 'publish', 'closed', 'closed', '', 'helpful-info', '', '', '2018-03-15 13:14:13', '2018-03-15 03:14:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=634', 5, 'nav_menu_item', '', 0),
 (635, 2, '2018-03-15 09:30:35', '2018-03-14 23:30:35', 'Toowoomba &amp; Surrounds is the perfect country touring destination and group touring is welcomed.\r\n\r\nFor some great Road Trip ideas for travel to and around Toowoomba, view the <a href="http://www.racq.com.au/travel/road-trips/road-trips#1+Toowoomba_&amp;%20Golden%20West+12345678+123+5+1" target="_blank" rel="noopener noreferrer">RACQ ROAD TRIPS</a> for some great itinerary ideas such as:\r\n<ul>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/toowoomba/antique-weekend-drive-trip-brisbane-to-toowoomba" target="_blank" rel="noopener noreferrer">Antique Weekend Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/brisbane/ipswich/brisbane-to-toowoomba-historical-weekend?referrer=roadtripsearch#page-0" target="_blank" rel="noopener noreferrer">Brisbane to Toowoomba Historical Weekend</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/hampton/darling-downs-outdoors-weekend-drive" target="_blank" rel="noopener noreferrer">Darling Downs Outdoor Weekend Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/delight-the-senses-5-night-tour" target="_blank" rel="noopener noreferrer">Delight the Senses 5 Night Tour</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/brisbane/brisbane-highlights/gold-coast-to-toowoomba-family-adventure?referrer=roadtripsearch" target="_blank" rel="noopener noreferrer">Gold Coast to Toowoomba 5 Night Family Adventure</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/gourmet-and-history-tour" target="_blank" rel="noopener noreferrer">Gourmet and History 4 Night Tour</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/high-country-tourist-drive" target="_blank" rel="noopener noreferrer">High Country Tourism Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/mackay/mackay-highlights/mackay-to-toowoomba-six-night-drive?referrer=roadtripsearch" target="_blank" rel="noopener noreferrer">Mackay to Toowoomba 6 Night Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/pioneers-bunya-foothills-tourist-drive" target="_blank" rel="noopener noreferrer">Pioneer Bunya Foothills Tourist Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/steele-rudd-country-drive" target="_blank" rel="noopener noreferrer">Steele Rudd Country Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/toowoomba-the-garden-city">Toowoomba the Garden City</a></li>\r\n</ul>', 'RACQ Road Trips', '', 'publish', 'closed', 'closed', '', 'racq-road-trips', '', '', '2018-03-15 09:30:35', '2018-03-14 23:30:35', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=635', 1, 'post', '', 0),
 (636, 2, '2018-03-15 09:29:06', '2018-03-14 23:29:06', '', 'towwoomba-region', '', 'inherit', 'closed', 'closed', '', 'towwoomba-region', '', '', '2018-03-15 09:29:06', '2018-03-14 23:29:06', '', 635, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/towwoomba-region.jpg', 0, 'attachment', 'image/jpeg', 0),
 (637, 2, '2018-03-15 09:30:35', '2018-03-14 23:30:35', 'Toowoomba &amp; Surrounds is the perfect country touring destination and group touring is welcomed.\r\n\r\nFor some great Road Trip ideas for travel to and around Toowoomba, view the <a href="http://www.racq.com.au/travel/road-trips/road-trips#1+Toowoomba_&amp;%20Golden%20West+12345678+123+5+1" target="_blank" rel="noopener noreferrer">RACQ ROAD TRIPS</a> for some great itinerary ideas such as:\r\n<ul>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/toowoomba/antique-weekend-drive-trip-brisbane-to-toowoomba" target="_blank" rel="noopener noreferrer">Antique Weekend Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/brisbane/ipswich/brisbane-to-toowoomba-historical-weekend?referrer=roadtripsearch#page-0" target="_blank" rel="noopener noreferrer">Brisbane to Toowoomba Historical Weekend</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/hampton/darling-downs-outdoors-weekend-drive" target="_blank" rel="noopener noreferrer">Darling Downs Outdoor Weekend Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/delight-the-senses-5-night-tour" target="_blank" rel="noopener noreferrer">Delight the Senses 5 Night Tour</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/brisbane/brisbane-highlights/gold-coast-to-toowoomba-family-adventure?referrer=roadtripsearch" target="_blank" rel="noopener noreferrer">Gold Coast to Toowoomba 5 Night Family Adventure</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/gourmet-and-history-tour" target="_blank" rel="noopener noreferrer">Gourmet and History 4 Night Tour</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/high-country-tourist-drive" target="_blank" rel="noopener noreferrer">High Country Tourism Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/mackay/mackay-highlights/mackay-to-toowoomba-six-night-drive?referrer=roadtripsearch" target="_blank" rel="noopener noreferrer">Mackay to Toowoomba 6 Night Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/pioneers-bunya-foothills-tourist-drive" target="_blank" rel="noopener noreferrer">Pioneer Bunya Foothills Tourist Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/steele-rudd-country-drive" target="_blank" rel="noopener noreferrer">Steele Rudd Country Drive</a></li>\r\n 	<li><a href="http://tourism.racq.com.au/qld/southern-queensland-country/southern-queensland-country-highlights/toowoomba-the-garden-city">Toowoomba the Garden City</a></li>\r\n</ul>', 'RACQ Road Trips', '', 'inherit', 'closed', 'closed', '', '635-revision-v1', '', '', '2018-03-15 09:30:35', '2018-03-14 23:30:35', '', 635, 'http://www.toowoombaregionalcouncil.com.au/tcof/635-revision-v1/', 0, 'revision', '', 0),
 (638, 2, '2018-03-15 09:33:57', '2018-03-14 23:33:57', '{\n    "bento-child-tcof::bento_front_header_primary_cta_text": {\n        "value": "",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-14 23:33:57"\n    },\n    "bento-child-tcof::bento_front_header_primary_cta_link": {\n        "value": "",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-14 23:33:57"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'ecd4fb74-a367-4943-9a32-df4d90d87cf5', '', '', '2018-03-15 09:33:57', '2018-03-14 23:33:57', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/ecd4fb74-a367-4943-9a32-df4d90d87cf5/', 0, 'customize_changeset', '', 0),
 (639, 2, '2018-03-15 09:38:04', '2018-03-14 23:38:04', '{\n    "bento-child-tcof::bento_front_header_primary_cta_text": {\n        "value": "Summer Tunes - Jan 2018",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-14 23:38:04"\n    },\n    "bento-child-tcof::bento_front_header_primary_cta_link": {\n        "value": "http://www.tr.qld.gov.au/summertunes",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-14 23:38:04"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'b2ba7907-a4c3-422b-a87e-79b7d66f91ae', '', '', '2018-03-15 09:38:04', '2018-03-14 23:38:04', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=639', 0, 'customize_changeset', '', 0),
 (640, 2, '2018-03-15 09:38:24', '2018-03-14 23:38:24', '{\n    "bento-child-tcof::bento_front_header_primary_cta_text": {\n        "value": "",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-14 23:38:24"\n    },\n    "bento-child-tcof::bento_front_header_primary_cta_link": {\n        "value": "",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-14 23:38:24"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '526b373c-e2d9-481b-bc9c-28a881ac2919', '', '', '2018-03-15 09:38:24', '2018-03-14 23:38:24', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/526b373c-e2d9-481b-bc9c-28a881ac2919/', 0, 'customize_changeset', '', 0),
 (641, 2, '2018-03-15 10:38:04', '2018-03-15 00:38:04', '{\n    "bento-child-tcof::background_color": {\n        "value": "#ffffff",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 00:38:04"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '3e390884-c95b-495d-830f-a0e76edbed16', '', '', '2018-03-15 10:38:04', '2018-03-15 00:38:04', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/3e390884-c95b-495d-830f-a0e76edbed16/', 0, 'customize_changeset', '', 0),
 (642, 2, '2018-03-15 10:39:01', '2018-03-15 00:39:01', '{\n    "bento-child-tcof::background_color": {\n        "value": "#fcf9ef",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 00:39:01"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '0c76a619-9728-4c38-b747-4695ea2a7dfc', '', '', '2018-03-15 10:39:01', '2018-03-15 00:39:01', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/0c76a619-9728-4c38-b747-4695ea2a7dfc/', 0, 'customize_changeset', '', 0),
 (643, 2, '2018-03-15 10:39:59', '2018-03-15 00:39:59', '{\n    "bento-child-tcof::bento_content_background_color": {\n        "value": "#fcf9ef",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 00:39:59"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '5ad44372-a479-49f2-ae6b-1ab3a20bd421', '', '', '2018-03-15 10:39:59', '2018-03-15 00:39:59', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/5ad44372-a479-49f2-ae6b-1ab3a20bd421/', 0, 'customize_changeset', '', 0),
 (645, 2, '2018-03-15 11:23:51', '2018-03-15 01:23:51', 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.png', 'cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.png', '', 'inherit', 'closed', 'closed', '', 'cropped-2018-03-15-10_11_49-the-carnival-of-flowers-png', '', '', '2018-03-15 11:23:51', '2018-03-15 01:23:51', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.png', 0, 'attachment', 'image/png', 0),
 (646, 2, '2018-03-15 11:24:09', '2018-03-15 01:24:09', '{\n    "bento-child-tcof::custom_logo": {\n        "value": 645,\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 01:24:09"\n    },\n    "bento-child-tcof::bento_logo_mobile": {\n        "value": 13,\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 01:24:09"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '22e45aa8-3f3d-4458-a5e5-ac5cb6d316bc', '', '', '2018-03-15 11:24:09', '2018-03-15 01:24:09', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/22e45aa8-3f3d-4458-a5e5-ac5cb6d316bc/', 0, 'customize_changeset', '', 0),
 (647, 2, '2018-03-15 11:32:10', '2018-03-15 01:32:10', 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/cropped-TCOF_Logo_White_Green-1-1.png', 'cropped-TCOF_Logo_White_Green-1-1.png', '', 'inherit', 'closed', 'closed', '', 'cropped-tcof_logo_white_green-1-1-png', '', '', '2018-03-15 11:32:10', '2018-03-15 01:32:10', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/01/cropped-TCOF_Logo_White_Green-1-1.png', 0, 'attachment', 'image/png', 0),
 (648, 2, '2018-03-15 11:32:13', '2018-03-15 01:32:13', '{\n    "bento-child-tcof::custom_logo": {\n        "value": 647,\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 01:32:13"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'c2d98961-7a8c-4fd5-b83c-72f93513ac3e', '', '', '2018-03-15 11:32:13', '2018-03-15 01:32:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/c2d98961-7a8c-4fd5-b83c-72f93513ac3e/', 0, 'customize_changeset', '', 0),
 (651, 2, '2018-03-15 11:39:23', '2018-03-15 01:39:23', '{\n    "bento-child-tcof::custom_logo": {\n        "value": 652,\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 01:39:23"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '9e912eed-2f99-4a33-a32b-fc57bcf6b50a', '', '', '2018-03-15 11:39:23', '2018-03-15 01:39:23', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=651', 0, 'customize_changeset', '', 0),
 (652, 2, '2018-03-15 11:39:20', '2018-03-15 01:39:20', 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-2.png', 'cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-2.png', '', 'inherit', 'closed', 'closed', '', 'cropped-2018-03-15-10_11_49-the-carnival-of-flowers-2-png', '', '', '2018-03-15 11:39:20', '2018-03-15 01:39:20', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-2.png', 0, 'attachment', 'image/png', 0),
 (653, 2, '2018-03-15 11:40:18', '2018-03-15 01:40:18', 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-1-1.png', 'cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-1-1.png', '', 'inherit', 'closed', 'closed', '', 'cropped-2018-03-15-10_11_49-the-carnival-of-flowers-1-1-png', '', '', '2018-03-15 11:40:18', '2018-03-15 01:40:18', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-1-1.png', 0, 'attachment', 'image/png', 0),
 (654, 2, '2018-03-15 11:40:21', '2018-03-15 01:40:21', '{\n    "bento-child-tcof::custom_logo": {\n        "value": 653,\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 01:40:21"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '9d68b8cb-d292-43fa-8057-9f5a21255412', '', '', '2018-03-15 11:40:21', '2018-03-15 01:40:21', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/9d68b8cb-d292-43fa-8057-9f5a21255412/', 0, 'customize_changeset', '', 0),
 (656, 2, '2018-03-15 11:43:45', '2018-03-15 01:43:45', 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.jpg', 'cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.jpg', '', 'inherit', 'closed', 'closed', '', 'cropped-2018-03-15-10_11_49-the-carnival-of-flowers-jpg', '', '', '2018-03-15 11:43:45', '2018-03-15 01:43:45', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers.jpg', 0, 'attachment', 'image/jpeg', 0),
 (657, 2, '2018-03-15 11:44:50', '2018-03-15 01:44:50', '{\n    "bento-child-tcof::custom_logo": {\n        "value": 659,\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 01:44:46"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'ed8d317c-2076-4e35-b508-9278b7bf18c9', '', '', '2018-03-15 11:44:50', '2018-03-15 01:44:50', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=657', 0, 'customize_changeset', '', 0),
 (662, 2, '2018-03-15 11:45:52', '2018-03-15 01:45:52', '{\n    "bento-child-tcof::custom_logo": {\n        "value": 661,\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 01:45:52"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'e2e54ac0-bcaf-4b3e-b6a8-17c2fc842d20', '', '', '2018-03-15 11:45:52', '2018-03-15 01:45:52', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/e2e54ac0-bcaf-4b3e-b6a8-17c2fc842d20/', 0, 'customize_changeset', '', 0),
 (663, 2, '2018-03-15 11:47:20', '2018-03-15 01:47:20', '', '2018-03-15-10_11_49-The-Carnival-of-Flowers-png8', '', 'inherit', 'closed', 'closed', '', '2018-03-15-10_11_49-the-carnival-of-flowers-png8', '', '', '2018-03-15 11:47:20', '2018-03-15 01:47:20', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/2018-03-15-10_11_49-The-Carnival-of-Flowers-png8.png', 0, 'attachment', 'image/png', 0),
 (664, 2, '2018-03-15 11:47:31', '2018-03-15 01:47:31', 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-png8.png', 'cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-png8.png', '', 'inherit', 'closed', 'closed', '', 'cropped-2018-03-15-10_11_49-the-carnival-of-flowers-png8-png', '', '', '2018-03-15 11:47:31', '2018-03-15 01:47:31', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/cropped-2018-03-15-10_11_49-The-Carnival-of-Flowers-png8.png', 0, 'attachment', 'image/png', 0),
 (665, 2, '2018-03-15 11:47:37', '2018-03-15 01:47:37', '{\n    "bento-child-tcof::custom_logo": {\n        "value": 664,\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 01:47:37"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '81032d40-8983-42df-a3b6-12a993613183', '', '', '2018-03-15 11:47:37', '2018-03-15 01:47:37', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/81032d40-8983-42df-a3b6-12a993613183/', 0, 'customize_changeset', '', 0),
 (666, 2, '2018-03-15 11:53:58', '2018-03-15 01:53:58', '[embedyt] https://www.youtube.com/embed?listType=playlist&amp;list=PLV5vGUtoxzaGPGqBVE1XRCJjdYLNJ8PIR&amp;layout=gallery[/embedyt]', 'Parks', '', 'publish', 'closed', 'closed', '', 'parks', '', '', '2018-03-15 12:33:04', '2018-03-15 02:33:04', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=666', 1, 'page', '', 0),
 (667, 2, '2018-03-15 11:53:58', '2018-03-15 01:53:58', '', 'Parks', '', 'inherit', 'closed', 'closed', '', '666-revision-v1', '', '', '2018-03-15 11:53:58', '2018-03-15 01:53:58', '', 666, 'http://www.toowoombaregionalcouncil.com.au/tcof/666-revision-v1/', 0, 'revision', '', 0),
 (668, 2, '2018-03-15 11:54:22', '2018-03-15 01:54:22', ' ', '', '', 'publish', 'closed', 'closed', '', 'parks-test', '', '', '2018-03-15 13:14:13', '2018-03-15 03:14:13', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=668', 3, 'nav_menu_item', '', 0),
 (669, 2, '2018-03-15 11:58:07', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-15 11:58:07', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=rttpg&p=669', 0, 'rttpg', '', 0),
 (670, 2, '2018-03-15 12:04:27', '2018-03-15 02:04:27', '[YouTube_WD id=2 item=2]', 'Parks', '', 'inherit', 'closed', 'closed', '', '666-revision-v1', '', '', '2018-03-15 12:04:27', '2018-03-15 02:04:27', '', 666, 'http://www.toowoombaregionalcouncil.com.au/tcof/666-revision-v1/', 0, 'revision', '', 0),
 (671, 2, '2018-03-15 12:20:41', '2018-03-15 02:20:41', '<h2>Fri 15 - Sun 24 Sep</h2>\nWord on the street is that First Coat Mural Festival is ground-breaking. See the work of First Coat\'s 30 plus internationally acclaimed street artists on Toowoomba CBD\'s walls. Discover the outstanding art work in hidden laneways.\n\n{book now=http://www.booknow.com?id=1234}\n\nCOST: Free\n\nENQUIRIES: www.firstcoat.com.au.\n\n&nbsp;', 'First Coat', '', 'inherit', 'closed', 'closed', '', '534-autosave-v1', '', '', '2018-03-15 12:20:41', '2018-03-15 02:20:41', '', 534, 'http://www.toowoombaregionalcouncil.com.au/tcof/534-autosave-v1/', 0, 'revision', '', 0),
 (672, 2, '2018-03-15 12:26:51', '2018-03-15 02:26:51', '{\n    "bento-child-tcof::bento_analytics_code": {\n        "value": "<script>\\n\\t(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){\\n\\t(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\\n\\tm=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\\n\\t})(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'__gaTracker\');\\n\\t__gaTracker(\'create\', \'UA-3164092-16\', \'auto\');\\n\\t__gaTracker(\'send\', \'pageview\');\\n</script>\\n\\n<!-- Google Tag Manager for adroll -->\\n<noscript>\\n  <iframe src=\\"//www.googletagmanager.com/ns.html?id=GTM-54KBKV\\" height=\\"0\\" width=\\"0\\" style=\\"display:none;visibility:hidden\\">\\n  </iframe>\\n</noscript>\\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\\n\'//www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\\n})(window,document,\'script\',\'dataLayer\',\'GTM-54KBKV\');</script>\\n<!-- End Google Tag Manager -->\\n<!-- Google Code for Remarketing Tag -->\\n<script type=\\"text/javascript\\">\\n/* <![CDATA[ */\\nvar google_conversion_id = 944539639;\\nvar google_custom_params = window.google_tag_params;\\nvar google_remarketing_only = true;\\n/* ]]> */\\n</script>\\n<script type=\\"text/javascript\\" src=\\"//www.googleadservices.com/pagead/conversion.js\\">\\n</script>\\n<noscript>\\n  <div style=\\"display:inline;\\"> \\n    <img height=\\"1\\" width=\\"1\\" style=\\"border-style:none;\\" alt=\\"\\" src=\\"//googleads.g.doubleclick.net/pagead/viewthroughconversion/944539639/?value=0&amp;guid=ON&amp;script=0\\"/>\\n  </div>\\n</noscript>",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 02:26:51"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '5eff192a-3598-42d9-affe-6d26e77205b4', '', '', '2018-03-15 12:26:51', '2018-03-15 02:26:51', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=672', 0, 'customize_changeset', '', 0),
 (673, 2, '2018-03-15 12:32:14', '2018-03-15 02:32:14', '', 'Parks', '', 'inherit', 'closed', 'closed', '', '666-autosave-v1', '', '', '2018-03-15 12:32:14', '2018-03-15 02:32:14', '', 666, 'http://www.toowoombaregionalcouncil.com.au/tcof/666-autosave-v1/', 0, 'revision', '', 0),
 (674, 2, '2018-03-15 12:33:04', '2018-03-15 02:33:04', '[embedyt] https://www.youtube.com/embed?listType=playlist&amp;list=PLV5vGUtoxzaGPGqBVE1XRCJjdYLNJ8PIR&amp;layout=gallery[/embedyt]', 'Parks', '', 'inherit', 'closed', 'closed', '', '666-revision-v1', '', '', '2018-03-15 12:33:04', '2018-03-15 02:33:04', '', 666, 'http://www.toowoombaregionalcouncil.com.au/tcof/666-revision-v1/', 0, 'revision', '', 0),
 (675, 1, '2018-03-15 12:37:01', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-15 12:37:01', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=675', 0, 'post', '', 0),
 (676, 2, '2018-03-15 12:54:40', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-15 12:54:40', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=676', 0, 'page', '', 0),
 (677, 2, '2018-03-15 12:55:14', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-15 12:55:14', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=677', 0, 'page', '', 0),
 (678, 1, '2018-03-15 12:55:38', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-15 12:55:38', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?page_id=678', 0, 'page', '', 0),
 (679, 2, '2018-03-15 12:55:42', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-15 12:55:42', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=679', 0, 'post', '', 0),
 (680, 2, '2018-03-15 13:04:37', '2018-03-15 03:04:37', '', 'footer-tourismqld', '', 'inherit', 'closed', 'closed', '', 'footer-tourismqld-2', '', '', '2018-03-15 13:04:37', '2018-03-15 03:04:37', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/wp-content/uploads/2018/03/footer-tourismqld.jpg', 0, 'attachment', 'image/jpeg', 0),
 (681, 1, '2018-03-15 13:18:38', '0000-00-00 00:00:00', '{\n    "sidebars_widgets[bento_footer]": {\n        "value": [\n            "custom_html-2",\n            "tag_cloud-2",\n            "a2a_follow_widget-3"\n        ],\n        "type": "option",\n        "user_id": 1,\n        "date_modified_gmt": "2018-03-15 03:16:52"\n    },\n    "widget_a2a_follow_widget[3]": {\n        "value": {\n            "encoded_serialized_instance": "YToyMDp7czo1OiJ0aXRsZSI7czowOiIiO3M6OToiaWNvbl9zaXplIjtzOjI6IjIwIjtzOjExOiJmYWNlYm9va19pZCI7czoxNToiQ2Fybml2YWxGbG93ZXJzIjtzOjEwOiJ0d2l0dGVyX2lkIjtzOjA6IiI7czoxMjoiaW5zdGFncmFtX2lkIjtzOjA6IiI7czoxMjoicGludGVyZXN0X2lkIjtzOjA6IiI7czoxMDoiYmVoYW5jZV9pZCI7czowOiIiO3M6OToiZmxpY2tyX2lkIjtzOjA6IiI7czoxMzoiZm91cnNxdWFyZV9pZCI7czowOiIiO3M6OToiZ2l0aHViX2lkIjtzOjA6IiI7czoxNDoiZ29vZ2xlX3BsdXNfaWQiO3M6MDoiIjtzOjExOiJsaW5rZWRpbl9pZCI7czowOiIiO3M6MTk6ImxpbmtlZGluX2NvbXBhbnlfaWQiO3M6MDoiIjtzOjk6Im1lZGl1bV9pZCI7czowOiIiO3M6MTE6InNuYXBjaGF0X2lkIjtzOjA6IiI7czo5OiJ0dW1ibHJfaWQiO3M6MDoiIjtzOjg6InZpbWVvX2lkIjtzOjA6IiI7czoxMDoieW91dHViZV9pZCI7czowOiIiO3M6MTg6InlvdXR1YmVfY2hhbm5lbF9pZCI7czo0OiJ0Y29mIjtzOjc6ImZlZWRfaWQiO3M6MDoiIjt9",\n            "title": "",\n            "is_widget_customizer_js_value": true,\n            "instance_hash_key": "5233a39228342ba0ab284cbbdd7195f8"\n        },\n        "type": "option",\n        "user_id": 1,\n        "date_modified_gmt": "2018-03-15 03:18:38"\n    }\n}', '', '', 'auto-draft', 'closed', 'closed', '', '18f51c60-dda6-42dc-adf7-19019a2f4019', '', '', '2018-03-15 13:18:38', '2018-03-15 03:18:38', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=681', 0, 'customize_changeset', '', 0),
 (682, 1, '2018-03-15 13:24:27', '0000-00-00 00:00:00', '<h4>Hello world.</h4><p>This is a sample box, with some sample content in it.</p>', 'Sample Box', '', 'draft', 'closed', 'closed', '', '', '', '', '2018-03-15 13:24:27', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=682', 0, 'boxzilla-box', '', 0),
 (683, 1, '2018-03-15 13:29:26', '2018-03-15 03:29:26', '<p style="text-align: center;">Purchase tickets now</p>', 'Purchase tickets now', '', 'publish', 'closed', 'closed', '', 'purchase-tickets-now', '', '', '2018-03-15 13:29:26', '2018-03-15 03:29:26', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?post_type=boxzilla-box&#038;p=683', 0, 'boxzilla-box', '', 0),
 (684, 2, '2018-03-15 13:30:27', '2018-03-15 03:30:27', '[the-post-grid id="621" title="All events"]', '2017 Events', '', 'inherit', 'closed', 'closed', '', '121-revision-v1', '', '', '2018-03-15 13:30:27', '2018-03-15 03:30:27', '', 121, 'http://www.toowoombaregionalcouncil.com.au/tcof/121-revision-v1/', 0, 'revision', '', 0),
 (685, 3, '2018-03-15 14:02:17', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-03-15 14:02:17', '0000-00-00 00:00:00', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/?p=685', 0, 'post', '', 0),
 (687, 3, '2018-03-15 14:05:54', '2018-03-15 04:05:54', '<h2>Fri 15 - Sun 24 Sep</h2>\r\nCobb+Co Museum proudly presents a spectacular display of 60 hanging baskets. Each basket was lovingly created by community members from the Toowoomba region as part of a design competition. This year\'s display is sure to delight with categories from floral arrangements to artisan creations. While visiting the Museum discover a variety of interactive displays, exhibits, heritage trade workshops and relax in Cobb\'s Coffee Shop.\r\n\r\nCOST: Museum entry Adult $12.50 | Concession $10 | Child (3-15 years) $6.50 | Family (1 Adult, 3 Children) $25 | Family (2 Adults, 4 Children) $32\r\n\r\nENQUIRIES: 07 4659 4900.\r\n<h2>Times</h2>\r\n9:30am - 4pm daily\r\n<h2>Location</h2>\r\nCobb+Co Museum, 27 Lindsay St, Toowoomba (<a href="https://goo.gl/maps/kX3eyUF4VpN2" target="_blank" rel="noopener">Google map</a>).', 'Hanging basket display', '', 'inherit', 'closed', 'closed', '', '483-autosave-v1', '', '', '2018-03-15 14:05:54', '2018-03-15 04:05:54', '', 483, 'http://www.toowoombaregionalcouncil.com.au/tcof/483-autosave-v1/', 0, 'revision', '', 0),
 (688, 2, '2018-03-15 14:22:59', '2018-03-15 04:22:59', '{\n    "bento-child-tcof::bento_footer_copyright": {\n        "value": "PO Box 3021, Toowoomba Queensland 4350 | Email: info@tcof.com.au | Phone: 131 872 |\\t&copy; Toowoomba Regional Council 2018",\n        "type": "theme_mod",\n        "user_id": 2,\n        "date_modified_gmt": "2018-03-15 04:22:59"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '90e682f0-cdc9-4d4f-b5b9-d03229ec6101', '', '', '2018-03-15 14:22:59', '2018-03-15 04:22:59', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/90e682f0-cdc9-4d4f-b5b9-d03229ec6101/', 0, 'customize_changeset', '', 0),
 (689, 2, '2018-03-15 14:34:04', '2018-03-15 04:34:04', 'Fri 15 - Sat 23 Sep\r\n\r\nThe Trail provides an opportunity for visitors to see Spring immortalized in the colourful and unique heritage crafts of quilting, embroidery, spinning, weaving, felting and more. Exhibitions include \'Carnivale of Quilts\' from the Toowoomba Quilters Club, \'a Quilt Garden\' from Robyn Ginn, \'Toowoomba in Stitch\' from the Toowoomba Embroiderers\' Guild, \'Textiles from the Garden\' by Toowoomba Spinners, Weavers &amp; Dyers Group and a display by Quilt Journeys.\r\n\r\nThe Trail will showcase:\r\n<ul>\r\n 	<li>never before displayed quilts, embroidery and unique handcrafted garments and items</li>\r\n 	<li>hands-on demonstrations of techniques and mini classes</li>\r\n 	<li>colour and textures from the garden</li>\r\n 	<li>unique collections of original designed articles</li>\r\n</ul>\r\nENQUIRIES: 07 4637 0205 or http://www.facebook.com/quiltstitchtextile/\r\n<h3><span style="color: #993366;">DETAILS</span></h3>\r\n<h4>Toowoomba Quilters Club</h4>\r\n16 Sept - 21 Sept from 9am - 4:30pm\r\n22 Sept from 9am - 2:30pm\r\nCost: Adult $5 | Student $2.50\r\nLocation: Salo Centre, St Ursula\'s College, Rome St, Toowoomba\r\n<h4>Quilt Journeys</h4>\r\n17 Sept - 20 Sept from 9am - 5pm\r\nCost: Adult $5 | Child Free\r\nLocation: The Homestead, Fairholme College, Wirra Wirra St, Toowoomba\r\n<h4>Robyn Ginn\'s Quilts</h4>\r\n19 Sept - 20 Sept from 9:30am - 5pm\r\nCost: Gold coin donation\r\nLocation: 4 Kelsall Crt, Toowoomba\r\n<h4>Toowoomba Embroiderers\' Guild</h4>\r\n22 Sept - 23 Sept from 10am - 3pm\r\nCost: $5 per person\r\nLocation: Chapel &amp; Dining Room, St Ursula\'s College, Cnr Rome &amp; Warra Sts, Toowoomba\r\n<h4>Toowoomba Spinners, Weavers &amp; Dyers Group</h4>\r\n15 Sept - 20 Sept from 9am - 4pm (16 Sept 9am - 5pm)\r\nCost: Free\r\nLocation: St Luke\'s Hall, 152 Herries St, Toowoomba.', 'Quilts, stitches & textiles trail', '', 'trash', 'closed', 'closed', '', 'quilts-stitches-textiles-trail-2__trashed', '', '', '2018-03-15 14:34:18', '2018-03-15 04:34:18', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/quilts-stitches-textiles-trail-2/', 2, 'post', '', 0),
 (690, 2, '2018-03-15 14:34:04', '2018-03-15 04:34:04', '<h2>Sun 24 Sep</h2>\r\nJoin Toowoomba Regional Art Gallery in conversation with local artist Monica Usher as she discusses her solo exhibition <em>Remnants of a Night Garden</em>. This is a free event and all are welcome. Monica\'s exhibition will be on display from 9 September - 8 October 2017.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6652 or art@tr.qld.gov.au.\r\n<h2>Times</h2>\r\n1:30pm.\r\n<h2>Location</h2>\r\nToowoomba Regional Art Gallery, 531 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/nCiXHS6Q41E2" target="_blank" rel="noopener">Google map</a>).', 'Artist talk', '', 'trash', 'closed', 'closed', '', 'artist-talk-2__trashed', '', '', '2018-03-15 14:34:26', '2018-03-15 04:34:26', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/artist-talk-2/', 4, 'post', '', 0),
 (691, 2, '2018-03-15 14:34:18', '2018-03-15 04:34:18', 'Fri 15 - Sat 23 Sep\r\n\r\nThe Trail provides an opportunity for visitors to see Spring immortalized in the colourful and unique heritage crafts of quilting, embroidery, spinning, weaving, felting and more. Exhibitions include \'Carnivale of Quilts\' from the Toowoomba Quilters Club, \'a Quilt Garden\' from Robyn Ginn, \'Toowoomba in Stitch\' from the Toowoomba Embroiderers\' Guild, \'Textiles from the Garden\' by Toowoomba Spinners, Weavers &amp; Dyers Group and a display by Quilt Journeys.\r\n\r\nThe Trail will showcase:\r\n<ul>\r\n 	<li>never before displayed quilts, embroidery and unique handcrafted garments and items</li>\r\n 	<li>hands-on demonstrations of techniques and mini classes</li>\r\n 	<li>colour and textures from the garden</li>\r\n 	<li>unique collections of original designed articles</li>\r\n</ul>\r\nENQUIRIES: 07 4637 0205 or http://www.facebook.com/quiltstitchtextile/\r\n<h3><span style="color: #993366;">DETAILS</span></h3>\r\n<h4>Toowoomba Quilters Club</h4>\r\n16 Sept - 21 Sept from 9am - 4:30pm\r\n22 Sept from 9am - 2:30pm\r\nCost: Adult $5 | Student $2.50\r\nLocation: Salo Centre, St Ursula\'s College, Rome St, Toowoomba\r\n<h4>Quilt Journeys</h4>\r\n17 Sept - 20 Sept from 9am - 5pm\r\nCost: Adult $5 | Child Free\r\nLocation: The Homestead, Fairholme College, Wirra Wirra St, Toowoomba\r\n<h4>Robyn Ginn\'s Quilts</h4>\r\n19 Sept - 20 Sept from 9:30am - 5pm\r\nCost: Gold coin donation\r\nLocation: 4 Kelsall Crt, Toowoomba\r\n<h4>Toowoomba Embroiderers\' Guild</h4>\r\n22 Sept - 23 Sept from 10am - 3pm\r\nCost: $5 per person\r\nLocation: Chapel &amp; Dining Room, St Ursula\'s College, Cnr Rome &amp; Warra Sts, Toowoomba\r\n<h4>Toowoomba Spinners, Weavers &amp; Dyers Group</h4>\r\n15 Sept - 20 Sept from 9am - 4pm (16 Sept 9am - 5pm)\r\nCost: Free\r\nLocation: St Luke\'s Hall, 152 Herries St, Toowoomba.', 'Quilts, stitches & textiles trail', '', 'inherit', 'closed', 'closed', '', '689-revision-v1', '', '', '2018-03-15 14:34:18', '2018-03-15 04:34:18', '', 689, 'http://www.toowoombaregionalcouncil.com.au/tcof/689-revision-v1/', 0, 'revision', '', 0),
 (692, 2, '2018-03-15 14:34:26', '2018-03-15 04:34:26', '<h2>Sun 24 Sep</h2>\r\nJoin Toowoomba Regional Art Gallery in conversation with local artist Monica Usher as she discusses her solo exhibition <em>Remnants of a Night Garden</em>. This is a free event and all are welcome. Monica\'s exhibition will be on display from 9 September - 8 October 2017.\r\n\r\nCOST: Free\r\n\r\nENQUIRIES: 07 4688 6652 or art@tr.qld.gov.au.\r\n<h2>Times</h2>\r\n1:30pm.\r\n<h2>Location</h2>\r\nToowoomba Regional Art Gallery, 531 Ruthven St, Toowoomba (<a href="https://goo.gl/maps/nCiXHS6Q41E2" target="_blank" rel="noopener">Google map</a>).', 'Artist talk', '', 'inherit', 'closed', 'closed', '', '690-revision-v1', '', '', '2018-03-15 14:34:26', '2018-03-15 04:34:26', '', 690, 'http://www.toowoombaregionalcouncil.com.au/tcof/690-revision-v1/', 0, 'revision', '', 0),
 (693, 3, '2018-03-15 14:35:26', '2018-03-15 04:35:26', 'Fri 15 - Sat 23 Sep\r\n\r\nThe Trail provides an opportunity for visitors to see Spring immortalized in the colourful and unique heritage crafts of quilting, embroidery, spinning, weaving, felting and more. Exhibitions include \'Carnivale of Quilts\' from the Toowoomba Quilters Club, \'a Quilt Garden\' from Robyn Ginn, \'Toowoomba in Stitch\' from the Toowoomba Embroiderers\' Guild, \'Textiles from the Garden\' by Toowoomba Spinners, Weavers &amp; Dyers Group and a display by Quilt Journeys.\r\n\r\nThe Trail will showcase:\r\n<ul>\r\n 	<li>never before displayed quilts, embroidery and unique handcrafted garments and items</li>\r\n 	<li>hands-on demonstrations of techniques and mini classes</li>\r\n 	<li>colour and textures from the garden</li>\r\n 	<li>unique collections of original designed articles</li>\r\n</ul>\r\nENQUIRIES: 07 4637 0205 or http://www.facebook.com/quiltstitchtextile/\r\n<h3><span style="color: #993366;">DETAILS</span></h3>\r\n<h4>Toowoomba Quilters Club</h4>\r\n16 Sept - 21 Sept from 9am - 4:30pm\r\n22 Sept from 9am - 2:30pm\r\nCost: Adult $5 | Student $2.50\r\nLocation: Salo Centre, St Ursula\'s College, Rome St, Toowoomba\r\n<h4>Quilt Journeys</h4>\r\n17 Sept - 20 Sept from 9am - 5pm\r\nCost: Adult $5 | Child Free\r\nLocation: The Homestead, Fairholme College, Wirra Wirra St, Toowoomba\r\n<h4>Robyn Ginn\'s Quilts</h4>\r\n19 Sept - 20 Sept from 9:30am - 5pm\r\nCost: Gold coin donation\r\nLocation: 4 Kelsall Crt, Toowoomba\r\n<h4>Toowoomba Embroiderers\' Guild</h4>\r\n22 Sept - 23 Sept from 10am - 3pm\r\nCost: $5 per person\r\nLocation: Chapel &amp; Dining Room, St Ursula\'s College, Cnr Rome &amp; Warra Sts, Toowoomba\r\n<h4>Toowoomba Spinners, Weavers &amp; Dyers Group</h4>\r\n15 Sept - 20 Sept from 9am - 4pm (16 Sept 9am - 5pm)\r\nCost: Free\r\nLocation: St Luke\'s Hall, 152 Herries St, Toowoomba.', 'Quilts, stitches & textiles trail', '', 'trash', 'closed', 'closed', '', 'quilts-stitches-textiles-trail-2__trashed-2', '', '', '2018-03-15 14:41:55', '2018-03-15 04:41:55', '', 0, 'http://www.toowoombaregionalcouncil.com.au/tcof/quilts-stitches-textiles-trail-2/', 3, 'post', '', 0),
 (694, 2, '2018-03-15 14:36:37', '2018-03-15 04:36:37', 'Fri 15 - Sat 23 Sep\r\n\r\nThe Trail provides an opportunity for visitors to see Spring immortalized in the colourful and unique heritage crafts of quilting, embroidery, spinning, weaving, felting and more. Exhibitions include \'Carnivale of Quilts\' from the Toowoomba Quilters Club, \'a Quilt Garden\' from Robyn Ginn, \'Toowoomba in Stitch\' from the Toowoomba Embroiderers\' Guild, \'Textiles from the Garden\' by Toowoomba Spinners, Weavers &amp; Dyers Group and a display by Quilt Journeys.\r\n\r\nThe Trail will showcase:\r\n<ul>\r\n 	<li>never before displayed quilts, embroidery and unique handcrafted garments and items</li>\r\n 	<li>hands-on demonstrations of techniques and mini classes</li>\r\n 	<li>colour and textures from the garden</li>\r\n 	<li>unique collections of original designed articles</li>\r\n</ul>\r\nENQUIRIES: 07 4637 0205 or http://www.facebook.com/quiltstitchtextile/\r\n<h3><span style="color: #993366;">DETAILS</span></h3>\r\n<h4>Toowoomba Quilters Club</h4>\r\n16 Sept - 21 Sept from 9am - 4:30pm\r\n22 Sept from 9am - 2:30pm\r\nCost: Adult $5 | Student $2.50\r\nLocation: Salo Centre, St Ursula\'s College, Rome St, Toowoomba\r\n<h4>Quilt Journeys</h4>\r\n17 Sept - 20 Sept from 9am - 5pm\r\nCost: Adult $5 | Child Free\r\nLocation: The Homestead, Fairholme College, Wirra Wirra St, Toowoomba\r\n<h4>Robyn Ginn\'s Quilts</h4>\r\n19 Sept - 20 Sept from 9:30am - 5pm\r\nCost: Gold coin donation\r\nLocation: 4 Kelsall Crt, Toowoomba\r\n<h4>Toowoomba Embroiderers\' Guild</h4>\r\n22 Sept - 23 Sept from 10am - 3pm\r\nCost: $5 per person\r\nLocation: Chapel &amp; Dining Room, St Ursula\'s College, Cnr Rome &amp; Warra Sts, Toowoomba\r\n<h4>Toowoomba Spinners, Weavers &amp; Dyers Group</h4>\r\n15 Sept - 20 Sept from 9am - 4pm (16 Sept 9am - 5pm)\r\nCost: Free\r\nLocation: St Luke\'s Hall, 152 Herries St, Toowoomba.', 'Quilts, stitches & textiles trail', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2018-03-15 14:36:37', '2018-03-15 04:36:37', '', 693, 'http://www.toowoombaregionalcouncil.com.au/tcof/693-revision-v1/', 0, 'revision', '', 0);


DROP TABLE IF EXISTS `wp_term_relationships`;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

 
INSERT INTO `wp_term_relationships` VALUES (24, 2, 0),
 (25, 3, 0),
 (26, 3, 0),
 (27, 3, 0),
 (28, 3, 0),
 (29, 3, 0),
 (42, 2, 0),
 (55, 4, 0),
 (59, 4, 0),
 (63, 13, 0),
 (66, 13, 0),
 (68, 13, 0),
 (70, 2, 0),
 (71, 2, 0),
 (72, 2, 0),
 (75, 11, 0),
 (77, 11, 0),
 (82, 12, 0),
 (114, 14, 0),
 (114, 17, 0),
 (114, 22, 0),
 (115, 14, 0),
 (115, 15, 0),
 (115, 22, 0),
 (118, 14, 0),
 (118, 15, 0),
 (118, 22, 0),
 (146, 1, 0),
 (146, 14, 0),
 (146, 15, 0),
 (146, 16, 0),
 (146, 22, 0),
 (146, 33, 0),
 (149, 1, 0),
 (149, 14, 0),
 (149, 15, 0),
 (149, 22, 0),
 (149, 32, 0),
 (152, 14, 0),
 (152, 15, 0),
 (152, 22, 0),
 (152, 33, 0),
 (155, 14, 0),
 (155, 15, 0),
 (155, 19, 0),
 (155, 31, 0),
 (155, 32, 0),
 (155, 33, 0),
 (170, 14, 0),
 (170, 17, 0),
 (170, 32, 0),
 (170, 34, 0),
 (172, 14, 0),
 (172, 15, 0),
 (172, 19, 0),
 (172, 33, 0),
 (175, 14, 0),
 (175, 17, 0),
 (175, 20, 0),
 (175, 21, 0),
 (175, 24, 0),
 (175, 25, 0),
 (175, 26, 0),
 (175, 27, 0),
 (175, 28, 0),
 (175, 29, 0),
 (175, 31, 0),
 (175, 32, 0),
 (175, 33, 0),
 (175, 34, 0),
 (175, 40, 0),
 (178, 14, 0),
 (178, 21, 0),
 (178, 24, 0),
 (178, 25, 0),
 (178, 26, 0),
 (178, 27, 0),
 (178, 28, 0),
 (178, 29, 0),
 (178, 31, 0),
 (178, 32, 0),
 (178, 33, 0),
 (178, 35, 0),
 (178, 37, 0),
 (178, 40, 0),
 (246, 14, 0),
 (246, 17, 0),
 (246, 31, 0),
 (246, 32, 0),
 (246, 34, 0),
 (251, 14, 0),
 (251, 16, 0),
 (251, 24, 0),
 (251, 25, 0),
 (251, 26, 0),
 (251, 27, 0),
 (251, 28, 0),
 (251, 29, 0),
 (251, 31, 0),
 (251, 32, 0),
 (251, 33, 0),
 (251, 34, 0),
 (251, 35, 0),
 (251, 40, 0),
 (254, 14, 0),
 (254, 17, 0),
 (254, 31, 0),
 (254, 32, 0),
 (254, 33, 0),
 (254, 34, 0),
 (260, 14, 0),
 (260, 17, 0),
 (260, 24, 0),
 (260, 34, 0),
 (263, 14, 0),
 (263, 16, 0),
 (263, 20, 0),
 (263, 24, 0),
 (263, 25, 0),
 (263, 26, 0),
 (263, 27, 0),
 (263, 28, 0),
 (263, 29, 0),
 (263, 31, 0),
 (263, 32, 0),
 (263, 33, 0),
 (263, 34, 0),
 (263, 35, 0),
 (263, 40, 0),
 (269, 14, 0),
 (269, 16, 0),
 (269, 17, 0),
 (269, 18, 0),
 (269, 24, 0),
 (269, 25, 0),
 (269, 26, 0),
 (269, 27, 0),
 (269, 28, 0),
 (269, 29, 0),
 (269, 31, 0),
 (269, 32, 0),
 (269, 33, 0),
 (269, 34, 0),
 (269, 37, 0),
 (269, 40, 0),
 (272, 14, 0),
 (272, 15, 0),
 (272, 16, 0),
 (272, 17, 0),
 (272, 25, 0),
 (272, 26, 0),
 (272, 27, 0),
 (272, 28, 0),
 (272, 29, 0),
 (272, 31, 0),
 (272, 32, 0),
 (275, 14, 0),
 (275, 15, 0),
 (275, 17, 0),
 (275, 28, 0),
 (275, 34, 0),
 (280, 14, 0),
 (280, 15, 0),
 (280, 17, 0),
 (280, 24, 0),
 (280, 25, 0),
 (283, 14, 0),
 (283, 15, 0),
 (283, 16, 0),
 (283, 17, 0),
 (283, 24, 0),
 (283, 25, 0),
 (283, 26, 0),
 (283, 27, 0),
 (283, 28, 0),
 (283, 29, 0),
 (283, 31, 0),
 (283, 32, 0),
 (283, 33, 0),
 (283, 40, 0),
 (285, 14, 0),
 (285, 15, 0),
 (285, 16, 0),
 (285, 26, 0),
 (285, 27, 0),
 (285, 28, 0),
 (285, 29, 0),
 (285, 34, 0),
 (288, 14, 0),
 (288, 16, 0),
 (288, 17, 0),
 (288, 18, 0),
 (288, 24, 0),
 (288, 25, 0),
 (288, 26, 0),
 (288, 27, 0),
 (288, 28, 0),
 (288, 29, 0),
 (288, 31, 0),
 (288, 32, 0),
 (288, 33, 0),
 (288, 34, 0),
 (288, 40, 0),
 (291, 14, 0),
 (291, 19, 0),
 (291, 24, 0),
 (291, 25, 0),
 (291, 39, 0),
 (291, 40, 0),
 (294, 14, 0),
 (294, 19, 0),
 (294, 24, 0),
 (294, 25, 0),
 (294, 40, 0),
 (297, 14, 0),
 (297, 19, 0),
 (297, 24, 0),
 (297, 25, 0),
 (297, 40, 0),
 (300, 14, 0),
 (300, 19, 0),
 (300, 24, 0),
 (300, 25, 0),
 (300, 40, 0),
 (303, 14, 0),
 (303, 16, 0),
 (303, 24, 0),
 (303, 25, 0),
 (303, 40, 0),
 (308, 14, 0),
 (308, 24, 0),
 (308, 25, 0),
 (311, 14, 0),
 (311, 18, 0),
 (311, 24, 0),
 (311, 25, 0),
 (311, 38, 0),
 (311, 39, 0),
 (311, 40, 0),
 (314, 14, 0),
 (314, 19, 0),
 (314, 39, 0),
 (314, 41, 0),
 (318, 14, 0),
 (318, 17, 0),
 (318, 24, 0),
 (318, 37, 0),
 (318, 39, 0),
 (321, 14, 0),
 (321, 17, 0),
 (321, 24, 0),
 (321, 25, 0),
 (321, 37, 0),
 (321, 39, 0),
 (321, 40, 0),
 (324, 14, 0),
 (324, 15, 0),
 (324, 19, 0),
 (324, 31, 0),
 (327, 14, 0),
 (327, 15, 0),
 (327, 19, 0),
 (327, 32, 0),
 (330, 14, 0),
 (330, 15, 0),
 (330, 19, 0),
 (330, 25, 0),
 (333, 14, 0),
 (333, 15, 0),
 (333, 16, 0),
 (333, 24, 0),
 (333, 25, 0),
 (333, 26, 0),
 (333, 27, 0),
 (333, 34, 0),
 (336, 14, 0),
 (336, 15, 0),
 (336, 17, 0),
 (336, 24, 0),
 (336, 25, 0),
 (336, 26, 0),
 (336, 27, 0),
 (336, 28, 0),
 (336, 29, 0),
 (336, 31, 0),
 (336, 32, 0),
 (336, 33, 0),
 (336, 34, 0),
 (336, 40, 0),
 (340, 14, 0),
 (340, 20, 0),
 (340, 24, 0),
 (340, 25, 0),
 (340, 26, 0),
 (340, 27, 0),
 (340, 28, 0),
 (340, 35, 0),
 (340, 40, 0),
 (343, 14, 0),
 (343, 20, 0),
 (343, 24, 0),
 (343, 25, 0),
 (343, 26, 0),
 (343, 27, 0),
 (343, 28, 0),
 (343, 35, 0),
 (343, 40, 0),
 (346, 14, 0),
 (346, 20, 0),
 (346, 24, 0),
 (346, 25, 0),
 (346, 26, 0),
 (346, 35, 0),
 (346, 40, 0),
 (351, 14, 0),
 (351, 20, 0),
 (351, 24, 0),
 (351, 25, 0),
 (351, 26, 0),
 (351, 27, 0),
 (351, 28, 0),
 (351, 35, 0),
 (351, 40, 0),
 (351, 41, 0),
 (359, 14, 0),
 (359, 20, 0),
 (359, 32, 0),
 (359, 35, 0),
 (366, 14, 0),
 (366, 20, 0),
 (366, 24, 0),
 (366, 25, 0),
 (366, 26, 0),
 (366, 27, 0),
 (366, 28, 0),
 (366, 29, 0),
 (366, 31, 0),
 (366, 32, 0),
 (366, 33, 0),
 (366, 35, 0),
 (373, 2, 0),
 (374, 14, 0),
 (374, 20, 0),
 (374, 24, 0),
 (374, 25, 0),
 (374, 26, 0),
 (374, 27, 0),
 (374, 35, 0),
 (374, 40, 0),
 (377, 14, 0),
 (377, 20, 0),
 (377, 24, 0),
 (377, 25, 0),
 (377, 35, 0),
 (377, 40, 0),
 (464, 14, 0),
 (464, 20, 0),
 (464, 24, 0),
 (464, 25, 0),
 (464, 26, 0),
 (464, 35, 0),
 (473, 14, 0),
 (473, 20, 0),
 (473, 26, 0),
 (473, 27, 0),
 (473, 28, 0),
 (473, 29, 0),
 (473, 35, 0),
 (483, 14, 0),
 (483, 17, 0),
 (483, 20, 0),
 (483, 24, 0),
 (483, 25, 0),
 (483, 26, 0),
 (483, 27, 0),
 (483, 28, 0),
 (483, 29, 0),
 (483, 31, 0),
 (483, 32, 0),
 (483, 33, 0),
 (483, 34, 0),
 (483, 35, 0),
 (483, 40, 0),
 (491, 14, 0),
 (491, 17, 0),
 (491, 32, 0),
 (491, 34, 0),
 (494, 14, 0),
 (494, 17, 0),
 (494, 24, 0),
 (494, 25, 0),
 (494, 26, 0),
 (494, 27, 0),
 (494, 28, 0),
 (494, 29, 0),
 (494, 31, 0),
 (494, 32, 0),
 (494, 33, 0),
 (494, 34, 0),
 (499, 14, 0),
 (499, 17, 0),
 (499, 21, 0),
 (499, 24, 0),
 (499, 25, 0),
 (499, 26, 0),
 (499, 27, 0),
 (499, 28, 0),
 (499, 29, 0),
 (499, 31, 0),
 (499, 32, 0),
 (499, 33, 0),
 (499, 34, 0),
 (502, 14, 0),
 (502, 17, 0),
 (502, 24, 0),
 (502, 25, 0),
 (502, 34, 0),
 (507, 14, 0),
 (507, 17, 0),
 (507, 21, 0),
 (507, 25, 0),
 (507, 34, 0),
 (510, 14, 0),
 (510, 17, 0),
 (510, 25, 0),
 (510, 34, 0),
 (512, 14, 0),
 (512, 15, 0),
 (512, 16, 0),
 (512, 17, 0),
 (512, 24, 0),
 (515, 14, 0),
 (515, 15, 0),
 (515, 24, 0),
 (515, 25, 0),
 (515, 26, 0),
 (515, 27, 0),
 (515, 28, 0),
 (515, 34, 0),
 (518, 14, 0),
 (518, 15, 0),
 (518, 28, 0),
 (518, 34, 0),
 (521, 14, 0),
 (521, 15, 0),
 (521, 29, 0),
 (521, 34, 0),
 (524, 14, 0),
 (524, 15, 0),
 (524, 32, 0),
 (524, 34, 0),
 (527, 14, 0),
 (527, 15, 0),
 (527, 31, 0),
 (527, 34, 0),
 (531, 14, 0),
 (531, 17, 0),
 (531, 21, 0),
 (531, 25, 0),
 (531, 34, 0),
 (534, 14, 0),
 (534, 17, 0),
 (534, 21, 0),
 (534, 24, 0),
 (534, 25, 0),
 (534, 26, 0),
 (534, 27, 0),
 (534, 28, 0),
 (534, 29, 0),
 (534, 31, 0),
 (534, 32, 0),
 (534, 33, 0),
 (534, 34, 0),
 (534, 37, 0),
 (534, 40, 0),
 (537, 14, 0),
 (537, 21, 0),
 (537, 33, 0),
 (537, 34, 0),
 (537, 37, 0),
 (540, 14, 0),
 (540, 17, 0),
 (540, 21, 0),
 (540, 24, 0),
 (540, 25, 0),
 (540, 26, 0),
 (540, 27, 0),
 (540, 28, 0),
 (540, 29, 0),
 (540, 31, 0),
 (540, 32, 0),
 (540, 34, 0),
 (540, 40, 0),
 (633, 2, 0),
 (634, 2, 0),
 (635, 6, 0),
 (668, 2, 0),
 (689, 14, 0),
 (689, 17, 0),
 (689, 21, 0),
 (689, 24, 0),
 (689, 25, 0),
 (689, 26, 0),
 (689, 27, 0),
 (689, 28, 0),
 (689, 29, 0),
 (689, 31, 0),
 (689, 32, 0),
 (689, 34, 0),
 (689, 40, 0),
 (690, 14, 0),
 (690, 21, 0),
 (690, 33, 0),
 (690, 34, 0),
 (690, 37, 0),
 (693, 17, 0),
 (693, 21, 0),
 (693, 24, 0),
 (693, 25, 0),
 (693, 26, 0),
 (693, 27, 0),
 (693, 28, 0),
 (693, 29, 0),
 (693, 31, 0),
 (693, 32, 0),
 (693, 34, 0),
 (693, 40, 0),
 (693, 42, 0);


DROP TABLE IF EXISTS `wp_term_taxonomy`;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

 
INSERT INTO `wp_term_taxonomy` VALUES (1, 1, 'category', '', 0, 2),
 (2, 2, 'nav_menu', '', 0, 9),
 (3, 3, 'nav_menu', '', 0, 5),
 (4, 4, 'category', 'Events that featured our many Carnivals of the past.', 0, 2),
 (5, 5, 'category', 'We know our parks have far too many features to enjoy at Carnival time so here is some extra information to help you enjoy them all year round.', 0, 0),
 (6, 6, 'category', 'To help you carry the experience of Carnival time over to other times of the year we\'ve compiled this list of activities worth repeating.', 0, 1),
 (7, 7, 'category', 'Useful information for anyone wanting to start planning or get involved in this year\'s Carnival.', 0, 0),
 (8, 8, 'post_format', '', 0, 0),
 (9, 9, 'post_format', '', 0, 0),
 (10, 10, 'post_format', '', 0, 0),
 (11, 11, 'category', 'Join part of the fun team to help run the next Carnival.', 7, 2),
 (12, 12, 'category', 'For assistance when visiting Toowoomba, don’t miss out on drawing on the resources of our Visitor Information Centre.', 7, 1),
 (13, 13, 'category', 'Links to help you get here stress-free.', 7, 3),
 (14, 14, 'category', '', 4, 60),
 (15, 15, 'post_tag', '', 0, 21),
 (16, 16, 'post_tag', '', 0, 10),
 (17, 17, 'post_tag', '', 0, 25),
 (18, 18, 'post_tag', '', 0, 3),
 (19, 19, 'post_tag', '', 0, 9),
 (20, 20, 'post_tag', '', 0, 13),
 (21, 21, 'post_tag', '', 0, 8),
 (22, 22, 'post_tag', 'A list of all events', 0, 3),
 (24, 24, 'post_tag', '', 0, 34),
 (25, 25, 'post_tag', '', 0, 36),
 (26, 26, 'post_tag', '', 0, 25),
 (27, 27, 'post_tag', '', 0, 23),
 (28, 28, 'post_tag', '', 0, 23),
 (29, 29, 'post_tag', '', 0, 18),
 (31, 31, 'post_tag', '', 0, 20),
 (32, 32, 'post_tag', '', 0, 24),
 (33, 33, 'post_tag', '', 0, 19),
 (34, 34, 'post_tag', '', 0, 29),
 (35, 35, 'post_tag', '', 0, 14),
 (36, 36, 'post_tag', '', 0, 0),
 (37, 37, 'post_tag', '', 0, 6),
 (38, 38, 'post_tag', '', 0, 1),
 (39, 39, 'post_tag', '', 0, 5),
 (40, 40, 'post_tag', '', 0, 22),
 (41, 41, 'post_tag', '', 0, 2),
 (42, 42, 'category', '', 0, 0);


DROP TABLE IF EXISTS `wp_termmeta`;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

 
INSERT INTO `wp_termmeta` VALUES (1, 41, '_rt_order', '0'),
 (2, 40, '_rt_order', '0'),
 (3, 39, '_rt_order', '0'),
 (4, 38, '_rt_order', '0'),
 (5, 37, '_rt_order', '0'),
 (6, 36, '_rt_order', '0'),
 (7, 35, '_rt_order', '0'),
 (8, 34, '_rt_order', '0'),
 (9, 33, '_rt_order', '0'),
 (10, 32, '_rt_order', '0'),
 (11, 31, '_rt_order', '0'),
 (12, 29, '_rt_order', '0'),
 (13, 28, '_rt_order', '0'),
 (14, 27, '_rt_order', '0'),
 (15, 26, '_rt_order', '0'),
 (16, 25, '_rt_order', '0'),
 (17, 24, '_rt_order', '0'),
 (18, 22, '_rt_order', '0'),
 (19, 21, '_rt_order', '0'),
 (20, 20, '_rt_order', '0'),
 (21, 19, '_rt_order', '0'),
 (22, 18, '_rt_order', '0'),
 (23, 17, '_rt_order', '0'),
 (24, 16, '_rt_order', '0'),
 (25, 15, '_rt_order', '0'),
 (26, 14, '_rt_order', '0'),
 (27, 4, '_rt_order', '0'),
 (28, 5, '_rt_order', '0'),
 (29, 6, '_rt_order', '0'),
 (30, 7, '_rt_order', '0'),
 (31, 11, '_rt_order', '0'),
 (32, 12, '_rt_order', '0'),
 (33, 13, '_rt_order', '0'),
 (34, 1, '_rt_order', '0');


DROP TABLE IF EXISTS `wp_terms`;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  `term_order` int(4) DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

 
INSERT INTO `wp_terms` VALUES (1, 'Uncategorised', 'uncategorised', 0, 10),
 (2, 'Top Menu', 'top-menu', 0, 0),
 (3, 'Social Links Menu', 'social-links-menu', 0, 0),
 (4, 'History', 'history', 0, 3),
 (5, 'Parks', 'parks', 0, 4),
 (6, 'Experiences', 'experiences', 0, 5),
 (7, 'Helpful info', 'helpful-info', 0, 6),
 (8, 'post-format-aside', 'post-format-aside', 0, 0),
 (9, 'post-format-gallery', 'post-format-gallery', 0, 0),
 (10, 'post-format-image', 'post-format-image', 0, 0),
 (11, 'Volunteers', 'volunteers', 0, 7),
 (12, 'Visitor Centres', 'visitor-centres', 0, 8),
 (13, 'Getting here', 'getting-here', 0, 9),
 (14, '2017 Events', '2017-events', 0, 2),
 (15, 'Tours', 'tours', 0, 25),
 (16, 'Parks &amp; gardens', 'parks-gardens', 0, 24),
 (17, 'Family', 'family', 0, 23),
 (18, 'Music', 'music', 0, 22),
 (19, 'Food &amp; wine', 'food-wine', 0, 21),
 (20, 'Floral', 'floral', 0, 20),
 (21, 'Art &amp; craft', 'art-craft', 0, 19),
 (22, 'Events', 'events', 0, 18),
 (24, 'Date - 16 Sep 2017', 'date-16-sep-2017', 0, 17),
 (25, 'Date - 17 Sep 2017', 'date-17-sep-2017', 0, 16),
 (26, 'Date - 18 Sep 2017', 'date-18-sep-2017', 0, 15),
 (27, 'Date - 19 Sep 2017', 'date-19-sep-2017', 0, 14),
 (28, 'Date - 20 Sep 2017', 'date-20-sep-2017', 0, 13),
 (29, 'Date - 21 Sep 2017', 'date-21-sep-2017', 0, 12),
 (31, 'Date - 22 Sep 2017', 'date-22-sep-2017', 0, 11),
 (32, 'Date - 23 Sep 2017', 'date-23-sep-2017', 0, 10),
 (33, 'Date - 24 Sep 2017', 'date-24-sep-2017', 0, 9),
 (34, 'Other things to see and do', 'other-things-to-see-and-do', 0, 8),
 (35, 'Community floral events', 'community-floral-events', 0, 7),
 (36, 'F&amp;W festival', 'fw-festival', 0, 6),
 (37, 'Free events', 'free-events', 0, 5),
 (38, 'Live concert series', 'live-concert-series', 0, 4),
 (39, 'Major events', 'major-events', 0, 3),
 (40, 'Date - 15 Sep 2017', 'date-15-sep-2017', 0, 2),
 (41, 'Date - 14 Sep 2017', 'date-14-sep-2017', 0, 1),
 (42, '2018 Events', '2018-events', 0, 1);


DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

 
INSERT INTO `wp_usermeta` VALUES (1, 1, 'nickname', 'webteam'),
 (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', 'theme_editor_notice,custom_admin_pointers11_8_6_1_new_items,addtoany_settings_pointer'),
 (15, 1, 'show_welcome_panel', '1'),
 (16, 1, 'session_tokens', 'a:1:{s:64:"9806faccdcbb756df4af31b52d65393fe2a1241b7ed0dea451ecf32ec5cc8780";a:4:{s:10:"expiration";i:1521254218;s:2:"ip";s:13:"203.37.164.20";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36";s:5:"login";i:1521081418;}}'),
 (17, 1, 'wp_dashboard_quick_press_last_post_id', '675'),
 (18, 1, 'community-events-location', 'a:1:{s:2:"ip";s:12:"203.37.164.0";}'),
 (19, 1, 'wp_user-settings', 'libraryContent=browse&hidetb=0&editor=tinymce'),
 (20, 1, 'wp_user-settings-time', '1516771509'),
 (21, 1, 'nav_menu_recently_edited', '2'),
 (22, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";i:4;s:15:"title-attribute";}'),
 (23, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:"add-post_tag";i:1;s:15:"add-post_format";}'),
 (24, 1, 'closedpostboxes_post', 'a:0:{}'),
 (25, 1, 'metaboxhidden_post', 'a:7:{i:0;s:16:"so-panels-panels";i:1;s:11:"postexcerpt";i:2;s:13:"trackbacksdiv";i:3;s:10:"postcustom";i:4;s:16:"commentstatusdiv";i:5;s:7:"slugdiv";i:6;s:9:"authordiv";}'),
 (26, 1, 'wp_media_library_mode', 'grid'),
 (27, 2, 'nickname', 'dixonn'),
 (28, 2, 'first_name', 'Noel'),
 (29, 2, 'last_name', 'Dixon'),
 (30, 2, 'description', ''),
 (31, 2, 'rich_editing', 'true'),
 (32, 2, 'syntax_highlighting', 'true'),
 (33, 2, 'comment_shortcuts', 'false'),
 (34, 2, 'admin_color', 'fresh'),
 (35, 2, 'use_ssl', '0'),
 (36, 2, 'show_admin_bar_front', 'true'),
 (37, 2, 'locale', ''),
 (38, 2, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
 (39, 2, 'wp_user_level', '10'),
 (40, 2, 'dismissed_wp_pointers', 'theme_editor_notice,custom_admin_pointers11_8_6_1_new_items'),
 (42, 2, 'wp_dashboard_quick_press_last_post_id', '547'),
 (43, 2, 'community-events-location', 'a:1:{s:2:"ip";s:11:"203.42.88.0";}'),
 (44, 2, 'nav_menu_recently_edited', '2'),
 (45, 2, '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";}'),
 (46, 2, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:"add-post_tag";i:1;s:15:"add-post_format";}'),
 (47, 2, 'wp_user-settings', 'siteorigin_panels_setting_tab=general&editor=tinymce&libraryContent=browse'),
 (48, 2, 'wp_user-settings-time', '1521004416'),
 (49, 2, 'so_panels_directory_enabled', '1'),
 (52, 2, 'wp_media_library_mode', 'grid'),
 (56, 2, '_wpupg_hide_new_notice', '2.6.2'),
 (57, 2, 'closedpostboxes_wpupg_grid', 'a:0:{}'),
 (58, 2, 'metaboxhidden_wpupg_grid', 'a:8:{i:0;s:27:"wpupg_meta_box_premium_only";i:1;s:32:"wpupg_meta_box_data_source_terms";i:2;s:26:"wpupg_meta_box_limit_posts";i:3;s:26:"wpupg_meta_box_limit_terms";i:4;s:26:"wpupg_meta_box_text_filter";i:5;s:29:"wpupg_meta_box_isotope_filter";i:6;s:31:"wpupg_meta_box_pagination_style";i:7;s:7:"slugdiv";}'),
 (61, 2, 'session_tokens', 'a:3:{s:64:"5c8ca624feddc1f2cb05ea940b03d6f3dcfb6626c5f7c06528231794c889343a";a:4:{s:10:"expiration";i:1521259189;s:2:"ip";s:13:"203.37.164.20";s:2:"ua";s:68:"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko";s:5:"login";i:1521086389;}s:64:"78de4f8bf906f68bdcd4ed912c77419556f366da586f2772b62014a9b04de891";a:4:{s:10:"expiration";i:1521261833;s:2:"ip";s:11:"203.42.88.2";s:2:"ua";s:113:"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36";s:5:"login";i:1521089033;}s:64:"3d3d8198ed20ac0b44e948a1552d7a65e9d03ea1e6c83b68b199e1f6299f3efd";a:4:{s:10:"expiration";i:1521089151;s:2:"ip";s:11:"203.42.88.2";s:2:"ua";s:113:"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36";s:5:"login";i:1521089121;}}'),
 (62, 3, 'nickname', 'info@tcof.com.au'),
 (63, 3, 'first_name', 'info'),
 (64, 3, 'last_name', ''),
 (65, 3, 'description', ''),
 (66, 3, 'rich_editing', 'true'),
 (67, 3, 'syntax_highlighting', 'true'),
 (68, 3, 'comment_shortcuts', 'false'),
 (69, 3, 'admin_color', 'fresh'),
 (70, 3, 'use_ssl', '0'),
 (71, 3, 'show_admin_bar_front', 'true'),
 (72, 3, 'locale', ''),
 (73, 3, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
 (74, 3, 'wp_user_level', '10'),
 (75, 3, 'dismissed_wp_pointers', 'custom_admin_pointers11_8_6_1_new_items'),
 (76, 3, 'session_tokens', 'a:1:{s:64:"3ce5cfa49c1613316ad9d49df870e058eeb14f15d514f2b5ee4cdd41fe3dfded";a:4:{s:10:"expiration";i:1522296135;s:2:"ip";s:13:"203.37.164.20";s:2:"ua";s:68:"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko";s:5:"login";i:1521086535;}}'),
 (77, 3, 'wp_dashboard_quick_press_last_post_id', '685'),
 (78, 3, 'community-events-location', 'a:1:{s:2:"ip";s:12:"203.37.164.0";}'),
 (79, 3, 'nav_menu_recently_edited', '3'),
 (80, 3, '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";}'),
 (81, 3, 'metaboxhidden_nav-menus', 'a:4:{i:0;s:21:"add-post-type-project";i:1;s:12:"add-post_tag";i:2;s:15:"add-post_format";i:3;s:16:"add-project_type";}');


DROP TABLE IF EXISTS `wp_users`;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

 
INSERT INTO `wp_users` VALUES (1, 'webteam', '$P$BMoNl1UCYaWLnxOpRqI4k.uuh76DqZ/', 'webteam', 'webteam@tr.qld.gov.au', '', '2018-01-22 00:52:03', '', 0, 'webteam'),
 (2, 'dixonn', '$P$B/xqZO/MU..t3a.fT28Oh50I2GSRa00', 'dixonn', 'noel.dixon@tr.qld.gov.au', '', '2018-01-23 02:37:11', '1516675031:$P$B0V9Qh24SyvPySL6zVHOrva/YTQq611', 0, 'Noel Dixon'),
 (3, 'info@tcof.com.au', '$P$BJVmEV0eKSz0iv9z9jU4VLni5.x1VT1', 'infotcof-com-au', 'info@tcof.com.au', 'http://tcof.com.au', '2018-03-15 04:01:55', '1521086515:$P$BKOPyj0eP4NoYxLpGK3j6e0o3rQgrZ0', 0, 'info@tcof.com.au');


DROP TABLE IF EXISTS `wp_ytwd_shortcodes`;
CREATE TABLE `wp_ytwd_shortcodes` (
  `id` int(17) NOT NULL AUTO_INCREMENT,
  `tag_text` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

 
INSERT INTO `wp_ytwd_shortcodes` VALUES (1, 'id=1 item=1'),
 (2, 'id=2 item=2');


DROP TABLE IF EXISTS `wp_ytwd_youtube`;
CREATE TABLE `wp_ytwd_youtube` (
  `id` int(17) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `embed_type` tinyint(1) NOT NULL,
  `video_url` varchar(255) NOT NULL,
  `playlist_url` varchar(255) NOT NULL,
  `channel_identifer` tinyint(1) NOT NULL,
  `youtube_id` varchar(255) NOT NULL,
  `width` varchar(255) NOT NULL,
  `width_unit` varchar(7) NOT NULL,
  `auto_height` tinyint(1) NOT NULL,
  `height` varchar(255) NOT NULL,
  `player_aligment` tinyint(1) NOT NULL,
  `autohide` tinyint(1) NOT NULL,
  `autoplay` tinyint(1) NOT NULL,
  `color` varchar(255) NOT NULL,
  `theme` varchar(255) NOT NULL,
  `controls` tinyint(1) NOT NULL,
  `fs` tinyint(1) NOT NULL,
  `loop` tinyint(1) NOT NULL,
  `rel` tinyint(1) NOT NULL,
  `showinfo` tinyint(1) NOT NULL,
  `disablekb` tinyint(1) NOT NULL,
  `iv_load_policy` tinyint(1) NOT NULL,
  `modestbranding` tinyint(1) NOT NULL,
  `hl` tinyint(1) NOT NULL,
  `cc_load_policy` tinyint(1) NOT NULL,
  `playsinline` tinyint(1) NOT NULL,
  `origin` tinyint(1) NOT NULL,
  `wmode` varchar(255) NOT NULL,
  `start` varchar(255) NOT NULL,
  `end` varchar(255) NOT NULL,
  `initial_volume` varchar(255) NOT NULL,
  `enable_gallery` tinyint(1) NOT NULL,
  `gallery_items_count` int(17) NOT NULL,
  `gallery_display_type` tinyint(1) NOT NULL,
  `prev_btn_text` varchar(255) NOT NULL,
  `next_btn_text` varchar(255) NOT NULL,
  `gallery_order` varchar(255) NOT NULL,
  `gallery_order_dir` varchar(255) NOT NULL,
  `enable_search` tinyint(1) NOT NULL,
  `gallery_view_type` varchar(255) NOT NULL,
  `gallery_position` tinyint(1) NOT NULL,
  `thumbnails_column_number` int(17) NOT NULL,
  `carousel_items_count` int(17) NOT NULL,
  `gallery_video_display_mode` tinyint(1) NOT NULL,
  `gallery_additional_info` varchar(255) NOT NULL,
  `desc_max_lenght` varchar(27) NOT NULL,
  `single_line_title` tinyint(1) NOT NULL,
  `gallery_thumb_custom_size` varchar(255) NOT NULL,
  `loading_effects` varchar(255) NOT NULL,
  `video_quality` varchar(255) NOT NULL,
  `video_additional_info` varchar(255) NOT NULL,
  `enable_share_btns` tinyint(1) NOT NULL,
  `enable_youtube_link` tinyint(1) NOT NULL,
  `enable_youtube_link_channel` tinyint(1) NOT NULL,
  `enable_youtube_link_playlist` tinyint(1) NOT NULL,
  `show_video_info_by_default` tinyint(1) NOT NULL,
  `channel_additional_info` varchar(255) NOT NULL,
  `comments_count` int(15) NOT NULL,
  `theme_id` int(17) NOT NULL,
  `shortcode_id` int(17) NOT NULL,
  `published` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

 
INSERT INTO `wp_ytwd_youtube` VALUES (1, 'How to Get API Key for YouTube WD Plugin', 0, 'https://www.youtube.com/watch?v=RQxtFfapyO0', '', 0, '', '100', '%', 1, '400', 1, 1, 0, 'red', '', 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 'opaque', '0', '0', '50', 0, 12, 0, 'Prev', 'Next', '', '', 0, 'thumbnails', 0, 3, 0, 0, 'title', '', 0, '100', 'none', 'default', '', 0, 0, 0, 0, 0, '', 0, 0, 1, 0),
 (2, 'Parks Preparation', 1, '', 'https://www.youtube.com/playlist?list=PLV5vGUtoxzaGPGqBVE1XRCJjdYLNJ8PIR', 0, '', '100', '%', 1, '400', 1, 1, 0, 'red', '', 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 'opaque', '0', '0', '50', 1, 12, 0, 'Prev', 'Next', '', '', 0, 'thumbnails', 0, 3, 0, 0, 'title', '', 0, '100', 'none', 'default', 'published_at,title,desc,views_count,likes,dislikes,subscribe_btn', 1, 0, 0, 0, 0, 'banner,views_count,subscribers_count', 0, 0, 2, 1);


